/* your styles go here */

.toggle {
    height: 32px;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}
.toggle .handle {
    display: block;
    position: relative;
    top: -20px;
    left: 0;
    width: 50px;
    height: 32px;
    background-color: #FFF;
    -webkit-border-radius: 19px;
    -moz-border-radius: 19px;
    border-radius: 19px;
    -webkit-box-shadow: inset 0 0 0 1px #b8bfc8;
    -moz-box-shadow: inset 0 0 0 1px #b8bfc8;
    box-shadow: inset 0 0 0 1px #b8bfc8;
}
.toggle input[type=checkbox]:checked+.handle:before, .toggle input[type=radio]:checked+.handle:before {
    width: 50px;
    background-color: #A0D468;
}
.toggle .handle:after, .toggle .handle:before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    display: block;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    background-color: #FFF;
    -webkit-box-shadow: inset 0 0 0 1px #b8bfc8, 1px 1px 1px #c7ccd3;
    -moz-box-shadow: inset 0 0 0 1px #b8bfc8,1px 1px 1px #c7ccd3;
    box-shadow: inset 0 0 0 1px #b8bfc8, 1px 1px 1px #c7ccd3;
}
input[type=checkbox], input[type=radio] {
    margin: 4px 0 0;
    line-height: normal;
}
input[type=radio] {
    margin: 4px 0 0 10px;
   }
.toggle input[type=checkbox], .toggle input[type=radio] {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    text-indent: -100000px;
    opacity: 0;
    filter: alpha(opacity=0);
}

.toggle input[type=checkbox]:checked+.handle:after, .toggle input[type=radio]:checked+.handle:after {
    left: 20px;
    -webkit-box-shadow: inset 0 0 0 1px #F5F7FA, 1px 1px 1px #c7ccd3;
    -moz-box-shadow: inset 0 0 0 1px #F5F7FA,1px 1px 1px #c7ccd3;
    box-shadow: inset 0 0 0 1px #F5F7FA, 1px 1px 1px #c7ccd3;
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 100%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    

}
em { color:red; font-weight: bold;}

.list-unstyled a{ font-size:1.3em;}

a:hover,a:focus{
    text-decoration: none;
    outline: none;
}
.nav-tabs{
    border: none;
    border-bottom: 2px solid #079fc9;
    margin: 0;
}
.nav-tabs li a{
    padding: 10px 20px;
    margin: 0 10px -1px 0;
    font-size: 17px;
    font-weight: 600;
    color: #293241;
    text-transform: uppercase;
    border: 2px solid #e6e5e1;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease 0s;
}
.nav-tabs li a:hover,
 .nav-tabs li a.active {
    background: #fff;
    color: #079fc9;
    border: 2px solid #079fc9;
    border-bottom-color: transparent;
}
.nav-tabs li a:before{
    content: "";
    display: block;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}
.nav-tabs  a.active:before,
.nav-tabs li a:hover:before{ transform: scaleX(1); }
.tab-content{
    padding: 10px;
    font-size: 17px;
    color: #6f6f6f;
    line-height: 30px;
    letter-spacing: 1px;
    position: relative;
}
@media only screen and (max-width: 479px){
     .nav-tabs{ border: none; }
     .nav-tabs li{
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
     .nav-tabs li a{
        margin: 0;
        border-bottom: 2px solid transparent;
    }
     .nav-tabs li a:before{
        content: "";
        width: 100%;
        height: 2px;
        background: #079fc9;
        position: absolute;
        bottom: -2px;
        left: 0;
    }
}