.formtype {
  opacity: 0;
  display: none;
}
.formtype.active {
  opacity: 1;
  display: block;
}
.selected-item {
  margin: 20px 0;
  text-align: center;
      margin-bottom: 60px;
}
.selected-item p {
  font-size: 18px;
}
.selected-item p span {
  font-weight: bold;
}
/* dropdown list */
.contact .dropdown{margin: 0 auto 30px auto;position: relative;perspective: 800px;z-index: 5;padding: 0 15px;}
.dropdown.active .selLabel:after {
  content: '\25B2';
}
.dropdown.active .dropdown-list li:nth-child(1) {
  transform: translateY(100%);
}
.dropdown.active .dropdown-list li:nth-child(2) {
  transform: translateY(200%);
}
.dropdown.active .dropdown-list li:nth-child(3) {
  transform: translateY(300%);
}
.dropdown.active .dropdown-list li:nth-child(4) {
  transform: translateY(400%);
}
.dropdown > span {
  /*box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);*/
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
  background: #000;
  display: block;
  padding: 0 50px 0 30px;
  position: relative;
  z-index: 5;
  cursor: pointer;
text-align:center;
  transform-style: preserve-3d;
  transform-origin: 50% 0%;
  transition: transform 300ms;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
  user-select: none;
      text-transform: uppercase;
}
.dropdown > span:after {content: '\25BC';text-align: center;margin-left: 25px;font-size: 12px;line-height: 24px;}
.dropdown > span:active {
  transform: rotateX(45deg);
}
.dropdown > span:active:after {
  content: '\25B2';
}
.contact .dropdown-list{position: absolute;top: 0px;width: calc(100% - 30px);}
.dropdown-list li {
  display: block;
  list-style: none;
  left: 0;
  opacity: 1;
  transition: transform 300ms ease;
  position: absolute;
  top: 0;
  width: 100%;
}
.dropdown-list li:nth-child(1) {
  background-color: #f69540;color:#fff;
  z-index: 4;
  transform: translateY(0);
}
.dropdown-list li:nth-child(2) {
  background-color: #fff;color: #f69540;
  z-index: 3;
  transform: translateY(3%);
}
.dropdown-list li:nth-child(3) {
  background-color: #9b59b6;
  z-index: 2;
  transform: translateY(6%);
}
.dropdown-list li:nth-child(4) {
  background-color: #e67e22;
  z-index: 1;
  transform: translateY(9%);
}
.dropdown-list li span {
   
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
  user-select: none;
  width: 100%;
  font-size: 18px;
  line-height: 60px;
  padding: 0 30px;
  display: block;
text-align:center;
  cursor: pointer;
  letter-spacing: 2px;
       text-transform: uppercase;
}

@media screen and (max-width:768px){
.dropdown > span {
    font-size: 12px;
    padding: 0;
    letter-spacing: 1px;
}
.dropdown-list li span {font-size: 14px;}
.dropdown > span:after {margin-left: 5px;}
}



