.cookie-message {
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    z-index: 9999999;
}

.cookie-message__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: fit-content;
    margin: 0 auto;
    padding: 8px 10px;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cookie-message__text {
    display: flex;
    gap: 4px;
}

.cookie-message__link {
    color: #FF8C00;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-underline-offset: auto;
}

.cookie-message__link:hover, .cookie-message__link:hover a {
    text-decoration: none;
}

.cookie-message__button {
    cursor: pointer;
    padding: 8px 20px;
    background-color: #ff8c00;
    color: #fff;
    font-weight: 500;
}

.cookie-message__button:hover {
    background-color: #ffba66;
}

.hide {
    display: none;
}

@media (max-width: 767px) {
    .cookie-message__content {
        gap: 10px;
        font-size: 11px;
        padding: 8px 20px;
    }

    .cookie-message__text {
        flex-direction: column;
        gap: unset;
        text-align: right;
    }

    .cookie-message__link {
        font-size: 11px;
    }

    .cookie-message__button {
        max-width: 98px;
        text-align: center;
        font-size: 11px;
    }

}
