.cookie-notice-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: 20px;
    top: auto;
    display: flex;
    flex-direction: column;
    width: auto;
    padding: 30px 30px 26px 30px;
    gap: 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    z-index: 9999;
}
@media (min-width: 768px) {
    .cookie-notice-widget {
        width: 362px;
        bottom: 20px;
        right: 20px;
        left: auto;
    }
}
.cookie-notice-widget_closed {
    display: none;
}

.cookie-notice-widget__text {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
}

.cookie-notice-widget__buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.cookie-notice-widget__buttons__more {
    font-size: 12px;
    font-weight: 400;
    color: #7a7a7a;
    text-decoration: underline;
    cursor: pointer;
}
.cookie-notice-widget__buttons__accept {
    font-size: 14px;
    font-weight: 500;

    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-wrap: nowrap;
    min-height: 40px;
    padding: 0 20px;
    border-radius: 99px;
    box-sizing: border-box;
    background: linear-gradient(90deg, #2F416F 12.98%, #6D85C1 100%);
    
    color: var(--color-white);

    &:hover {
        background: linear-gradient(90deg, #6D85C1 0%, #2F416F 87.02%);
    }
}
