@charset "UTF-8";

/*===================================================
=            jQuery Minimal Tabs (style)            =
===================================================*/

/**
*
* https://www.vinicius-stutz.com
* Version: 0.2 of 22 Nov 2013
* Copyright 2013 - Vinícius Stutz
* Licensed under the MIT license
* 
* The CSS file of plugin (you can customize all features)
*
**/


div.tabs-container {
    display: inline-block;
    width: 99%;
    font-family: sans-serif;
    font-size: 12px;
}
div.tabs-container p.tabs {
   /* display: inline-block;*/
    width: 100%;
/*    height: 44px;*/
    margin: 57px 10px 0 10px;
    padding: 0px;
    overflow: hidden;
    vertical-align: bottom;
}
div.tabs-container p.tabs a { /* You can customize this (size) */
    display: inline-block;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    padding: 12px 24px;
    margin: 6px 3px; /* Customize this distance if you need */
    background-color: #f0f0f0;
    font-weight: bold;
    border: 1px solid #ccc;

    /* You can remove this (corner radius) */
    border-radius: 3px 3px 0px 0px;
    -webkit-border-radius: 3px 3px 0px 0px;
    -moz-border-radius: 3px 3px 0px 0px;

}
div.tabs-container p.tabs a:hover {
    background-color: #E3F2F9;
    color: #3A87AD;
}
div.tabs-container p.tabs a.open {
    background-color: #666666;
    color: #fff;
    font-size: 13px;
}
div.tabs-container ul.tabs-content { /* You can set the height. Ex.: 558px; */
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
}
div.tabs-container ul.tabs-content .tab-content { /* You can set the min-height. Ex.: 196px; */
    display: inline-block;
    width: 96%; /* Customize this size if you need */
    /*margin: 10px 20px 10px 20px;*/
    margin: 0 20px 0 20px;
    padding: 0;
    overflow: auto;
}

/*-----  End of jQuery Minimal Tabs (style)  ------*/


@media only screen and (max-width: 768px) {
   div.tabs-container ul.tabs-content .tab-content { /* You can set the min-height. Ex.: 196px; */
    display: inline-block;
    width: 100%; /* Customize this size if you need */
    /*margin: 10px 20px 10px 20px;*/
    margin: 0 0px 0 0px;
    padding: 0;
    overflow: auto;
}
 
}