#cookie-banner-overlay {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    z-index: 1000000;
    max-width: 25.3%;
    margin: 10px;
    padding: 24px;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    background: #fff;
}

.cookie-banner-content {
    max-width: 1200px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner-content p {
    color: #000;
    line-height: 20px;
    font-size: 14px;
}

.cookie-banner p {
    margin: 0;
    padding: 0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
}

.cookie-accept-btn {
    background-color: #4b9e85;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
}

.cookie-settings-btn {
    background-color: #e0f2f1;
    color: #4b9e85;
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
}

#cookie-settings-form .form-check.form-switch {
    width: 100%;
    padding: 14px;
    background-color: #e6f7f2;
    border-radius: 5px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 30px;
}
#cookie-settings-form .form-check.form-switch .form-check-label {
    font-weight: 500;
    color: rgb(33, 37, 41);
    font-size: 1rem; /* 16px */
}

/* General styles for form-check-input */
#cookie-settings-form .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #d9d9d9;
    margin-left: -35px;
    box-shadow: none !important;
    appearance: none;
    -webkit-print-color-adjust: exact;
}

/* Disabled state for form-check-input */
#cookie-settings-form .form-check-input:disabled {
    pointer-events: none;
    opacity: .5;
    filter: none;
}

#cookieSettingsModal .modal-footer button {
    height: 44px;
    padding: 0 30px;
    font-size: 18px;
    background: #6bd1bb;
    border: none;
    font-weight: 600;
}

#cookieSettingsModal .modal-header .btn-close {
    background-color: #e6f7f2;
    padding: 14px;
    font-size: 12px;
    color: #000;
}

#cookieSettingsModal .modal-header {
    border-bottom: 0px !important;
}

/* Styles for checked form-check-input */
#cookie-settings-form .form-check-input:checked {
    background-color: transparent;
    box-shadow: none;
    border-color: #6bd1bb !important;
}

/* Styles specific to form-switch */
#cookie-settings-form .form-switch .form-check-input {
    width: 2.5em;
    margin-left: -2.5em;
    border-radius: 2em;
    transition: background-position .15s ease-in-out;
}

/* Align form-check-input inside form-check */
#cookie-settings-form .form-check .form-check-input {
    float: left;
}


#cookie-settings-form .form-check.form-switch .form-check-input {
    margin-left: 0;
    margin-top: 2px;
}

#cookie-settings-form .form-check-input:checked[type=checkbox] {
    background-image: url(https://www.myearthstone.com/_next/static/media/check-active-bg.40b40397.png);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 15px;
    }
}