[data-el-cookie-alert]:not(.cookie-alert-show) {
    display: none;
}

[data-el-cookie-alert] .wrapper__alert {
    position: fixed;
    width: 100%;
    max-width: 577px;
    border-radius: 10px;
    bottom: 20px;
    left: 50%;
    z-index: 9000;
    transform: translate3d(-50%, 0, 0);
    padding: 0 28px;
    box-sizing: border-box;
}

[data-el-cookie-alert] .cookie-alert-content {
    width: 100%;
    padding: 33px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 10px 40px #00000024;
    background-color: white;
    box-sizing: border-box;
}

[data-el-cookie-alert] .cookie-alert-close {
    position: absolute;
    top: 10px;
    right: 37px;
    opacity: 0.6;
    cursor: pointer;

}

[data-el-cookie-alert] .cookie-alert-text {
    font-size: 12px;
    color: #707070;
    text-align: center;
    line-height: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

[data-el-cookie-alert] .cookie-alert-text-red {
    color: #ff2b34;
}

[data-el-cookie-alert] .cookie-alert-button {
    min-width: 125px;
    height: 47px;
    border-radius: 5px;
    margin-top: 10px;
    background-color: #ff2b34;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media only screen and (min-width: 585px) {
    [data-el-cookie-alert] .wrapper__alert {
        padding: unset;
    }

    [data-el-cookie-alert] .cookie-alert-close {
        right: 10px;
    }

    [data-el-cookie-alert] .cookie-alert-text {
        text-align: left;
    }
}

@media only screen and (min-width: 768px) {
    [data-el-cookie-alert] .wrapper__alert {
        right: 7%;
        left: unset;
        width: 577px;
        max-width: unset;
        transform: unset;
    }

    [data-el-cookie-alert] .cookie-alert-content {
        flex-direction: row;
    }

    [data-el-cookie-alert] .cookie-alert-button {
        margin-top: unset;
        margin-left: 20px;
    }
}