    #main-wrap {
        max-width: none;
    }
    .round_outer, .round_inner {
        margin: 0;
        padding: 0;
    }
    
    @font-face {
        font-family: jersey;
        src: url(/mmwgs/refresh/fonts/jersey.ttf);
    }
    @keyframes spin {
        from {
            transform:rotate(0deg);
        }
        to {
            transform:rotate(360deg);
        }
    }
    
    #batch-wrap {
        max-width: 74em;
        margin: 0 auto;
    }
    #batch-header {
        display: grid;
        grid-column-gap: 1rem;
        align-items: center;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .batch-logo {
        margin: 0 auto;
    }
    .batch-name h1 {
        font-family: jersey, sans-serif;
        font-size: 2.2rem;
        color: #FFF;
        text-align: center;
        margin-bottom: 0;
    }
    #batch-text {
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    #batch-text ul {
        list-style: none;
        margin-bottom: 1rem;
        margin-left: 0;
    }
    #batch-text ul li {
        line-height: 1.2;
        margin-bottom: .6rem;
    }
    #batch-text p.close-date {
        color: #000;
        font-weight: 800;
        margin: 1.5rem 0 1.5rem;
    }
    #batch-text p span {
        color: #ED1C24;
        font-weight: 800;
    }
    #batch-text hr {
        border-top: 1px solid #CCC;
    }
    #batch-text a.batch-pop {
        display: inline-block;
        background: #da291c;
        padding: .2rem 1rem;
        color: #FFF;
        font-size: .8rem;
        margin-top: .4rem;
        margin-bottom: 1.1rem;
        border-radius: 8px;
    }
    #batch-items {
        position: relative;
        min-height: 200px;
        text-align: center;
    }
    #batch-spinner {
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 50px;
        animation: spin 1000ms linear infinite;
        z-index: 10;
    }
    #batch-clock {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        max-width: 30em;
        margin: 0 auto 2rem;
        text-align: center;
    }
    #batch-clock p {
        margin-bottom: 0;
        line-height: 1.5;
        color: #000;
        font-weight: 800;
    }
    #batch-clock p.batch-time-text {
        font-size: 2rem;
    }

    @media only screen and (min-width: 40.063em) {
        #batch-header {
            grid-template-columns: auto 1fr;
            grid-column-gap: 1rem;
            align-items: center;
            padding: 1rem;
            margin-bottom: 1rem;
        }
        .batch-logo {
            border-right: 2px solid #FFF;
            padding-right: 1rem;
            margin: 0;
        }
        .batch-name h1 {
            font-size: 2.6rem;
            color: #FFF;
            text-align: left;
            margin-left: 1rem;
        }
    }