.top-notification {
    color: #fff;
    position: absolute;
    width: 100%;
    z-index: 20;
    text-align: center;
    font-size: 20px;
    left: 0;
    right: 0;
    top: 100%;
    line-height: 1;
}

.top-notification.is-active{
    background-color: #4da4e3;
    padding: 10px 40px;
    position: relative;
    margin-top: 18px;
    margin-bottom: -18px;
}

.top-notification__text {
    font-size: 15px;
    line-height: 1.3;
}
.top-notification:not(.is-active) .top-notification__text{
    opacity:0
}
.top-notification__close {
    display: none;
    font-size: 15px;
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -12px;
    background-color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    color: #000;
    justify-content: center;
    cursor: pointer;
    padding: 4px;
}
.top-notification.is-active .top-notification__close{
    display: flex;
}
@media (max-width: 767px) {
    .top-notification {
        font-size: 16px;
    }
}