/*
    * Mixin used to add style and states to buttons
*/
/*
    * Mixin used for adding browser vendor specific prefixes    
*/
/*
    * Mixin used to add style for the filter component using different versions of colors   
*/
.od-tabs .od-tabs-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.od-tabs .od-tabs-container .od-tabs-container-tab {
  -webkit-transition: 0.35s background-color;
  -khtml-transition: 0.35s background-color;
  -moz-transition: 0.35s background-color;
  transition: 0.35s background-color;
  background-color: #efefef;
  border-bottom: 1px solid #d6d6d6;
  border-left: 1px solid #d6d6d6;
  border-top: 1px solid #d6d6d6;
  color: #575757;
  font-weight: bold;
  height: 39px;
  line-height: 39px;
  outline: none;
  padding: 0 15px 0 15px;
  width: 100%;
}
.od-tabs .od-tabs-container .od-tabs-container-tab .od-tabs-container-tab-text {
  -webkit-text-overflow: ellipsis;
  -khtml-text-overflow: ellipsis;
  -moz-text-overflow: ellipsis;
  text-overflow: ellipsis;
  float: left;
  min-width: calc(100% - 25px);
  overflow: hidden;
  text-transform: uppercase;
  white-space: nowrap;
  width: calc(100% - 25px);
}
.od-tabs .od-tabs-container .od-tabs-container-tab .od-tabs-container-tab-badge {
  -webkit-border-radius: 40%;
  -khtml-border-radius: 40%;
  -moz-border-radius: 40%;
  border-radius: 40%;
  background-color: gray;
  bottom: 0;
  color: white;
  float: right;
  height: 20px;
  line-height: 20px;
  margin-bottom: auto;
  margin-top: 9px;
  position: relative;
  right: 10px;
  text-align: center;
  top: 0;
  width: 25px;
}
.od-tabs .od-tabs-container .od-tabs-container-tab .od-tabs-container-tab-badge .od-tabs-container-tab-badge-dot {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: red;
  height: 5px;
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
}
.od-tabs .od-tabs-container .od-tabs-container-tab:hover:not(.od-tabs-container-tab-active) {
  background-color: #d6d6d6;
  color: #575757;
}
.od-tabs .od-tabs-container .od-tabs-container-tab-active {
  background-color: #ffffff;
  border-top: 1px solid #a90074;
  border-bottom: none;
  color: #a90074;
}
