:root {
    --cookies_consent_text_size: 0.9vmax;
    --cookies_consent_text_line_height: 1.2vmax;
    --cookies_consent_popup_text_size: 1.0vmax;
    --cookies_consent_popup_text_line_height: 1.8vmax;
}

.cookies_consent_2022_master_box {
    width: 100%;
    position: fixed;
    bottom: -30%;
    left: 0;
    background-color: #8a8c8e;
    padding: 10px 0;
    border-top: 2px solid #000;
    z-index: 999999999999999;
    text-align: center;
    transition: 1s all ease-in-out;
}

.cookies_consent_2022_master_box.cookies_container_open {
    animation-name: show_cookies;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0s;
}

.cookies_consent_2022_master_box.cookies_container_close {
    animation-name: hide_cookies;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0s;
}

@keyframes show_cookies {
    to {
        bottom: 0;
    }
}

@keyframes hide_cookies {
    to {
        bottom: -30%;
    }
}

.cookies_consent_2022_text {
    width: 70%;
    font: 400 var(--cookies_consent_text_size)/var(--cookies_consent_text_line_height) 'Effra';
    text-align: center;
    padding: 0;
    margin: 0 auto;
    position: relative;
    color: #fff;
}

.cookies_consent_2022_hyperlink {
    color: #f78f1e;
    font-weight: 600;
}

.cookies_consent_2022_buttons_container {
    width: 70%;
    margin: 0 auto;
    position: relative;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}

.cookies_consent_2022_buttons {
    display: block;
    flex: 0 1 25%;
    position: relative;
    font: 600 var(--cookies_consent_text_size)/var(--cookies_consent_text_size) 'Effra';
    padding: 15px 0 10px 0;
    border-radius: 10px;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}

#cookies_accept {
    background-color: rgba(99, 188, 1, 1);
    transition: 0.2s all ease-in-out;
    /* background-color: #f78f1e; */
}

#cookies_accept:hover {
    background-color: #fff;
    color: rgba(99, 188, 1, 1);
    border: 1px solid rgba(99, 188, 1, 1);
}

#cookies_reject {
    background-color: #e20d0d;
}

#cookies_reject:hover {
    background-color: #fff;
    color: #e20d0d;
    border: 1px solid #e20d0d;
    transition: 0.2s all ease-in-out;
}

#more_options {
    background-color: #0a4b9d;
}

#more_options:hover {
    background-color: #fff;
    color: #0a4b9d;
    border: 1px solid #0a4b9d;
    transition: 0.2s all ease-in-out;
}

.cookies_consent_2022_more_options_master_container {
    width: 0;
    height: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    /* z-index: -99; */
}

.cookies_consent_2022_more_options_master_container.open {
    z-index: 9999999999999999;
    animation-name: cookies_more_open;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.cookies_consent_2022_more_options_master_container.close {
    z-index: 9999999999999999;
    animation-name: cookies_more_close;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes cookies_more_open {
    0% {
        width: 0;
        height: 0;
    }
    50% {
        width: 100%;
        height: 1px;
    }
    100% {
        width: 100%;
        height: 100%;
    }
}

@keyframes cookies_more_close {
    0% {
        width: 100%;
        height: 100%;
    }
    50% {
        width: 100%;
        height: 1px;
    }
    100% {
        width: 0;
        height: 0;
    }
}

.cookies_consent_2022_more_options_container {
    width: 70%;
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 0 0 10px 0;
    max-height: 90%;
}

.cookies_consent_2022_logo {
    width: 100%;
    position: relative;
    margin: 0 auto 10px auto;
    padding: 10px 0 10px 0;
    text-align: center;
    border-bottom: 1px solid #000;
}

.cookies_consent_2022_logo_img {
    max-width: 20%;
    position: relative;
    margin: 0 auto;
}

.cookies_consent_2022_close {
    width: 2vmax;
    height: 2vmax;
    cursor: pointer;
    position: absolute;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.cookies_consent_2022_close_line {
    width: 100%;
    background-color: #000;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 50%;
    transition: all 1s ease-in-out;
}

#cookies_consent_2022_close_line_mob_menu_1 {
    transform: rotate(-45deg);
}

#cookies_consent_2022_close_line_mob_menu_2 {
    transform: rotate(45deg);
}

.cookies_consent_2022_popup_title {
    width: 100%;
    position: relative;
    margin: 0 0 10px 0;
    font: 600 calc(var(--cookies_consent_popup_text_size) + 0.2vmax)/calc(var(--cookies_consent_popup_text_size) + 0.2vmax) 'Effra';
    color: #000;
    text-align: center;
}

.cookies_consent_2022_popup_text {
    width: 90%;
    position: relative;
    margin: 0 auto;
    font: 400 var(--cookies_consent_popup_text_size)/var(--cookies_consent_popup_text_line_height) 'Effra';
    color: #8a8c8e;
    text-align: justify;
}

.cookies_consent_2022_options_outer_container {
    width: 100%;
    position: relative;
    border-top: 1px solid #000;
    margin: 10px 0 0 0;
}

.cookies_consent_2022_options_container {
    width: 90%;
    position: relative;
    margin: 0 auto 0 auto;
    padding: 10px 0 13px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
    border-bottom: 1px solid #8a8c8e;
}

.cookies_consent_2022_options_container:last-of-type {
    border-bottom: none;
}

.cookies_consent_2022_options_text_container {
    flex: 0 1 85%;
    position: relative;
}

.cookies_consent_2022_options_title {
    width: 100%;
    position: relative;
    font: 600 calc(var(--cookies_consent_popup_text_size) + 0.0vmax)/calc(var(--cookies_consent_popup_text_size) + 0.0vmax) 'Effra';
    padding: 7px 0 15px 0;
}

.cookies_consent_2022_options_text {
    width: 100%;
    position: relative;
    font: 400 calc(var(--cookies_consent_text_size) + 0.0vmax)/calc(var(--cookies_consent_text_line_height) + 0.0vmax) 'Effra';
    color: #8a8c8e;
}

.cookies_consent_2022_options_button_container {
    flex: 0 1 10%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.cookies_consent_2022_cookies {
    width: fit-content;
    margin: 4px 0 0 10px;
}

.cookies_consent_2022_cookies input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -2;
    padding: 0;
    margin: 0;
    display: none;
}

.cookies_consent_2022_cookies input[type="checkbox"]+label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    border-radius: 50px;
    margin: 0;
    cursor: pointer;
    /* box-shadow: -8px -8px 97px rgb(255 255 255 / 40%), 1px 4px 16px rgb(0 0 0 / 55%); */
    background-color: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.8);
    outline: none;
    padding: 0;
    margin: 0;
    transition: .3s ease-in-out;
}

