/************ PRINT ****************/
@media print {

    @page {
        size: auto;
        margin-bottom: 0;
    }

    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .noPrint, .noPrint > *,
    header, footer, nav, form,
    input, label, button {
        display: none !important;
    }

    a[href]:after {
        content: none !important;
    }

    img {
        border: 0;
        max-width: 300px;
        max-height: 300px;
    }

    h1 {
        page-break-before: always !important;
        margin: 0;
        padding: 0;
        font-size: 250%;
    }

    h2 {
        font-size: 175%;
    }

    h3 {
        font-size: 150%;
    }

    p, small, span {
        font-size: 100% !important;
    }
}

/************ LOADER SPINNER ***************/
.spinnerAppoe {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinnerAppoe > div {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;

    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinnerAppoe .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinnerAppoe .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinnerAppoe .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinnerAppoe .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }
    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

/************ RESPONSIVE MAP ON IFRAME ***************/
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/************** GOOGLE RECAPTCHA V3 ***************/
.grecaptcha-badge {
    bottom: 65px !important;
}

/************** IFRAME *******************/
.hideElementInFrame {
    display: none !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    z-index: 0 !important;
}
