﻿@media all {
    .notification-layout {
        width: 100%;
        border-top: 1px solid transparent;
        border-bottom: 1px solid transparent;
    }

    @media only screen and (max-width: 1120px) {
        .notification-layout {
            border-bottom: 1px solid #C3C5C8;
        }
    }

    .notification-layout .notification-layout-inner {
        height: 28px;
        font-size: 12px;
        font-weight: 500;
        width: 1020px;
        max-width: 100%;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-family: "brandon-grotesque",avenir,sans-serif;
        line-height: 1.2em;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 auto;
    }

    @media only screen and (max-width: 48em) {
        .notification-layout .notification-layout-inner {
            height: 28px;
            font-size: 10px;
        }
    }

    .notification-layout .notification-text {
        margin: 0 30px;
    }

    @media only screen and (max-width: 48em) {
        .notification-layout .notification-text {
            display: none;
        }
    }

    .notification-layout .notification-link--desktop {
        text-decoration: underline;
        -webkit-transition: all .15s ease 0s;
        transition: all .15s ease 0s;
    }

        .notification-layout .notification-link--desktop:hover {
            opacity: .8;
        }

    @media only screen and (max-width: 48em) {
        .notification-layout .notification-link--desktop {
            display: none;
        }
    }

    .notification-layout .notification-link--mobile {
        display: none;
        text-decoration: underline;
        -webkit-transition: all .15s ease 0s;
        transition: all .15s ease 0s;
    }

    @media only screen and (max-width: 48em) {
        .notification-layout .notification-link--mobile {
            display: block;
        }
    }

    .notification-layout .notification-link--mobile:hover {
        opacity: .8;
    }

    @media only screen and (max-width: 48em) {
        .notification-layout .countdown {
            margin-right: 1em;
        }
    }

    @media only screen and (max-width: 30em) {
        .notification-layout .countdown {
            display: none !important;
        }
    }
}
