@charset "UTF-8";
body {
   background-color: #F4F5FB;
   color: #676767;
   font-size: 14px;
   width: 100%;
}

h1 {
  margin: 0;
  line-height: 2;
  text-align: center;
}

h2 {
  font-weight: normal;
  height: 52px;
  line-height: 52px;
  font-size: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.row {
  display: flex;
}
.row .col {
  flex: 1;
}
.row .col:last-child {

}

/* Accordion styles */
.tabs {
  border-radius: 8px;
  overflow: hidden;
}

.tab {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #F5F4F9;
}
.tab-label {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  height: 52px;
  line-height: 52px;
  font-size: 14px;
  padding-left: 16px;
  padding-right: 16px;  
  background-color: #fff;
  /* Icon */
}
.tab-label:hover {

}
.tab-label::after {
    content: "";
    background: url("../img/arow-left.png") no-repeat;
    width: 9px;
    height: 17px;
    text-align: center;
    transition: all 0.35s;
    margin-top: 21px;
}
.tab-label:last-child::after {
    content: "";
    background:none;
}
.tab-content {
  max-height: 0;
  transition: all 0.35s;
}
.tab-content ul li {
    padding: 18px 0;
    font-size: 14px;
    padding-left: 16px;
    padding-right: 16px;   
    border-bottom: 1px solid #E1E1E4; 
    list-style: inside;
}
.tab-content ul li:last-child {
    border: none;
}
.tab-content ul li a {
    color: #676767;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}
.tab-close:hover {
  /* background: #1a252f; */
}

input:checked + .tab-label {
  /* background: #1a252f; */
}
input:checked + .tab-label::after {
  transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;
}
