



  
.tabsx {
    max-width: 90%;
    float: none;
    list-style: none;
    padding: 0;
    margin: 75px auto;
    border-bottom: 4px solid #ccc;
}

.tabsx:after {
    content: '';
    display: table;
    clear: both;
}

.tabsx input[type=radio] {
    display:none;
}

.tabsx label {
    display: block;
    float: left;
    width: 20%;

    color: #000;
    font-size: 19px;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    line-height: 2;

    cursor: pointer;
    box-shadow: inset 0 4px #ccc;
    border-bottom: 4px solid #ccc;

    -webkit-transition: all 0.5s; /* Safari 3.1 to 6.0 */
    transition: all 0.5s;
    background: #fff;
}
 
.tabsx label span {
    display: none;
}

.tabsx label i {
    padding: 5px;
    margin-right: 0;
}

.tabsx label:hover {
    color: #3498db;
    box-shadow: inset 0 4px #3498db;
    border-bottom: 4px solid #3498db;
}

.tab-contentx {
	display: none;
	width: 100%;
	float: left;
	padding: 15px;
	box-sizing: border-box;
	background-color: #FFF;
	overflow: auto;
	color: #000;
	min-height: 303px;
	max-height: 303px;
}
.tab-contentx button{padding:3px 5px; background:#00A8E7; color:#fff; text-transform:uppercase;}

.tab-contentx * {

    -webkit-animation: scale 0.7s ease-in-out;
    -moz-animation: scale 0.7s ease-in-out;
    animation: scale 0.7s ease-in-out;
}

@keyframes scale {

  0% { 
    transform: scale(0.9);
    opacity: 0;
    }

  50% {
    transform: scale(1.01);
    opacity: 0.5;
    }

  100% { 
    transform: scale(1);
    opacity: 1;
  }

}
  
.tabsx [id^="tab"]:checked + label {
    background: #fff;
    box-shadow: inset 0 4px #3498db;
    border-bottom: 4px solid #3498db;
    color: #3498db;
}

#tab1:checked ~ #tab-content1,
#tab2:checked ~ #tab-content2,
#tab3:checked ~ #tab-content3,
#tab4:checked ~ #tab-content4, 
#tab5:checked ~ #tab-content5{
    display: block;
}

@media (min-width: 768px) {
    
    .tabsx i {
        padding: 5px;
        margin-right: 10px;
    }

    .tabsx label span {
        display: inline-block;
    }

    .tabsx {
        max-width: 750px;
        margin: 39px auto;
    }

}

/*.la
{
     box-shadow: inset 0 4px #AF3C8D !important;
    border-bottom: 4px solid #AF3C8D !important;
    color: #AF3C8D !important;
    }
    .lb
{
    box-shadow: inset 0 4px #E63A2E !important;
    border-bottom: 4px solid #E63A2E !important;
    color: #E63A2E !important;
    }
    .lc
{
    box-shadow: inset 0 4px #FED026 !important;
    border-bottom: 4px solid #FED026 !important;
    color: #FED026 !important;
    }
    .ld
{
     box-shadow: inset 0 4px #00A8E7 !important;
    border-bottom: 4px solid #00A8E7 !important;
    color: #00A8E7 !important;
    }
    .le
{
     box-shadow: inset 0 4px #009F52 !important;
    border-bottom: 4px solid #009F52 !important;
    color: #009F52 !important;
    }*/