.global-notification {
    position: relative;
    width: 100%;
    text-align: center;
    transition: height .3s ease;
    background-color: #1483d3;
}

.global-notification__text {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    width: 100%;
}

.global-notification__close {
    position: absolute;
    padding: 0;
    border: none;
    background: 0 0;
    outline: 0;
    width: 15px;
    height: 15px;
    top: 45%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.global-notification__close:before {
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    position: absolute;
    top: 8px;
    left: -4px;
    background: #000;
    transform: rotate(45deg);
}

.global-notification__close:after {
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    position: absolute;
    top: 8px;
    left: -4px;
    background: #000;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .global-notification {
        display: none;
        z-index: 10;
        position: fixed;
        bottom: 0;
    }

    .global-notification__text {
        padding: 0 35px 0 10px;
        font-size: 14px;
        line-height: 32px;
    }

    .global-notification__close {
        width: 20px;
        height: 20px;
        top: 12px;
        right: 5px;
        z-index: 5;
    }

    .global-notification__close:before,
    .global-notification__close:after {
        top: 12px;
        left: 1px
    }
}
