.global-notification-header-mobile {
    display: none;
    background: #000000;
    height: 45px;
    text-align: center;
    position: relative;
}

.global-notification-header-mobile__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 45px;
    color: #ffffff;
}
.global-notification-header-mobile__close {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 14px;
    height: 14px;
}

.global-notification-header-mobile__close svg {
    width: 85%;
    height: 85%;
}

.global-notification-header-mobile__close svg path {
    fill: #fff;
}

@media (max-width: 768px) {
    .global-notification-header-mobile {
        display: block;
    }
}