
.form-loader {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: #c19b7670;
    display: none;
    justify-content: center;
    align-items: center;
}

.form-loader.active {
    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: #C19B76;
}

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

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

.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: #0000009e;
    padding-top: 77px;
}

.msg_error {
    color: #EB5406;
    font-size: 12px;
    font-weight: 600;
    padding-left: 2px;
}

.msg_success {
    color: #C19B76;
    font-size: 16px;
    font-weight: 600;
    display: none;
    text-transform: uppercase;
}

.cookie-popup {
    position: fixed;
    bottom: 60px;
    left: unset;
    right: 20px;
    background-color: #323232;
    color: #EEEEEE;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 500px;
    border: none;
    border-top: 2px solid #C19B76;
    z-index: 990;
}

.cookie-popup.active {
    display: flex;
}

.cookie-popup .cookie-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.cookie-popup h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #C19B76;
}

.cookie-popup p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #EEEEEE;
}

.cookie-popup p a {
    color: #C19B76;
    text-decoration: underline;
}

.cookie-popup .agree-btn {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    background-color: transparent;
    border: 1px solid #C19B76;
    color: #C19B76;
    padding-right: 30px;
    padding-left: 30px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
}

.cookie-popup .agree-btn:hover {
    background-color: #a77c5a;
    color: #EEEEEE;
}

.close-btn {
    background: none;
    border: none;
    color: #EEEEEE;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.close-btn:hover {
color: #a77c5a;
}

.gtc-box {
    font-size: 12px;
}

@media (max-width: 600px) {
    .cookie-popup {
        bottom: 20px;
        right: 20px;
        left: 20px;
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .cookie-popup {
        bottom: 40px;
        right: 40px;
        left: 40px;
        padding: 30px;
    }
}


.popup-signup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border: none;
    border-top: 2px solid #C19B76;
    z-index: 999;
}

.popup-signup.active {
    display: flex;
}

.popup-container {
    background-color: #323232;
    color: #EEEEEE;
    border-radius: 10px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    position: relative;
    border: none;
    border-top: 2px solid #C19B76;
}



.popup-content {
    position: relative;
}

.signup-title {
    color: #C19B76;
    margin-bottom: 30px;
}

.form-elements input[type="text"],
.form-elements input[type="email"],
.form-elements input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #C19B76;
    border-radius: 5px;
    background-color: #323232;
    color: #EEEEEE;
    outline: none;
}

.form-elements input[type="checkbox"] {
    margin-right: 5px;
}

.form-elements label {
    display: block;
    margin-bottom: 10px;
    color: #EEEEEE;
}

.form-elements a {
    color: #C19B76;
    text-decoration: underline;
}

.form-elements a:hover {
    color: #EEEEEE;;
}

.signup_btn {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    background-color: transparent;
    border: 1px solid #C19B76;
    color: #C19B76;
    padding-right: 30px;
    padding-left: 30px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
}

.signup_btn:hover {
    background-color: #a77c5a;
    color: #EEEEEE;
}

.msg_error {
    color: #C19B76;
    font-size: 12px;
}

.alert_success {
    background-color: #C19B76;
    color: #EEEEEE;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}
