﻿/* Responsive Tabs - menucool.com/jquery-tabs */

ul.rtabs
{
    text-align:center; /*set to left, center, or right to align the tabs as desired*/    
    font-size:0;
    margin:0;
    padding:0;
    list-style-type:none;
}
        
ul.rtabs li
{
    margin:0;
    margin-right:4px; /*gap between tabs. Set it to -1px for no gap.*/
    padding:0;
    display:inline;
    
}
        
ul.rtabs li a
{
    
    font-family:'OpenSanslight';display:block;font-size:1.6rem;font-weight:100;
    padding:0 16px; /* It determines tab width */
    display:inline-block;  
    line-height:34px;/* height of tabs */
    text-decoration: none;
    color:#fff;
    background-color:#;
    outline:none;
    border:1px solid transparent;
    border-bottom:none;
    border-radius:3px 3px 3px 3px;
    position:relative;
}
        
ul.rtabs li a:link, ul.rtabs li a:visited
{
    color:#fff;
}
        
ul.rtabs li a:hover
{
    background-color:#;
    color:#fff;
    border:1px solid #CCC;
}
  
/*selected tab style */
ul.rtabs li.selected a
{
    color:#fff;
    font-weight:normal;
    border:1px solid #CCC;
    background:#; /*color #2*/
    z-index:3;
}   





        
/*selected tab style on hover */
ul.rtabs li.selected a:hover
{
    text-decoration:none;
}

/* container of content panels */
div.panel-container
{
    border:0px solid #DDD; /*color #1*/ 
    border-radius:0 4px 4px 4px;
    background-color:; /*color #2*/
    position:relative;    
    padding:0px; margin:0px;
    outline:none;
    margin-top:-2px;
    margin-bottom:35px;
}

/* content panel */       
div.panel-container > div
{
    padding:20px 16px 20px 0px;
    
    /* The two settings below should not be changed. */
    display: block;
    margin:0px;
}  
div.panel-container div.inactive
{
    display: none;
}

/* loading image before ajax content is retrieved. Only applicable when Ajax is used.*/
div.ajaxLoading {background:transparent url(loading.gif) no-repeat center center; height:150px; width:20px; font-size:0;padding:0; margin:0 auto; }


/* For mobiles */
@media only screen and (max-width:670px){
    ul.rtabs{
        box-sizing:border-box;
        border-left:0px solid #ccc;
        border-top:0px solid #ccc;
        min-width:260px;
    }

    ul.rtabs li{
        display:inline-block;
        box-sizing:border-box;
        margin-right:0;
        width:50%; /* set it to 100% for one column, 33.33% for three-column */
    }

    ul.rtabs li:last-child:nth-child(odd){
        width:100%;
    }

    ul.rtabs li a {
        border:none;
        border:1px solid transparent;
        display:block;
        padding:0;
        text-align:center;
        border-radius:0;
    }

    ul.rtabs li.selected a {
        background-color:#; 
        border:1px solid #CCC;
     }

    div.panel-container {
        border-radius:0;
        min-width:260px;
        box-sizing:border-box;
    }
}
