.cookie-notification__content {
    background: #FFF;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    max-width: 1115px;
    width: 100%;
    padding: 25px;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto;
}

.cookie-notification__text {
    color: #000;
    font-size: 14px;
    line-height: 21px;
    max-width: 764px;
}

.cookie-notification {
    position: fixed;
    width: 100%;
    padding: 0 15px;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
}



.cookie-notification[style*="block"] {
    transform: translateY(0);
}

.cookie-notification__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-notification__text {
    flex: 1;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}



.intec-ui.intec-ui-control-button.cookie-notification__button {
    padding: 13px 22px;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: 10px;
    /* 100% */
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.cookie-notification__button:hover {
    background-color: #1D327B;
}

@media (max-width: 768px) {
    .cookie-notification__content {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }
    .cookie-notification__text{
        text-align: left;
        max-width: 100%;
    }
    .cookie-notification__button {
        width: fit-content;
    }
}