
#wrapper {
  padding: 50px 0;
  width: 100%;
  min-height: 100%;
  background-color: #3498db;
}

.acc {
  margin: auto;
  /*width: 35%;*/
  padding: 10px 22%;
/*  min-width: 300px;*/
}

.tab {
  position: relative;
  border-top: 1px solid #ccc;
}
.tab:last-child {
  border-bottom: 1px solid #ccc;
}
.tab .toggler:hover {
  color: white;
}
.tab .toggler:hover .icon * {
  background-color: white;
}
.tab .content {
  overflow: hidden;
  max-height: 0;
  transition: all .3s ease-in-out;
}


/*label {
  padding: 10px 0;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  position: relative;
}*/


label .icon {
width: 20px;
    height: 20px;
    position: absolute;
    right: 84px;
    top: 69px;
	
	display: none;
}
label .icon span {
  background-color: white;
  display: inline-block;
  position: absolute;
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}
label .icon span:first-child {
  width: 2px;
  height: 20px;
  left: 9px;
}
label .icon span:last-child {
  width: 20px;
  height: 2px;
  top: 9px;
  margin-left: -10px;
}

input {
  display: none;
}

input:checked ~ .content {
  max-height: 600px;
  transition: all .3s ease-in-out;
}

input:checked ~ .toggler .icon span:first-child {
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
