

h1 {
  margin: 0;
  line-height: 2;
  text-align: center;
}

h2 {
  margin: 0 0 .5em;
  font-weight: normal;
}

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: 0em;
}

/* Accordion styles */
.tabs {

  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);

}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;


}
.tab-label { 
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 1em;
  background: #fff;
  color: #000;
  font-weight: bold;
  cursor: pointer; 
  
  /* Icon */
}
.tab-label:hover {
  background: #fff;border: 1px solid #8d0100;
}
.tab-label::after {  
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-transition: all .35s;
  transition: all .35s;
}
.tab-content { 
  max-height: 0;
  padding: 0 1em;
  color: #000;
  background: white;
  -webkit-transition: all .35s;
  transition: all .35s;

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

input:checked + .tab-label { border: 2px solid #8d0100;
  background: #fff; 
}
input:checked + .tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh; 
  padding: 1em;
}
.float{	float: left; width: 49.5%; padding-left: 5px}
.accordion_img{width: 5%}
.accordion_txt{width: 89.98%; padding: 3px}
@media (max-width: 500px)
 {
.float{float: none; width: 99%; padding-left: none}
.accordion_img{width: 10%}
.accordion_txt{width: 79.98%; padding: 3px}
	}