* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.tabs-wrapper {
  width: 100%;
  background: #063082;
}

.tabs {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #ffffff;
}

@font-face {
	font-family: "OleoScript-Regular";
	src: url(../fonts/OleoScript-Regular.ttf);
	font-weight: normal;
	font-style: normal;
}

.tabs-item {
  position: relative;
  padding: 16px 20px;
  cursor: pointer;
  height: 48px;
  box-sizing: border-box;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff!important;
}

.tabs-item-ai > span {
  font-family: 'OleoScript-Regular' !important;
  margin-right: 2px;
}
.tabs-item.active::before {
  content: "";
  background: #ffffff;
  height: 3px;
  width: 32px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.tabs-item:not(:last-child) {
  background: url("/assets/img/tab-border.png") no-repeat;
  background-size: 3px 32px;
  background-position: right center;
}

.tabs-item.has-dropdown::after {
  content: "";
  display: inline-block;
  background: url("/assets/img/arrow-down.png") no-repeat;
  background-size: 100% 100%;
  width: 11px;
  height: 6px;
  margin-left: 4px;
  transition: all 0.2s ease;
}

.tabs-item.has-dropdown.selected::after {
  transform: rotate(180deg);
}

.tabs-item .tabs-item-dropdown {
  position: absolute;
  background: #f5f7fa;
  top: 40px;
  left: 20px;
  width: 168px;
  border-radius: 6px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  visibility: hidden;
  z-index: 1200;
}

.tabs-item .tabs-item-dropdown.show {
  visibility: visible;
}

.tabs-item-dropdown-item {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  color: #4a4a54;
  font-size: 16px;
}

.tabs-item-dropdown-item.active {
  color: #2266ff;
}

.tabs-item-dropdown-item.active::after {
  content: "";
  display: inline-block;
  background: url("/assets/img/tab-active.png") no-repeat;
  background-size: 100% 100%;
  width: 7.22px;
  height: 4.81px;
  margin-left: 10px;
}
