/* colors */
/* tab setting */
/* breakpoints */
/* selectors relative to radio inputs */
.tabbar.tabs {
  position: relative;
  background: white;
  padding-bottom: 50px 0 80px;
  width: 100%;
  min-width: 240px;
}
.tabbar.tabs input[name=tab-control] {
  display: none;
}
.tabbar.tabs .content section h2,
.tabbar.tabs ul li label,
.tabbar.tabs ul li a {
  font-weight: bold;
  font-size: 18px;
  color: #000;
}
.tabbar.tabs > ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 0;
  border-bottom: 1px solid #000;
}
.tabbar.tabs > ul > li {
  box-sizing: border-box;
  flex: 1;
  width: 25%;
  padding: 0 10px;
  text-align: center;
}
.tabbar.tabs > ul > li label, .tabbar.tabs > ul > li a {
  transition: all 0.3s ease-in-out;
  color: black;
  padding: 5px auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  -webkit-touch-callout: none;
}
.tabbar.tabs > ul > li label span, .tabbar.tabs > ul > li a span {
  display: inline-block;
  padding-top: 12px;
  padding-bottom: 5px;
  border-bottom: 7px solid transparent;
}
.tabbar.tabs > ul > li label br, .tabbar.tabs > ul > li a br {
  display: none;
}
.tabbar.tabs > ul > li label svg, .tabbar.tabs > ul > li a svg {
  fill: black;
  height: 1.2em;
  vertical-align: bottom;
  margin-right: 0.2em;
  transition: all 0.2s ease-in-out;
}
.tabbar.tabs > ul > li label:hover, .tabbar.tabs > ul > li label:focus, .tabbar.tabs > ul > li label:active, .tabbar.tabs > ul > li a:hover, .tabbar.tabs > ul > li a:focus, .tabbar.tabs > ul > li a:active {
  outline: 0;
  color: #262626;
  background-color: transparent;
}
.tabbar.tabs > ul > li label:hover svg, .tabbar.tabs > ul > li label:focus svg, .tabbar.tabs > ul > li label:active svg, .tabbar.tabs > ul > li a:hover svg, .tabbar.tabs > ul > li a:focus svg, .tabbar.tabs > ul > li a:active svg {
  fill: #262626;
}
.tabbar.tabs > ul > li a:focus {
  color: black;
}
.tabbar.tabs .content {
  margin-top: 30px;
}
.tabbar.tabs .content section {
  display: none;
  animation-name: content;
  animation-direction: normal;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  line-height: 1.4;
}
.tabbar.tabs .content section h2 {
  color: #000;
  display: none;
}
.tabbar.tabs .content section h2::after {
  content: "";
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: #000;
  margin-top: 5px;
  left: 1px;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label, .tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) a {
  cursor: default;
  color: #000;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label span, .tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) a span {
  border-color: #000;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label svg, .tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) a svg {
  fill: #000;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ .slider {
  transform: translateX(0%);
}
.tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
  display: block;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label, .tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) a {
  cursor: default;
  color: #000;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label span, .tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) a span {
  border-color: #000;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label svg, .tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) a svg {
  fill: #000;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ .slider {
  transform: translateX(100%);
}
.tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
  display: block;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label, .tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) a {
  cursor: default;
  color: #000;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label span, .tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) a span {
  border-color: #000;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label svg, .tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) a svg {
  fill: #000;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ .slider {
  transform: translateX(200%);
}
.tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
  display: block;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label, .tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) a {
  cursor: default;
  color: #000;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label span, .tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) a span {
  border-color: #000;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label svg, .tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) a svg {
  fill: #000;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ .slider {
  transform: translateX(300%);
}
.tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
  display: block;
}
@keyframes content {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
.tabbar.tabs .dropdown {
  min-width: 180px;
  font-family: "Inter", sans-serif;
  position: relative;
}
.tabbar.tabs .dropdown .title {
  height: 43px;
  padding-left: 14px;
  padding-right: 14px;
  border-bottom: 0.5px solid #000;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}
.tabbar.tabs .dropdown .title:hover {
  opacity: 0.6;
  cursor: default;
}
.tabbar.tabs .dropdown .title::after {
  content: "";
  display: block;
  position: absolute;
  right: 7px;
  border: 6px solid;
  border-left-width: 5px;
  border-right-width: 5px;
  border-color: transparent;
  border-top-color: #000;
  border-bottom: 0;
}
.tabbar.tabs .dropdown .drop {
  z-index: 2;
  width: 100%;
  position: absolute;
}
.tabbar.tabs .dropdown .drop ul {
  border: 0.5px solid;
  border-top: 0;
  background-color: #fff;
  padding: 0;
  box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0.1);
}
.tabbar.tabs .dropdown .drop ul li {
  min-height: 30px;
  padding-top: 6px;
  padding-bottom: 6px;
  line-height: 18px;
  padding-left: 14px;
  padding-right: 14px;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: default;
}
.tabbar.tabs .dropdown .drop ul li:hover {
  background-color: rgba(225, 253, 235, 0.33);
}/*# sourceMappingURL=tabbar.css.map */