/*======================================================*/
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
  display: block;
  margin: 45px 0 15px;
  text-align: center;
}
.nav-tabs.nav-justified > li {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  width: auto;
  margin: 0 5px;
  background-color: transparent;
}
.nav-tabs.nav-justified > li > a {
  font-family: 'Poppins', sans-serif;
  padding: 0;
  margin: 0px;
  border-radius: 0;
  border: 0;
  display: inline-block;
  padding: 8px;
  z-index: 1;
  font-size: 12px;
}
.nav-tabs.nav-justified > li > a > i.fa {
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
}
.nav-tabs.nav-justified > li > a::after{
  content: " ";
  position: absolute;
  bottom:0;
  left: 0;
  width:100%;
  height:0;
  background-color: #cc123f;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  z-index: -1;
}
.nav-tabs.nav-justified > li > a:hover{
  color: #fff;
}
.nav-tabs.nav-justified > li > a:hover:after{
  height: 100%;
}
.panel-default{
  border-top:0;
}

/*mobile*/
@media only screen and (max-width: 600px) and (min-width: 300px) {
  .nav.nav-tabs.nav-justified  {
    display: grid;
  }
  .nav.nav-tabs.nav-justified .dropdown  {
    margin-bottom: 4px;
  }
  .nav-tabs.nav-justified > li > a {
    display: inherit;
  }
}


/*!*tablet*!*/
/*@media only screen and (max-width: 1170px) and (min-width: 601px) {*/

/*}*/

