@charset "UTF-8";
/* Accordion styles */
.bs-accord {
  margin-top: -8px;
}
.bs-accord .tabs {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}
.bs-accord .tab {
  width: 100%;
  overflow: hidden;
}
.bs-accord .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em 10px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #eee;
}
.bs-accord .tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
  color: #dedede;
}
.bs-accord .tab-content {
  max-height: 0;
  transition: all 0.35s;
  opacity: 0;
}
.bs-accord .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  cursor: pointer;
}
.bs-accord input:checked + .tab-label {
  background-color: #fafafa;
}
.bs-accord input:checked + .tab-label::after {
  transform: rotate(90deg);
}
.bs-accord input:checked ~ .tab-content {
  max-height: 100%;
  padding: 1em 10px;
  opacity: 1;
}
.bs-accord input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
