.cookie-consent-modal {
    position: fixed;

    opacity: 0;
    user-select: none;

    right: 10px;
    bottom: var(--cookie-modal-height, -120px);
    transition: 
        bottom .5s cubic-bezier(0, 0, .2, 1.2),
        opacity .3s ease;

    width: min(calc(100% - 110px), 360px);

    z-index: 10;

    font-size: 14px;
    line-height: 18px;
}

.cookie-consent-modal.visible {
    opacity: 1;
    user-select: auto;
}

.cookie-consent-modal.open {
    bottom: 88px;
}

.cookie-consent_wrapper {
    background-color: white;
    box-shadow: 0 6px 40px 0 #1D161712;

    padding: 10px;
    border-radius: 10px;
    
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cookie-consent_title {
    font-size: 15px;
    font-weight: 500;
}

.cookie-consent_button {
    align-self: end;

    width: fit-content;
    height: auto;
    padding: 8px 18px;
}

@media screen and (min-width: 768px) {
    .cookie-consent-modal {
        bottom: 60px;
        right: var(--cookie-modal-width, -400px);
        transition: 
            right .5s ease,
            opacity .3s ease;

        font-size: 16px;
        line-height: 20px;
    }

    .cookie-consent-modal.open {
        right: 25px;
        bottom: 60px;
    }

    .cookie-consent_wrapper {
        padding: 15px;
        gap: 10px;
    }

    .cookie-consent_title {
        font-size: 17px;
        font-weight: 500;
    }

    .cookie-consent_button {
        padding: 12px 26px;
    }
}