/* responsive-tabs.css
// Additional styles to handle a responsive version of tabbed navigation
// ---------------------------------------------------------------------
*/


/*.tabbable {
    margin-bottom: 18px;
}
.tab-content {
    padding: 15px; 
    border-bottom: 1px solid #ddd;
}*/


/* First up are adjustments needed for small screen mode */
@media (max-width: 1000px) {
    body {
        padding: 0;
    }
    .tabbable.responsive .nav-tabs {
        font-size: 16px;
    }
    .tabbable.responsive .nav-tabs ul {
        margin: 0;
    }
    .tabbable.responsive .nav-tabs li {
        /* box-sizing seems like the cleanest way to make sure width includes padding */
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box; 
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box; 
        display: inline-block; 
        width: 100%; 
        height: 44px;
        line-height: 44px; 
        padding: 0 15px;
        border: 1px solid #ddd;
        overflow: hidden;
    }
    .tabbable.responsive .nav-tabs > li > a {
        border-style: none;
        display: inline-block;
        margin: 0;
        padding: 0;
    }
    /* include hover and active styling for links to override bootstrap defaults */
    .tabbable.responsive .nav-tabs > li > a:hover {
        border-style: none; 
        background-color: transparent;
    }
    .tabbable.responsive .nav-tabs > li > a:active,
    .tabbable.responsive .nav-tabs > .active > a,
    .tabbable.responsive .nav-tabs > .active > a:hover {
        border-style: none;
    }

}

/* Now some example styles for the extra elements we add (in small screen mode)
   Feel free to adjust to suit
*/

/* implement */
.tabbable.responsive .nav-tabs { border-bottom: 2px solid #cccccc; }
.tabbable.responsive .nav-tabs > li { margin-bottom: -2px; }
.tabbable.responsive .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus{
    font-weight: bold; 
    border-color: #cccccc #cccccc transparent;
    border-width: 2px;
    background: none;
}
.tabbable.responsive .nav-tabs > li > a { font-family: 'DBSathornX'; font-size: 22px; color: #494949; }

.tabbable.responsive .nav-tabs > li > a.tab-control,
.tabbable.responsive .nav-tabs > li > span.tab-control-spacer {
    float: left;
    width: 36px;
    height: 100%;
    font-size: 22px;
    font-weight: 100;
    line-height: 42px;
    color: #494949;
    text-align: center;
    background: none;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
}
.tabbable.responsive .nav-tabs > li > a.tab-control.right,
.tabbable.responsive .nav-tabs > li > span.tab-control-spacer.right {
    float: right;
}
.tabbable.responsive .nav-tabs > li > a.tab-control:hover {
    color: white;
    background: none;
}
.tabbable.responsive .nav-tabs > li > span.tab-control-spacer {
    line-height: 28px;
    color: transparent;
    background:none transparent;
}



