@charset "UTF-8";
/* CSS Document */

#accordion {
  line-height: 15px;
}

input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.row {
  display: -webkit-box;
  display: flex;
}
.row .col {
  -webkit-box-flex: 1;
          flex: 1;
}
.row .col:last-child {
  margin-left: 1em;
}

/* Accordion styles */
.tabs {
  overflow: hidden;
  /*box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);*/
}

.tab {
  width: 100%;
  overflow: hidden;
}
.tab-label {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 1em;
  background: #0f88b6;
  color: white;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.tab-label:hover {
  background: white;
  color: #0f88b6;
}
.tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-transition: all 0s;
  transition: all 0s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  background-color:#c7e7f1;
  -webkit-transition: all 0s;
  transition: all 0s;
}

.last-one{
	margin:0;
}

.tab-close {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #0f88b6;
  color:white;
  cursor: pointer;
}
.tab-close:hover {
 background: white;
  color: #0f88b6;
}

input:checked + .tab-label {
  background: white;
   color: #0f88b6;
  
}
input:checked + .tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}

