/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/*
body.elementor-page .site-gated-content-form {
    padding-top: 2rem;
    padding-bottom: 4rem;
    max-width: calc(1140px + 2rem);
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
}
*/
#site-gated-content {
    pointer-events: none;
}
#site-gated-content.o-access_js {
    pointer-events: auto;
}
.site-gated-content-form {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1001;
}
.site-gated-content-form::before {
    content: '';
    display: block;
    background-color: #000;
    opacity: 0.75;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.site-gated-content-form .e-form-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.site-gated-content-form .e-form-container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    flex-grow: 1;
}
.site-gated-content-form .e-form-box {
    background-color: #fff;
    padding: 2rem;
    max-height: 80vh;
    overflow: auto;
}
.site-gated-content-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
}
.site-gated-content-overlay::before {
    content: '';
    display: block;
    background-color: #000;
    opacity: 0.75;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.site-gated-content-overlay .e-overlay-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    padding-left: 2rem;
    padding-right: 2rem;
}
.site-gated-content-overlay .e-overlay-loader {
    margin-right: 1rem;
    width: 48px;
    max-width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 6px dotted #fff;
    animation:
        l20-1 0.8s infinite linear alternate,
        l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }

    49.99% {
        transform: scaleY(1) rotate(135deg)
    }

    50% {
        transform: scaleY(-1) rotate(0deg)
    }

    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}