/* root element for tabs  */

.tabs {
    list-style: none;
    margin: 0!important;
    padding: 0;
    height: 40px;
}
/* single tab */

.tabs li {
    float: left;
    text-indent: 0;
    padding: 0;
    margin: -2px 0 0 0 !important;
    list-style-image: none !important;
    font-size: 12px !important;
}
/* link inside the tab. uses a background image */

.tabs a {
    font-size: 16px !important;
    display: block;
    height: 42px;
    line-height: 45px;
    min-width: 112px;
    text-align: center;
    text-decoration: none;
    color: #bdbdbd;
    padding: 0 5px 0 5px;
    margin: 0;
    position: relative;
    top: 5px;
    background-color: #FFF;
    border: 1px solid #eaeaea;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    line-height: 25px;
}

.tabs a:active {
    outline: none;
}
/* when mouse enters the tab move the background image */

.tabs a:hover {
    background-position: left top;
    color: #225aa8;
}
/* active tab uses a class name "current". it's highlight is also done by moving the background image. */

.tabs .current,
.tabs .current:hover,
.tabs li.current a {
    background-repeat: repeat-x;
    cursor: default !important;
    background-color: #FFF;
    color: #225aa8;
    border: 1px solid #eaeaea;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    top: 0px;
}
/* initially all panes are hidden */

.tabs a img {
    float: left;    
    margin: 10px 0 0 10px;
}

.panes {
	width: 100%;
	display: inline-block;
    padding: 15px 7px 10px 24px;
    font-size: 13px;
    color: #636464;
}

.panes .pane {
    display: none;
}
@media screen and (max-width: 768px){
	.panes{
		width: 90%;
	}
	
}