#cookies_consent_2022_essential_cookies[type="checkbox"]:checked+label,
#cookies_consent_2022_performance_cookies[type="checkbox"]:checked+label {
    background-color: rgba(99, 188, 1, 0.2);
    outline: 1px solid rgba(99, 188, 1, 0.8);
    border: 1px solid rgba(99, 188, 1, 0.8);
    transition: .3s ease-in-out;
}

#cookies_consent_2022_essential_cookies[type="checkbox"]+label::before,
#cookies_consent_2022_performance_cookies[type="checkbox"]+label::before {
    position: absolute;
    content: 'Οχι';
    font: 600 12px/25px 'Open Sans', sans-serif;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(255, 0, 0, 1);
    color: #fff;
    /* box-shadow: -3px -3px 5px rgba(255, 255, 255, .5), 3px 3px 5px rgba(0, 0, 0, .25); */
    transition: .3s ease-in-out;
    padding: 0;
    margin: 0;
}

#cookies_consent_2022_essential_cookies[type="checkbox"]:checked+label::before,
#cookies_consent_2022_performance_cookies[type="checkbox"]:checked+label::before {
    left: 55%;
    content: 'Ναι';
    color: #fff;
    background-color: rgba(99, 188, 1, 1);
    transition: .3s ease-in-out;
}

.cookies_consent_2022_popup_button_container {
    padding-top: 10px;
    position: relative;
    border-top: 1px solid #000;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#save_selection {
    background-color: #f78f1e;
}

#save_selection:hover {
    background-color: #fff;
    color: #f78f1e;
    border: 1px solid #f78f1e;
    transition: 0.2s all ease-in-out;
}

@media screen and (orientation: portrait) and (max-width: 1050px) {
     :root {
        --cookies_consent_text_size: 2.3vmax;
        --cookies_consent_text_line_height: 3.0vmax;
        --cookies_consent_popup_text_size: 2.4vmax;
        --cookies_consent_popup_text_line_height: 3.5vmax;
    }
    .cookies_consent_2022_text {
        width: 90%;
        text-align: justify;
    }
    .cookies_consent_2022_buttons_container {
        width: 90%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .cookies_consent_2022_buttons {
        width: 100%;
        margin-bottom: 10px;
    }
    .cookies_consent_2022_buttons:last-of-type {
        margin-bottom: 0px;
    }
    .cookies_consent_2022_more_options_container {
        width: 100%;
        border-radius: 0px;
        padding: 1% 0;
        max-height: 100%;
    }
    .cookies_consent_2022_logo {
        padding: 10px 0;
    }
    .cookies_consent_2022_logo_img {
        max-width: 50%;
    }
    .cookies_consent_2022_close {
        width: 3vmax;
        height: 3vmax;
    }
    .cookies_consent_2022_popup_button_container {
        padding-top: 18px;
        padding-bottom: 18px;
        flex-direction: column;
    }
    #save_selection {
        width: 80%;
    }
    .cookies_consent_2022_master_box {
        bottom: -100%;
        transition: 1s all ease-in-out;
    }
    @keyframes hide_cookies {
        to {
            bottom: -100%;
        }
    }
}

@media screen and (orientation: landscape) and (max-width: 1050px) {
     :root {
        --cookies_consent_text_size: 2.3vmax;
        --cookies_consent_text_line_height: 3.0vmax;
        --cookies_consent_popup_text_size: 2.4vmax;
        --cookies_consent_popup_text_line_height: 3.5vmax;
    }
    .cookies_consent_2022_text {
        width: 90%;
        text-align: justify;
    }
    .cookies_consent_2022_buttons_container {
        width: 90%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .cookies_consent_2022_buttons {
        width: 100%;
        margin-bottom: 10px;
    }
    .cookies_consent_2022_buttons:last-of-type {
        margin-bottom: 0px;
    }
    .cookies_consent_2022_more_options_container {
        width: 100%;
        border-radius: 0px;
        padding: 1% 0;
        max-height: 100%;
    }
    .cookies_consent_2022_logo {
        padding: 10px 0;
    }
    .cookies_consent_2022_logo_img {
        max-width: 25%;
    }
    .cookies_consent_2022_close {
        width: 3vmax;
        height: 3vmax;
    }
    .cookies_consent_2022_popup_button_container {
        padding-top: 18px;
        padding-bottom: 18px;
        flex-direction: column;
    }
    #save_selection {
        width: 80%;
    }
    .cookies_consent_2022_master_box {
        bottom: -100%;
        transition: 1s all ease-in-out;
    }
    @keyframes hide_cookies {
        to {
            bottom: -100%;
        }
    }
}