  .overflow{
    overflow: hidden;
  }

  .uppercase{
    text-transform: uppercase;
  }

  .btn-common {
    font-size: 14px;
    color: #0099ae;
    border: 1px solid #0099ae;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    padding: 10px 25px;
  }

  #action .col-sm-5{
    position: absolute;

    top: 0;
    height: 100%;
    right: 0;
  }


  .btn-common:hover, 
  .btn-common:focus{
    outline: none;
    background: none;
    box-shadow: none;
    color: #01707f;
    border-color:#01707f;
  }

  .align-right{
    text-align: right;
  }

  .inline{
    display: inline-block;
  }

  .padding{
    padding: 65px 0;
  }

  .padding-bottom{
    padding-bottom: 65px;
  }

  .padding-top{
    padding-top: 90px;
  }

  .padding-right{
    padding-right: 80px;
  }

  .padding-left{
    padding-left: 80px;
  }

  .margin-bottom{
    margin-bottom: 35px;
  }

     .carousel-indicators.visible-xs {
      height: 20px;
      margin: 0;
      padding: 0;
      position: absolute;
      top: -35px;
      width: 100%;
      left: 0;
    }

  .carousel-indicators.visible-xs li {
    border-color: #D29948;
    border-width: 2px;
    height: 12px;
    margin: 0 5px 0 0;
    width: 12px;
  }

  .carousel-indicators.visible-xs li.active {
    background: rgba(210, 153, 72, 0.7);
  }


/*************************
*******Header******
**************************/


#header{
  margin-bottom: 0;
}
.search{
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 1;
}

.search i{
  color: #00aeef;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 2px;
}

.field-toggle{
  position: relative;
  top: 30px;
  right: 15px;
  display: none;
  height: 50px;
}

.search-form{
  padding-left: 10px;
  height: 40px;
  font-size: 18px;
  color: #818285;
  font-weight: 300;
  outline: none;
  border: 1px solid #00aeef;
  margin-top: 20px;
  border-radius: 4px;
}

.social-icons ul li{
  padding: 0 10px;

}

.social-icons ul li:last-child{
  padding-right: 0;

}

.social-icons ul li a{
  font-size: 18px;
  color: #d3d3d3;
  padding: 0;
}

.social-icons ul li a:hover .fa-facebook {
  color:#0884d5;
}

.social-icons ul li a:hover .fa-twitter {
  color:#2AA7DC;
}

.social-icons ul li a:hover .fa-google-plus {
  color:#A22523;
}

.social-icons ul li a:hover .fa-dribbble {
  color:#E94989;
}

.social-icons ul li a:hover .fa-linkedin {
  color:#006DC0;
}

.social-icons ul li a:hover,
.social-icons ul li a:focus{  
  background: none;
}

#header .navbar {
  background: none;
  border: 0;
  margin-bottom: 0;
  border-radius: 0px;
}

#header .navbar-brand{
  padding: 0;
  margin-left: 0;
  height: 62px;
  padding: 20px 58px 20px 0px;
}

#header .navbar-nav.navbar-right >li:last-child{
  margin-right: 20px;
}

#header .navbar-nav .nav_bt{
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  margin-right: 58px;
  padding: 0px;
  color: #1a1a33;
}
#header .navbar-nav>li a i{
  display: none;
}


#header .navbar-inverse .navbar-nav  li.active > a,  
#header .navbar-inverse .navbar-nav  li.active > a:focus, 
#header .navbar-nav.navbar-right li > a:hover,
.navbar-inverse .navbar-nav > .open > a {
  background-color: inherit;
  border: 0;
  color: #534cd9;
}

#header .navbar-inverse .navbar-nav  li a:hover{
  color: #534cd9;
}



/*  Dropdown menu*/

ul.sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

#header .navbar-nav li ul.sub-menu li a{
  color: #252525;
  padding: 0px;
  font-size: 16px;
  display: block;
  text-transform: capitalize;
  border-radius: 5px;
  padding: 0px 16px;
}
#header .navbar-nav li ul.sub-menu h4{
  padding: 0px 16px;
}

#header .navbar-nav li ul.sub-menu li .active{
  background: #018fff;
  color: #fff;
  position: relative;
}

#header .navbar-nav li ul.sub-menu li .active i{
  position: absolute;
  font-size: 56px;
  top: -13px;
  color: #0884d5;
}

#header .navbar-nav li ul.sub-menu li .active .fa-angle-right{
  left: -3px;
}

#header .navbar-nav li ul.sub-menu li .active .fa-angle-left{
  right: -3px;
}

#header .navbar-nav li ul.sub-menu li a:hover,
#header .navbar-nav li ul.sub-menu li a:focus{
  background: #f5f5f5;
  color: #534cd9;
}

.fa-angle-down{
  padding-left: 5px; 
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.nav_jjfa{
    position: static!important;
}

@media only screen and (min-width : 768px) {
  .nav.navbar-nav > li:hover > ul.sub-menu{
    display: block;
    -webkit-animation: fadeInUp 400ms;
    animation: fadeInUp 400ms;
  }

  ul.nav_xl1 {
    position: absolute;
    top: 60px;
    left: 0;
    color: #252525;
    background: #fff;
    width: 220px;
    box-shadow: none;
    display: none;
    z-index: 999;
    border-top: 2px solid #534cd9;
    text-align: center;
    padding: 24px 24px;
    line-height: 42px;
    box-shadow: 0 8px 16px 0 rgba(26,26,51,.05);
  }
  ul.nav_xl2,ul.product_xl3{
    position: absolute;
    top: 90px;
    left: 0;
    color: #252525;
    background: #fff;
    width: 100%;
    box-shadow: none;
    display: none;
    z-index: 999;
    padding: 32px 0px 68px 0px;
    line-height: 42px;
    box-shadow: 0 8px 16px 0 rgba(26,26,51,.05);
  }
  ul.nav_xl2{
    padding: 24px 120px
  }
}
.nav_xl2 li{
    display: inline-block;
}
.nav_xl2 li a{
    font-size: 16px;
    display: inline-block;
}
#header .navbar-nav li ul.nav_xl2 li a{
    padding: 0px 24px;
}
.product_xl3 .thumbnail{
    border: none;
    background: #fff;
    color: #252525;
}
.product_xl3 .thumbnail:hover{
  background: none;
  color: #008aff;
}
.product_xl3 .thumbnail p{
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
#header .navbar-nav li ul.product_xl3 a:hover,
#header .navbar-nav li ul.product_xl3 a:focus{
  background: none;
  color: #008aff;
}

@media (max-width: 750px){
  #header .navbar-nav>li a i{
    display: block;
    float: right;
    margin-top: -4px;
    background: #018fff;
    padding: 6px 10px;
    border-radius: 50px;
  }
  #header .navbar-brand{
    padding: 0;
    margin-left: 0;
    height: 62px;
    padding: 20px 15px;
  }
  #header .navbar-nav .nav_bt{
    color: #bbb;
    font-size: 16px;
    padding: 10px 16px;
    border-radius: 50px;
    margin: 24px 12px 24px 12px;
  }
  #header .navbar-inverse .navbar-nav  li.active > a,  
  #header .navbar-inverse .navbar-nav  li.active > a:focus, 
  #header .navbar-nav.navbar-right li > a:hover,
  .navbar-inverse .navbar-nav > .open > a {
    background-color: inherit;
    border: 0;
    background: none;
    color: #018fff;
  }
  #header .navbar-nav li ul.sub-menu li a{
    color: #bbb;
    padding: 12px 24px;
  }
  #header .navbar-nav li ul.nav_xl2 li a{
    padding: 12px 0px;
  }
}