﻿/*----- Tabs -----*/
.tabs {
    width: 100%;
    display: inline-block;
}

/*----- Tab Links -----*/
/* Clearfix */
.tab-links:after {
    display: block;
    clear: both;
    content: '';
}

.tabs ul {
    padding-left: 0px;
}

.tab-links li {
    margin: 0px 3px;
    float: left;
    list-style: none;
    margin-bottom: -1px;
}

.tab-links li:first-child {
    margin-left: 0 !important;
}

.tab-links a {
    padding: 9px 15px;
    display: inline-block;
    /*border-radius: 3px 3px 0px 0px;*/
    background: #323f48;
    font-size: 1.25em;
    /*font-weight: 600;*/
    color: #fff;
    text-decoration: none;
    transition: all linear 0.15s;
    margin: 0px;
}

.tab-links a:hover {
    /*background: #eca64b;*/
    text-decoration: none;
}

li.active a, li.active a:hover {
    background: #f48c00;
    color: #fff;
}

/*----- Content of Tabs -----*/
.tab-content {
    margin-top: -1em;
    padding: 15px;
    border-radius: 0px;
    border: #c0c0c0 2px solid;
    background: #f1f1f3;
}

.tabs tbody {
    border-bottom: none !important;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
}
