.header-top-message {
    background-color: #f1f1f4;
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: all .3s;
    height: 100%;
}

.header-top-message.show {
    max-height: 300px;
}

.header-top-message__wrapper {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.header-top-message__content {
    position: relative;
    padding: 8px 20px 8px 0;
    text-align: center;
}

.header-top-message__close {
    position: absolute;
    right: -4px;
    top: 8px;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: #565f78;
    transition: color .3s;
    outline: none !important;
}

.header-top-message__close:hover {
    color: #231f20;
    outline: none !important;
}

.header-top-message__close:focus {
    outline: none !important;
}

.header-top-message__text {
    font-size: 13px;
    font-weight: 600;
    line-height: 140%;
    color: #231f20;
}

.header-top-message__text strong {
    color: #d2233c;
    font-weight: 600;
}


@media only screen and (max-width: 767px) {
    .header-top-message__text {
        font-size: 12px;
    }

    .header-top-message__wrapper {
        padding: 0 10px;
    }

    .header-top-message__text strong {
        display: block;
    }
}
