﻿/* ========   SPINNER   ========= */
.spinner-cnt {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    display: none;
}

    .spinner-cnt .spinner-shadow {
        top: 0px;
        background: #ccc;
        opacity: 0.5;
        filter: alpha(opacity=50);
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 99000;
    }

    .spinner-cnt .spinner, .spinner-cnt .message, .spinner-cnt .messagebr, .spinner-cnt .spin-circle {
        position: fixed;
        top: 50%;
        left: 50%;
        text-align: center;
        z-index: 100000;
    }

    .spinner-cnt .videocall {
        border:none!important;
    }


    .spinner-cnt .spinner {
        margin-top: -38px;
        margin-left: -38px;
        border-radius: 50%;
        width: 76px;
        height: 76px;
        border: 1px solid #333;
        background-image: url("/Images/icon-76.png?v=1");
        background-size: 100%;
    }

    .spinner-cnt .spin-circle {
        margin-top: -125px;
        margin-left: -125px;
        width: 250px;
        height: 250px;
        background: rgba(0, 0, 0, 0.1);
        opacity: 0.1;
        filter: alpha(opacity=10);
        border-radius: 50%;
        -webkit-animation: scaleout 2.5s infinite ease;
        animation: scaleout 3s infinite ease;
        border: 1px solid #ccc;
    }

        .spinner-cnt .spin-circle.delay-one {
            -webkit-animation-delay: 1s;
        }

        .spinner-cnt .spin-circle.delay-two {
            -webkit-animation-delay: 2s;
        }

    .spinner-cnt .message {
        margin-top: 35px;
        margin-left: -100px;
        width: 200px;
        height: 50px;
        color: #333;
        font-weight: 800;
        line-height: 50px;
        font-style: italic;
        text-transform: uppercase;
        text-shadow: 1px 1px 1px #ccc;
        font-size: 1.2em;
    }

    .spinner-cnt .messagebr {
        margin-top: 50px;
        margin-left: -100px;
        width: 200px;
        color: #333;
        font-weight: 600;
        text-transform: uppercase;
        text-shadow: 1px 1px 1px #ccc;
        font-size: 0.8em;
    }

/* ========   SPINNER   ========= */
.spinner-bra {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    display: block;
}

    .spinner-bra .spinner-shadow {
        background: #ccc;
        opacity: 0.5;
        filter: alpha(opacity=50);
        width: auto;
        height: auto;
        position: fixed;
        z-index: 99000;
    }

    .spinner-bra .spinner, .spinner-bra .message, .spinner-bra .messagebr, .spinner-bra .spin-circle {
        position: fixed;
        top: 50%;
        left: 50%;
        text-align: center;
        z-index: 100000;
    }

    .spinner-bra .spinner {
        margin-top: -38px;
        margin-left: -38px;
        border-radius: 50%;
        width: 76px;
        height: 76px;
        border: 1px solid #333;
        background-image: url("/Images/icon-76.png?v=1");
        background-size: 100%;
    }

    .spinner-bra .spin-circle {
        margin-top: -125px;
        margin-left: -125px;
        width: 250px;
        height: 250px;
        background: rgba(0, 0, 0, 0.1);
        opacity: 0.1;
        filter: alpha(opacity=10);
        border-radius: 50%;
        -webkit-animation: scaleout 2.5s infinite ease;
        animation: scaleout 3s infinite ease;
        border: 1px solid #ccc;
    }

        .spinner-bra .spin-circle.delay-one {
            -webkit-animation-delay: 1s;
        }

        .spinner-bra .spin-circle.delay-two {
            -webkit-animation-delay: 2s;
        }

    .spinner-bra .message {
        margin-top: 35px;
        margin-left: -100px;
        width: 200px;
        height: 50px;
        color: #333;
        font-weight: 800;
        line-height: 50px;
        font-style: italic;
        text-transform: uppercase;
        text-shadow: 1px 1px 1px #ccc;
        font-size: 1.2em;
    }

    .spinner-bra .messagebr {
        margin-top: 50px;
        margin-left: -100px;
        width: 200px;
        color: #333;
        font-weight: 600;
        text-transform: uppercase;
        text-shadow: 1px 1px 1px #ccc;
        font-size: 0.8em;
    }

