fieldset{margin:0;padding:0;border:0}
fieldset.column{display:block;height:100%;width:50%}
.left{position:absolute;left:0}
.right{position:absolute;right:0}

.half {
  width: 45%;
  float:left;
  margin 0 auto;
  padding: 10px;
  position: relative;
}
.half .right {
  margin-left:50%;
}
.half .left {
  float:left;
}
.clearboth {
	clear: both;}

/* Accordin styles */
.tab {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.0em;
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  color: #fff;
  overflow: hidden;
}
input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
label {
  position: relative;
  display: block;
  padding: 0 2em 0 1em;
  background: #002b00;
  font-weight: bold;
  line-height: 2.2em;
  cursor: pointer;
}
.blue label {
  background: #000066;
}
.tab-content {
  max-height: 0;
  overflow: hidden;
  background: #90EE90;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
  color: #000;
}
.blue .tab-content {
  background: #00B0F0;
  color: #000;
}
.tab-content p {
  margin: 1em;
  line-height:1.12em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
}
/* :checked */
input:checked ~ .tab-content {
  max-height: 10em;
}
/* Icon */
label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
input[type=checkbox] + label::after {
  content: "+";
  color: #ffff00;
}
input[type=radio] + label::after {
  content: "\25BC";
}
input[type=checkbox]:checked + label::after {
  transform: rotate(315deg);
  color: #FF9797;
}
input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
  color: #FF9797;
}

/*----------	Tablet size    ---------*/		
		
@media only screen and (max-width: 768px) {

.half {
  width: 100%;}
}

/*----------	Iphone size    ---------*/		
	
@media only screen and (max-width: 320px) {

.half {
  width: 100%;}
}