/*********************************************************************************
**********************************************************************************
    Responsive CSS
**********************************************************************************
*********************************************************************************/
@media (max-width: 888px) {


    /* General Layout adjustments */
    #container, #siteCol, .content, .colMid, .colMidMask, .template, .colRightMask {
        width: 100%;
        display: block;
    }

    #siteCol {
        padding: 0px;
        margin: 0px;
        float: none;
    }

    #adCol {
        float: none;
    }

    .content {
        padding: 20px 12px 20px;
        margin: 0;
        float: none;
        min-height: 400px;
    }

    .content-padding {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hide-in-mobile {
        display: none !important;
    }


    /* Site overlay: TeamNavigation ---------------------------- */
    #site-overlay {
        pointer-events: none;
        z-index: 800;
        background-color: rgba(0, 0, 0, 0.7);
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        display: none;
    }


    /* Utility Classes */
    .gutter-overflow {
        margin-right: -12px;
        margin-left: -12px;
    }


    /* --- Game Hightlight Next / previous game -------------------------------------------------------------------- */
    .mobile-tabs .tabs {
        margin: 0;
        padding: 0;
        list-style: none;
        display: table;
        width: 100%;
        text-align: center;
    }
        .mobile-tabs .tabs li {
            display: table-cell;
            width: 50%;
        }
            .mobile-tabs .tabs li a {
                display: block;
                line-height: 40px;
                text-decoration: none;
                color: #444;
                font-size: 13px;
                font-weight: bold;
                border-bottom: 2px solid #dbdbdb;
                padding: 0 20px;
            }
            .mobile-tabs .tabs li.active a {
                background: none;
            }


    /* --- btn-group stacked -------------------------------------------------------------------- */
    /* Stack button group horizontal on smaller devices. */
    .btn-group.btn-group-stacked > .btn {
        display: block;
        float: none;
        width: 100%;
        max-width: 100%;
        border-left-width: 1px;
    }
        .btn-group.btn-group-stacked > .btn:first-child:not(:last-child) {
            border-radius: 3px 3px 0px 0px;
        }
        .btn-group.btn-group-stacked > .btn:last-child:not(:first-child) {
            border-radius: 0px 0px 3px 3px;
        }
        .btn-group.btn-group-stacked > .btn + .btn {
            margin-top: -1px;
            margin-left: 0;
        }



    /* --- context menu item -------------------------------------------------------------------- */
    .dropdown-menu li a {
        padding: 9px 14px; /*making the links easier to click on mobile */
    }

}


/* Smallest devices*/
@media (max-width: 500px) {
    .hidden-sm {
        display: none;
    }
}