ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    height: 45px;
    border-bottom: 1px solid #eaf3f9;
    width: 100%;
    overflow-x: auto;
    display: flex;
    overflow-y: hidden
}

    ul.tabs li {
        float: left;
        margin: 0;
        cursor: pointer;
        padding: 0 21px;
        height: 45px;
        line-height: 45px;
        background-color: transparent;
        border: 0;
        color: #333;
        text-transform: uppercase;
        font-size: 14px;
        position: relative;
        text-align: center;
        border: 1px solid #ddd;
        margin-right: 5px;
        white-space: nowrap
    }

.tab_last {
    border-right: 1px solid #333
}

ul.tabs li:hover {
    background-color: #f4f4f4;
    color: #bf1e2d;
}

ul.tabs li.active {
    background-color: #bf1e2d;
    color: #fff;
    border-bottom: 2px solid #bf1e2d;
    display: block;
}

.tab_container {
    border: 0;
    border-top: none;
    clear: both;
    float: left;
    width: 100%;
    height: 100%;
    background: #fff
}

.tab_content {
    padding: 20px 0;
    min-height: 500px;
    display: none
}

.tab_drawer_heading {
    display: none
}

@media screen and (max-width: 480px) {
    .tabs {
        display: none
    }

    .tab_drawer_heading {
        background-color: #ccc;
        font-size: 16px;
        color: #fff;
        border-top: 1px solid #333;
        margin: 0;
        margin-bottom: 5px;
        padding: 8px 20px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        display: none
    }

    .d_active {
        background-color: #666;
        color: #fff
    }
}
