﻿::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

::-webkit-scrollbar-track {
    background: #FFFFFF00;
}

::-webkit-scrollbar-thumb {
    background: #270089;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #004987;
    }

    ::-webkit-scrollbar-thumb:active {
        background-color: #3CB4E5;
    }

.margin-bottom {
    margin-bottom: 12px;
}

.btn {
    text-align: center !important;
}

.margin-bottom-end {
    margin-bottom: 24px;
}

.btn-area {
    margin-top: 24px;
}

.margin-top {
    margin-top: 24px;
}

.hidden {
    visibility: hidden;
}

.text-right {
    text-align: right;
}

.alerta-modal {
    text-align: center;
    font-family: Arial, Helvetica, arial;
    font-size: 18px;
    position: fixed;
    bottom: 70px;
    right: 35px;
    width: 270px;
    height: 190px;
    z-index: 10;
    padding: 25px 20px 15px 20px;
    background-color: rgb(16, 110, 158);
    border-radius: 20% 10px 20% 10px;
    box-shadow: 1px 2px 5px 0px black;
    color: white;
}

.pantalla-negra {
    position: fixed;
    width: 100%;
    height: 100%;
    margin-top: -50px;
    margin-left: -50px;
    background-color: black;
    z-index: 5;
    opacity: 0.5;
}

.spinner, .spinner:after {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-block;
}

.spinner {
    background-color: transparent;
    border-bottom: 5px solid rgb(255, 255, 225);
    border-left: 5px solid rgba(255, 255, 225, 0);
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 0.8s;
    animation-name: spinner-loading;
}

.mostrar-iframe {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 2000;
}

.btn-cerrar {
    position: fixed;
    left: 47%;
    height: 50px;
    padding-top: 15px;
    text-align: center;
    width: 50px;
    font-family: sans-serif;
    font-size: 30px;
    border-radius: 50%;
    color: white;
    background-color: #004987;
    cursor: pointer;
}

    .btn-cerrar:hover {
        background-color: darkred;
        padding-top: 13px;
        border: 3px solid;
        border-color: black;
    }

@keyframes spinner-loading {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(1turn);
    }
}

@media only screen and (min-width: 1024px) {
    .col-lg-2, .col-lg-2 {
        text-align: right;
    }

    .mostrar-iframe {
        width: 99%;
        height: 91%;
    }

    .btn-cerrar {
        top: 2px;
    }
}

@media only screen and (max-width: 1024px) {
    .col-sm-12, .col-xm-12 {
        text-align: left;
    }

    .mostrar-iframe {
        width: 95%;
        height: 82%;
    }

    .btn-cerrar {
        top: 105px;
    }
}

.min-width > th {
    min-width: 120px;
}

.grid-usuarios {
    overflow-y: scroll;
    height: 230px;
    margin: 24px;
    text-align: center;
}

th {
    text-align: center !important;
}

@media only screen and (max-width: 1024px) and (max-height: 768px) {
    .col-sm-12, .col-xm-12 {
        text-align: left;
    }
}

.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}

    .check-icon::before {
        top: 3px;
        left: -2px;
        width: 30px;
        transform-origin: 100% 50%;
        border-radius: 100px 0 0 100px;
    }

    .check-icon::after {
        top: 0;
        left: 30px;
        width: 60px;
        transform-origin: 0 50%;
        border-radius: 0 100px 100px 0;
        animation: rotate-circle 4.25s ease-in;
    }

    .check-icon::before, .check-icon::after {
        content: '';
        height: 100px;
        position: absolute;
        background: #FFFFFF;
        transform: rotate(-45deg);
    }

.icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(76, 175, 80, .5);
}

.icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #FFFFFF;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }

    5% {
        transform: rotate(-45deg);
    }

    12% {
        transform: rotate(-405deg);
    }

    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.modal-success {
    width: 250px;
    height: 300px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #00000024;
}

.modal-confirm {
    width: 350px;
    height: 250px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid #00000024;
}

.modal-rechazo {
    min-width: 350px;
    min-height: 250px;
    background-color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid #00000024;
}

.close-modal {
    animation: close-modal 0.5s ease;
}

.display-none {
    display: none;
}

@keyframes close-modal {
    from {
        opacity: 100%;
    }

    to {
        opacity: 0%;
    }
}

.no-touch {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    z-index: 999999999;
}

#canvas_container {
    width: 100%;
    height: 100%;
    background: #333;
    text-align: center;
    border: solid 3px;
    overflow-y: scroll;
    max-height: -webkit-fill-available;
    max-width: -webkit-fill-available;
}

#go_previous, #go_next, #zoom_in, #zoom_out, #rotate_right_page, #rotate_left_page, #makePrint {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 30px;
    width: 50px;
    height: 50px;
    font-family: ui-monospace;
    font-weight: bold;
    border-radius: 100%;
    position: fixed;
    right: 3%;
    border: 1px solid #808080;
}

#rotate_right_page {
    bottom: 60%;
}

#rotate_left_page {
    bottom: 50%;
}

#go_previous {
    bottom: 40%;
}

#zoom_in {
    bottom: 20%;
}

#zoom_out {
    bottom: 10%;
}

#go_next {
    bottom: 30%;
}

#makePrint {
    bottom: 70%;
}

#current_page {
    position: absolute;
    top: 10px;
    left: 45%;
    width: 40px;
    height: 30px;
}

#lbMaxPaginas {
    position: absolute;
    top: 15px;
    left: 49%;
    font-size: 18px;
}

.margin-bottom {
    margin-bottom: 10px;
}

.index-999 {
    top: 0.25em;
    left: 0em;
    right: 0em;
    z-index: 999999;
}

@media(max-width: 768px) {
    .w-auto-alert {
        width: 100% !important;
    }
}

@media(min-width: 768px) {
    .w-auto-alert {
        width: 75% !important;
    }
}

.position-fixed {
    position: fixed;
}

.p-2 {
    padding: 0.75rem;
}

.m-0 {
    margin: 0px;
}

.fixed-0 {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.d-flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-200px {
    width: 220px;
    min-width: 220px;
}

.flex-column {
    flex-direction: column;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.align-self-center {
    align-self: center;
}

.img-avatar {
    border-radius: 100%;
    width: 55px;
    height: 55px;
    margin: 0.75rem;
    border: 2px solid #00B1E1;
}

.bold {
    font-weight: bold;
}

.bg-gray-internal {
    background-color: #5C6670 !important;
}

.bg-blue-light-internal {
    background-color: #00B1E1 !important;
}

.text-light {
    color: white;
}

.overflow-y-overlay {
    overflow-y: overlay;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

.overflow-overlay {
    overflow: overlay;
}

.overflow-hidden {
    overflow: hidden;
}

.border-top-blue-light {
    border-top: 2px solid #00B1E1;
}

.bg-blue-deep-internal {
    background-color: #05325A;
}

.bg-light {
    background-color: white;
}

.nav-height {
    height: 50px;
    min-height: 50px;
}

.justify-content-between {
    justify-content: space-between;
}

.w-container {
    width: 100% !important;
}

.info-panel-search {
    display: flex;
    flex-direction: column;
    justify-content: left;
    font-family: ui-monospace;
    border-radius: 4px;
    position: fixed;
    left: 3%;
    top: 10%;
    padding: 1rem;
    border: 1px solid #808080;
    background: white;
}

    .info-panel-search:hover {
        filter: opacity(0.1);
    }