@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap'); /* Popup */
.cookiepopup {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 99999999999;
    background-color: #fff;
    border: 1px solid #d2d2d2;
    color: #000;
    border-radius: 5px;
    max-width: 460px;
    width: 460px;
    padding: 20px;
    font-family: "Quicksand", sans-serif;
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.2);
}

.cookie_title {
    color: #000;
    font-size: 16px !important;
    font-weight: bold;
}

.cookie_description {
    font-size: 13px;
    margin-bottom: 20px;
}

.cookie_description a {
    font-weight: bold;
}

.cookie_form {
    display: none;
}

#cookieConsentForm input {
    position: relative !important;
    bottom: 0;
    display: none;
}

form#cookieConsentForm {
    height: 60vh;
    overflow: scroll;
}

/* Footer */
.cookie_footer {
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 31px;
}

.cookie_footer_buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.cookie_btn {
    font-family: "Quicksand", sans-serif;
    padding: 7px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.cookie_btn.accept {
    background-color: #e95018;
    border: 1px solid #e95018;
    color: white;
}

.cookie_btn.config {
    background-color: #e95018;
    border: 1px solid #e95018;
    color: white;
}

.cookie_btn.reject {
    background-color: #e95018;
    border: 1px solid #e95018;
    color: white;
}

.config {
    cursor: pointer;
}

/* Config Form */
.cookie_form_title {
    color: #000;
    font-size: 15px;
    font-weight: 700;
}

.cookie_form_description {
    margin-top: 10px;
    font-size: 14px!important;
    font-weight: 300;
}

.cookie_check_label {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    transition: 250ms;
    padding: 5px!important;
    cursor: pointer;
    background-color: #e950188c;
}

#cookieConsentForm label p {
    font-size: 14px;
    padding: 0px 0px;
    margin: 10px 0px;
}

.checkbox_cookie_back {
    width: 55px;
    height: 25px;
    border-radius: 30px;
    overflow: hidden;
}

.cookiepopup > [type=checkbox]:disabled+label {
    opacity: 0.3;
}

.cookiepopup > [type=checkbox]:checked+label {
    background: white;
}

.cookiepopup > [type=checkbox]:checked+label::before, [type=checkbox]:not(:checked)+label:before {
    background: #fff!important;
}

.cookiepopup > [type=checkbox]:not(:checked)+label {
    background: #868686!important;
}

.cookie_check_label:before {
    content: "" !important;
    width: 20px !important;
    height: 20px !important;
    position: absolute !important;
    border-radius: 100% !important;
    inset: 0 !important;
    margin: auto 0px !important;
    left: 4px !important;
    bottom: 0px !important;
    transition: ease-in 250ms !important;
}

.cookie_check_label:after {
    display: none !important;
}

.cookie_form label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 5px;
    flex-wrap: wrap;
}

.cookie_check:checked + label:before {
    left: 32px!important;
    background: white !important;
}

.cookie_check:checked + label {
    background: #e95018;
}

.cookie_back {
    align-items: center;
    cursor: pointer;
}

/* Mobile */
@media screen and (min-width: 300px) and (max-width: 500px) {
    .cookiepopup {
        width: 95%!important;
        max-width: 95%!important;
    }
}
