.push-notification {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: #383838;
    z-index: 50;
    font-family: "Roboto", sans-serif;
    /* display: none; */
}

.push-notification.active {
    animation: top 3s ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes top {
    from {
        top: -100%;
    }

    to {
        top: 0;
    }
}

.push-notification_wrap {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.push-notification_close {
    position: relative;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.push-notification_close:before,
.push-notification_close:after {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 7px;
}

.push-notification_close:before {
    transform: rotateZ(45deg);
}

.push-notification_close:after {
    transform: rotateZ(-45deg);
}

.push-notification_content {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.push-notification_icon {
    display: block;
    max-width: 45px;
    margin-right: 10px;
    border-radius: 10px;
}

.push-notification_description h3 {
    font-size: 14px;
    font-weight: 700;
    max-width: 131px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #fff;
    text-transform: capitalize;
}

.push-notification_description p {
    font-size: 12px;
    margin-top: 6px;
    color: #bbbbbb;
}

.push-notification_btn {
    font-family: "Roboto", sans-serif;
    display: inline-block;
    text-align: center;
    background: #2598c3;
    border-radius: 25px;
    color: #ffffff;
    padding: 8px 12px;
    font-size: 15px;
    line-height: 1;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
}

/* popup */
.popup__block {
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    bottom: 20px;
    display: none;
}

.popup__close {
    border: none;
    background: none;
    padding: 0;
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
    padding: 5px;
    cursor: pointer;
    display: flex;
    width: 25px;
    height: 25px;
}

.popup-curent {
    max-width: 285px;
    width: 100%;
    border-radius: 8px;
    margin: auto;
    padding: 35px 25px;
    position: relative;
    color: #06070B;
    background: #ffffff;
    font-family: 'Roboto';
    box-sizing: border-box;
}

.popup-curent:after {
    content: '';
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 11px 11px 0 11px;
    border-color: #FFFFFF transparent transparent transparent;
    transform: rotate(0deg);
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -11px;
}

.popup-img {
    max-width: 50px;
    margin: 0 auto 20px;
}

.popup-img img {
    border-radius: 5px;
    width: 100%;
}

.popup-titel {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: none;
}

.popup-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #708483;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: none;
}

.popup-list {
    list-style-type: auto;
    list-style-position: outside;
    padding: 0;
    margin: 0;
    margin-left: 15px;
}

.popup-item {
    font-size: 15px;
    line-height: 22px;
    margin-top: 8px;
    text-shadow: none;
}

.popup-item b {
    font-weight: 700;
    margin-left: 3px;
}

.popup-item__point {
    display: inline-flex;
    align-items: center;
}

.popup-item__point svg {
    margin-left: 10px;
}

.popup-btn-wrap {
    display: flex;
    justify-content: center;
}