.spinner-cnt .spin-circle {
    margin-top: -125px;
    margin-left: -125px;
    width: 250px;
    height: 250px;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0.1;
    filter: alpha(opacity=10);
    border-radius: 50%;
    -webkit-animation: scaleout 2.5s infinite ease;
    animation: scaleout 3s infinite ease;
    border: 1px solid #ccc;
}

@-webkit-keyframes SPIN {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes SPIN {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes SPIN {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(360deg);
    }
}

@keyframes SPIN {
    from {
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes scaleout {
    0% {
        -webkit-transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes scaleout {
    0% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.8;
    }
}


/* ========   FORGOT PASSWORD   ========= */
.popup-cnt {
    width: 100%;
    height: 130%;
    position: absolute;
    overflow: hidden;
    display: none;
    background-color: rgba(255,255,255,0.5);
    top: 0;
    left: 0;
    z-index: 90;
}

    .popup-cnt .popup-shadow {
        background: #ccc;
        opacity: 0.5;
        filter: alpha(opacity=50);
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 99;
    }

    .popup-cnt .popup, .popup-cnt .message, .popup-cnt .spin-circle {
        position: fixed;
        top: 30%;
        left: 32%;
        background-color: #fff;
        width: 37%;
        height: 250px;
    }

    .popup-cnt .popup {
        border: 2px solid #A3A3A3;
        background-size: 100%;
    }

    .popup-cnt .spin-circle {
        margin-top: -125px;
        margin-left: -125px;
        width: 250px;
        height: 250px;
        background: rgba(0, 0, 0, 0.1);
        opacity: 0.1;
        filter: alpha(opacity=10);
        border-radius: 50%;
        -webkit-animation: scaleout 2.5s infinite ease;
        animation: scaleout 3s infinite ease;
        border: 1px solid #ccc;
    }

.fondo {
    background-color: rgb(255, 255, 255);
    opacity: 1;
}

.title {
    /*padding: 9px;*/
    /*border-bottom: 2px solid #A3A3A3;*/
}

.middle {
    text-align: center;
    margin-top: 11%;
}

/* BAGS */

.bags {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    text-align: center;
}

.bag {
    overflow: auto;
    display: block;
    background-color: #f5f5f5;
    text-align: center !important;
}

.bag-model {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

.bag-fullscreen {
    background-color: #f5f5f5;
}

.bag-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.bag-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}


@media (min-width: 576px) {
    .bag-dialog {
        max-width: 600px;
        margin: 7rem auto;
    }

    .bag-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .bag-content {
        padding: 1rem;
    }
}

.bag-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
}

.bag-fullscreen, .bag-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

.bag-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.bag-fullscreen, .modal-header {
    border-radius: 0;
}

.bag-fullscreen-body {
    font-size: 22px;
    line-height: 28px;
    color: black;
    text-align: center;
}

    .bag-fullscreen-body h1 {
        font-weight: 600;
        font-size: 32px;
        line-height: 37.54px;
        text-align: center;
    }

    .bag-fullscreen-body h2 {
        font-size: 20px;
        line-height: 23.46px;
        width: 100%;
        font-weight: 600;
    }


@media (min-width: 576px) {
    .bag-fullscreen-body h2 {
        font-size: 20px;
        line-height: 23.46px;
        width: 395px;
        font-weight: 600;
    }
}

.globalLoaderShow {
    overflow: hidden;
}

@media (max-width: 575.98px) {
    .bag-header {
        position: relative;
        height: 360px;
    }

    .lottie-animation {
        position: absolute;
    }
}