.cookie-consent-box{
    position: fixed;
    bottom: 0;
    right: 0;
    display: none;
    z-index: 1000;
    width: 715px;
    min-width: 390px;
    max-width: 800px;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 8px;
    flex-wrap: wrap;
    border-radius: 16px;
    border: 1px solid var(---hover, #D9D9D9);
    background: #FFF;
}

.cookie-img-box{
    display: flex;
    width: 52px;
    height: 52px;
    padding: 12px 11px;
    align-items: center;
    gap: 10px;
    border-radius: 100%;
    background: var(--Neutral-300, #EFF0F6);
}

.cookie-img{
    width: 28px;
    height: 28px;
}

.cookie-consent-text-box{
    display: flex;
    min-width: 360px;
    max-width: 380px;
    padding: 10px;
    align-items: center;
    gap: 10px;
}

.cookie-consent-button{
    width: 80px;
    color: rgb(108, 108, 108);
    background-color: rgb(255, 255, 255);
    /* border: 1px solid rgb(229, 229, 229); */
}

.cookie-consent-buttons-box{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    flex: 1 0 0;
}

.cookie-accept-btn{
    display: flex;
    padding: 14px 22px 16px 22px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    background: var(---, #3F8DFC);
    box-shadow: 0px 3px 12px 0px rgba(74, 58, 255, 0.18);
    cursor: pointer;
    color: #FFF;
}

.cookie-close-btn{
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.cookie-consent-box.hide {
    animation: hideCookieConsent 0.5s ease forwards;
}

@keyframes hideCookieConsent {
    to {
        opacity: 0;
        transform: translateY(100%);
        height: 0;
        padding: 0;
        margin: 0;
        visibility: hidden;
    }
}