.favorite-notifications {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    -webkit-box-shadow: 0 15px 40px 0 rgba(0, 36, 77, 0.1);
    box-shadow: 0 15px 40px 0 rgba(0, 36, 77, 0.1);
    background-color: #e31e25;
    color: #fff;
    -webkit-transition: opacity .3s ease-out, -webkit-transform .3s ease-out;
    transition: opacity .3s ease-out, -webkit-transform .3s ease-out;
    -o-transition: transform .3s ease-out, opacity .3s ease-out;
    transition: transform .3s ease-out, opacity .3s ease-out;
    transition: transform .3s ease-out, opacity .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
}

.favorite-notifications.notifications--show {
    top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.notifications__content {
    padding: 15px 32px 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-height: 60px;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.notifications__message {
    color: #fff;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    padding-right: 20px;
}

.notifications__message-title {
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 5px;
    line-height: 1.25;
}

.notifications__button {
    background-color: #fff;
    border-radius: 3px;
    color: #2d2d2d;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 15px;
    height: 29px;
    line-height: 29px;
    white-space: nowrap;
}

.notifications__button span {
    display: inline-block;
    margin-left: 14px;
}

.notifications__button:before {
    content: '';
    width: 15px;
    height: 12px;
    background: transparent url(../img/icn/heart-red.png) no-repeat;
    background-size: contain;
    display: inline-block;
}
