﻿.navbar-nav {
    float: none !important;
    margin: 0 auto !important;
    /*width: 95% !important;*/
    width: 104% !important;
}
/*.navbar-nav1 {
    float: none !important;
    margin: 0 auto !important;
    width: 104% !important;
}*/
/*Fun begins*/
.tab_container {
    width: 100%;
    margin: 0 auto;
    padding-top: 70px;
    position: relative;
}

input, section {
    clear: both;
    padding-top: 10px;
    display: none;
}

.tab_container.container {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

label {
    font-weight: 700;
    font-size: 18px;
    /*display: block;
  float: left;*/
    width: 16%;
    padding: 10px 15px;
    color: #757575;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    margin-left: -2px;
    margin-right: -2px;
}

    label span {
        display: block !important;
    }

.tbs1 {
    border-radius: 8px 0 0 8px;
}

.tbs3 {
    border-radius: 0 8px 8px 0;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5 {
    display: block;
    padding: 20px;
    background: #fff;
    color: #999;
    border-bottom: 2px solid #f0f0f0;
}

.tab_container .tab-content p,
.tab_container .tab-content h3 {
    -webkit-animation: fadeInScale 0.7s ease-in-out;
    -moz-animation: fadeInScale 0.7s ease-in-out;
    animation: fadeInScale 0.7s ease-in-out;
}

.tab_container .tab-content h3 {
    text-align: center;
}

/*.tab_container [id^="tab"]:checked + label {
  background: #fff;
  box-shadow: inset 0 3px #0CE;
}*/
.tab_container [id^="tab"]:checked + label {
    background: hsl(29, 79%, 43%) none repeat scroll 0 0;
    color: hsl(0, 0%, 100%);
}

    .tab_container [id^="tab"]:checked + label .fa {
        color: #0CE;
    }

label .fa {
    font-size: 1.3em;
    margin: 0 0.4em 0 0;
}

/*Media query*/
@media only screen and (max-width: 930px) {
    label span {
        font-size: 14px;
    }

    label .fa {
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {
    label span {
        display: none;
    }

    label .fa {
        font-size: 16px;
    }

    .tab_container {
        width: 98%;
    }
}

/*Content Animation*/
@keyframes fadeInScale {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
