/* CSS Document */

.global-info-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    background: #3d4b58;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.12);
    color: #fff;
    text-align: center;
}

button.global-info-bar__close {
    background: none;
    border: 0;
    color: #fff;
}

.global-info-bar__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.global-info-bar__text {
    line-height: 1.4;
}

.global-info-bar__text p {
    margin: 0;
}

.global-info-bar__link {
    flex-shrink: 0;
    display: inline-block;
    padding: 8px 18px;
    text-decoration: none;
    background: #f18138;
    color: #fff;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .global-info-bar__inner {
        padding: 12px 15px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
}