@import url(http://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&amp;display=swap);

.gdpr_hidden {
    display: none !important;
}

.gdpr_visible {
    display: block !important;
}

.gdpr {
    z-index: 2147483002;
    position: fixed;
    max-width: 500px;
    bottom: 10px;
    right: 0;
    margin: 0 20px auto auto;
}

.gdpr_text {
    grid-column-start: 1;
    grid-column-end: 3;
    font-family: "Inter";
    color: #fff;
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.gdpr_container {
    display: grid;
    grid-template-columns: auto auto;
    background: #272730;
    color: #fff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.24);
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding: 30px 35px;
    margin: 0 auto;
    align-items: center;
    height: auto;
    min-height: 180px;
    max-width: 1350px;
}

.gdpr_button_container {
    display: flex;
    grid-column-start: 2;
    grid-column-end: 3;
}

.gdpr_button {
    font-family: inherit;
    font-weight: 500;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    padding: 0 10px;
    border-radius: 4px;
    border: none;
    color: #fff;
    cursor: pointer;
    height: 48px;
    width: 205px;
    font-size: 18px;
}

.gdpr_manage_cookies_button {
    background: none;
    margin-right: 5px;
}

.gdpr_manage_cookies_button:hover {
    background: rgba(64, 87, 109, 1);
    color: #fff;
}

.gdpr_accept_cookies_button {
    background: #008577;
}

.gdpr_accept_cookies_button:hover {
    background: #004d45;
    color: #fff;
}

@media only screen and (max-width: 1240px) {
    .gdpr_container {
        margin: 0 20px;
    }
}

@media only screen and (max-width: 768px) {
    .gdpr_container {
        display: block;
        box-shadow: unset;
        border-radius: unset;
        margin: 0;
        flex-direction: column;
    }

    .gdpr {
        bottom: 0;
        margin: 0;
    }

    .gdpr_text {
        margin-bottom: 15px;
    }

    .gdpr_manage_cookies_button {
        margin-right: 0;
        order: 3;
        margin-top: 5px;
    }

    .gdpr_button {
        width: 100%;
    }
    
    .gdpr_button_container {
      display: block;
    }
}

/* SWITCH  */
.gdpr_switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.gdpr_switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.gdpr_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d1d1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 100px;
}

.gdpr_slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.gdpr_slider {
    background-color: #0082ff;
}

input:focus+.gdpr_slider {
    box-shadow: 0 0 1px #0082ff;
}

input:checked+.gdpr_slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

/* GDPR MODAL */
.gdpr_modal {
    z-index: 2147483002;
    position: fixed;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    overflow: scroll;
    background-color: rgba(57, 76, 96, 0.15);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    font-family: "Inter";
    display: none;
}

.gdpr_modal_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    max-width: 530px;
    margin: 30px auto;
    background: #ffffff;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
    border-radius: 6px;
    color: #2b2b35;
}

.gdpr_modal_cookies {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.gdpr_modal_header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.gdpr_modal_main_heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    font-family: "Inter";
    color: #2b2b35;
    margin: 0;
}

.gdpr_modal_heading {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    font-family: "Inter";
    color: #2b2b35;
    margin: 0;
}

.gdpr_modal_close_button {
    cursor: pointer;
}

.gdpr_modal_special_text {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #005e54;
}

.gdpr_modal_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.gdpr_modal_link_container {
    margin: 10px 0;
}

.gdpr_modal_link {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-decoration: underline;
}

.gdpr_modal_button_group {
    display: flex;
    justify-content: end;
}

.gdpr_modal_button {
    font-family: inherit;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #2b2b35;
    margin-left: 15px;
    cursor: pointer;
}

.gdpr_modal_list_control {
    display: flex;
    margin-top: 10px;
    cursor: pointer;
}

.gdpr_modal_list_control_text {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    font-family: "Inter";
    color: #2b2b35;
    margin: 0;
}

.gdpr_modal_arrow_image {
    margin-left: 10px;
}

.gdpr_modal_list {
    display: none;
    margin-top: 15px;
    margin-left: 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.gdpr_modal_button_save_container {
    width: 100%;
    display: flex;
    justify-content: end;
}

.gdpr_modal_button_save {
    background: #0073e6;
    border-radius: 4px;
    padding: 10px 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.gdpr_modal_button_save:hover {
    background: #0162c3;
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .gdpr_modal_container {
        max-width: unset;
        width: 100%;
        margin: 0;
        box-shadow: unset;
        border-radius: 0;
    }

    .gdpr_modal_button_save {
        width: 100%;
    }
}
