
/*carga*/

#loading {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 2000;
}

.loader {
    background-color: white;
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.loader-inner {
    bottom: 0;
    height: 60px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap {
    -webkit-animation: 
		spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite
	;
            animation: 
		spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite
	;
    box-sizing: border-box;
    height: 50px;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    width: 100px;
}
.loader-line {
    border: 1px solid transparent;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}
.loader-line-wrap:nth-child(1) { -webkit-animation-delay: -50ms; animation-delay: -50ms; }
.loader-line-wrap:nth-child(2) { -webkit-animation-delay: -100ms; animation-delay: -100ms; }
.loader-line-wrap:nth-child(3) { -webkit-animation-delay: -150ms; animation-delay: -150ms; }
.loader-line-wrap:nth-child(4) { -webkit-animation-delay: -200ms; animation-delay: -200ms; }
.loader-line-wrap:nth-child(5) { -webkit-animation-delay: -250ms; animation-delay: -250ms; }

.loader-line-wrap:nth-child(1) .loader-line {
    border-color:hsl(120,100%,45%);
    height: 90px;
    width: 90px;
    top: 7px;
}
.loader-line-wrap:nth-child(2) .loader-line {
    border-color:hsl(343,98%,50%);
    height: 76px;
    width: 76px;
    top: 14px;
}
.loader-line-wrap:nth-child(3) .loader-line {
    border-color:hsla(0,0%,88%,1.00);
    height: 62px;
    width: 62px;
    top: 21px;
}
.loader-line-wrap:nth-child(4) .loader-line {
    border-color:hsla(120,100%,45%,1.00);
    height: 48px;
    width: 48px;
    top: 28px;
}
.loader-line-wrap:nth-child(5) .loader-line {
    border-color:hsla(0,0%,84%,1.00);
    height: 34px;
    width: 34px;
    top: 35px;
}

@-webkit-keyframes spin {
    0%, 15% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

@keyframes spin {
    0%, 15% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}


/*cierre carga*/

/*menú*/

.sm-button {
    position: fixed;
    top: 40%;
    right: 20px;
    padding: 40px 20px 0 20px;
    color:#fff;   
    z-index: 102;
    font-family: 'Muli', sans-serif;
    background-image: url("../imagenes/menu.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100px;
    height: 100px;
    text-align: center;
}

.sm-button:hover {
    letter-spacing: 1px;
}

.sm-activate .sm-overlay {
  opacity: 1;
  visibility: visible;
}


.sm-menu .sm-nav:nth-child(1) .nav-inner > a {
    font-size: 25px;
    border-bottom: 1px dotted rgba(255,255,255,1.00);
    padding: 10px 25px;

}


.sm-nav:nth-child(2) {
    border-left: 0.5px dotted white;
   
}
.sm-menu .sm-nav:nth-child(2) .nav-inner > a {
    font-size: 16px;
    margin-bottom: 5px;        
    font-weight: 500;
    letter-spacing: 1px;
}

.sm-activate {
  overflow: hidden;
}

.sm-menu {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  width: 1024px;
  height: 600px;
  left: 50%;
  top: 150%;
  margin-left: -512px;
  margin-top: -300px;
  z-index: 101;
}


.sm-menu.animated {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.sm-menu.sm-bottom-left {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: 150%;
  left: -150%;
}

.sm-menu.sm-bottom-right {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 150%;
  left: 150%;
}

.sm-menu.sm-top {
  top: -150%;
}

.sm-menu.sm-top-left {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -150%;
  left: -150%;
}

.sm-menu.sm-top-right {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -150%;
  left: 150%;
}

.sm-menu.sm-left {
  top: 50%;
  left: -150%;
}

.sm-menu.sm-right {
  top: 50%;
  left: 150%;
}

.sm-menu.re-rotate {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.sm-menu.ff-hack {
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
}

.sm-menu .sm-nav {
  -webkit-transform: translate3d(50%, 0, 0) scale(0.002, 1);
  -moz-transform: translate3d(50%, 0, 0) scale(0.002, 1);
  -ms-transform: translate3d(50%, 0, 0) scale(0.002, 1);
  -o-transform: translate3d(50%, 0, 0) scale(0.002, 1);
  transform: translate3d(50%, 0, 0) scale(0.002, 1);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
    background-image: url("../imagenes/ecailles_red.jpg");
    padding-left: 50px;
}


.sm-menu.sm-horizontal .sm-nav {
  -webkit-transform: translate3d(25%, 0, 0) scale(0.5, 0.002);
  -moz-transform: translate3d(25%, 0, 0) scale(0.5, 0.002);
  -ms-transform: translate3d(25%, 0, 0) scale(0.5, 0.002);
  -o-transform: translate3d(25%, 0, 0) scale(0.5, 0.002);
}

.sm-menu.sm-horizontal .sm-nav:nth-child(2) {
  -webkit-transform: translate3d(-25%, 0, 0) scaleX(0.5) scaleY(0.002);
  -moz-transform: translate3d(-25%, 0, 0) scaleX(0.5) scaleY(0.002);
  -ms-transform: translate3d(-25%, 0, 0) scaleX(0.5) scaleY(0.002);
  -o-transform: translate3d(-25%, 0, 0) scaleX(0.5) scaleY(0.002);
  transform: translate3d(-25%, 0, 0) scaleX(0.5) scaleY(0.002);
  right: 0;
}

.sm-menu .sm-nav .nav-inner{
  display: none;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  vertical-align: middle;
  white-space: normal;
  text-align: left;
}

.sm-menu .sm-nav .nav-inner.animated{
  display: inline-block;
}

.sm-menu .sm-nav:nth-child(2) {
  -webkit-transform: translate3d(-50%, 0, 0) scaleX(0.002);
  -moz-transform: translate3d(-50%, 0, 0) scaleX(0.002);
  -ms-transform: translate3d(-50%, 0, 0) scaleX(0.002);
  -o-transform: translate3d(-50%, 0, 0) scaleX(0.002);
  transform: translate3d(-50%, 0, 0) scaleX(0.002);
  right: 0;
}

.sm-menu .sm-nav.animated, .sm-menu.sm-horizontal .sm-nav.animated  {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
}

.sm-menu .sm-nav:after {
  content: "";
  position: relative;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.sm-menu .sm-close { /*X cierre menú*/
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 10px 15px;
  font-size: 40px;
  font-weight: 100;
  line-height: 100%;
}

.sm-menu .sm-close:hover {
  color: #36FF36;
}

.sm-menu .sm-nav .nav-inner > a {
  letter-spacing: 2px;
  line-height: 40px;
  margin-bottom: 32px;
  font-weight: 300;
  display: block;
  color: white;
}
.sm-menu .sm-nav .nav-inner > a:hover{
  color: #54FF54;
    letter-spacing: 3px;
}

.sm-menu .sm-close {
  color: white;
}

.sm-overlay {
  cursor: pointer;
  height: 100%;
  width: 100%;
  opacity: 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  overflow: hidden;
  visibility: hidden;
  background-color:rgba(255,255,255,0.8);
    
    
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; 
}



@-webkit-keyframes flyInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes flyInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes flyInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes flyInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.flyInRight {
  -webkit-animation-name: flyInRight;
  animation-name: flyInRight;
}


.flyInLeft {
  -webkit-animation-name: flyInLeft;
  animation-name: flyInLeft;
}



/* M E D I A _ Q U E R Y
*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/


/*1536 x 864 _ tercera resolución más usada*/
@media screen and (max-width:1600px) {
    
    
.sm-button {
    top: 45%;
    right: 10px;
    padding: 37px 20px 0 20px;
    font-size: 13px;
    line-height: 12px;
    width: 80px;
    height: 80px;
}
    
    
.sm-menu {
  width: 800px;
  height: 400px;
  margin-left: -400px;
  margin-top: -200px;
}
    
    
.sm-menu .sm-nav .nav-inner > a {
  font-size: 20px;
}
    
    
}

    
/*1024 x 768 _ Tablet horizontal*/    
@media screen and (max-width:1200px) {
    
.sm-menu {
    width: 700px;
    height: 400px;
    margin-left: -350px;
    margin-top: -200px;
}       
    
}  



/*768 x 1024 _ Tablet vertical*/    
@media screen and (max-width:800px) {
    
.sm-menu {
    width: 500px;
    height: 500px;
    margin-left: -250px;
    margin-top: -250px;
}    
    
}


/*480px intermedio*/    
@media screen and (max-width:600px) {
    
.sm-menu {
    width: 400px;
    height: 500px;
    margin-left: -200px;
    margin-top: -250px;
} 
    
}


/*360 x 640 _ Más popular en móvil*/    
@media screen and (max-width:400px) {
    
 .sm-menu {
    width: 300px;
    height: 500px;
    margin-left: -150px;
    margin-top: -250px;
}
    
    
.sm-button {
    top: 80%;
    right: 7px;    
}
     
    
    
}
    
    
















