@charset "UTF-8";
 

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

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

/* Accordion styles */
.tabs {
   
  overflow: hidden;
 
}

.tab {
  width: 100%;
  
  overflow: hidden;
}
.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.tab-label:hover {
 
}
.tab-label::after {
   content: "❯";
  width: 1em;
  height: 1em;
    font-size: 1.5rem;
    font-family: edimagBold;
    color:#0032a0 ;
  text-align: center;
  transition: all 0.35s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  
  transition: all 0.35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
   
  cursor: pointer;
}
.tab-close:hover {
  
}

input:checked + .tab-label {
  
}
input:checked + .tab-label::after {
  transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}