
.form-loader {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    display: none;
    justify-content: center;
    align-items: center;
}

.form-loader.show {
    display: flex;
}

.form-loader__inner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    background: linear-gradient(0deg, #ffc107 33%, #007bff 100%);
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.form-loader__inner::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5f5f5;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.cookie_banner {
    position: fixed;
    bottom: 0;
    left: -1450px;
    width: 0;
    background-color: #161922;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
    padding: 0 0 30px;
    transition: all .5s ease-in-out;
    box-shadow: 0 0 4px rgba(0, 0, 0, .6);
}

.cookie_banner.show {
    left: 0;
    width: 100%;
}

.cookie_banner__close {
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    margin: 0 0 0 auto;
    cursor: pointer;
}

.cookie_banner__close img {
    width: 36px;
    height: 36px;
    display: block;
}

.cookie_banner__title {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie_banner__text {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    max-width: 400px;
    width: 100%;
    text-align: center;
    font-weight: 300;
    margin-bottom: 20px;
    padding: 0 15px;
}

.cookie_banner__acept {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all .2s ease-in-out;
    margin: 0 0 15px;
    border-radius: 3px;

    background-color: transparent;
    border: 1px solid #7FB1C5;
}

.cookie_banner__acept:hover {
    background-color: #7FB1C5;
}

.cookie_banner__link {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    text-decoration: underline;
}

.cookie_banner__link:hover {
    text-decoration: none;
    color: #fff;
}

.popup-signup, .popup-thankyou {
    position: fixed;
    top: 0;
    left: 0px;
    z-index: 9999;
    height: 100%;
    width: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    display: none;
    padding: 10px;
    background: #0000001c;
    padding-top: 77px;
}

.popup-signup .popup-container, .popup-thankyou .popup-container {
    border-radius: 16px;
    background-color: #FFFFFF;
    position: relative;
    max-width: 490px;
    width: 100%;
    margin: 3% auto auto auto;
    border: 1px solid #7FB1C5;
    padding: 45px;
    /* display: none; */
}

.close-popup-signin, .close-popup-signup {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1234;
    height: 42px;
    width: 42px;
    background: url(/assets/images/close.webp) no-repeat center;
    background-color: #7FB1C5;
    border-radius: 4px;
    cursor: pointer;
}

.gtc-box {
    margin-bottom: 20px;
}

.gtc-box label {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    margin-bottom: 0px;
}

.gtc-box input {
    height: 15px;
    width: 15px;
    float: left;
    margin: 1px 10px 0px 0px;
}
