/* Accordion styles */
.accordion.tabs {
  border-radius: 8px;
}
.accordion.tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion.tabs input:checked + .tab-label::after {
  transform: rotate(180deg);
}
.accordion.tabs input:checked ~ .tab-content {
  transition: all 0.35s;
  transition-delay: 0s;
  max-height: 100vh;
}
.accordion.tabs .tab {
  position: relative;
  width: 100%;
  color: #191919;
  overflow: hidden;
  margin-bottom: 15px;
  z-index: 1;
}
.accordion.tabs .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 5px 15px;
  margin: 0;
  background: #EFEFEF;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  border-top: 1px solid #000;
  /* Icon */
}
@media (min-width: 767px) {
  .accordion.tabs .tab-label {
    font-size: 18px;
  }
}
.accordion.tabs .tab-label::after {
  content: "";
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  align-self: center;
  transition: all 0.35s;
  transition-delay: 0s;
}
.accordion.tabs .tab-content {
  margin: 0;
  max-height: 0;
  color: #191919;
  background: #e1f2f0;
  transition: all 0.35s;
  transition-delay: 0s;
  overflow: hidden;
  border-bottom: 1px solid #000;
}
.accordion.tabs .tab-content .content {
  margin-top: 0;
  border-top: 1px solid #000;
  padding: 1em;
}
@media (max-width: 767px) {
  .accordion.tabs .tab-content {
    font-size: 14px;
  }
}
.accordion.tabs .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #fff;
  cursor: pointer;
}/*# sourceMappingURL=accorditon.css.map */