/* Mixins */
/* Vars */


.tabs_wrapper {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  background: transparent;
}

ul.tabs {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 10;
  margin: 25px 0 0;
  padding: 0;
  width: 23%;
  min-width: 175px;
  list-style: none;
  

}
ul.tabs li {
  margin: 0;
  cursor: pointer;
  padding: 0px 5px;
  line-height: 31px;
  color: #707070;
  text-align: left;
  font-weight: bold;
  
  
}

ul.tabs li.active, ul.tabs li:hover {
  background-color: #dce4ef;
border-radius: 10px;
-webkit-border-radius: 10px;
-o-border-radius: 10px;
-ms-border-radius: 10px;
-moz-border-radius: 10px;
  color: #707070;

}
ul.tabs li.active {
  background-color: #dce4ef;
border-radius: 10px;
-webkit-border-radius: 10px;
-o-border-radius: 10px;
-ms-border-radius: 10px;
-moz-border-radius: 10px;
  color: #707070;
  
}
.tab_container {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 20;

  width: 70%;
  min-width: 10px;
  text-align: left;
  
}

.tab_content {
  padding: 20px;
  height: 100%;
  display: none;
}

.tab_drawer_heading {
  display: none;
}

@media screen and (max-width: 781px) {
  
  ul.tabs {
    display: none;
  }

  .tab_container {
    display: block;
    margin: 0 auto;
    width: 95%;
    border-top: none;
    border-radius: 0;
    box-shadow: 0px 0px 10px #dddddd;
  }

  .tab_drawer_heading {
  border-bottom: 1px solid #707070;
    background: #dce4ef;
   font-family: 'Gotham', sans-serif;
   font-size: 16px;
   line-height: 19px;
   font-weight: bold;
    color: #707070;
    margin: 0;
    padding: 5px 20px;
    display: block;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
  }
  .tab_drawer_heading:hover {

    background: #dce4ef;
     color: #707070;
  }

  .d_active {
   background: #dce4ef;
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4c001e", endColorstr="#9f0735",GradientType=0 );
    color: #707070;
  }
}