.link-bar-wrapper {
    background: #ee1c24;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: 999999999;
    height: 50px;
    
}

.link-bar-wrapper.visible {
    display: flex;
}

.link-bar-wrapper a {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 100%;
    justify-content: space-between;
    height: 100%;
    padding: 0 16px;
    padding-left: 30px;
}

.link-bar-wrapper .text-wrapper .text {
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    position: relative;
    bottom: 3px;
    white-space: nowrap;

}


.link-bar-wrapper .logo-wrapper .logo {
    height: 28px;
    width: auto;
}

@media (max-width: 370x){
    .link-bar-wrapper .logo-wrapper .logo {
        height: 24px;
        width: auto;
    }
}
/*belka na gorze*/
.link-bar-wrapper.utm-source.visible {
    top: 0;
    left: 0;
    border: 1px solid #999999;
    background: #ffffff;
    text-align: center;
}

.link-bar-wrapper.utm-source.visible a{
    justify-content: center;
}
.link-bar-wrapper.utm-source.visible  .text{
    color: #000000;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    bottom: 0;
    white-space: normal;
}
.link-bar-wrapper.utm-source.visible  span.text-wrapper {
    width: 48%;
}
.link-bar-wrapper.utm-source.visible:before{
    width: 30px;
    height: 30px;
    background: url(/media/icons/close-bar.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    pointer-events: none;
}
body.utm_source {
    margin-top: 50px!important;
}
