#tsu-cookie-consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 9999;
    flex-wrap: wrap;
}

#tsu-cookie-consent-popup p {
    margin: 0 0 20px 0;
    font-size: 16px;
}

.tsu-cookie-btn {
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    background: transparent;
}

.tsu-cookie-btn:hover {
    background-color: #d2d2d2;
    color: #d2d2d2;
}

.tsu-accept-btn {
    border: 2px solid #3f3eed;
    background-color: #3f3eed;
}

.tsu-cookie-btn:hover {
    border: 2px solid #201fe5;
    background-color: #0a09b0;
    color: white;
}

.tsu-title-cookie {
    font-size: 24px;
    margin-bottom: 20px;
}

.tsu-cookie-body {
    width: 70%;
}

.tsu-settings-items {
    cursor: pointer;
}

.buttons-cookie {
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    justify-content: center;
}

.tsu-title-cookie, .tsu-content-block {
    text-align: left;
}

.tsu-cookie-banner {
    display: flex;
    flex-direction: row;
}

.tsu-cookie-settings-content {
    width: 100%;
}

#tsu-cookie-consent-popup .tsu-cookie-settings-content p.tsu-content-block {
    font-size: 14px;
    margin: 25px 0;
}

.tsu-always-active {
    color: green;
}
.tsu-settings-label-checkbox .container {
    --color: #a5a5b0;
    --size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: var(--size);
    user-select: none;
    fill: var(--color);
    margin-top: -6px;
}

.tsu-settings-label-checkbox .container .eye {
    position: absolute;
    animation: keyframes-fill .5s;
    fill: red;
}

.tsu-settings-label-checkbox .container .eye-slash {
    position: absolute;
    animation: keyframes-fill .5s;
    display: none;
    fill: green;
}

.tsu-settings-label-checkbox .container input:checked ~ .eye{
    display: none;
}

.tsu-settings-label-checkbox .container input:checked ~ .eye-slash  {
    display: block;
}

.tsu-settings-label-checkbox .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* ------ Animation ------ */
@keyframes keyframes-fill {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }
}

.settings-items-block {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: baseline;
}

#tsu-cookie-settings-popup {
    max-height: 400px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: white #2f3136;
}
/* Chrome, Safari,Edge) */
#tsu-cookie-settings-popup::-webkit-scrollbar {
    width: 12px;
}
#tsu-cookie-settings-popup::-webkit-scrollbar-track {
    background: #2f3136;
}

#tsu-cookie-settings-popup::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 6px;
    border: 3px solid #2f3136;
}

#tsu-popup-close {
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 20px;
}

@media screen and (max-width: 1224px) {
    #tsu-cookie-consent-popup {
        flex-direction: column;
    }
    .tsu-cookie-body, .buttons-cookie {
        width: 100%;
        margin-bottom: 30px;
    }
}


@media screen and (max-width: 500px) {
    .settings-items-block {
        justify-content: space-between;
    }
    .buttons-cookie {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .tsu-cookie-btn {
        width: 46%;
        order: 2;
    }
    .tsu-accept-btn {
        order: 1;
        width: 100%;
    }
    .tsu-settings-label-checkbox {
        width: 20%;
    }
    .eye-slash {
        margin-top: -10px;
    }
}


@media screen and (max-width: 375px) {
        .tsu-cookie-btn {
        width: 100%;
        order: 2;
    }

}