.cbr-tabs {
  border: 1px solid #e0e0e0;
  background: #fff;
}

.cbr-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.cbr-tabs-nav li {
  padding: 14px 24px;
  cursor: pointer;
  font-weight: 600;
  color: #666;
  border-right: 1px solid #e0e0e0;
}

.cbr-tabs-nav li.active {
  background: #fff;
  color: #1a3a6b;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}

.cbr-tabs-panel {
  display: none;
  padding: 20px;
}

.cbr-tabs-panel.active {
  display: block;
}

.cbr-tabs-more {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: #1a3a6b;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-left: 5px solid #2196f3;
}

.cbr-tabs-more:hover {
  background: #122950;
  color: #fff;
}

@media (max-width: 640px) {
  .cbr-tabs-nav li {
    flex: 1 1 auto;
    padding: 12px 14px;
    font-size: 14px;
    text-align: center;
  }
  .cbr-tabs-panel {
    padding: 14px;
  }
}
