.adc_tabs .tabs .tab {
  padding: 10px 18px;
  display: inline-block;
  cursor: pointer;
  color: #becbd2;
  border-top: 1px solid #becbd2;
  border-left: 1px solid #becbd2;
  border-right: 1px solid #becbd2;
  font-size: 20px;
  border-radius: 5px 5px 0 0;
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;
}

.adc_tabs .tabs .tab:hover {
  border-top: 2px solid #768e9d;
  color: #768e9d;
}

.adc_tabs .tabs .tab.active {
  border-top: 2px solid #47a3da;
  border-left: 1px solid #47a3da;
  border-right: 1px solid #47a3da;
  color: #47a3da;
  position: relative;
}

.adc_tabs .tabs .tab.active::after {
  content: "";
  position: absolute;
  display: block;
  height: 5px;
  width: 100%;
  left: 0;
  bottom: -2px;
  background-color: white;
  z-index: 1;
}

.adc_tabs .tabs_content .content {
  display: none;
  padding: 20px;
  border: 1px solid #47a3da;
  line-height: 20px;
  font-size: 14px;
}

.adc_tabs .tabs_content .content.active {
  display: block;
}

.adc_tabs .tabs_content .content.active.css-fancy-box {
  display: -ms-flexbox;
  display: flex !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
