.notification-bar {
    background: #f7f7f7;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
    font-size: 14px;
    color: #333;
}

.notification-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.notification-content {
    text-align: center;
    line-height: 1.5;
    font-weight: 500;

    a {
        color: #000;
        text-decoration: underline;
    }

    strong {
        font-weight: 600;
    }
}

.notification-close {
    position: absolute;
    right: 20px;

    background: none;
    border: none;
    box-shadow: none;

    font-size: 18px;
    color: #666;

    cursor: pointer;

    padding: 0;

    transition: color .2s ease;

    &:hover {
        color: #000;
    }
}

@media (max-width: 768px) {

    .notification-inner {
        padding: 10px 40px 10px 15px;
    }

    .notification-content {
        font-size: 13px;
    }

    .notification-close {
        right: 15px;
    }
}

.notification-desktop {
    display:flex;
    justify-content:center;
    gap:30px;
}

.notification-mobile {
    display:none;
    position:relative;
    height:24px;
    overflow:hidden;
    text-align:center;
}

.mobile-message {
    position:absolute;
    width:100%;
    left:0;
    top:0;

    opacity:0;
    visibility:hidden;

    transition:all .4s ease;
}

.mobile-message.active {
    opacity:1;
    visibility:visible;
}

@media(max-width:768px){

    .notification-desktop{
        display:none;
    }

    .notification-mobile{
        display:block;
    }
}