﻿.tabs-menu {
  display: flex;
  justify-content: space-between;
  /*height: 43px;*/
  /*font-size: 0;*/
  /*list-style: none;*/
  border-bottom: solid 1px #e9e9e9;
  /*.tabs-menu-item {
        width: auto;
        float: left;
        width: 49.5%;

        @include susy-breakpoint($vp-tabletMedium) {
            width: auto;
            min-width: 130px;
        }
    }*/
}
.tabs-menu:after {
  content: "";
  display: block;
  clear: both;
}
.tabs-menu li,
.tabs-menu .tabs-menu-item {
  position: relative;
  flex: 1;
  /*display: inline-block;
        width: 33.3%;*/
  text-align: center;
  border-bottom: solid 3px transparent;
  font-size: 12px;
  line-height: 30px;
  color: #222222;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  /*@include susy-breakpoint($vp-tabletMedium) {
            .indicator {
                display: inline-block;
            }
        }*/
}
.tabs-menu li:first-child,
.tabs-menu .tabs-menu-item:first-child {
  position: relative;
}
.tabs-menu li:first-child:before,
.tabs-menu .tabs-menu-item:first-child:before {
  border: none;
}
.tabs-menu li .indicator,
.tabs-menu .tabs-menu-item .indicator {
  /*@include center-absolute(false, true);
            right: 6px;*/
  display: none;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  padding: 6px;
  border-radius: 50%;
  background-color: #e9e9e9;
  line-height: 12px;
  font-size: 8px;
  color: #222222;
  text-align: center;
}
.tabs-menu .current {
  border-bottom-color: #456c93;
  color: #222222;
}

.sub-header {
  position: relative;
  z-index: 3;
  margin-top: -15px;
  background: transparent;
  border-bottom: none;
}
@media (min-width: 992px) {
  .sub-header {
    background: #ffffff;
    border-bottom: solid 1px #e9e9e9;
  }
}

.sub-header-wrap {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 992px) {
  .sub-header-wrap {
    margin-left: 0;
    margin-right: 0;
  }
}

.tabs-menu-header {
  background-color: #ffffff;
}
.tabs-menu-header li,
.tabs-menu-header .tabs-menu-item {
  line-height: 36px;
}
.tabs-menu-header li:before,
.tabs-menu-header .tabs-menu-item:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: "";
  width: 1px;
  height: 105%;
  border-left: solid 1px #e9e9e9;
}
@media (min-width: 992px) {
  .tabs-menu-header {
    border-bottom: none;
  }
}

.tab-btn-holder {
  padding: 10px 15px;
  text-align: center;
}
@media (min-width: 992px) {
  .tab-btn-holder {
    padding: 2px 15px;
    text-align: right;
  }
}

.tabs-dark {
  height: 52px;
}
.tabs-dark li,
.tabs-dark .tabs-menu-item {
  line-height: 50px !important;
  width: 49.5%;
  /*min-width: 200px;*/
  background-color: #e9e9e9;
  color: #666666;
  border-bottom: none;
  border-top: solid 3px #e9e9e9;
  /*@include susy-breakpoint(){}*/
}
.tabs-dark li:before,
.tabs-dark .tabs-menu-item:before {
  top: -3px;
}
.tabs-dark .current {
  border-bottom: none;
  border-top-color: #456c93;
  background-color: #ffffff;
}

.tab-item-half {
  width: 50% !important;
}
.tab-item-half:before {
  height: 102%;
}

.tab {
  display: block;
  width: 100%;
  padding-top: 10px;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tab-content {
  width: 100%;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  padding-top: 10px;
}
.tab-content:first-child {
  display: block;
}
