/*Куки*/
.attention {
    position: fixed;
    z-index: 99999;
    left: 40px;
    right: 40px;
    bottom: 40px;
    transition: 1s;
    max-width: 420px;
    background-color: #fff;
    -webkit-filter: drop-shadow(0 0 5px rgba(100, 100, 100, 0.4));
    filter: drop-shadow(0 0 5px rgba(100, 100, 100, 0.4));
    -moz-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    -webkit-transform: translateX(-150%);
    transform: translateX(-150%);
}

.attention__container {
    padding: 40px;
}

.attention__actions {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.attention__actions a {
    font-size: 16px;
}

.attention__actions button {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    transition: all .25s ease-out;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    outline: none !important;
    width: auto;
    min-width: 0;
    height: 46px;
    padding: 0 26px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    color: #fff;
    background: #241530;
    border: none;
    font-size: 16px;
    margin: 0;
}

.attention__actions button:hover {
    background: #7826ad;
}
.attention.opened {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media screen and (max-width: 425px) {
    .attention {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }

    .attention__container {
        padding: 20px;
    }

    .attention__actions {
        justify-content: space-evenly;
    }
}