/* @font-face {
    font-family: "FontAwesome";
    src: url("../fonts/fontawesome-webfont.eot?v=4.3.0");
    src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0")
            format("embedded-opentype"),
        url("../fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"),
        url("../fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"),
        url("../fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"),
        url("../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular")
            format("svg");
    font-weight: normal;
    font-style: normal;
} */

.big-circle-icon-passive {
    background-color: #789c4c;
}

.big-circle-icon {
    text-align: center;
    font-size: 120px;
    color: #fff;
    background-color: #069;
    border-radius: 50%;
    height: 240px;
    width: 240px;
    margin: 0 auto;
    padding: 30px;
    border: 3px solid;
}

.big-circle-icon a {
    text-decoration: none;
    color: white;
}
@-webkit-keyframes pulse_animation {
    0% {
        -webkit-transform: scale(1);
    }
    20% {
        -webkit-transform: scale(1);
    }
    30% {
        -webkit-transform: scale(1.02);
    }
    40% {
        -webkit-transform: scale(1.08);
    }
    50% {
        -webkit-transform: scale(1.02);
    }
    60% {
        -webkit-transform: scale(1.03);
    }
    70% {
        -webkit-transform: scale(1.05);
    }
    80% {
        -webkit-transform: scale(1.02);
    }
    90% {
        -webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

.pulse:hover {
    -webkit-animation-name: "pulse_animation";
    -webkit-animation-duration: 3000ms;
    -webkit-transform-origin: 70% 70%;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #789c4c transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.page-item.active .page-link {
    background-color: #13a23f !important;
    border-color: #13a23f !important;
}
.table thead th {
    border-bottom: 2px solid #e76500 !important;
}
html {
    position: absolute;
    min-width: 100%;
}
html,
body {
    margin: 0px;
    min-width: 100%;
}
body {
    margin: 0;
    font-family: "Nunito", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #212529;
    text-align: left;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    float: left;
}
.footer {
    flex-shrink: 0;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    min-height: 60px;
    /* -webkit-box-shadow: 0px 9px 7px 9px rgba(231, 101, 0, 1);
    -moz-box-shadow: 0px 9px 7px 9px rgba(231, 101, 0, 1);
    box-shadow: 0px 9px 7px 9px rgba(231, 101, 0, 1); */
}
.content {
    flex: 1 0 auto;
}

.nav__container {
    min-width: 100%;
    -webkit-box-shadow: 1px -13px 12px 9px rgba(231, 101, 0, 0.7);
    -moz-box-shadow: 1px -13px 12px 9px rgba(231, 101, 0, 0.7);
    box-shadow: 1px -13px 12px 9px rgba(231, 101, 0, 0.7);

    -webkit-box-shadow: 0px -7px 7px 9px rgba(231, 101, 0, 1);
    -moz-box-shadow: 0px -7px 7px 9px rgba(231, 101, 0, 1);
    box-shadow: 0px -7px 7px 9px rgba(231, 101, 0, 1);

    -webkit-box-shadow: 0px -7px 7px 9px rgba(224, 61, 7, 0.1);
    -moz-box-shadow: 0px -7px 7px 9px rgba(224, 61, 7, 0.1);
    box-shadow: 0px -7px 7px 9px rgba(224, 61, 7, 0.1);
}
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(231, 101, 0, 0.25);
}
a:hover {
    text-decoration: none !important;
}
/*flip*/
.slidecaption:hover {
    -webkit-animation-name: spinner;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
    animation-name: spinner;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* WebKit and Opera browsers */
@-webkit-keyframes spinner {
    from {
        -webkit-transform: rotateY(0deg);
    }
    to {
        -webkit-transform: rotateY(-360deg);
    }
} /* all other browsers */
@keyframes spinner {
    from {
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    to {
        -moz-transform: rotateY(-360deg);
        -ms-transform: rotateY(-360deg);
        transform: rotateY(-360deg);
    }
}
.dataTables_wrapper {
    margin-left: auto;
    margin-right: auto;
}

#farmacie__table_wrapper {
    margin-left: 0;
    margin-right: 0;
    width: 100%;;
}
.point {
    cursor: pointer;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active,
.datepicker table tr td.active:hover {
    background-color: #e76500 !important;
    background-image: none !important;
}
.set__shadow {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.pagination > li {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    border: none;
}
.pagination > li a {
    border: 1px solid #e7decd;
    border-radius: 0 !important;
}
div.dataTables_wrapper div.dataTables_length select.custom-select {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    border-color: #e7decd;
}
.hidden__inputs {
    line-height: 0.5;
    font-size: 0.5rem;
    height: 5px;
    transition: none;
    display: inline-block;
}
/* .dataTables_wrapper {
    width: 100% !important;
} */
/* .modal-xl {
    max-width: 90% !important;
} */
.stat__spa,
tr.odd {
    transition: all 0.5s ease;
}
[data-title]:hover {
    cursor: help;
}
[data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}
[data-title]:after {
    content: attr(data-title);
    background-color: #212529;
    color: #fff;
    font-size: 0.97rem;
    position: absolute;
    padding: 3px 8px;
    bottom: -1.6em;
    left: -55px;
    white-space: nowrap;
    /* box-shadow: 1px 1px 3px #222222; */
    opacity: 0;
    border: 1px solid #fff;
    border-radius: 3px;
    z-index: 99999;
    visibility: hidden;
    /* font-style: italic; */
    font-weight: 550;
    font-family: "Nunito", sans-serif;
}
[data-title] {
    position: relative;
}
.hide__show__more {
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
.hide__show__more:hover {
    overflow: visible;
    text-overflow: initial;
}
