/* CSS Document */


/* Icon 1 */

#iconoMenuM {
  width: 20px;
  height: 20px;
  position: fixed;
	top: -2px;
	left: 20px;
  margin: 18px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .2s ease-in-out;
  -moz-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
 /* cursor: pointer;*/
	z-index: 2001;
}



#iconoMenuM span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #2c3b4c;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

/* Icon 3 */

#iconoMenuM span:nth-child(1) {
  top: 0px;
}

#iconoMenuM span:nth-child(2),#iconoMenuM span:nth-child(3) {
  top: 7px;
}

#iconoMenuM span:nth-child(4) {
  top: 14px;
}

@media (max-width: 449px) {
  #iconoMenuM.open{
    left: calc( 100% - 45px );
  }
  
}

@media (min-width: 450px) {
  #iconoMenuM.open{
    left: 410px;
  }
}


#iconoMenuM.open span:nth-child(1) {
  top: 6px;
  width: 0%;
  left: 50%;
}

#iconoMenuM.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
	background: #fff;
}

#iconoMenuM.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
	background: #fff;
}

#iconoMenuM.open span:nth-child(4) {
  top: 6px;
  width: 0%;
  left: 50%;
}