/**============================================
* 
* Tabs CSS Styles
* 
*=============================================*/


.region-content .tabs {
  text-align: left;
}

.region-content .tabs ul.nav-tabs {
  background: #2d980c;
}

.region-content .tabs ul.nav-tabs > li {
  margin: 0;
}

.region-content .tabs ul.nav-tabs > li > a {
  background: #2d980c;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: none;
  border-right: 1px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  padding: 18px 24px;
}

@media(max-width: 991px) {
  .region-content .tabs ul.nav-tabs > li > a {
    border-width: 1px;
    border-color: #fff;
    border-style: solid;
    margin-top: -1px;
    margin-left: -1px;
  }
}

.region-content .tabs ul.nav-tabs > li > a:hover {
  background: #1d8800;
}

.region-content .tabs ul.nav-tabs > li.active > a {
  background: #91d01a;
}

.region-content .tabs ul.nav-tabs > li.active > a:hover {
  background: #81c00a;
}

.region-content .tabs .tab-content {
  background: #fff;
}

.region-content .tabs .tab-content .tab-pane {
  min-height: 300px;
  padding: 40px;
}



