/*---- Tabs ----*/
.tabs {
  width: 100%;
  display: inline-block;
}

/*---- Tab Links ----*/
/* Clearfix */
.tab-links:after {
  display: block;
  clear: both;
  content: '';
}

.tab-links li {
  margin: 0;
  float: left;
  list-style: none;
}

.tab-links a {
  padding: 9px 15px;
  display: inline-block;
  border: 1px #333 solid;
  border-radius: .8rem .8rem 0px 0px;
  /* background: #7FB5DA; */
  font-size: .9rem;
  font-weight: 600;
  color: #333;
  transition: all linear 0.15s;
}

.tab-links a:hover {
  background: #ddeeff;
  text-decoration: none;
}

section.tabs>ul>li.active a,
section.tabs>ul>li.active a:hover {
  background: #7FB5DA;
  color: #333;
  border: 1px #7FB5DA solid;

}

/*---- Content of Tabs ----*/
.tab-content {
  padding: 15px;
  border-radius: 3px;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}
