input[type=checkbox] {
	display:none;
}	


.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;
  padding:0 0 0 0;
}
.tabs .three {
	width:100%;
font-family: 'Poppins', sans-serif;
	font-size:14px;
	color:#926d34;
	padding:5% 0 0 0;
	text-align:center;
	    line-height: 20px;
		font-weight:600;

}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;
    margin-bottom:2%;
}
.tab-label {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 1em;
  background: #ffffff;
  color:#000000;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight:normal;
  /* Icon */
}
.blink {
    animation: blinker 1s linear infinite;
  }  

  @keyframes blinker {
    10% {
      opacity: 0.1;
	  color:#ff0000;

    }
  }
  
.tab-label:hover {
  background: #a58553;
  color:#FFFFFF;
}
.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: #2c3e50;
  background: white;
  -webkit-transition: all .35s;
  transition: all .35s;
    font-family: 'Poppins', sans-serif;
	  font-weight:normal;
}
.tab-close {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #a58553;
  cursor: pointer;
}
.tab-close:hover {
  background: #a58553;
}

input:checked + .tab-label {
  background: #a58553;
}
input:checked + .tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 2000vh;
  padding: 1em;
}

.tab {

}
.tab h2 {
	width:100%;
font-family: 'Poppins', sans-serif;
	font-size:20px;
	color:#ffffff;
	padding:5px 0 5px 0;
	text-align:center;

	background:#926d34;
}
.tab h5 {
	width:100%;
font-family: 'Poppins', sans-serif;
	font-size:14px;
	color:#5a5a50;
	padding:1% 0 1% 0;
	text-align:left;
		font-weight:normal;
}
.tab p {
	width:100%;
font-family: 'Poppins', sans-serif;
	font-size:15px;
	color:#5a5a50;
	padding:1% 0 1% 0;
	    line-height: 27px;
		font-weight:normal;
}

/*** Responsive ***/
@media only screen and (min-width:320px) {
.tabs .three {
	padding:13% 0 0 0;
		font-size:17px;
}
}
@media only screen and (min-width:990px) {
.tabs .three {
	padding:2% 0 0 0;
}
}