@charset "utf-8";

.openbtn {
  display: block;
  position: relative;

  cursor: pointer;
  width: 60px;
  height:65px;
  z-index: 20;
    background-color: #BA2854;
    order:2;
}

@media screen and (min-width: 768px),
print {
    .openbtn {
    order:1;
        margin-bottom:15px;
        height:65px;
    width:65px;
}
}




.openbtn span {
  display: inline-block;
  transition: all .4s;

  position: absolute;
  left: 16px;
  height: 3px;
  border-radius: 2px;
  background:#DF3F42;
  width: 45%;
    background-color: #FFF0F0;
}

.openbtn span:nth-of-type(1) {
  top: 23px;
}

.openbtn span:nth-of-type(2) {
  top: 31px;
}

.openbtn span:nth-of-type(3) {
  top: 39px;
}



.openbtn.active span:nth-of-type(1) {
  top: 28px;
  left: 21px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;

}

.openbtn.active span:nth-of-type(3) {
  top: 40px;
  left: 21px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}