:root {
    --accent-color: #00a99d;
    --accent-hover: #4d99e0;
}

.cookie-popup-container {
    width: fit-content;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9999999;
    padding: 20px;
}

.cookie-popup-container .cookie-popup {
    max-width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0px;
    box-shadow: 0px 5px 60px -3px rgb(53 18 72 / 50%);
    overflow: visible;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    border-radius: 0;
    color: #fff;
}

.cookie-category {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 0 20px;
}



.cookie-popup-container .cookie-popup .cookie-popup-content-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    overflow: hidden;
    overflow-y: scroll;
    color: #fff;
    transition: all 0.1s;
    border-radius: 12px 12px 0 0;
    background: #00203f;
}

.cookie-popup-container .cookie-popup .cookie-popup-content-container.open {
    height: 300px !important;
}

.cookie-popup .cookie-panel ul {
    list-style-type: none;
    display: flex;
    padding-left: 0 !important;
    margin: 0 !important;

}

.cookie-cookies-display {
    padding: 20px;
}

.cookie-popup .cookie-panel ul li {
    width: 100%;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 15px;
    padding-top: 15px;
    /*    background-color: rgb(0, 0, 0);*/
    margin-bottom: 0;
}

.cookie-popup .cookie-panel ul li.active {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}




.cookie-cookies-display .cookie-category .choose {
    font-size: 14px;
    width: 20px;
    height: 20px;
    border-radius: 1px;
    border: 1px solid #ffffff;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
}

.cookie-cookies-display .cookie-category .choose.active {
    border-color: rgba(255, 255, 255, 0.2);
    background: #00C971;
}

.cookie-cookies-display .cookie-category .choose.active::before {
    content: "\2713";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    color: #fff;
}

/*.cookie-cookies-display .cookie-category .choose.active + .cookie-cat-name{
    color:#04383d;
}*/

.cookie-cookies-display .cookie-category .choose.always-on {
    border-color: rgba(255, 255, 255, 0.1);
    background: #00C971;
    cursor: auto;
}

.cookie-cookies-display .cookie-category .choose.always-on::before {
    content: "\2713";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    color: #fff;
}

/*.cookie-cookies-display .cookie-category .choose.always-on + .cookie-cat-name {
    color: #04383d;
}*/
.cookie-cookies-display .cookie-category .data .data-resume .cat-main,
.cookie-cookies-display .cookie-category .data .data-resume .cat-main>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-cookies-display .cookie-category .data .data-resume .cat-main {
    margin-bottom: 10px;
}

.data-resume .cookie-cat-name {
    font-weight: bold;
    cursor: pointer;
    transition: 300ms;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}

.cookie-cookies-display .cookie-category .data .data-resume .cat-describe {
    font-size: 14px;
    line-height: 18px;
}

.cookie-decide {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: #00203f;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
}


.cookie-decide .pre-cookie-box {
    padding: 7px 0 10px;
    flex-grow: 1;
}

.cookie-decide .pre-cookie-box a {
    color: #ab31dc;
}


.cookie-decide ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
    padding: 0;
    margin: 0 !important;
    flex-grow: 1;
}

.cookie-decide ul li {
    width: auto;
    text-align: center;
    cursor: pointer;
    transition: 300ms;
    color: #fff;

}


.cookie-decide ul li.allow-selection {
    display: none;
}

@media (max-width: 768px) {
    .cookie-decide .pre-cookie-box {
        font-size: 14px;
        line-height: 20px;
    }

    .cookie-decide ul li {
        padding: 0 15px;
    }

    .cookie-popup-container .cookie-popup {
        bottom: 0;
        top: auto;
    }

    .cookie-decide {
        border-radius: 3px;
        bottom: 0;
        padding: 15px;
    }

    .cookie-decide ul li {
        font-size: 14px;
    }
}


@media (max-width: 580px) {
    .cookie-decide ul li {
        font-size: 12px;
    }
}