.mb-notification-wrap {
    width: 100%;
    background: #424242;
    padding: 0;
    color: #fff;
}

.mb-notification-wrap.top-normal {
    display: none;
    position: absolute;
    z-index: 9999;
}

.mb-notification-wrap.top-fixed {
    display: none;
    position: fixed;
    z-index: 9999;
}

.mb-notification-wrap.bottom-fixed {
    display: none;
    position: fixed;
    z-index: 9999;
    bottom: 0;
}

.mb-notification-wrap .mb-notice-date {
    background: #ea4335;
    max-width: 400px;
    min-width: 400px;
    overflow: hidden;
    float: left;
    display: flex;
}

.mb-notification-wrap .mb-message {

    width: calc(100% - 400px);
    max-width: calc(100% - 400px);
    float: right;
    padding: 10px;
}

.mb-notification-wrap .mb-message p .coupon-code {
    border: 2px dashed #949494;
    padding: 0 15px 4px 15px;
    margin-left: 2px;
}

.mb-notification-wrap .mb-message p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 16px;
    line-height: 30px;

}

.mb-notification-wrap:after {
    content: '';
    display: block;
    clear: both;
}

.mb-notification-wrap .mb-container {
    position: relative;
}

.mb-notification-wrap .close {

    position: absolute;
    right: 20px;
    background: #444;
    border-radius: 100%;
    height: 25px;
    width: 25px;
    font-size: 15px;
    text-align: center;
    line-height: 25px;
    font-weight: bold;
    cursor: pointer;
    top: 5px;
    color: #fff;

}

.mb-notification-wrap .close:hover {
    background: #000;
}

.mb-notification-wrap .date {
    font-size: 22px;
    padding: 0 15px;
    color: #fff;
    font-weight: bold;
    border-right: 1px solid rgba(255, 255, 255, .2);
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    line-height: 50px;
    height: 50px;
}

@media (max-width: 1180px) {

    .mb-notification-wrap .mb-message p {
        font-size: 1em;
    }

    .mb-notification-wrap .date {
        font-size: 20px;
    }

    .mb-notification-wrap .mb-notice-date {
        max-width: 300px;
        min-width: 300px;
    }

    .mb-notification-wrap .mb-message {
        width: calc(100% - 300px);
        max-width: calc(100% - 300px);
    }
}

@media (max-width: 900px) {

    .mb-notification-wrap .mb-notice-date {
        max-width: 100%;
        width: 100%;
        float: none;
    }

    .mb-notification-wrap .mb-message {
        width: 100%;
        float: none;
        max-width: 100%;
        text-align: center;
    }
}