@charset "UTF-8";
/*----Coloress----*/
.text-underline{
  text-decoration: underline!important;
}
.bg-grey-light {
  background-color: #EDEDED;
}

.bg-grey-medium {
  background-color: #f8f8fa;
}

.pad-bot-mobile {
  padding-bottom: 30px;
}

.bg-purple-nuevo {
  background-color: #752678;
}

.menos35 {margin-top: -35px;}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    -ms-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    -ms-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    -ms-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    -ms-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1 !important;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    -ms-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    -ms-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    -ms-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    -ms-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    -ms-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    -ms-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    -ms-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -ms-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    -ms-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    -ms-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    -ms-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -ms-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    -ms-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    -ms-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    -ms-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

button, html, input, select, textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a:focus {
  outline: thin dotted;
}

a:active, a:hover {
  outline: 0;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.83em;
}

h6 {
  font-size: 0.67em;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

mark {
  background: #ff0;
  color: #000;
}

p, pre {
  margin: 0 0 1rem;
}

code, kbd, pre, samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:after, q:before {
  content: "";
  content: none;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl, menu, ol, ul {
  margin: 0;
}

dd {
  margin: 0 0 0 40px;
}

menu, ol, ul {
  padding: 0;
}

nav ol, nav ul {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}

button[disabled], html input[disabled] {
  cursor: not-allowed;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button, html, input, select, textarea {
  color: #222;
}

body {
  font-size: 1em;
  line-height: 1.5;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

img {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  white-space: nowrap;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #ffffff;
  background-color: #333333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/*** print*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a, a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  blockquote, pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  img, tr {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  h2, h3, p {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 1100px;
}

.container.max-1000 {
  width: 100%;
  max-width: 1000px;
}

.solo-vd .box_oferta_planes .container {
  max-width: 100%;
}
.solo-vd .oferta_plan {
  max-width: 730px;
  margin: 0 auto 50px;
  display: block;
}

.xblack {
  color: black !important;
}

@media (max-width: 1200px) {
  .container {
    width: 100%;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.fl-non {
  float: none;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@font-face {
  font-family: "cera";
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/Cera-Black.eot");
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/Cera-Black.eot?#iefix") format("embedded-opentype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/Cera-Black.woff") format("woff"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/Cera-Black.ttf") format("truetype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/Cera-Black.otf") format("opentype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/Cera-Black.svg#Cera-Black") format("svg");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "cera";
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/Cera-Bold.eot");
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/Cera-Bold.eot?#iefix") format("embedded-opentype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/Cera-Bold.woff") format("woff"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/Cera-Bold.ttf") format("truetype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/Cera-Bold.otf") format("opentype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/Cera-Bold.svg#Cera-Bold") format("svg");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "cera";
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-medium-webfont.eot");
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-medium-webfont?#iefix") format("embedded-opentype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-medium-webfont.woff") format("woff"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-medium-webfont.ttf") format("truetype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-medium-webfont.svg#cera-medium-webfont") format("svg");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "cera";
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-regular-webfont.eot");
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-regular-webfont.otf");
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-regular-webfont.eot?#iefix") format("embedded-opentype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-regular-webfont.woff") format("woff"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-regular-webfont.ttf") format("truetype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-regular-webfont.svg#cera-regular-webfont") format("svg");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "cera";
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-light-webfont.eot");
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-light-webfont.eot?#iefix") format("embedded-opentype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-light-webfont.woff") format("woff"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-light-webfont.ttf") format("truetype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-light-webfont.svg#cera-light-webfont") format("svg");
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
.text-center {
  text-align: center !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-none {
  text-transform: none !important;
}

.h2 {
  font-weight: 600 !important;
}

.text-purple {
  color: #5A1A5D !important;
}

.text-white {
  color: #ffffff !important;
}

small {
  color: #58545c;
  margin-bottom: 2rem;
  display: block;
}

/* -- inicio icon wom library -- */
@font-face {
  font-family: "icowom";
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/icowom.eot?jpbk1e");
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/icowom.eot?jpbk1e#iefix") format("embedded-opentype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/icowom.ttf?jpbk1e") format("truetype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/icowom.woff?jpbk1e") format("woff"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/icowom.svg?jpbk1e#icowom") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^=icone-], [class*=" icone-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icowom" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icone-logo-wom:before {
  content: "";
}

.icone-airplane:before {
  content: "";
}

.icone-arrow-left:before {
  content: "";
}

.icone-arrow-right:before {
  content: "";
}

.icone-check-circle:before {
  content: "";
}

.icone-check:before {
  content: "";
}

.icone-cloud:before {
  content: "";
}

.icone-darth-vader:before {
  content: "";
}

.icone-hand-01:before {
  content: "";
}

.icone-hand-02:before {
  content: "";
}

.icone-home-outline:before {
  content: "";
}

.icone-home:before {
  content: "";
}

.icone-telephone:before {
  content: "";
}

.icone-smartphone:before {
  content: "";
}

.icone-phone-outline:before {
  content: "";
}

.icone-pagofacil:before {
  content: "";
}

.icone-recargar2:before {
  content: "";
}

.icone-pago-facil:before {
  content: "";
}

.icone-mensaje:before {
  content: "";
}

.icone-recarga-01:before {
  content: "";
}

.icone-phone-uno:before {
  content: "";
}

.icone-portate:before {
  content: "";
}

.icone-renueva:before {
  content: "";
}

.icone-app:before {
  content: "";
}

.icone-pin-outline:before {
  content: "";
}

.icone-pin:before {
  content: "";
}

.icone-sucursales:before {
  content: "";
}

.icone-profile-outline:before {
  content: "";
}

.icone-profile:before {
  content: "";
}

.icone-speech-bubble:before {
  content: "";
}

.icone-wifi-outline:before {
  content: "";
}

.icone-wifi:before {
  content: "";
}

.icone-range:before {
  content: "";
}

.icone-signal:before {
  content: "";
}

.icone-rocket-copy:before {
  content: "";
}

.icone-search:before {
  content: "";
}

.icone-worldwide:before {
  content: "";
}

.icone-star-semi:before {
  content: "";
}

.icone-star:before {
  content: "";
}

.icone-facebook:before {
  content: "";
}

.icone-instagram:before {
  content: "";
}

.icone-whatsapp-2:before {
  content: "";
}

.icone-whatsapp:before {
  content: "";
}

.icone-twitter:before {
  content: "";
}

.icone-skype:before {
  content: "";
}

.icone-messenger:before {
  content: "";
}

.icone-linkedin:before {
  content: "";
}

.icone-snapchat:before {
  content: "";
}

.icone-youtube:before {
  content: "";
}

.icone-feed:before {
  content: "";
}

.icone-facebook-circle:before {
  content: "";
}

.icone-twitter-circle:before {
  content: "";
}

.icone-instagram-circle:before {
  content: "";
}

.icone-snapchat-circle:before {
  content: "";
}

/* -- fin icon wom library -- */
@font-face {
  font-family: "icomoon";
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/icomoon.eot?mgoums");
  src: url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/icomoon.eot?mgoums#iefix") format("embedded-opentype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/icomoon.ttf?mgoums") format("truetype"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/icomoon.woff?mgoums") format("woff"), url("https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/icomoon.svg?mgoums#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-airbnb:before {
  content: "";
}

.icon-amazon:before {
  content: "";
}

.icon-drive:before {
  content: "";
}

.icon-messeger:before {
  content: "";
}

.icon-netflix:before {
  content: "";
}

.icon-uber:before {
  content: "";
}

.icon-visa:before {
  content: "";
}

.icon-snapchat:before {
  content: "";
}

.icon-nokia:before {
  content: "";
}

.icon-zte:before {
  content: "";
}

.icon-checkbox-off:before {
  content: "";
}

.icon-checkbox-on:before {
  content: "";
}

.icon-folder:before {
  content: "";
}

.icon-map-pin:before {
  content: "";
}

.icon-location-arrow:before {
  content: "";
}

.icon-close-circle2:before {
  content: "";
}

.icon-alert:before {
  content: "";
}

.icon-loading-arrow:before {
  content: "";
}

.icon-star-semi:before {
  content: "";
}

.icon-check-circle:before {
  content: "";
}

.icon-chevron-left:before {
  content: "";
}

.icon-chevron-right:before {
  content: "";
}

.icon-battery:before {
  content: "";
}

.icon-chip:before {
  content: "";
}

.icon-wireless:before {
  content: "";
}

.icon-angle-down:before {
  content: "";
}

.icon-apple:before {
  content: "";
}

.icon-camera:before {
  content: "";
}

.icon-check:before {
  content: "";
}

.icon-close:before {
  content: "";
}

.icon-filter:before {
  content: "";
}

.icon-huawei:before {
  content: "";
}

.icon-lg:before {
  content: "";
}

.icon-modem-wifi:before {
  content: "";
}

.icon-motorola:before {
  content: "";
}

.icon-plus:before {
  content: "";
}

.icon-samsung:before {
  content: "";
}

.icon-smartphone:before {
  content: "" !important;
}

.icon-sony:before {
  content: "";
}

.icon-star-10:before {
  content: "";
}

.icon-tablet:before {
  content: "";
}

.icon-trash:before {
  content: "";
}

.icon-photo:before {
  content: "";
}

.icon-angle-left:before {
  content: "";
}

.icon-info:before {
  content: "";
}

.icon-star:before {
  content: "";
}

.icon-footer-call:before {
  content: "";
}

.icon-footer-range:before {
  content: "";
}

.icon-footer-wtsp:before {
  content: "";
}

.icon-comprar-wom:before {
  content: "";
}

.icon-plan-wom:before {
  content: "";
}

.icon-call-phone:before {
  content: "";
}

.icon-portability:before {
  content: "";
}

.icon-promo-tag:before {
  content: "";
}

.icon-close-menu:before {
  content: "";
}

.icon-menu-mobile:before {
  content: "";
}

.icon-close-circle:before {
  content: "";
}

.icon-centro-de-ayuda:before {
  content: "";
}

.icon-facebook2:before {
  content: "";
}

.icon-convenientes:before {
  content: "";
}

.icon-sucursales:before {
  content: "";
}

.icon-twitter-convenientes:before {
  content: "";
}

.icon-4g:before {
  content: "";
}

.icon-instragram:before {
  content: "";
}

.icon-mi-wom:before {
  content: "";
}

.icon-pin:before {
  content: "";
}

.icon-twitter2:before {
  content: "";
}

.icon-config:before {
  content: "";
}

.icon-recarga:before {
  content: "";
}

.icon-portateaqui:before {
  content: "";
}

.icon-red4g:before {
  content: "";
}

.icon-pagofacil:before {
  content: "";
}

.icon-whatsapp:before {
  content: "";
}

.icon-foursquare:before {
  content: "";
}

.icon-pinterest:before {
  content: "";
}

.icon-linkedin:before {
  content: "";
}

.icon-skype:before {
  content: "";
}

.icon-tumblr:before {
  content: "";
}

.icon-vimeo:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-feed:before {
  content: "";
}

.icon-twitter:before {
  content: "";
}

.icon-telegram:before {
  content: "";
}

.icon-spotify:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-contact:before {
  content: "";
}

.icon-lenovo:before {
  content: "";
}

.icon-radio_button_unchecked:before {
  content: "";
}

.icon-solid-circle:before {
  content: "";
}

/*
  =====================     Base =====================
*/
body {
  /*color: $color-base;*/
  background: #fff;
  font-family: "cera";
  font-size: 14px;
  font-font-weight: 300;
  margin-top: 87px;
  /*font-feature-settings: "lnum";*/
}

html, body {
  overflow-x: hidden;
}

.container-fluid {
  padding: 0;
}

/*
  =====================     titles =====================
*/
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  line-height: 120%;
  font-feature-settings: "lnum";
}

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2 {
  font-size: 34px;
}

h3,
.h3 {
  font-size: 18px;
  font-weight: 900;
}

h4,
.h4 {
  font-size: 16px;
}

h5,
.h5 {
  font-size: 14px;
}

h6,
.h6 {
  font-size: 13px;
}

body, h1, h2, h3, h4, p, span {
  font-family: "cera";
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}

/*
  ===================== fin titles =====================
*/
.separate-box h4 {
  margin-bottom: 10px;
}
.separate-box + .separate-box {
  margin-top: 30px;
}

.top-content {
  text-align: center;
}

.list-bullet li {
  padding-left: 10px;
  line-height: 120%;
  background: url("../../img/icons/bullet.png") 0 5px no-repeat;
}
.list-bullet li + li {
  margin-top: 10px;
}

@media (min-width: 769px) {
  .flex-equal {
    display: flex;
  }
  .flex-equal [class^=grid-] {
    background-color: white;
  }
}
.owl-people {
  margin-top: 30px;
}

.box-people {
  padding: 0 10px;
}
.box-people .nombre {
  margin-top: 20px;
  font-weight: 600;
}
.box-people .descripcion {
  color: #555;
}
.box-people img {
  max-width: 100%;
}
@media (max-width: 768px) {
  body {
    margin-top: 40px;
  }
  .box-people {
    text-align: center;
  }
}

/*
.owl-item:nth-child(2n) {
  .box-people {
  }
}
*/
.owl-pagination {
  text-align: center;
  margin-top: 40px;
}
.owl-pagination .owl-page {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transition: 0.2s;
  background-color: #C7C7C7;
}
.owl-pagination .owl-page.active {
  background-color: #E30000;
}
.owl-pagination .owl-page + .owl-page {
  margin-left: 5px;
}

/*
Generales
*/
*:focus {
  outline: none;
}

button {
  font-family: "cera";
}

ul {
  margin-left: 0;
}

.only-on-mobile {
  display: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: bolder;
}

a {
  text-decoration: none;
}
a.purple {
  color: #8B4BA3;
  transition: all ease 3ooms;
}
a.purple:hover {
  color: #D9005B;
}

p {
  line-height: 140%;
}
p + p {
  /*margin: $margen;*/
}
p.purple {
  color: #3e1051;
}
p a {
  color: #3e1051;
  text-decoration: underline;
}

.disclaimer-text {
  font-size: 16px;
}

.relative-element {
  position: relative;
}

.full {
  width: 100%;
}

.ohidden {
  overflow: hidden;
}

.icon-element {
  display: inline-block;
  vertical-align: middle;
}

.cent-text {
  text-align: center;
}

.cent-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: block;
}

.small-italic {
  font-size: 11px;
  font-style: italic;
}

/*
Auxiliares
*/
.to-left {
  float: left;
}

.to-right {
  float: right;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.text-gris {
  color: #777;
}

.relative-position {
  position: relative;
}

.ohidden {
  overflow: hidden;
}

.list-none {
  list-style: none;
}

.inline-list {
  display: table;
  width: 100%;
}
.inline-list li {
  display: table-cell;
  vertical-align: middle;
}
.inline-list.floated {
  display: block;
  overflow: hidden;
}
.inline-list.floated li {
  display: block;
  float: left;
  margin-right: 10px;
}

.block-element {
  display: block;
}

.inline-element {
  display: inline-block;
  vertical-align: middle;
}

.table-element {
  display: table;
  width: 100%;
}
.table-element .csm-table-cell {
  display: table-cell;
}

.hidden-element {
  display: none;
}

span.purple {
  color: #4a0e66;
  font-size: 16px;
  font-weight: bold;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
}

.button-reset, .close-lightbox, .btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  border: 0;
  outline: 0;
  padding: 0;
}

.border {
  border: 1px solid;
}

.elastic-img {
  width: 100%;
  height: auto;
}

.elastic-img-limit {
  max-width: 100%;
  height: auto;
}

.bordered-img {
  background-color: #FFF;
  padding: 5px;
}

.fly-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.centered-img {
  display: block;
  margin: 0 auto;
}

.centered-element {
  display: block !important;
  margin: 0 auto;
}

.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.clear {
  clear: both;
}

.line-botom {
  border-bottom: 1px solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.small-text {
  font-size: 12px;
}

.full-container {
  clear: both;
  display: block;
  margin-bottom: 20px;
  width: 100%;
}

.purple-bg {
  background: #3e1051;
}

.white-bg {
  background: #fff;
}

.gray-bg {
  background: #F5F5F5;
}

.gray2-bg {
  background: #e4e8eb;
}

.black-bg {
  background: #000;
}

.white-text-area * {
  color: #fff;
}

.purple-text-area * {
  color: #3e1051;
}

.cent-img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.purple-gradient-bg {
  background: #4A0E66;
  -webkit-box-shadow: inset 0px 132px 55px -64px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: inset 0px 132px 55px -64px rgba(0, 0, 0, 0.35);
  box-shadow: inset 0px 132px 55px -64px rgba(0, 0, 0, 0.35);
}

.middle-size-text {
  font-size: 30px;
  font-weight: bold;
}

.max-800-box {
  margin-left: auto;
  margin-right: auto;
  max-width: 840px;
  padding: 10px 20px;
  position: relative;
}

.pad-bottom-20 {
  padding-bottom: 20px !important;
}

.pad-bottom-30 {
  padding-bottom: 30px !important;
}

.pad-bottom-40 {
  padding-bottom: 40px !important;
}

.pad-bottom-50 {
  padding-bottom: 50px !important;
}

.pad-top-50 {
  padding-top: 50px !important;
}

.pad-top-40 {
  padding-top: 40px !important;
}

.pad-top-30 {
  padding-top: 30px !important;
}

.pad-top-20 {
  padding-top: 20px !important;
}

.pad-top-10 {
  padding-top: 10px !important;
}

.mar-bottom-5 {
  margin-bottom: 5px !important;
}

.mar-top-10 {
  margin-top: 10px !important;
}

.mar-top-20 {
  margin-top: 20px !important;
}

.mar-top-30 {
  margin-top: 30px !important;
}

.mar-top-40 {
  margin-top: 40px !important;
}

.mar-top-50 {
  margin-top: 50px !important;
}

.mar-bottom-10 {
  margin-bottom: 10px !important;
}

.mar-bottom-20 {
  margin-bottom: 20px !important;
}

.mar-bottom-30 {
  margin-bottom: 30px !important;
}

.mar-bottom-40 {
  margin-bottom: 60px !important;
}

.mar-bottom-50 {
  margin-bottom: 50px !important;
}

.mar-bottom-60 {
  margin-bottom: 60px !important;
}

.mar-right-8 {
  margin-right: 8%;
}
@media only screen and (max-width: 1100px) {
  .mar-right-8.first-break-cent {
    margin-left: auto;
    margin-right: auto;
    float: none;
    display: table;
  }
}

#cayuda {
  background-color: #f3f3f7;
  color: #381451;
  position: fixed;
  top: 380px;
  right: -74px;
  z-index: 999999;
  transform: rotate(-90deg);
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 0.4rem 0.4rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.4);
}

#cayuda a {
  color: #381451;
}

#cayuda a:active {
  color: #381451;
}

#cayuda a:hover {
  color: #801a93;
}

.fs875 {
  font-size: 0.875rem !important;
}

.section_title_page-bajada {
  font-size: 1.2rem;
}

.mar-right-20 {
  margin-right: 20px;
}

.no-pad-right {
  padding-right: 0;
}
@media (max-width: 767px) {
  .no-pad-right {
    padding-right: 15px;
  }
}

.no-pad-left {
  padding-left: 0;
}

.white-right-border {
  border-right: solid 2px #fff;
}
@media only screen and (max-width: 768px) {
  .white-right-border {
    border: none;
  }
}

.pad-h-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.arrow-list li {
  color: #6a6a6a;
  list-style: outside none none;
  margin-bottom: 10px;
  padding: 0 0 0 14px;
  position: relative;
  text-align: left;
}
.arrow-list li:before {
  border-bottom: 4px solid transparent;
  border-left: 8px solid #777777;
  border-top: 4px solid transparent;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  top: 7px;
  width: 0;
}
.arrow-list li.not-arrow{
  padding: 0;
}
.arrow-list li.not-arrow:before {
  display: none;
}
.max-970 {
  margin: 0 auto;
  max-width: 970px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 970px) {
  .max-970 {
    width: 100%;
    padding: 0 20px;
  }
}

.max-w-774 {
  margin: 0 auto;
  max-width: 774px;
  position: relative;
}

.cent-element {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.circle-check-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  list-style: none;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0 0 0 28px;
  position: relative;
}
.circle-check-list li:after {
  content: "";
  height: 19px;
  left: 0;
  position: absolute;
  top: 1px;
  width: 19px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/white-check.svg) center no-repeat;
}

.hidden-target {
  padding: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: all 300ms ease;
}
.hidden-target.active {
  padding-top: 30px;
  opacity: 1;
  visibility: visible;
  max-height: 20000px;
  transition: all 300ms ease;
}

/*------------------------------------------------------------------------------Media queris */
@media only screen and (max-width: 1200px) {
  .pad-10-200 {
    padding: 0 5%;
  }
}
@media only screen and (max-width: 768px) {
  .cent-768 {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .border-b-768 {
    border-bottom: solid 2px #fff;
  }
}
@media only screen and (max-width: 767px) {
  .only-on-mobile {
    display: block !important;
  }

  .hide-if-mobile {
    display: none !important;
  }

  .full-if-mobile {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
}
@media only screen and (max-width: 640px) {
  .full-640 {
    width: 100%;
    margin-bottom: 20px;
  }
}
.item-legal-text {
  font-size: 0.7rem !important;
  color: #fff;
  text-align: center !important;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 !important;
  text-transform: initial !important;
}
.item-legal-text.tx-purple {
  color: #381750;
}

.item-legal-text a {
  text-decoration: underline;
  font-weight: normal;
  text-transform: initial;
}

/*
Botones
*/
.btn {
  font-family: "cera";
  background-color: #9B9B9B;
  border: none;
  color: #ffffff;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  transition: all ease 300ms;
  vertical-align: middle;
  border-radius: 0.25rem;
}
.btn:hover {
  background-color: #828282;
  color: #ffffff;
  border-radius: 0.25rem;
}
.btn.rainbow {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-family: "cera";
  font-weight: 600;
  background: #d9005d;
  /* Old browsers */
  background: -moz-linear-gradient(left, #d9005d 0%, #b30075 100%);
  background: -webkit-linear-gradient(left, #d9005d 0%, #b30075 100%);
  background: linear-gradient(to right, #d9005d 0%, #b30075 100%);
  border: solid 1px transparent;
  transition: all 300ms ease;
}
.btn.rainbow:hover {
  border: solid 1px #3e1051;
  background: #fff;
  color: #3e1051;
  transition: all 300ms ease;
}
.btn.pink {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-family: "cera";
  font-weight: 600;
  background: #E92070;
  border: solid 1px transparent;
  transition: all 300ms ease;
}
.btn.pink:hover {
  border: solid 1px #AF0861;
  background: #AF0861;
  color: #ffffff;
  transition: all 300ms ease;
}
.btn.cent {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: block;
}
.btn.auto-cent {
  display: table;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.btn.transparent {
  border: 1px solid #3e1051;
  background: transparent;
  color: #3e1051;
  font-weight: normal;
  transition: all ease 300ms;
}
.btn.transparent.white {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn.transparent.white:hover {
  border: 1px solid #fff;
  color: #3e1051;
  background: #fff;
}
.btn.transparent.white.border-1 {
  border: 1px solid #ffffff;
}
.btn.transparent:hover {
  border: 1px solid #3e1051;
  color: #fff;
  background: #3e1051;
}
@media only screen and (max-width: 640px) {
  .btn.auto-cent-640 {
    display: block;
    float: none;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}

.link {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}
.link.white {
  color: #fff;
  transition: all 300ms ease;
}
.link.white * {
  color: #fff;
  transition: all 300ms ease;
}
.link.white:hover {
  color: #D9005B;
  transition: all 300ms ease;
}
.link.white:hover * {
  color: #D9005B;
  transition: all 300ms ease;
}
.link.purple {
  color: #4A0E66;
  transition: all 300ms ease;
}
.link.purple * {
  color: #4A0E66;
  transition: all 300ms ease;
}
.link.purple:hover {
  color: #D9005B;
  transition: all 300ms ease;
}
.link.purple:hover * {
  color: #D9005B;
  transition: all 300ms ease;
}
.link.light-purple {
  color: #6b3b79;
  transition: all 300ms ease;
}
.link.light-purple.big {
  font-size: 0.875rem;
  margin-top: 10px;
  text-transform: uppercase;
}
.link.light-purple:hover {
  color: #D9005B;
  transition: all 300ms ease;
}
.link.light-purple:hover * {
  color: #D9005B;
  transition: all 300ms ease;
}
.link.cent {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: block;
}

.mod-btn {
  margin: 40px 0;
  text-align: center;
}

/*//////////////botones css///////////////*/
/*------------------------------------------------------------------------------ Generales */
/*------------------------------------------------------------------------------Grid */
.ico-face {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/ico-face.png) no-repeat center;
}

.ico-twitter {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/ico-twitter.png) no-repeat center;
}

.ico-youtube {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/ico-youtube.png) no-repeat center;
}

/*------------------------------------------------------------------------------ header */
.main-head {
  background-image: linear-gradient(18deg, #701A7F 0%, #641672 100%);
}

.main-head .accesos-top ul li .desplegable-contrata {
  width: 510px;
  position: absolute;
  top: 40px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  z-index: 71;
  max-height: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.main-head .accesos-top ul li .desplegable-contrata.bajarsmart-nav {
  opacity: 1;
  visibility: visible;
  max-height: 280px;
}

.main-head .accesos-top ul li a.right-link {
  text-transform: uppercase;
  border: 1px solid white;
  font-weight: 600;
  border-radius: 0.3rem;
  font-size: 0.8rem;
  margin: 0 1rem 0 0;
}

.main-head .accesos-top ul li a.right-link:hover {
  -webkit-transition: 0.2s all linear;
  transition: 0.2s all linear;
  background: white;
  color: #6C197B;
}

.main-head .accesos-top ul li > a {
  font-size: 15px;
  color: #fff;
  display: block;
  /*padding: 7px 12px 6px 11px;
  border: 1px solid #fff;*/
  padding: 5px 10px;
  margin: 0 0 0 15px;
}

.head-top {
  height: 42px;
  z-index: 999;
  position: relative;
}

.sucursales {
  margin: 0 0.5rem 0 0;
  -webkit-transition: 0.3s transform;
  transition: 0.3s transform;
  will-change: transform;
}

.sucursales:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/*---CSS DESPLEGABLE----*/
.main-head .bloque_contactanos-siquieres {
  background-color: #F1F3F5;
  color: #2B0A37;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.main-head .bloque_contactanos-siquieres h2, .main-head .bloque_contactanos-siquieres p {
  background-color: #421054;
  line-height: 120%;
}

.main-head .bloque_contactanos-sieres {
  background-color: #DFE3E7;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.main-head .bloque_contactanos-sieres h2, .main-head .bloque_contactanos-sieres p {
  background-color: #2B0A37;
  line-height: 120%;
}

.main-head .bloque_contactanos-info {
  padding: 1.5rem;
  min-height: 100px;
}

.main-head .bloque_contactanos-info .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin-bottom: 2rem;
}

.main-head .bloque_contactanos-info .item .icon {
  font-size: 1.7rem;
  min-width: 30px;
  text-align: center;
  color: #421054;
}

.icon-footer-wtsp::before {
  content: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-dark-whatsapp.png);
}

.main-head .bloque_contactanos-info .item .icon {
  font-size: 1.7rem;
  text-align: center;
  color: #421054;
}

.main-head .bloque_contactanos-info .item .icon {
  font-size: 1.7rem;
  min-width: 30px;
  text-align: center;
  color: #421054;
}

.icon-contacto::before {
  content: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-ph.png);
  top: 3px;
  position: relative;
}

.right-link--contactanos:hover .icon-contacto:before {
  content: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-ph-hover.png);
}

.icon-footer-call::before {
  top: 3px;
  position: relative;
}

.main-head .right-link .icono {
  margin: 0 0.4rem 0 0;
}

.main-head .bloque_contactanos-info .item .icon {
  font-size: 1.7rem;
  text-align: center;
  color: #421054;
}

.main-head .bloque_contactanos-info {
  padding: 1.5rem;
  min-height: 100px;
}

.main-head .bloque_contactanos-info .item h3, .main-head .bloque_contactanos-info .item .itemh {
  font-size: 0.8rem;
  font-weight: 500;
  padding-left: 0.5rem;
  margin: 0;
  line-height: 120%;
}

.main-head .bloque_contactanos-title {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.8rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.main-head .bloque_contactanos-info .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin-bottom: 1rem;
}

.main-head .bloque_contactanos-info .item .icon {
  font-size: 1.7rem;
  min-width: 30px;
  text-align: center;
  color: #421054;
}

.main-head .bloque_contactanos-info .item h3 span.num, .main-head .bloque_contactanos-info .item .itemh span.num {
  margin-top: 0.3rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #2B0A37;
  white-space: nowrap;
}

.main-head .bloque_contactanos-info .item h3 span, .main-head .bloque_contactanos-info .item .itemh span {
  display: block;
}

.icon-smartphone::before {
  content: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-dark-mobil.png);
}

.main-head .bloque_contactanos-info .item .icon {
  font-size: 1.7rem;
  text-align: center;
  color: #421054;
}

.main-head .div_ventana {
  display: none;
}

/*---FN CSS DESPLEGABLE--*/
.accesos-top ul {
  padding-top: 5px;
}

.main-head .accesos-top ul li a.sucursal-link {
  margin: 0;
}

.sucursal-link:hover .icon-element.sucursal-online-icon {
  background-position: -15px 0;
}

.sucursal-link:hover .icon-element {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-sucursales-hover.svg) no-repeat;
  background-position-x: 0%;
  background-position-y: 0%;
}

.icon-element.sucursal-online-icon {
  background-position: -18px -1px;
}

.icon-element.icon-cuenta {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-cuenta.png) no-repeat;
}

.icon-element {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-sucursales.svg) no-repeat;
  margin-right: 5px;
}

.main-head .div_ventana.mostrar_ventana {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: 100%;
  display: block;
  z-index: 99;
}

.non-point {
  list-style: none;
}

.wom-bg {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #6f1a7e), to(#2B0A37));
  position: relative;
  height: 40px;
  width: 100%;
  z-index: 99;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .main-head {
    background-image: linear-gradient(18deg, #701A7F 0%, #641672 100%);
    position: fixed;
    width: 100%;
    z-index: 999;
  }

  .header-nav {
    height: 0;
    z-index: 999;
  }
}
@media only screen and (max-width: 768px) {
  .head-top {
    height: 40px;
    z-index: 999;
    position: relative;
    -webkit-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
    background-color: #75207D;
  }
}
.wom-mundos {
  list-style: none;
  float: left;
  margin-top: 5px;
  font-family: "ceramedium";
  margin-left: 12%;
}

@media only screen and (max-width: 768px) {
  .wom-mundos {
    display: none;
  }
}
.wom-mundos li {
  float: left;
  font-family: ceramedium;
  position: relative;
}

.wom-mundos li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-size: 13px;
}

.wom-mundos li a.active {
  color: #fff;
  border-top: 3px solid #fff;
}

.main-nav-wrap {
  position: relative;
}

.main-nav .active {
  background: #681877;
}

.logo-head {
  position: absolute;
  top: -23px;
  z-index: 999;
  /*-webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);*/
  width: 112px;
  height: 112px;
  border-radius: 100%;
}

@media only screen and (max-width: 768px) {
  .logo-head {
    top: -35px;
    left: 10px;
    width: 70px;
    height: 70px;
  }

  .logo-head img {
    display: block;
    width: 73%;
    margin-top: 5px;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .center-mobile {
    text-align: center;
  }

  .seccion_plan_emprende-btns {
    max-width: 800px !important;
  }

  .accesos-top {
    display: none;
  }
}
.accesos-top ul {
  float: right;
  list-style: none;
}

.accesos-top ul li {
  float: left;
  height: 40px;
  line-height: 120%;
}

.accesos-top ul li > a {
  font-size: 13px;
  color: #fff;
  display: block;
  padding: 10px 20px;
}

.accesos-top ul li p {
  font-size: 13px;
  color: #fff;
  display: block;
  padding: 10px 20px;
}

.icon-ph {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-red-phone.png) no-repeat;
  background-position: center left;
}

.icon-w {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-whatsapp.png) no-repeat;
  background-position: center left;
}

.buscador input {
  background: none;
  border: none;
}

.buscador input[type=text] {
  color: #fff;
  font-family: "ceraregular";
  font-size: 13px;
  padding: 10px;
  width: 150px;
  transition: all ease 200ms;
  height: 40px;
}

.buscador input[type=text]:focus {
  background: #f1f1f1;
  color: #4e0081;
}

.buscador input:focus {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #7b539a;
}

.buscador input[type=text]::-webkit-input-placeholder {
  color: #4E0081;
  opacity: 1;
}

.buscador input[type=text]:-moz-placeholder {
  /* Firefox 18- */
  color: #4E0081;
  opacity: 1;
}

.buscador input[type=text]::-moz-placeholder {
  /* Firefox 19+ */
  color: #4E0081;
  opacity: 1;
}

.buscador input[type=text]:-ms-input-placeholder {
  color: #4E0081;
  opacity: 1;
}

.buscador input[type=submit] {
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  padding: 0;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/lupa.png) center no-repeat;
}

.social {
  margin-left: 20px;
}

.social span {
  float: left;
  margin-top: 10px;
}

.social span a {
  display: block;
  height: 20px;
  width: 20px;
  padding: 0;
  text-indent: -9999px;
  margin-left: 10px;
}

.social span a:hover {
  opacity: 0.8;
}

.main-nav {
  float: right;
}

@media only screen and (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    z-index: 999999;
    right: 0;
    width: 50%;
    background: #381451;
    height: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    transition: all ease 300ms;
  }
}
.main-nav .wom-mundos {
  display: none;
}

@media only screen and (max-width: 768px) {
  .main-nav .wom-mundos {
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    background: #fff;
  }

  .main-nav .wom-mundos li {
    float: left;
    padding: 0;
    width: 50%;
  }

  .main-nav .wom-mundos li a {
    background: #fff;
    color: #381451;
  }

  .main-nav .wom-mundos li a:hover {
    background: #fff;
  }

  .main-nav .wom-mundos li a.active {
    background: #381451;
    color: #fff;
    border: none;
  }
}
@media only screen and (max-width: 768px) {
  .main-nav.open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@media only screen and (max-width: 640px) {
  .main-nav {
    width: 80%;
  }
}
.main-nav ul li {
  float: left;
}

@media only screen and (max-width: 768px) {
  .main-nav ul li {
    float: none;
  }
}
.main-nav ul li a {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  display: block;
  padding: 10px 30px;
}

.main-nav ul li a:hover {
  background: #681877;
}

.ham-btn span, .ham-btn span:before, .ham-btn span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 20px;
  background: white;
  position: absolute;
  display: block;
  content: "";
}

.ham-btn span:before {
  top: -8px;
}

.ham-btn span:after {
  bottom: -8px;
}

.ham-btn span, .ham-btn span:before, .ham-btn span:after {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.ham-btn.active span {
  background-color: transparent;
}

.ham-btn.active span:before, .ham-btn.active span:after {
  top: 0;
}

.ham-btn.active span:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ham-btn.active span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.ham-btn {
  background: #75207D;
  border: medium none;
  height: 40px;
  left: -40px;
  position: absolute;
  top: 0;
  width: 40px;
  display: none;
  padding: 8px 10px 10px;
}

@media only screen and (max-width: 768px) {
  .ham-btn {
    display: block;
  }
}
.fixed-header {
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  width: 100%;
}

.sucursal-online {
  position: relative;
}

.sucursal-online a {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/user.png) no-repeat 10px #720184;
}

.sucursal-online a:hover {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/user.png) no-repeat 10px #4E0081 !important;
}

.sucursal-online a.olvidaste {
  background: none;
  color: #4E0081;
  font-size: 12px;
  padding: 0;
  text-align: center;
}

.sucursal-online a.olvidaste:hover {
  background: none !important;
}

.login {
  background: #fff;
  position: absolute;
  top: 39px;
  width: 100%;
  z-index: 99999;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all ease-out 300ms;
  -moz-transition: all ease 300ms;
  -ms-transition: all ease 300ms;
  transition: all ease 300ms;
}

.login.open {
  max-height: 300px;
  -webkit-box-shadow: 0px 5px 16px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 5px 16px 2px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0px 5px 16px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 16px 2px rgba(0, 0, 0, 0.5);
}

.login .login-wrap {
  padding: 20px 20px 10px;
  position: relative;
}

.login .login-wrap:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent;
  border-top: 10px solid #720184;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  border-style: solid dotted none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.login h3 {
  font-family: "ceraregular";
  text-align: center;
  font-weight: normal;
  margin: 0;
  font-size: 14px;
  margin-bottom: 10px;
}

.login label {
  font-size: 12px;
  margin: 0 10px 10px 0;
}

.login input {
  font-family: "ceraregular";
  width: 100%;
}

.login input[type=password] {
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 10px;
  font-size: 14px;
  padding: 5px 10px;
}

.login input[type=text] {
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 10px;
  font-size: 14px;
  padding: 5px 10px;
}

.login input[type=submit] {
  display: table;
  width: 125px;
  margin: 0 auto 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: #4E0081;
  border: none;
  color: #fff;
  font-family: "ceraregular";
  padding: 4px 0;
  border-radius: 5px;
}

.login input[type=radio] {
  width: auto;
  margin: 0 10px 10px 0;
}

.bg-light {
  background-image: -webkit-linear-gradient(top, #fff 80%, #EBEBED 100%);
  background-image: -o-linear-gradient(top, #fff 80%, #EBEBED 100%);
  background-image: linear-gradient(to bottom, #fff 80%, #EBEBED 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEBEBED", GradientType=0);
}

.bg-light .info-slide {
  color: #381451;
}

.bg-dark {
  background: #10120f;
}

.bg-dark .info-slide {
  color: #fff;
}

@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .bg-dark {
    background-color: #000;
  }
}
.bg-dark.overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 640px) {
  .bg-dark.overlay:before {
    display: none;
  }
}
.precio-slide {
  font-size: 50px;
  font-weight: bold;
  font-family: "ceraregular";
  display: block;
}

@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .precio-slide {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .precio-slide {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .precio-slide {
    font-size: 30px;
  }
}
.info-slide {
  position: relative;
  display: table !important;
  text-align: right;
  height: 100%;
}

@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .info-slide {
    position: static;
    font-size: 13px;
  }
}
@media only screen and (max-width: 640px) {
  .info-slide {
    padding: 20px 0;
  }

  .info-slide.text-right {
    text-align: center;
    margin-left: 0 !important;
    padding: 30px 0px;
  }
}
@media only screen and (max-width: 640px) and (max-width: 1615px) and (min-width: 1025px) {
  .info-slide {
    font-size: 14px;
  }
}
.info-slide h2 {
  font-size: 65px;
  margin: 0;
}

@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .info-slide h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .info-slide h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .info-slide h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .info-slide .mid-text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .info-slide .mid-text {
    font-size: 14px;
  }
}
.midle-align-wrap {
  display: table-cell;
  vertical-align: middle;
}

@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .midle-align-wrap {
    padding-top: 0;
  }
}
@media only screen and (max-width: 640px) {
  .midle-align-wrap {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .slide-img {
    display: none !important;
  }
}
.home-slider .slider {
  list-style: none;
}

.home-slider .slider li {
  overflow: hidden;
}

.home-slider .slider li img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .home-slider .slider li img {
    width: auto;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .home-slider .slider .wom-btn {
    left: 20px;
    bottom: 20px;
    position: absolute;
  }
}
.home-slider .bx-wrapper {
  position: relative;
}

.home-slider .bx-controls {
  width: 100%;
  max-width: 1000px;
  display: table;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 20px auto;
}

@media only screen and (max-width: 1024px) {
  .home-slider .bx-controls {
    padding: 0 20px !important;
    position: relative;
  }
}
.home-slider .bx-pager {
  float: right;
}

.home-slider .bx-pager-item {
  float: left;
  margin: 0 0 0 10px;
}

.home-slider .bx-pager-item a {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #e9e9e9;
  border-radius: 100%;
  background: #e9e9e9;
  text-indent: -9999px;
}

.home-slider .bx-pager-item a.active {
  background: #4E0081;
}

.rotate {
  -webkit-transform: rotate(-17deg);
  -moz-transform: rotate(-17deg);
  -ms-transform: rotate(-17deg);
  -ms-transform: rotate(-17deg);
  margin-bottom: 40px;
}

@media only screen and (max-width: 640px) {
  .rotate {
    display: table;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .rotate .rotate-wrapp {
    display: table-cell;
    vertical-align: middle;
  }
}
.rotate.align-center {
  text-align: center;
}

@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .rotate {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .rotate {
    margin-bottom: 0;
  }
}
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
}

@media only screen and (max-width: 640px) {
  .slide-content {
    position: relative;
  }
}
@media only screen and (max-width: 640px) {
  .bx-viewport {
    background-color: #381451;
  }
}
.table-wrapp {
  display: table !important;
  height: 100%;
}

.table-wrapp .table-cell-wrapp {
  display: table-cell;
  vertical-align: middle;
}

@media only screen and (max-width: 640px) {
  .table-wrapp {
    display: none !important;
  }
}
@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .table-wrapp {
    display: block !important;
  }
}
.gb-slide {
  font-size: 30px;
  font-family: "ceraregular";
}

.more-btn {
  position: relative;
  margin: 0 auto;
  width: 28px;
  height: 28px;
  display: block;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-indent: -999999px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/add_icon.png) center no-repeat #4E0081;
}

.more-btn:hover {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/add_icon.png) center no-repeat #3A1F4F;
}

.gigas {
  font-size: 58px;
  font-family: "ceraregular", arial;
  font-weight: bold;
  color: #B171C3;
  margin: 0;
  line-height: 20px;
  font-weight: bold;
  position: relative;
}

.include {
  font-size: 25px;
  display: block;
  margin: 5px 0 15px;
}

.precio-grey {
  color: #333;
  font-size: 50px;
  font-weight: bold;
  display: block;
}

@media only screen and (max-width: 768px) {
  .precio-grey {
    font-size: 40px;
  }
}
.icono-gb {
  position: absolute;
  right: -38px;
  top: 8px;
  display: block;
  background: #852D9A;
  font-family: "ceraregular", arial;
  font-weight: bold;
  width: 32px;
  height: 32px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
}

.precio {
  font-family: "cerabold", arial;
  font-weight: bold;
  color: #B171C3;
}

.solo-sim-s {
  width: 104px;
  height: 18px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/solo-sim-s.png) no-repeat center;
  text-indent: -9999px;
  display: block;
  float: right;
  color: transparent;
  font-size: 0;
}

.destacados-home h2 {
  font-size: 24px;
  color: #3A1F4F;
  text-transform: uppercase;
}

@media only screen and (max-width: 640px) {
  .destacados-home h2 {
    text-align: center;
  }
}
.plan-destacado {
  -webkit-box-shadow: 13px 0 10px -10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 13px 0 10px -10px rgba(0, 0, 0, 0.3);
  box-shadow: 13px 0 10px -10px rgba(0, 0, 0, 0.3);
  padding-right: 2%;
}

@media only screen and (max-width: 640px) {
  .plan-destacado {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 0;
  }
}
.plan-destacado .cuota {
  float: left;
  width: 50%;
  padding: 0 20px;
}

@media only screen and (max-width: 640px) {
  .plan-destacado .cuota {
    width: 100%;
  }
}
.plan-destacado .cuota .number-xl {
  margin: 20px auto 10px;
}

@media only screen and (max-width: 640px) {
  .plan-destacado .cuota .number-xl {
    margin: 0 auto 20px;
  }
}
.plan-destacado .info-plan-desta {
  width: 50%;
  float: left;
  padding: 0 10px;
}

@media only screen and (max-width: 640px) {
  .plan-destacado .info-plan-desta {
    width: 100%;
  }

  .plan-destacado .info-plan-desta.text-right {
    text-align: center;
  }

  .plan-destacado .info-plan-desta .solo-sim-s {
    float: none;
    margin: 10px auto;
  }
}
.plan-destacado h3 {
  margin: 0;
  font-size: 28px;
}

@media only screen and (max-width: 640px) {
  .equipo-destacado {
    background: #f1f1f1;
    margin: 20px 0;
    overflow: hidden;
    padding: 10px;
  }
}
.plan-precio {
  width: 100%;
  background: rgba(0, 0, 0, 0.09);
  padding: 10px;
  border-radius: 10px;
  margin: 5px 0;
}

.plan-precio span {
  display: block;
  font-size: 30px;
  font-weight: bold;
  line-height: 100%;
}

.plan-precio span.mid-text {
  font-size: 20px;
}

.ranking {
  height: auto;
  margin: 6px auto 14px;
  position: relative;
  width: 70px;
}

.ranking li {
  float: left;
  height: 9px;
  list-style: none;
  margin: 0 3px 0 0px;
  padding: 0;
  width: 11px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/black_star.png) center no-repeat;
  cursor: pointer;
}

.ranking li:active {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/color_star.png) center no-repeat;
}

.info-equipo-dest {
  float: left;
  width: 60%;
  padding: 0 0 0 5%;
}

@media only screen and (max-width: 640px) {
  .info-equipo-dest {
    width: 100%;
    text-align: center;
    padding: 0;
  }
}
.info-equipo-dest h4 {
  color: #4E0081;
  font-size: 24px;
  margin: 0;
}

.info-equipo-dest h3 {
  font-size: 28px;
  margin: 0 0 5px 0;
}

.info-equipo-dest .ranking {
  float: right;
  margin: 0 0 10px;
  width: auto;
}

.info-equipo-dest .ranking li {
  width: 12px;
  height: 12px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/star-big-grey.png) center no-repeat;
  margin: 0 0 0 10px;
}

.img-equipo-dest {
  width: 40%;
  float: left;
  padding-left: 10%;
}

@media only screen and (max-width: 640px) {
  .img-equipo-dest {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .img-equipo-dest img {
    width: 60%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .home-planes {
    overflow: hidden;
    padding-bottom: 2px;
  }
}
.home-planes .box {
  text-align: center;
  text-transform: uppercase;
  color: #242424;
  box-shadow: 12px 0px 9px -9px rgba(0, 0, 0, 0.12);
}

@media only screen and (max-width: 768px) {
  .home-planes .box {
    width: 50% !important;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 640px) {
  .home-planes .box {
    box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.12);
    padding: 10px 10px 0;
  }
}
.home-planes .box.first {
  background: none;
}

.home-planes .box h3 {
  color: #242424;
  text-align: center;
  margin: 0 auto;
  font-size: 14px;
}

.home-planes .box .gigas {
  color: #b171c3;
  display: table;
  font-family: "ceraregular", arial;
  font-weight: bold;
  font-size: 58px;
  line-height: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .home-planes .box .gigas {
    font-size: 50px;
  }
}
.home-planes .box .gigas .icono-gb {
  font-family: "ceraregular", arial;
  font-weight: bold;
}

.home-planes .box .plan {
  float: left;
  font-size: 12px;
  text-align: center;
  text-transform: none;
  width: 100%;
}

.home-planes .box .precio {
  font-family: "ceraregular", arial;
  font-weight: bold;
  color: #B171C3;
  float: left;
  font-size: 30px;
  text-align: center;
  width: 100%;
}

.home-planes .box .min {
  font-size: 12px;
  margin: 12px auto 0 auto;
  width: 100%;
  float: left;
  line-height: normal;
}

.home-planes .box .min span {
  font-size: 26px;
  float: none;
}

.home-planes .box .desc {
  text-transform: none;
}

.home-planes .wom-btn {
  font-family: "ceraregular", arial;
}

.home-equipos .box * {
  font-family: "ceraregular", arial;
}

.home-equipos {
  text-align: center;
}

.home-equipos h3 {
  font-size: 12px;
  margin: 0 auto 8px;
}

.home-equipos p {
  font-size: 12px;
  line-height: 10px;
  margin: 10px auto;
}

.home-equipos h4 {
  line-height: 20px;
  margin: 0 auto;
  font-size: 14px;
}

.home-equipos h4 span {
  font-size: 12px;
  width: 100%;
  display: inline-block;
  font-family: "ceraregular", arial;
  font-weight: 100;
}

.home-equipos .ranking {
  height: auto;
  margin: 6px auto 14px;
  position: relative;
  width: 70px;
}

.home-equipos .ranking li {
  float: left;
  height: 9px;
  list-style: none;
  margin: 0 3px 0 0px;
  padding: 0;
  width: 11px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/black_star.png) center no-repeat;
  cursor: pointer;
}

.home-equipos .ranking li:active {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/color_star.png) center no-repeat;
}

.home-secciones {
  margin: 38px auto 0;
  width: 100%;
  text-align: center;
  min-height: 290px;
  height: auto;
  overflow: hidden;
}

.home-secciones h3 {
  color: #666666;
  margin: 20px auto 3px;
}

.home-secciones .box img {
  position: relative;
  margin: 0 auto;
  display: block;
  max-width: 110px;
  width: 100%;
}

.home-secciones p {
  line-height: 16px;
  font-size: 12px;
  margin: 4px auto 18px;
  color: #666;
}

@media only screen and (max-width: 640px) {
  .accesos-directos .box {
    background: #fff none repeat scroll 0 0;
    margin-bottom: 40px;
    padding: 10px;
    position: relative;
  }
}
@media only screen and (max-width: 640px) {
  .accesos-directos .box .more-btn {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -15px;
  }
}
@media only screen and (max-width: 640px) {
  .accesos-directos .box:first-child {
    margin-top: 20px;
  }
}
.desta-action .wom-btn {
  float: right;
  margin: 10px 0;
  font-size: 14px;
  line-height: 150%;
}

.desta-action .wom-btn-left {
  float: left;
  margin: 10px 0;
  font-size: 14px;
  line-height: 150%;
}

.wom-btn-menos {
  background: #685A71 !important;
}

@media only screen and (max-width: 768px) {
  .desta-action .wom-btn {
    width: 100%;
  }
}
.desta-action .contrato-cel {
  display: table;
  float: left;
  margin: 20px 0 20px 28px;
}

@media only screen and (max-width: 768px) {
  .desta-action .contrato-cel {
    display: table;
    margin: 20px auto;
    float: none;
  }
}
@media only screen and (max-width: 640px) {
  .cont-secciones .box {
    background: #f1f1f1;
  }
}
.gestor-home {
  background: #3A1F4F;
  color: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 10px 20px;
  margin: 30px auto;
}

.gestor-home .wom-btn {
  float: right;
  margin-top: 10px;
  width: 250px;
}

@media only screen and (max-width: 640px) {
  .gestor-home .wom-btn {
    width: 100%;
  }
}
.gestor-home h3 {
  margin: 0;
}

.gestor-home p {
  font-size: 12px;
  line-height: 140%;
}

.gestor-home .bloq {
  width: 25%;
  float: left;
  padding-right: 3%;
}

@media only screen and (max-width: 768px) {
  .gestor-home .bloq {
    width: 35%;
  }
}
@media only screen and (max-width: 640px) {
  .gestor-home .bloq {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.gestor-home .icon-gestor {
  width: 120px;
  height: 60px;
  float: left;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-gestor.png) no-repeat left center;
}

@media only screen and (max-width: 640px) {
  .gestor-home .icon-gestor {
    width: 100%;
    background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-gestor.png) no-repeat center;
    margin-bottom: 20px;
  }
}
.big-number-floated {
  font-size: 40px;
  font-weight: bold;
  position: relative;
  line-height: 100%;
}

.big-number-floated .min-top {
  display: block;
  font-size: 14px;
  line-height: 100%;
  position: absolute;
  right: -65px;
  top: 13px;
}

.big-number-floated .min-bottom {
  bottom: 11px;
  font-size: 14px;
  font-weight: lighter;
  line-height: 100%;
  position: absolute;
  right: -75px;
}

@media only screen and (max-width: 768px) {
  .plan-min {
    display: none;
  }
}
.wom-sec {
  color: #4E0081 !important;
}

.why-wom {
  background: #E4E4E6;
  margin: 20px 0;
}

.wom-why {
  margin: 0 0 30px;
}

@media only screen and (max-width: 768px) {
  .wom-text {
    width: 100%;
    padding: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .img-wom {
    display: none !important;
  }
}
ul.resultados_header_global {
  background-color: #ffffff;
  border: 1px solid #d7d2cb;
  border-radius: 0 0 3px 3px;
  display: none;
  padding: 0 0 10px;
  position: absolute;
  width: 380px;
  z-index: 99999999 !important;
  margin: 40px 0 0;
  margin: 3px 0 0;
}

ul.resultados_header_global li {
  color: #666;
  cursor: pointer;
  display: block;
  font-weight: normal;
  height: auto;
  line-height: 19px;
  margin: 5px 0 0;
  padding: 2px 1em;
  text-decoration: none;
}

ul.resultados_header_global li:hover {
  background: #dcdbd8;
}

.lo_quiero {
  display: none !important;
  float: right;
}

.cuadro-promo {
  background: #720184;
  font-family: "ceraregular";
  font-size: 12px;
  max-width: 588px;
  padding: 6px 0 6px 20px;
  position: absolute;
  top: -26px;
  width: 100%;
  color: #fff;
  display: none;
}

.centrado {
  position: relative;
  margin: 0 auto;
  float: none;
}

.all-width {
  display: table;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
}

.all-width .half-color {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
}

.all-width .half-left {
  left: 0;
}

.all-width .half-right {
  right: 0;
}

.violeta {
  background: #4C3163;
}

.planimg {
  padding: 20px;
  position: relative;
}

.planimg img {
  position: absolute;
  top: -20px;
  right: -30px;
}

.planimg.last {
  left: 0;
}

.planimg.last img {
  right: auto;
  left: -20px;
}

.planimg.last .plan-info {
  left: 0;
  right: auto;
}

.planimg.last .plan-info span {
  text-align: left;
}

.planimg .plan-info {
  height: auto;
  max-width: 150px;
  position: absolute;
  right: 0;
  top: 50px;
  width: 100%;
  z-index: 50;
}

.planimg .plan-info span {
  color: #fff;
  float: left;
  font-family: "ceraregular";
  font-size: 180px;
  font-weight: bold;
  line-height: 130px;
  margin: 0 0 7px;
  text-align: right;
  width: 100%;
}

.planimg .plan-info p {
  color: #fff;
  float: left;
  font-family: "ceraregular";
  font-size: 18px;
}

.plan-wrap {
  position: relative;
  z-index: 999;
}

.conoce-mas {
  margin: 0 auto 30px;
  overflow: hidden;
  position: relative;
}

.conoce-mas p {
  padding: 20px 0 22px;
  text-align: center;
}

.conoce-mas p a {
  color: #4E0081;
}

.conoce-mas p a:hover {
  color: #381451;
}

.conoce-mas .col-7 {
  background: #e9e9e9;
  margin: 2px 0 0;
  width: 58.9%;
}

@media only screen and (max-width: 768px) {
  .conoce-mas .col-7 {
    width: 100%;
  }
}
.clear-down {
  margin-bottom: 0;
}

.row.conoce-mas {
  margin: 0 auto 30px;
  position: relative;
}

.planinfo {
  background: #E9E9E9;
}

@media only screen and (max-width: 640px) {
  .planinfo {
    text-align: center;
  }
}
.planinfo span {
  display: block;
}

.planinfo .gigas-xl {
  font-size: 100px;
  color: #7A6099;
  font-weight: bold;
  line-height: 100%;
  position: relative;
  display: table;
  position: relative;
  letter-spacing: -8px;
}

.planinfo .gigas-xl:after {
  content: "GB";
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  width: 30px;
  right: -40px;
  top: 10px;
  letter-spacing: 0px;
  line-height: 100%;
}

.planinfo .gigas-xl.mega:after {
  content: "MB";
}

.planinfo .docientos:after {
  content: "MB";
}

.precio-xl {
  font-size: 46px;
  font-weight: bold;
  color: #7A6099;
  margin: 10px 0 0 0;
}

.info-plan-foot {
  text-align: right;
  overflow: hidden;
  float: left;
  width: 100%;
  box-shadow: 0px 20px 12px -13px rgba(0, 0, 0, 0.2) inset;
}

@media only screen and (max-width: 640px) {
  .info-plan-foot {
    box-shadow: none;
    padding: 10px !important;
  }
}
.info-plan-foot .wom-btn {
  display: inline-block;
  font-size: 19px;
  margin: 0;
  padding: 10px 15px;
  text-align: left;
  width: 200px;
  background: #4E0081;
  height: 40px;
  position: relative;
  overflow: visible;
}

@media only screen and (max-width: 640px) {
  .info-plan-foot .wom-btn {
    width: 100% !important;
  }
}
.info-plan-foot .wom-btn:before {
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.7), 1px 0 0 0 rgba(0, 0, 0, 0.2) inset;
  content: "";
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}

.contrato-cel, .link-ico-cel {
  font-size: 16px;
  margin-right: 20px;
  position: relative;
  color: #720184;
}

.contrato-cel:hover, .link-ico-cel:hover {
  color: #4E0081;
}

.contrato-cel:before, .link-ico-cel:before {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/phone.png);
  content: "";
  height: 21px;
  width: 14px;
  display: block;
  position: absolute;
  left: -20px;
  top: 0;
}

.contrato-cel:after, .link-ico-cel:after {
  content: "[+]";
  margin-left: 5px;
}

/*juan*/
.head-landing {
  background: #e9e9e9;
  display: table;
  height: 200px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding: 0 0 30px 0;
}

.head-landing.head-multimedia {
  background: url(/img/head-planes-guitar.png) no-repeat center;
  background-size: cover;
}

.head-landing.equipos-landing {
  background: url(/img/head-equipos-ban.png) no-repeat center;
  background-size: cover;
}

.head-landing.head-empresas {
  background: url(/img/head-planes-guitar.png) no-repeat center;
  background-size: cover;
}

.head-landing.head-bam {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/head-internet-doble.png) no-repeat center;
  background-size: cover;
}

.head-landing.head-prepago {
  background: url(/img/head-prepago-real.png) no-repeat center;
  background-size: cover;
}

.head-landing.head-serv {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/head-serv.png) no-repeat center;
  background-size: cover;
}

.head-landing:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: red;
  top: 50%;
  z-index: 1;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, transparent 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, black));
  background: -webkit-linear-gradient(top, transparent 0%, black 100%);
  background: -o-linear-gradient(top, transparent 0%, black 100%);
  background: -ms-linear-gradient(top, transparent 0%, black 100%);
  background: linear-gradient(to bottom, transparent 0%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#000000",GradientType=0 );
}

.head-landing .row {
  bottom: 0;
  display: table;
  height: 200px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  vertical-align: middle;
  z-index: 2;
}

.head-landing h1 {
  color: #fff;
  display: table-cell;
  font-size: 50px;
  line-height: 33px;
  margin: 0 auto;
  padding: 90px 0 0;
  text-align: left;
  vertical-align: middle;
  text-shadow: 0 0 20px black;
  font-family: "cerabold";
}

.head-landing h1 span {
  font-family: "ceraregular";
  font-size: 20px;
  font-weight: 100;
  margin: 0;
  padding: 0;
}

.fixed-landing-nav {
  -webkit-box-shadow: 0px 5px 6px 0px rgba(50, 50, 50, 0.12);
  -moz-box-shadow: 0px 5px 6px 0px rgba(50, 50, 50, 0.12);
  box-shadow: 0px 5px 6px 0px rgba(50, 50, 50, 0.12);
  background: #e9e9e9;
  height: 90px;
  left: 0;
  max-width: 100%;
  position: fixed;
  top: 10px;
  width: 100%;
  z-index: 1000;
  display: block !important;
}

.fixed-landing-nav ul li .promo {
  display: none;
}

.fixed-landing-nav ul {
  float: none;
  margin: 0 auto;
  position: relative;
  width: 44%;
}

.landing-nav {
  margin: 0 auto 40px;
}

.landing-nav.normal li {
  background: #fff;
  box-shadow: 3px -3px 7px -6px;
}

.landing-nav.normal li:last-child {
  box-shadow: none;
}

.landing-nav.small {
  padding: 30px 0 0;
  display: none;
}

.landing-nav.small .bloque-promo {
  height: 60px;
}

.landing-nav.small .bloque-promo a {
  padding: 6px 0;
}

.landing-nav.small .bloque-promo.bolsas {
  display: table;
  padding: 0;
}

.landing-nav.small .bloque-promo.bolsas a {
  display: table-cell;
  vertical-align: middle;
  padding: 0;
}

.landing-nav.small .bloque-promo p {
  font-size: 30px;
  font-family: "ceraregular";
  font-weight: bold;
}

.landing-nav.small .bloque-promo .bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.landing-nav.small .bloque-promo .bottom-bar span {
  width: 0;
  background: #4E0081;
  float: none;
  height: 15px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: block;
  z-index: 2;
}

.landing-nav.small .bloque-promo .bottom-bar .bar-bg {
  width: 80%;
  background: none;
  float: none;
  height: 15px;
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  display: block;
  z-index: 2;
  top: 0;
  left: 10%;
}

.landing-nav.small .bloque-promo .active .bar-bg {
  background: #4E0081;
}

.landing-nav.small .plan {
  color: #4E0081;
  font-size: 14px;
  font-family: "ceraregular";
  font-weight: bold;
  margin: 0;
}

.landing-nav.mod-height {
  height: 312px;
}

.landing-nav .bloque-promo {
  background: #e9e9e9;
  height: 350px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  width: 17.9%;
}

.landing-nav .bloque-promo:first-child {
  margin-left: 1.3%;
}

.landing-nav .bloque-promo * {
  text-align: center;
}

.landing-nav .bloque-promo a {
  padding: 8px 0px 0 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #4E0081;
}

.landing-nav .bloque-promo a:hover .ver-detalles {
  background: #4E0081;
}

.landing-nav .bloque-promo .cantidad {
  border-radius: 112px;
  color: #fff;
  font-family: "ceraregular";
  font-size: 51px;
  font-weight: bold;
  height: 112px;
  line-height: 84px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 112px;
  background: #381451;
}

.landing-nav .bloque-promo .cantidad span {
  background: #fff;
  border-radius: 50px;
  bottom: -10px;
  color: #381451;
  font-family: "ceraregular";
  font-size: 27px;
  font-weight: bold;
  height: 48px;
  left: 34px;
  line-height: 43px;
  position: absolute;
  width: 48px;
}

.landing-nav .bloque-promo .min-sms {
  font-size: 13px;
  color: #242424;
}

.landing-nav .bloque-promo .min-sms span {
  font-size: 25px;
}

.landing-nav .bloque-promo .cuota {
  float: left;
  font-size: 18px;
  margin: 0;
  width: 100%;
  color: #4E0081;
  font-family: "ceraregular";
}

.landing-nav .bloque-promo .precio {
  font-family: "ceraregular";
  font-size: 30px;
  font-weight: bold;
  margin: 0;
  color: #4E0081;
  line-height: 140%;
}

.landing-nav .bloque-promo .ver-detalles {
  border-radius: 3px;
  bottom: 14px;
  color: #fff;
  display: block;
  left: 17%;
  margin: 0 auto;
  padding: 5px;
  position: absolute;
  width: 65%;
  background: #720184;
}

.landing-nav .bloque-promo.bolsas {
  padding: 44px 0 0;
}

.landing-nav .bloque-promo.bolsas .sigue {
  color: #242424;
}

.landing-nav .bloque-promo.bolsas .frase {
  float: left;
  margin: 0 0 3px;
  text-align: center;
  width: 100%;
  text-transform: none;
}

.landing-nav .bloque-promo.bolsas .frase span {
  text-transform: uppercase;
  line-height: 23px;
}

.landing-nav .bloque-promo.bolsas p {
  color: #242424;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.landing-nav .bloque-promo.bolsas .nombre-bolsa {
  color: #381451;
  font-family: "ceraregular";
  font-size: 46px;
  font-weight: bold;
  line-height: 40px;
  margin: 0 0 4px;
}

.landing-nav .bloque-promo.bolsas .nombre-bolsa span {
  border-radius: 50px;
  color: #fff;
  display: block;
  font-size: 22px;
  font-weight: 400;
  height: 38px;
  line-height: 36px;
  margin: 5px auto;
  width: 38px;
  background: #381451;
}

.landing-nav .bloque-promo.promo-empresas {
  width: 15.6%;
  margin-right: 0.8%;
}

.landing-nav .bloque-promo.promo-empresas:first-child {
  margin-left: 1.2%;
}

.landing-nav .bloque-promo.promo-empresas .nombre-bolsa {
  font-size: 30px;
}

.triangle-new-home {
  background: rgba(0, 0, 0, 0) url("/assets/img/triangle-new-home.png") no-repeat scroll center bottom/100% 100%;
  display: block;
  height: 60px;
  overflow: hidden;
  width: 100%;
}

.landing-nav .plan {
  float: left;
  margin: 0 0 3px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  color: #242424;
}

.landing-nav .descripcion {
  color: #242424;
  display: table;
  float: left;
  font-size: 12px;
  margin: 10px 0 6px;
  text-align: center;
  width: 100%;
}

.landing-nav .doble-cuota .promo {
  position: absolute;
  z-index: 1;
  top: -2px;
  left: -65px;
  -ms-transform: rotate(-35deg);
  /* IE 9 */
  -webkit-transform: rotate(-35deg);
  /* Chrome, Safari, Opera */
  transform: rotate(-35deg);
  -ms-transform: rotate(-35deg);
}

.landing-nav .doble-cuota .promo ul {
  width: 181px;
}

.landing-nav .doble-cuota .promo li {
  font-size: 12px;
  text-align: center;
  width: 100%;
  float: left;
  height: 23px;
  line-height: 22px;
  background: #e9e9e9;
}

.landing-nav .doble-cuota .promo .colored {
  background: #4E0081;
  color: #fff;
  height: auto;
  line-height: normal;
  padding: 0 13px 3px 13px;
}

.landing-nav .doble-cuota ul li {
  float: left;
}

.landing-nav .doble-cuota a {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
}

.landing-nav a .letra {
  font-size: 70px;
  color: #381451;
  font-family: "ceraregular";
  float: left;
  font-weight: bold;
  margin: 0 0 0 12px;
  line-height: 1;
}

.plan-0, .plan-1, .plan-2, .plan-3, .plan-4, .plan-5 {
  position: absolute;
  top: -170px;
}

.info-planes-landing {
  overflow: hidden;
  max-width: 885px;
  width: 100%;
  float: none;
  margin: 0 auto 40px;
  position: relative;
}

.info-planes-landing ul {
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  padding: 0 0 40px;
}

.info-planes-landing ul li {
  float: left;
  font-size: 12px;
  height: auto;
  list-style: none;
  overflow: hidden;
  padding: 12px 18px 12px 48px;
  width: 100%;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-right-arrow.png) scroll 2% 50% no-repeat #fff;
}

.info-planes-landing ul .dark {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-right-arrow.png) scroll 2% 50% no-repeat #e9e9e9;
}

.info-planes-landing h3 {
  cursor: pointer;
  padding: 0;
}

.info-planes-landing h3 span {
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  height: 14px;
  margin: 0 10px 0 0;
  width: 13px;
  text-align: center;
}

.info-planes-landing h3.close span {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icono-mas-small.png) center no-repeat #720184;
}

.info-planes-landing h3.open span {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icono-menos-small.png) center no-repeat #720184;
}

.info-adicional {
  overflow: hidden;
  max-width: 885px;
  width: 100%;
  float: none;
  margin: 0 auto 40px;
  position: relative;
}

.info-adicional ul {
  display: none;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  padding: 0 0 40px;
}

.info-adicional ul li {
  float: left;
  font-size: 12px;
  height: auto;
  list-style: none;
  overflow: hidden;
  padding: 12px 18px 12px 48px;
  width: 100%;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-right-arrow.png) scroll 2% 50% no-repeat #fff;
}

.info-adicional ul .dark {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-right-arrow.png) scroll 2% 50% no-repeat #e9e9e9;
}

.info-adicional h3 {
  cursor: pointer;
  font-family: "ceraregular";
  font-size: 14px;
  padding: 0;
}

.info-adicional h3 span {
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  height: 14px;
  margin: 0 10px 0 0;
  width: 13px;
  text-align: center;
}

.info-adicional h3.close span {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icono-mas-small.png) center no-repeat #720184;
}

.info-adicional h3.open span {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icono-menos-small.png) center no-repeat #720184;
}

.cont-planes-bolsas {
  margin: 0 auto 40px;
  position: relative;
}

.cont-planes-bolsas h2 {
  text-align: center;
  font-size: 40px;
  margin: 0 auto 40px;
}

.cont-planes-bolsas ul li {
  text-align: center;
}

.cont-planes-bolsas ul li .gb {
  background: #381451;
  border-radius: 100px;
  color: #fff;
  display: block;
  font-size: 40px;
  font-weight: bold;
  height: 112px;
  padding: 25px 0 0;
  width: 112px;
  position: relative;
  margin: 0 auto;
  float: none;
  overflow: hidden;
}

.cont-planes-bolsas ul li .gb span {
  font-size: 16px;
  font-weight: normal;
  line-height: 18px;
}

.cont-planes-bolsas ul li .descripcion-bolsas {
  float: none;
  font-size: 12px;
  margin: 5px auto 6px;
  position: relative;
  text-align: center;
  width: 52%;
}

.cont-planes-bolsas ul li .wom-btn {
  width: 70%;
  float: none;
  padding: 10px 10px 12px 10px;
}

@media only screen and (max-width: 990px) {
  .landing-nav .descripcion {
    color: #242424;
    display: table;
    float: left;
    font-size: 12px;
    margin: 8px 0 0 0px;
  }

  .landing-nav a .letra {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1004px) {
  .cuadro-promo {
    width: 59%;
  }

  .landing-nav .bloque-promo.bolsas .nombre-bolsa {
    line-height: 32px;
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .planes .planinfo {
    width: 100%;
  }

  .planimg.down, .violeta {
    display: none;
  }

  .landing-nav {
    display: none;
    visibility: hidden;
    opacity: 0;
  }

  .cuadro-promo {
    max-width: 100%;
    width: 100%;
  }

  .info-adicional h3 {
    margin: 0 0 0 20px;
  }
}
@media only screen and (max-width: 640px) {
  .planes .all-width {
    background: #e9e9e9;
  }

  .planes .planinfo {
    background: #e9e9e9;
  }

  .cont-planes-bolsas .col-3 {
    width: 46.5%;
  }
}
@media only screen and (max-width: 480px) {
  .head-landing h1 {
    padding: 50px 0 0;
    line-height: 43px;
  }

  .planes .all-width * {
    float: left;
    width: 100%;
  }

  .planes .all-width * .wom-btn {
    width: 60%;
  }

  .text-right {
    float: left;
    width: 100%;
    text-align: left;
    padding: 0 20px 15px;
  }

  .contrato-cel {
    margin: 0 0 15px 20px;
    text-align: left;
    width: 30%;
  }
}
@media only screen and (max-width: 480px) and (max-width: 640px) {
  .contrato-cel {
    display: table;
    float: none !important;
    margin: 0 auto 15px;
    text-align: center;
    width: auto !important;
  }
}
@media only screen and (max-width: 480px) {
  .planinfo .gigas-xl::after {
    right: auto;
    margin: 0 0 0 8px;
  }

  .info-adicional h3 {
    margin: 0 0 0 20px;
  }

  .cont-planes-bolsas .col-3 {
    width: 100%;
  }
}
.bloque-promo.promo-empresas.bolsas.plan-gestor.col-3.last {
  padding: 30px 0 0;
}

.solo-voz-wrap .head-landing-ficha {
  margin: 40px 0;
}

.solo-voz .bloque-promo {
  width: 22.6%;
  margin-right: 1.2%;
}

.solo-voz .bloque-promo .cuota {
  margin: 34px auto 0px;
}

.solo-voz .bloque-promo .cantidad {
  font-size: 26px;
  line-height: 26px;
  padding: 21px 0 0;
  margin: 50px auto 22px;
}

.solo-voz .bloque-promo .cantidad span {
  font-size: 18px;
}

.solo-voz .bloque-promo .cantidad.single {
  padding: 36px 0 0;
  font-size: 40px;
}

.solo-voz-cont .small-text {
  margin: 0 0 20px;
}

.solo-voz-cont .gigas-xl:after {
  content: "Min";
}

.solo-voz-cont .plan-info.down {
  top: 36px;
  height: 240px;
}

.solo-voz-cont .col-m-6.planinfo.down {
  height: 250px;
}

.solo-datos-cont .small-text {
  margin: 0 0 20px;
}

.solo-datos-cont .gigas-xl:after {
  content: "GB";
}

.solo-datos-cont .plan-info {
  top: 36px;
  height: 230px;
}

.solo-datos-cont .col-m-6.planinfo {
  height: 220px;
}

.gigas-xl.mod-small {
  font-size: 80px;
}

.planes-bam.center-bloq {
  display: table;
  margin: 0 auto;
  float: none;
}

.planes-bam .bloque-promo {
  width: 23%;
  margin-right: 2%;
  float: left;
}

.planes-bam .bloque-promo:last-child {
  margin-right: 0;
}

.equipos {
  background: #381451;
  padding: 60px 0 50px;
  position: relative;
}

.equipos h2 {
  text-align: center;
  color: #fff;
}

.equipos.equipos-bam-cont {
  padding: 50px 0 20px;
  /*background: #fff;*/
}

.equipos.equipos-bam-cont .precio-desta-wrap {
  background: rgba(255, 255, 255, 0.2);
}

.equipos.equipos-bam-cont h2 {
  color: #fff;
}

.equipos.equipos-bam-cont .cat-info * {
  color: #fff;
}

.equipos.equipos-bam-cont .cat-info h2 {
  font-size: 20px;
  margin: 0 0 5px;
  text-align: right;
}

.equipos.equipos-bam-cont .cuota-inicial {
  background: none;
}

.equipos.equipos-bam-cont .cat-pro .wom-btn {
  margin: 16px 0 0 0;
}

.equipos .bam-img {
  float: left;
  width: 35%;
}

@media only screen and (max-width: 640px) {
  .equipos .bam-img {
    float: none;
    margin: 0 auto;
    position: relative;
    width: 35%;
  }
}
.equipos .bam-info {
  width: 55%;
  padding-left: 5%;
  float: left;
  color: #fff;
}

@media only screen and (max-width: 640px) {
  .equipos .bam-info {
    position: relative;
    margin: 10px auto 0;
    float: none;
    width: 100%;
  }
}
.equipos .bam-info h3 {
  color: #fff;
  font-size: 20px;
  margin: 0;
}

@media only screen and (max-width: 640px) {
  .equipos .bam-info h3 {
    text-align: center;
  }
}
.equipos .bam-info .precio {
  font-size: 30px;
  font-weight: normal;
  color: #fff;
}

@media only screen and (max-width: 640px) {
  .equipos .bam-info .precio {
    text-align: center;
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .equipos .bam-info .small-text {
    display: block;
    text-align: center;
  }
}
.equipos .bam-info .wom-btn {
  margin: 12px 0 0 0;
}

.equipos:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  border-style: solid dotted none;
}

.equipos .cuota-inicial {
  background: #4E0081;
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.equipos .cuota-inicial dl {
  font-size: 12px;
}

.equipos .cuota-inicial dd {
  float: left;
  margin: 0 10px 0 0;
}

.equipos .cuota-inicial dt {
  float: left;
  font-weight: bold;
}

.destacados-home {
  margin: 30px auto;
}

.empresa-landind-nav li {
  width: 12% !important;
}

.inc-plan {
  font-size: 23px;
}

.bajada-info {
  overflow: hidden;
  margin-bottom: 30px;
}

.bajada-info h3 {
  font-size: 24px;
  margin: 0 0 20px;
}

.bajada-info p {
  font-weight: 100;
  font-size: 18px;
}

.bajada-info p a {
  color: #4E0081;
  font-weight: bold;
  text-decoration: underline;
}

/*---------------------------------------- ESTILOS CODINA ----- */
.align-center {
  text-align: center;
}

.big-wrapp {
  padding: 80px 0;
}

.indented {
  margin-left: 30px;
}

.not-full-text {
  width: 60%;
}

.light-text {
  color: #343434;
  font-size: 15px;
  margin-bottom: 20px;
}

.rounded-box {
  background-color: #381451;
  border-radius: 100%;
  color: #fff;
  position: relative;
  width: 30.4%;
  margin-right: 4.4%;
  float: left;
  margin-bottom: 100px;
  /*----- SMARTPHONES --- */
  /*----- 540px - 770px--- */
  /*----- SMARTPHONES --- */
}

.rounded-box.last {
  margin-right: 0;
  /*----- SMARTPHONES --- */
  /*----- 540px - 640px--- */
  /*----- 650px - 770px--- */
}

@media only screen and (max-width: 640px) {
  .rounded-box.last {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 770px) and (min-width: 540px) {
  .rounded-box.last {
    margin-right: 4.4%;
  }
}
@media only screen and (max-width: 770px) and (min-width: 650px) {
  .rounded-box.last {
    margin-right: auto;
  }
}
.rounded-box.last-770 {
  /*----- 540px - 640px--- */
  /*----- 650px - 770px--- */
}

@media only screen and (max-width: 770px) and (min-width: 540px) {
  .rounded-box.last-770 {
    margin-right: 0;
  }
}
@media only screen and (max-width: 770px) and (min-width: 650px) {
  .rounded-box.last-770 {
    margin-right: auto;
  }
}
.rounded-box header {
  position: absolute;
  max-width: 55px;
  margin: 0 auto;
  top: -13px;
  width: 100%;
  right: 45px;
  left: 0;
}

.rounded-box h2 {
  font-family: "ceraregular";
  font-weight: 100;
  font-size: 26px;
  line-height: 130%;
  margin-bottom: 5px;
}

.rounded-box p {
  font-size: 15px;
  margin-bottom: 20px;
}

.rounded-box .wom-btn {
  font-size: 14px;
  padding: 8px 10px;
  position: absolute;
  bottom: 0;
  text-transform: uppercase;
  height: 30px;
  width: 155px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.rounded-box .wom-btn:before {
  height: 30px;
  width: 30px;
}

@media only screen and (max-width: 640px) {
  .rounded-box {
    width: 100%;
    float: none;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 770px) and (min-width: 540px) {
  .rounded-box {
    width: 47.8%;
    float: left;
    margin-right: 4.4%;
  }
}
@media only screen and (max-width: 770px) and (min-width: 650px) {
  .rounded-box {
    width: 100%;
    float: none;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.rounded-box-content {
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  -m-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
  padding: 40px 10px 0px 10px;
}

.rounded-box-content.first {
  padding: 40px 35px 0px 35px;
}

.rounded-box-content.second {
  padding: 40px 45px 0px 55px;
}

.big-text {
  font-family: "ceraregular";
  font-weight: bold;
  display: block;
  font-size: 37px;
}

.number {
  width: 55px;
  height: 55px;
  text-align: center;
  color: #381451;
  font-size: 30px;
  font-weight: bold;
  background-color: #fff;
  display: table-cell;
  border-radius: 100%;
  vertical-align: middle;
  position: relative;
  z-index: 9;
}

.rounded-box-icon {
  display: block;
  width: 117px;
  height: 94px;
  background-repeat: no-repeat;
  background-image: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/landing-sp.png);
  position: absolute;
  left: 22px;
  top: -39px;
}

.rounded-box-icon.chip {
  background-position: 0px -10px;
}

.rounded-box-icon.formulario {
  background-position: -140px -10px;
}

.rounded-box-icon.codigo {
  width: 117px;
  height: 107px;
  background-position: -262px 0px;
}

.rounded-box-icon.codigo-ingresa {
  background-position: 0px -159px;
  width: 117px;
  height: 120px;
  top: -50px;
}

.rounded-box-icon.estado {
  background-position: -150px -160px;
  top: -50px;
  width: 137px;
  height: 118px;
}

.rounded-box-icon.chip-inserta {
  background-position: -320px -179px;
  width: 117px;
  height: 108px;
}

.desplegable-title {
  display: block;
  cursor: pointer;
  color: #381451;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  padding: 15px;
  border: 1px solid #CCC;
  background: white;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIyJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iI2NjY2NjYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, white 2%, #cccccc 99%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(2%, white), color-stop(99%, #cccccc));
  background: -webkit-linear-gradient(top, white 2%, #cccccc 99%);
  background: -o-linear-gradient(top, white 2%, #cccccc 99%);
  background: -ms-linear-gradient(top, white 2%, #cccccc 99%);
  background: linear-gradient(to bottom, white 2%, #cccccc 99%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#cccccc",GradientType=0 );
}

.desplegable-title.active .desplegable-icon {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/desplegable-icon-menos.png) no-repeat center center;
}

.desplegable-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}

.desplegable-content.active {
  max-height: 1000px;
}

.desplegable-icon {
  display: inline-block;
  margin-right: 10px;
  width: 16px;
  height: 14px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/desplegable-icon.png) no-repeat center center;
}

@media only screen and (max-width: 640px) {
  .hide-on-phones {
    display: none !important;
  }
}
.all-width.no-down {
  margin-bottom: 0;
}

.nuevos-planes .left-cont {
  background: #e9e9e9;
  margin: 18px 0 30px;
  padding: 22px 0 25px;
  width: 58.8%;
}

@media only screen and (max-width: 640px) {
  .nuevos-planes .left-cont {
    width: 100%;
  }
}
.nuevos-planes .left-cont p {
  text-align: center;
}

.nuevos-planes .left-cont p a {
  color: #4E0081;
  text-decoration: underline;
}

.header-plan {
  color: #fff;
  font-family: "ceraregular";
  margin: 0;
  padding: 10px;
  width: 100%;
  display: none;
  background: #381451;
}

@media only screen and (max-width: 640px) {
  .header-plan {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .center-mobile {
    text-align: center;
  }
}
.tipo-plan {
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
}

.cat-desta {
  overflow: hidden;
  box-shadow: -10px 21px 35px -50px #000;
}

.cat-pro {
  padding: 0 30px;
  border-right: 2px dotted #ddd;
  margin-bottom: 20px;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .cat-pro {
    padding: 0 20px;
    border-right: 0 none;
  }
}
@media only screen and (max-width: 768px) {
  .cat-pro {
    width: 50%;
  }
}
.cat-pro:nth-child(odd) {
  border-right: none;
}

.cat-pro .precio-desta-wrap {
  padding: 10px 10px 10px 35px;
  border-radius: 5px;
  position: relative;
}

.precio-desta-wrap::before {
  content: "comprar";
  position: absolute;
  background: #421259;
  padding: 0 10px;
  color: #fff;
  transform: rotate(-90deg);
  top: 0;
  bottom: 0;
  left: -28px;
  right: auto;
  margin: auto;
  width: 82px;
  height: 25px;
  display: block;
  text-align: center;
}

.cat-pro .wom-btn {
  font-size: 14px;
  max-width: 180px;
  float: right;
}

@media only screen and (max-width: 640px) {
  .cat-pro .wom-btn {
    width: 100%;
    max-width: 100%;
  }
}
.precio-desta-wrap span {
  display: block;
}

.precio-desta-wrap .cuota-inicial {
  font-size: 12px;
  font-weight: bold;
}

.label-prepago {
  font-size: 27px;
  margin: 0;
  display: block;
  font-family: "cerabold";
  color: #421259;
}

.desta-oferta .precio {
  font-size: 20px;
  color: #4E0081;
}

.desta-oferta .label-bajada {
  color: #4E0081;
  font-size: 12px;
  margin-bottom: 5px;
}

.desta-normal .precio {
  font-size: 12px;
  color: #421259;
  font-weight: normal;
}

.desta-normal .precio b {
  color: #421259;
}

.desta-normal .label-bajada {
  font-size: 12px;
}

.arriendo {
  position: relative;
  padding: 10px 0 10px 35px;
}

.arriendo h4 {
  color: #801A93;
  margin: 0;
  font-size: 11px;
  font-weight: normal;
}

.arriendo::before {
  content: "arrendar";
  position: absolute;
  background: #740088;
  padding: 0 10px;
  color: #fff;
  transform: rotate(-90deg);
  top: 0;
  bottom: 0;
  left: -28px;
  right: auto;
  margin: auto;
  width: 82px;
  height: 25px;
  display: block;
  text-align: center;
}

.arriendo .precio {
  font-weight: normal;
  font-size: 20px;
  color: #801A93;
  font-family: ceramedium;
  margin: 10px 0 5px;
  display: block;
}

.arriendo .precio-cuota {
  font-weight: normal;
  font-size: 12px;
  color: #801A93;
  display: block;
}

.arriendo .precio-cuota b {
  color: #801A93;
}

.cat-img {
  width: 36%;
  float: left;
  position: relative;
}

@media only screen and (max-width: 480px) {
  .cat-img {
    width: 50%;
    float: none;
    margin: 10px auto;
    display: table;
  }
}
.cat-info {
  float: right;
  width: 64%;
  padding-left: 10px;
}

@media only screen and (max-width: 480px) {
  .cat-info {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
}
.cat-info h3 {
  font-size: 16px;
  margin: 0;
}

.cat-info h2 {
  margin: 0;
  font-size: 20px;
  margin-bottom: 5px;
}

.precio-wrap {
  background: #aaa;
}

.catalogo {
  margin: 20px 0;
  overflow: hidden;
}

.cat-header-aux {
  border-bottom: 2px dotted #ddd;
  margin-bottom: 50px;
  overflow: hidden;
  padding: 15px 0;
}

.cat-header-aux h2 {
  float: left;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .cat-equipos-wrap {
    width: 100%;
  }
}
.filtros {
  background: rgba(0, 0, 0, 0.05);
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  .filtros {
    width: 100%;
  }
}
.filtros h3 {
  font-size: 14px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/filters.png) no-repeat right center #381451;
  margin: 0;
  color: #fff;
  font-family: "ceraregular";
  font-weight: 100;
  padding: 10px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .filtros h3 {
    background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/arrow-down.png) no-repeat 96% center #381451;
  }
}
.filtros h4 {
  font-family: "ceraregular";
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.filter-wrap {
  padding: 0 20px;
}

.mobile-filter {
  -webkit-transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  -ms-transition: all ease 300ms;
  transition: all ease 300ms;
}

@media only screen and (max-width: 768px) {
  .mobile-filter {
    max-height: 0;
    overflow: hidden;
  }
}
.mobile-filter.open {
  max-height: 1000px;
}

.filter {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 30px;
}

.filter li {
  margin-bottom: 5px;
  overflow: hidden;
}

.filter li label {
  margin: 0 0 0 10px;
  float: left;
  width: 79%;
}

.filter li input {
  float: left;
}

.sort {
  float: right;
}

@media only screen and (max-width: 640px) {
  .sort {
    width: 100%;
    text-align: right;
  }
}
.sort form {
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 480px) {
  .sort form {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .sort form select {
    width: 100%;
  }
}
.sort input[type=text] {
  border: 1px solid #ddd;
  height: 30px;
  display: inline-block;
  border-radius: 3px;
  padding: 0 10px;
  width: 150px;
  font-size: 14px;
}

@media only screen and (max-width: 640px) {
  .sort input[type=text] {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 640px) and (min-width: 481px) {
  .sort input[type=text] {
    float: left;
    width: 67%;
    margin-bottom: 0;
  }
}
.sort select {
  padding: 5px;
  min-width: 150px;
}

.sort select:focus {
  outline: 0 none;
  background: #381451;
  color: #FFF;
}

@media only screen and (max-width: 640px) {
  .sort select {
    margin: 10px 0;
  }
}
.search input[type=submit] {
  background: #4E0081;
  height: 30px;
  border: none;
  font-size: 14px;
  color: #fff;
  font-family: "ceraregular";
  border-radius: 5px;
  padding: 0 10px;
}

.paginador {
  padding: 20px 30px;
  width: 100%;
  width: 100%;
  border-top: 2px dotted #ddd;
  float: left;
}

@media only screen and (max-width: 640px) {
  .paginador {
    padding: 20px;
    text-align: center;
  }
}
.paginador ul {
  float: right;
  list-style: none;
}

@media only screen and (max-width: 640px) {
  .paginador ul {
    float: none;
    display: inline-block;
  }
}
.paginador ul li {
  float: left;
  margin: 0 5px;
}

.paginador ul li a {
  width: 20px;
  height: 20px;
  display: block;
  color: #4E0081;
  text-align: center;
}

.paginador ul li a.current {
  background: #381451;
  border-radius: 100%;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.head-landing-ficha {
  color: #fff;
  background: #381750;
  overflow: hidden;
  width: 100%;
  background-position: left -250px center;
}

.equipo-head-img img {
  float: right;
  width: 100%;
  max-width: 350px;
}

.info-gral-ficha h1 {
  font-size: 40px;
  margin: 0 0 10px;
}

.info-gral-ficha h2 {
  font-size: 26px;
  margin: 0;
}

.info-gral-ficha .triangle-list {
  list-style: none;
}

.info-gral-ficha .triangle-list li {
  font-size: 14px;
  color: #fff;
  margin: 0 0 10px;
  position: relative;
  padding-left: 30px;
  font-family: "ceraregular";
}

.info-gral-ficha .triangle-list li:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #fff;
  content: "";
  left: 0;
  position: absolute;
  top: 3px;
}

.info-gral-ficha .triangle-list li strong {
  color: #ED2E93;
  font-family: "cerabold";
}

.info-gral-ficha .precios {
  font-size: 12px;
  color: #242424;
}

.info-gral-ficha .precios li {
  list-style: none;
  margin: 0 0 2px 0;
  color: #fff;
  font-family: "cerabold";
}

.info-gral-ficha .precios li span {
  color: #ED2E93;
}

.row.portabilidad-equipos {
  width: 75%;
}

@media only screen and (max-width: 640px) {
  .row.portabilidad-equipos {
    width: 100%;
  }
}
.row.portabilidad-equipos p {
  font-size: 15px;
  margin: 20px 0 0;
  padding: 16px 20px 17px 50px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/fecha-portabilidad.png) 1.2% 50% no-repeat #e9e9e9;
}

.row.portabilidad-equipos p a {
  color: #4E0081;
  text-decoration: underline;
}

.info-planes-equipo,
.info-planes-equipo2 {
  box-shadow: inset 1px 0 0 0 #fff;
  float: left;
  display: inline-block;
}

.info-planes-equipo *,
.info-planes-equipo2 * {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .info-planes-equipo,
.info-planes-equipo2 {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .info-planes-equipo,
.info-planes-equipo2 {
    width: 100%;
  }
}
.info-planes-equipo:hover,
.info-planes-equipo2:hover {
  /*box-shadow:0 -114px 36px -23px rgba(0, 0, 0, 1);*/
  position: relative;
  z-index: 500;
  background: #e9e9e9;
}

@media only screen and (max-width: 768px) {
  .info-planes-equipo:hover,
.info-planes-equipo2:hover {
    z-index: 0;
    box-shadow: none;
  }
}
.info-planes-equipo:hover h3,
.info-planes-equipo2:hover h3 {
  background: #4E0081;
  color: #fff;
  box-shadow: none;
  font-size: 24px;
}

.info-planes-equipo:hover .doble-cont,
.info-planes-equipo2:hover .doble-cont {
  margin: 0 0 10px;
}

.info-planes-equipo:hover .doble-cont:before,
.info-planes-equipo2:hover .doble-cont:before {
  content: "+";
  font-size: 25px;
  color: #000;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  display: table;
  font-weight: bold;
  font-family: arial;
}

.info-planes-equipo:hover .detalle-plan,
.info-planes-equipo2:hover .detalle-plan {
  opacity: 1;
  visibility: visible;
  position: static;
}

.info-planes-equipo:hover .wom-btn,
.info-planes-equipo2:hover .wom-btn {
  opacity: 1;
  visibility: visible;
  position: relative;
  width: 100%;
}

.info-planes-equipo:hover .tit-cuota,
.info-planes-equipo2:hover .tit-cuota {
  color: #222;
}

.info-planes-equipo:hover .valor-cuota,
.info-planes-equipo2:hover .valor-cuota {
  color: #381451;
}

.info-planes-equipo:hover .sin-port-dos,
.info-planes-equipo2:hover .sin-port-dos {
  color: #720184;
}

.info-planes-equipo:hover .sin-port-dos span,
.info-planes-equipo2:hover .sin-port-dos span {
  color: #720184;
}

.info-planes-equipo:hover .tit-detalle,
.info-planes-equipo2:hover .tit-detalle {
  color: #222;
}

.info-planes-equipo:hover .detalle1,
.info-planes-equipo2:hover .detalle1 {
  color: #222;
}

.info-planes-equipo:hover .detalle1 span,
.info-planes-equipo2:hover .detalle1 span {
  color: #222;
  display: block;
}

.info-planes-equipo:hover .cargo-fijo,
.info-planes-equipo2:hover .cargo-fijo {
  color: #222;
}

.info-planes-equipo h3,
.info-planes-equipo2 h3 {
  background: #f1f1f1;
  padding: 10px 20px;
  color: #555;
  font-size: 16px;
  font-family: "ceraregular";
  font-weight: bold;
  box-shadow: -2px 0px 0 0 #fff;
  margin: 0 0 20px;
  text-align: center;
}

.info-planes-equipo .tipo-plan,
.info-planes-equipo2 .tipo-plan {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
}

.info-planes-equipo li,
.info-planes-equipo2 li {
  margin-bottom: 5px 0 5px 0;
  list-style: none;
}

.info-planes-equipo .tit-cuota,
.info-planes-equipo2 .tit-cuota {
  font-size: 14px;
  font-weight: bold;
  color: #a6a6a6;
}

.info-planes-equipo .detalle-plan,
.info-planes-equipo2 .detalle-plan {
  color: #720184;
  display: block;
  margin: 28px 0 8px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}

.info-planes-equipo .doble-cont,
.info-planes-equipo2 .doble-cont {
  width: 100%;
  position: relative;
}

.info-planes-equipo .doble-cont li,
.info-planes-equipo2 .doble-cont li {
  float: left;
  padding: 0 6px 0 3px;
  width: 50%;
}

.info-planes-equipo .doble-cont:before,
.info-planes-equipo2 .doble-cont:before {
  content: "+";
  font-size: 25px;
  color: #a6a6a6;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  display: table;
  font-weight: bold;
  font-family: arial;
}

.info-planes-equipo .wom-btn,
.info-planes-equipo2 .wom-btn {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}

.info-planes-equipo .valor-cuota,
.info-planes-equipo2 .valor-cuota {
  color: #a6a6a6;
  font-size: 32px;
  font-weight: bold;
  padding: 10px 0 10px 0;
  line-height: 18px;
}

.info-planes-equipo .valor-cuota span,
.info-planes-equipo2 .valor-cuota span {
  font-size: 12px;
}

.info-planes-equipo .sin-port,
.info-planes-equipo2 .sin-port {
  color: #a6a6a6;
  font-size: 32px;
  font-weight: bold;
  line-height: 20px;
  padding-bottom: 12px;
  padding-left: 0;
  padding-top: 5px;
}

.info-planes-equipo .sin-port-dos,
.info-planes-equipo2 .sin-port-dos {
  color: #a6a6a6;
  font-size: 14px;
  font-family: "cerabold";
  line-height: 14px;
  padding-bottom: 12px;
  padding-left: 0;
  padding-top: 5px;
}

.info-planes-equipo .sin-port span,
.info-planes-equipo2 .sin-port span {
  font-size: 12px;
  color: #a6a6a6;
}

.info-planes-equipo .tit-detalle,
.info-planes-equipo2 .tit-detalle {
  font-size: 14px;
  color: #a6a6a6;
  font-weight: bold;
  padding-top: 15px;
}

.info-planes-equipo .detalle1,
.info-planes-equipo2 .detalle1 {
  font-size: 12px;
  color: #a6a6a6;
  padding-left: 0;
  padding-top: 5px;
}

.info-planes-equipo .detalle1 span,
.info-planes-equipo2 .detalle1 span {
  font-size: 14px;
  font-weight: bold;
  color: #a6a6a6;
}

.info-planes-equipo .detalle1 .valor,
.info-planes-equipo2 .detalle1 .valor {
  display: block;
  width: 100%;
}

.info-planes-equipo .cargo-fijo,
.info-planes-equipo2 .cargo-fijo {
  font-size: 12px;
  color: #a6a6a6;
  padding-left: 0;
  padding-top: 5px;
}

.info-planes-equipo .cargo-fijo strong,
.info-planes-equipo2 .cargo-fijo strong {
  display: block;
}

.info-planes {
  padding: 0 20px 20px;
}

.detalles-tecnicos {
  padding: 34px 0 0 0;
  .float: none;
  width: 100%;
}

.detalles-tecnicos h2 {
  padding: 0 0 15px 20px;
  border-bottom: dotted 3px #e9e9e9;
  color: #242424;
  font-size: 20px;
}

.detalles-tecnicos li {
  list-style: none;
  margin: 0 0 5px 0;
}

.detalles-tecnicos li.dark {
  background: #e9e9e9;
}

.detalles-tecnicos li li {
  font-size: 12px;
}

.detalles-tecnicos li li:before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background: #242424;
  margin: 0 5px 0 0;
  border-radius: 5px;
}

.detalles-tecnicos .equipo .prev1 {
  display: block;
}

.detalles-tecnicos .equipo .prev2, .detalles-tecnicos .equipo .prev3, .detalles-tecnicos .equipo .prev4 {
  display: none;
}

.detalles-tecnicos .equipo .sae {
  display: block;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .detalles-tecnicos .equipo .sae {
    width: 82%;
  }
}
.detalles-tecnicos .vistas {
  max-width: 50px;
  width: 100%;
  margin: 70px 2% 0 3%;
}

.detalles-tecnicos .vistas a:hover {
  opacity: 0.5;
  -webkit-transition: opacity 500ms ease-out 0.05s;
  -moz-transition: opacity 500ms ease-out 0.05s;
  -o-transition: opacity 500ms ease-out 0.05s;
  transition: opacity 500ms ease-out 0.05s;
}

.detalles-tecnicos .descripcion * {
  font-family: "ceraregular";
}

.detalles-tecnicos .descripcion li {
  padding: 8px 10px 8px 20px;
}

.detalles-tecnicos .descripcion li h4 {
  margin: 0 0 10px 0;
}

.detalles-tecnicos .descripcion li li {
  padding: 0;
}

.equipos-empresa .col-n-m-3 {
  width: 20%;
}

.equipos_recomendados {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/border-top.png) top center no-repeat;
  padding: 34px 0 0 0;
  margin: 30px auto;
}

.equipos_recomendados h2 {
  position: relative;
  margin: 0 auto 30px;
  width: 100%;
  color: #381451;
  font-family: "ceraregular";
  font-size: 35px;
  font-weight: bold;
}

.equipos_recomendados * {
  font-weight: normal;
  text-align: center;
  font-family: "ceraregular";
  color: #242424;
}

.equipos_recomendados li h3 {
  font-family: "ceraregular";
  font-size: 15px;
}

.equipos_recomendados li h4 {
  font-size: 12px;
}

.equipos_recomendados li h4 span {
  width: 100%;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: bold;
}

.equipos_recomendados li img {
  max-width: 130px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.equipos_recomendados .more-btn {
  margin: 35px auto 20px;
}

@media only screen and (max-width: 640px) {
  .col-m-5.last.info-gral-ficha {
    background: #f1f1f1 none repeat scroll 0 0;
    padding: 20px;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .detalles-tecnicos .equipo.col-3 {
    margin: 30px 0 40px 15%;
    width: 145px;
  }

  .detalles-tecnicos .descripcion {
    width: 100%;
    position: relative;
    margin: 0 auto;
    float: none;
    overflow: hidden;
  }

  .info-planes-equipo .doble-cont:before,
.info-planes-equipo2 .doble-cont:before {
    visibility: visible;
    opacity: 1;
  }

  .info-planes-equipo .detalle-plan,
.info-planes-equipo2 .detalle-plan {
    opacity: 1;
    visibility: visible;
    position: relative;
  }

  .info-planes-equipo .wom-btn,
.info-planes-equipo2 .wom-btn {
    opacity: 1;
    visibility: visible;
    position: relative;
  }

  .info-planes-equipo,
.info-planes-equipo2 {
    /*box-shadow:0 -114px 36px -23px rgba(0, 0, 0, 1);*/
    position: relative;
    z-index: 500;
    background: #e9e9e9;
  }

  .info-planes-equipo .doble-cont:before,
.info-planes-equipo2 .doble-cont:before {
    visibility: visible;
    opacity: 1;
  }

  .info-planes-equipo .detalle-plan,
.info-planes-equipo2 .detalle-plan {
    opacity: 1;
    visibility: visible;
    position: relative;
  }

  .info-planes-equipo .wom-btn,
.info-planes-equipo2 .wom-btn {
    opacity: 1;
    visibility: visible;
    position: relative;
  }
}
@media only screen and (max-width: 640px) and (max-width: 768px) {
  .info-planes-equipo,
.info-planes-equipo2 {
    z-index: 0;
    box-shadow: none;
  }
}
@media only screen and (max-width: 640px) {
  .info-planes-equipo h3,
.info-planes-equipo2 h3 {
    background: #4E0081;
    color: #fff;
    box-shadow: none;
    font-size: 24px;
  }

  .info-planes-equipo .doble-cont:before,
.info-planes-equipo2 .doble-cont:before {
    content: "+";
    font-size: 25px;
    color: #000;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    display: table;
    font-weight: bold;
    font-family: arial;
  }

  .info-planes-equipo .detalle-plan,
.info-planes-equipo2 .detalle-plan {
    opacity: 1;
    visibility: visible;
    position: static;
  }

  .info-planes-equipo .wom-btn,
.info-planes-equipo2 .wom-btn {
    opacity: 1;
    visibility: visible;
    position: relative;
    width: 100%;
  }

  .info-planes-equipo .tit-cuota,
.info-planes-equipo2 .tit-cuota {
    color: #222;
  }

  .info-planes-equipo .valor-cuota,
.info-planes-equipo2 .valor-cuota {
    color: #381451;
  }

  .info-planes-equipo .sin-port,
.info-planes-equipo2 .sin-port {
    color: #381451;
  }

  .info-planes-equipo .sin-port span,
.info-planes-equipo2 .sin-port span {
    color: #222;
  }

  .info-planes-equipo .tit-detalle,
.info-planes-equipo2 .tit-detalle {
    color: #222;
  }

  .info-planes-equipo .detalle1,
.info-planes-equipo2 .detalle1 {
    color: #222;
  }

  .info-planes-equipo .detalle1 span,
.info-planes-equipo2 .detalle1 span {
    color: #222;
    display: block;
  }

  .info-planes-equipo .cargo-fijo,
.info-planes-equipo2 .cargo-fijo {
    color: #222;
  }
}
@media only screen and (max-width: 480px) {
  .equipos_recomendados .col-3 {
    width: 100%;
  }
}
.align-left {
  text-align: left;
}

.alerta-home {
  background: #e9e9e9;
  width: 100%;
  height: auto;
  -webkit-box-shadow: inset 0px 0px 5px 0px rgba(50, 50, 50, 0.43);
  -moz-box-shadow: inset 0px 0px 5px 0px rgba(50, 50, 50, 0.43);
  box-shadow: inset 0px 0px 5px 0px rgba(50, 50, 50, 0.43);
}

.alerta-home p {
  background: url("../img/icono_alerta.png") no-repeat scroll left center;
  margin: 0 auto;
  padding: 23px 27px;
  position: relative;
  text-align: center;
  width: 92%;
}

.alerta-home p a {
  color: #4E0081;
  font-weight: bold;
}

.why-wom-box {
  position: relative;
}

.why-wom-box a {
  display: block;
}

.why-wom-box .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.why-wom-box .mask:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjk5Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(99%, rgba(0, 0, 0, 0.99)), color-stop(100%, black));
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#000000",GradientType=0 );
  content: "";
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  -o-transform: translate3d(0, 50%, 0);
  -ms-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  transition: all 300ms ease;
}

.why-wom-box .mask h2, .why-wom-box .mask h3 {
  color: #FFF;
  position: absolute;
  bottom: 10%;
  left: 0px;
  padding: 0 25px;
  width: 100%;
  text-align: left;
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  -o-transform: translate3d(0, 50%, 0);
  -ms-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  transition: all 300ms ease;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  font-size: 52px;
  transition-delay: 300ms;
}

@media only screen and (max-width: 400px) {
  .why-wom-box .mask h2, .why-wom-box .mask h3 {
    font-size: 22px;
  }
}
.why-wom-box .mask h3 {
  font-size: 22px;
}

@media only screen and (max-width: 480px) {
  .why-wom-box .mask h3 {
    font-size: 52px;
  }
}
@media only screen and (max-width: 400px) {
  .why-wom-box .mask h3 {
    font-size: 22px;
  }
}
.why-wom-box .mask p {
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  color: #484c61;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  -o-transform: translate3d(0, 50%, 0);
  -ms-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  transition: all 300ms ease;
  padding: 0 25px;
}

@media only screen and (max-width: 830px) {
  .why-wom-box .mask p {
    top: auto;
    bottom: 50px;
  }
}
.why-wom-box.small p {
  top: 40%;
}

@media only screen and (max-width: 1000px) and (min-width: 830px) {
  .why-wom-box.small p {
    top: 10%;
  }
}
@media only screen and (max-width: 830px) {
  .why-wom-box.small p {
    top: auto;
    bottom: 10%;
  }
}
@media only screen and (max-width: 480px) {
  .why-wom-box {
    width: 100%;
    float: left;
  }
}
.no-touch .why-wom-box:hover .mask:before {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.no-touch .why-wom-box:hover .mask h2, .no-touch .why-wom-box:hover .mask h3 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0ms;
}

.no-touch .why-wom-box:hover .mask p {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  transition-delay: 300ms;
  color: #fff;
}

.touch .why-wom-box.active .mask:before {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.touch .why-wom-box.active .mask h2, .touch .why-wom-box.active .mask h3 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0ms;
}

.touch .why-wom-box.active .mask p {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  transition-delay: 300ms;
  color: #fff;
}

@media only screen and (max-width: 830px) {
  .why-wom-holder {
    width: 100%;
  }
}
.prepago .banner-principal .cifras .precio {
  line-height: 100%;
}

.home-slider.chip-equipo .bx-controls {
  margin-left: 40.5%;
  position: static;
}

@media only screen and (max-width: 640px) {
  .home-slider.chip-equipo .bx-controls {
    margin-left: 0;
    text-align: center;
  }
}
.home-slider.chip-equipo .bx-pager {
  float: left;
}

@media only screen and (max-width: 640px) {
  .home-slider.chip-equipo .bx-pager {
    display: inline-block;
    float: none;
  }
}
.home-slider.chip-equipo .equipo-oferta {
  width: auto;
}

@media only screen and (max-width: 640px) {
  .home-slider.chip-equipo .equipo-oferta {
    display: block;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .home-slider.chip-equipo .datos .precio span, .home-slider.chip-equipo .cifras .precio span {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .home-slider.chip-equipo .datos .precio, .home-slider.chip-equipo .cifras .precio {
    text-align: center;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .home-slider.chip-equipo .datos, .home-slider.chip-equipo .cifras {
    text-align: center;
  }
}
.promocion-banner-left {
  width: 70.4%;
  float: left;
  margin-right: 2%;
}

@media only screen and (max-width: 768px) {
  .promocion-banner-left {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
.promocion-banner {
  background-color: #381451;
  color: #FFF;
  width: 27.6%;
  float: left;
  text-align: center;
  box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
  .promocion-banner {
    width: 100%;
    max-width: 300px;
    float: none;
    margin: 0 auto;
  }
}
.promocion-banner a {
  display: block;
  color: #FFF;
  padding: 30px 60px 50px 60px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}

.promocion-banner a:hover {
  background-color: #541e7a;
}

@media only screen and (max-width: 940px) {
  .promocion-banner a {
    padding: 30px 30px 50px 30px;
  }
}
.promocion-banner .normal-text {
  font-size: 18px;
  display: block;
  line-height: 130%;
  color: #B3B3B3;
}

.promocion-banner .big-text {
  font-size: 22px;
  font-family: "ceraregular";
  display: block;
  text-transform: uppercase;
  line-height: 130%;
}

.promocion-banner .big-number {
  font-size: 42px;
  font-weight: bold;
  display: block;
  line-height: 130%;
}

.promocion-banner .small-text {
  font-size: 12px;
  display: block;
  text-transform: uppercase;
  line-height: 130%;
  color: #B3B3B3;
}

.promocion-banner .inner-link {
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px solid #fff;
  margin-top: 10px;
  line-height: 130%;
  color: #B3B3B3;
}

.present-banner {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/chip-equipo/present-banner.png) no-repeat center center #fff;
  width: 47px;
  height: 47px;
  border-radius: 100%;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

.slider-pro {
  overflow: hidden;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .slider-pro {
    overflow: visible;
  }
}
.slider-pro button {
  text-indent: -9999px;
  display: block;
  border: none;
  width: 50px;
  height: 50px;
}

.slider-pro .next {
  position: absolute;
  right: 10px;
  top: 50%;
  display: block;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/next.png) no-repeat center;
}

@media only screen and (max-width: 640px) {
  .slider-pro .next {
    top: -20px;
    right: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .slider-pro .next {
    top: 0;
  }
}
.slider-pro .anterior {
  position: absolute;
  left: 20px;
  top: 50%;
  display: block;
  background: red;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/prev.png) no-repeat center;
}

@media only screen and (max-width: 640px) {
  .slider-pro .anterior {
    top: -20px;
    left: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .slider-pro .anterior {
    top: 0;
  }
}
.slider-pro .slide {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 300ms ease;
  -moz-transition: opacity 300ms ease;
  -ms-transition: opacity 300ms ease;
  -o-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.slider-pro .slide.active {
  opacity: 1;
  visibility: visible;
  position: static;
}

.menu-select {
  margin: 10px auto 10px;
}

.menu-select select {
  width: 100%;
  font-size: 18px;
  padding: 0 10px;
  font-family: "ceraregular";
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/arrow-down.png) no-repeat center right;
}

.error {
  background-color: #000;
  position: relative;
  padding: 200px 0;
  overflow: hidden;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .error {
    padding: 100px 0;
  }
}
.error h2 {
  color: #FFF;
  font-size: 61px;
  text-transform: uppercase;
  font-family: "ceraregular";
  margin-bottom: 10px;
}

@media only screen and (max-width: 640px) {
  .error h2 {
    font-size: 41px;
  }
}
.error p {
  color: #FFF;
  font-size: 18px;
  font-family: "ceraregular";
}

.error a {
  color: #fff;
  text-decoration: underline;
}

.error .content {
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 640px) {
  .error .content.rotate {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
}
@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .error .col-6 {
    width: 100%;
    float: none;
  }
}
.error:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 150px;
  width: 100%;
  z-index: 999999;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjk5Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(99%, rgba(0, 0, 0, 0.99)), color-stop(100%, black));
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#000000",GradientType=0 );
}

@media only screen and (max-width: 640px) {
  .error:after {
    display: none;
  }
}
.error-image-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .error-image-holder img {
    width: auto;
  }
}
@media only screen and (max-width: 640px) {
  .error-image-holder img {
    width: auto;
  }
}
.error-form {
  display: block;
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.align-right {
  text-align: right;
}

.search-input-error {
  width: 85%;
  border: 2px solid #381451;
  border-right: 0;
  float: left;
  display: block;
  height: 52px;
  color: #FFF;
  background-color: transparent;
  padding: 10px;
}

.search-input-error:focus {
  outline: 0 none;
}

.submit-search-error {
  width: 15%;
  border: 2px solid #381451;
  border-left: 0;
  float: left;
  display: block;
  height: 52px;
  background-color: transparent;
  background-image: url("../img/search-error.png");
  background-position: center center;
  background-repeat: no-repeat;
}

.submit-search-error:focus {
  outline: 0 none;
}

.main-foot .triangle-foot.error-footer {
  border-top: 50px inset #000;
}

@media only screen and (max-width: 1360px) {
  .error-image-holder img {
    width: auto;
  }
}
html, body {
  overflow-x: hidden;
}

.chromebrowser .prepago.p-telefonia .tarifas .box-ofertas .circle {
  top: -2px;
  left: -2px;
}

.head-landing .row {
  z-index: 5;
}

.bg-banner-top {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  width: 1200px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.ball-info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  background: #e9e9e9;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}

.ball-info * {
  text-align: center;
}

.ball-info h3 {
  margin-bottom: 5px;
}

.ball-info .ball {
  background: #381451;
  border-radius: 112px;
  color: #fff;
  font-family: "ceraregular";
  font-size: 46px;
  font-weight: bold;
  height: 112px;
  line-height: 94px;
  margin: 20px auto 0px;
  overflow: hidden;
  position: relative;
  width: 112px;
  text-align: center;
}

.ball-info.white-inner .ball span {
  background: #fff;
  border-radius: 50px;
  bottom: -10px;
  color: #381451;
  font-family: "ceraregular";
  font-size: 27px;
  font-weight: bold;
  height: 48px;
  left: 34px;
  line-height: 43px;
  position: absolute;
  width: 48px;
}

.ball-info .descripcion {
  text-align: center;
  color: #242424;
  font-size: 11px;
  text-transform: uppercase;
  margin: 10px auto;
}

.ball-info p {
  font-size: 12px;
  margin: 0 0 6px;
  color: #242424;
}

.ball-info p span {
  font-size: 26px;
}

.ball-info .bottom-info {
  border-top: solid 1px #ccc;
  padding: 16px 0 10px;
}

.ball-info .bottom-info * {
  text-align: center;
}

.ball-info .bottom-info span {
  display: block;
  line-height: 18px;
  text-align: center;
  width: 100%;
  margin: 0 auto 10px;
  font-size: 11px;
  color: #242424;
}

.ball-info .bottom-info .big {
  font-size: 48px;
  color: #381451;
  font-family: "ceraregular";
  line-height: 120%;
}

.ball-info .bottom-info .wom-btn {
  position: absolute;
  bottom: 10px;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  right: 0;
  left: 0;
}

@media only screen and (max-width: 768px) {
  .ball-info .bottom-info .wom-btn {
    position: relative;
  }
}
.prepago h2 {
  text-align: center;
  color: #381451;
}

.prepago .terminos {
  position: relative;
  margin: 30px auto 0;
  display: block;
  max-width: 400px;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/bottom-shadow2.png) top center no-repeat;
  color: #381451;
}

.prepago.p-telefonia .kit-prepago li {
  position: relative;
  overflow: hidden;
}

.prepago.p-telefonia .kit-prepago li .info-kit {
  bottom: 30px;
  position: absolute;
  right: 20px;
  z-index: 5;
  -ms-transform: rotate(-14deg);
  /* IE 9 */
  -webkit-transform: rotate(-14deg);
  /* Chrome, Safari, Opera */
  transform: rotate(-14deg);
}

.prepago.p-telefonia .kit-prepago li .info-kit .white-ball {
  background: #fff;
  border-radius: 100px;
  text-align: center;
  width: 114px;
  height: 114px;
  display: table-cell;
  vertical-align: middle;
}

.prepago.p-telefonia .kit-prepago li .info-kit .white-ball span {
  font-family: "ceraregular";
  color: #381451;
  width: 100%;
  float: left;
  display: table;
  line-height: 24px;
  font-weight: bold;
  padding: 3px 0 3px 0px;
}

.prepago.p-telefonia .kit-prepago li .info-kit .white-ball .navega {
  font-size: 18px;
}

.prepago.p-telefonia .kit-prepago li .info-kit .white-ball .cifra {
  font-size: 42px;
}

.prepago.p-telefonia .kit-prepago li .info-kit .white-ball .mb {
  font-size: 25px;
}

.prepago.p-telefonia .kit-prepago li .info-kit span {
  color: #fff;
  text-align: center;
  font-size: 35px;
  font-family: "ceraregular";
  width: 100%;
  float: left;
  line-height: 21px;
}

.prepago.p-telefonia .kit-prepago li .info-kit span.por {
  font-size: 12px;
  text-align: left;
  width: 100%;
  float: left;
  font-family: "ceraregular";
  padding: 0 0 0 20px;
  margin: 0;
}

.prepago.p-telefonia .kit-prepago li .more {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 27px;
  height: 27px;
  color: #381451;
  text-align: center;
  line-height: 27px;
  background: #fff;
  z-index: 5;
  font-weight: bold;
}

.prepago.p-telefonia .kit-prepago li img {
  position: relative;
  z-index: 1;
  float: left;
}

.prepago.p-telefonia .tarifas {
  margin: 0 auto 50px;
}

.prepago.p-telefonia .tarifas .box-ofertas {
  border: solid 3px #381451;
  border-radius: 150px;
  margin-bottom: 20px;
  position: relative;
  height: 150px;
  display: table;
}

.prepago.p-telefonia .tarifas .box-ofertas .circle {
  display: table;
  background: #381451;
  border-radius: 100px;
  color: #fff;
  width: 150px;
  height: 150px;
  text-align: center;
  float: left;
  position: absolute;
  top: 0;
  left: 0;
}

.prepago.p-telefonia .tarifas .box-ofertas .circle.right {
  float: right;
}

.prepago.p-telefonia .tarifas .box-ofertas .circle.oval {
  width: 35%;
}

.prepago.p-telefonia .tarifas .box-ofertas .circle.oval.left {
  text-align: left;
}

.prepago.p-telefonia .tarifas .box-ofertas .circle.oval.left p, .prepago.p-telefonia .tarifas .box-ofertas .circle.oval.left span {
  padding: 0 30px 0 24%;
  display: block;
}

.prepago.p-telefonia .tarifas .box-ofertas .circle div {
  vertical-align: middle;
  display: table-cell;
  -ms-transform: rotate(-14deg);
  /* IE 9 */
  -webkit-transform: rotate(-14deg);
  /* Chrome, Safari, Opera */
  transform: rotate(-14deg);
}

.prepago.p-telefonia .tarifas .box-ofertas .circle p {
  font-family: "ceraregular";
  width: 100%;
  font-size: 21px;
  font-weight: bold;
  padding: 0 12px 0 10px;
}

.prepago.p-telefonia .tarifas .box-ofertas .circle span {
  font-family: "ceraregular";
}

.prepago.p-telefonia .tarifas .box-ofertas span.left {
  text-align: left;
}

.prepago.p-telefonia .tarifas .box-ofertas ul {
  display: table-cell;
  margin: 35px auto 0;
  width: 100%;
  padding-left: 158px;
  vertical-align: middle;
}

.prepago.p-telefonia .tarifas .box-ofertas ul.right {
  margin: 56px 12px 0 30px;
}

.prepago.p-telefonia .tarifas .box-ofertas ul li {
  list-style: none;
  display: table-cell;
  vertical-align: middle;
  color: #381451;
  padding: 0 10px;
  font-size: 24px;
}

.prepago.p-telefonia .tarifas .box-ofertas ul li span {
  display: block;
  float: left;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 35px;
}

@media only screen and (max-width: 640px) {
  .prepago.p-telefonia .tarifas .box-ofertas ul li span {
    font-size: 25px;
  }
}
.prepago.p-telefonia .tarifas .box-ofertas ul li .small-center {
  font-size: 12px;
}

.prepago.p-telefonia .tarifas .box-ofertas ul li .small-left {
  font-size: 12px;
  text-align: left;
}

.prepago.p-telefonia .tarifas .box-ofertas ul li .big-price {
  font-size: 35px;
  text-align: right;
  font-weight: bold;
}

.prepago.p-telefonia .tarifas .box-ofertas ul li .big-price.left {
  text-align: left;
}

.prepago.p-telefonia .tarifas .box-ofertas ul li .small {
  width: 100%;
  line-height: 10px;
  text-align: right;
  font-size: 15px;
  font-weight: bold;
}

.prepago.p-telefonia .tarifas .box-ofertas ul.first-line li:first-child {
  border-right: solid 3px #381451;
}

.prepago.p-telefonia .tarifas .box-ofertas a {
  position: absolute;
  bottom: 10px;
  left: 174px;
  color: #381451;
}

.prepago.p-telefonia .tarifas .box-ofertas a.right {
  left: auto;
  right: 90px;
}

.prepago.p-telefonia .tarifas .box-ofertas.center {
  margin: 30px auto 30px;
  float: none;
  overflow: hidden;
}

.prepago.p-telefonia .tarifas .box-ofertas.relative-position {
  position: relative;
  overflow: visible;
}

.prepago.p-telefonia .tarifas .box-ofertas-small {
  border: solid 2px #381451;
  border-radius: 100px;
  min-width: 225px;
}

.prepago.p-telefonia .tarifas .box-ofertas-small .circle {
  border-radius: 100px;
  display: table;
  float: left;
  height: 90px;
  width: auto;
  background: #381451;
  color: #fff;
  margin-left: -1px;
}

.prepago.p-telefonia .tarifas .box-ofertas-small .circle div {
  display: table-cell;
  vertical-align: middle;
  -ms-transform: rotate(-14deg);
  /* IE 9 */
  -webkit-transform: rotate(-14deg);
  /* Chrome, Safari, Opera */
  transform: rotate(-14deg);
}

.prepago.p-telefonia .tarifas .box-ofertas-small .circle span {
  display: block;
  padding: 0 30px 0 39px;
  text-align: center;
  width: 100%;
}

.prepago.p-telefonia .tarifas .box-ofertas-small .circle p {
  display: block;
  font-size: 32px;
  font-weight: bold;
  line-height: 25px;
  padding: 0 26px 0 20px;
  text-align: right;
}

.prepago.p-telefonia .tarifas .box-ofertas-small ul {
  display: table;
  float: left;
  margin: 25px 0 0 5px;
  width: auto;
}

.prepago.p-telefonia .tarifas .box-ofertas-small ul li {
  list-style: none;
  display: table-cell;
  vertical-align: middle;
  color: #381451;
}

.prepago.p-telefonia .tarifas .box-ofertas-small ul li p {
  font-size: 20px;
  font-weight: bold;
}

.prepago .menu-prepago li {
  float: left;
  font-size: 18px;
  font-family: "ceraregular";
  text-align: center;
  font-weight: bold;
}

.prepago .menu-prepago li a {
  display: block;
  color: #720184;
  padding: 0 0 0 0;
  height: 52px;
  position: relative;
}

.prepago .menu-prepago li a:hover {
  color: #242424;
}

.prepago .menu-prepago li a.activo .active-bar {
  width: 60%;
  background: #720184;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 5;
}

.prepago .bottom-bar {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  height: 5px;
  overflow: hidden;
}

.prepago .bottom-bar span {
  width: 0;
  background: #4E0081;
  float: none;
  height: 15px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: block;
  z-index: 2;
}

.prepago .bottom-bar .bar-bg {
  width: 80%;
  background: none;
  float: none;
  height: 15px;
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  display: block;
  z-index: 2;
  top: 0;
  left: 10%;
}

.prepago .banner-prepago {
  margin: 10px auto 0;
}

.prepago .banner-principal {
  position: relative;
  max-width: 806px;
  margin: 0 auto;
}

.prepago .banner-principal .equipo img {
  max-width: 300px;
  width: 100%;
}

.prepago .banner-principal ul li {
  list-style: none;
}

.prepago .banner-principal .datos li {
  color: #242424;
  margin: 10px 0 10px 0;
}

.prepago .banner-principal .datos li span {
  color: #720184;
}

.prepago .banner-principal .datos li:before {
  content: "";
  display: inline-block;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-right-arrow.png) center no-repeat;
  width: 8px;
  height: 9px;
  margin: 0 10px 0 0;
}

.prepago .banner-principal .cifras {
  text-transform: uppercase;
}

.prepago .banner-principal .cifras .precio {
  font-size: 50px;
  color: #381451;
  font-weight: bold;
  line-height: 20px;
  border-bottom: 3px dotted #e9e9e9;
  margin: 14px 0 10px;
  padding: 0 0 6px;
  width: auto;
  display: table;
}

.prepago .banner-principal .cifras .precio span {
  font-size: 14px;
  color: #242424;
  text-transform: uppercase;
}

.prepago .banner-principal .cifras .precio .anexo {
  background: #381451;
  border-radius: 150px;
  bottom: 75px;
  color: #fff;
  height: 122px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 122px;
  display: table;
}

.prepago .banner-principal .cifras .precio .anexo p {
  font-size: 12px;
  text-transform: uppercase;
  display: table-cell;
  vertical-align: middle;
}

.prepago .banner-principal .cifras .precio .anexo p span {
  color: #fff;
  font-size: 28px;
  font-weight: 100;
}

.prepago .banner-principal .cifras .precio .anexo .more-btn {
  background: #720184 url("../img/icons/add_icon.png") no-repeat scroll center center;
  bottom: 10px;
  height: 32px;
  left: -10px;
  position: absolute;
  width: 32px;
  z-index: 5;
}

.prepago .banner-mod2 .banner-principal {
  max-width: 815px;
  min-height: 340px;
}

.prepago .banner-mod2 .banner-principal .col-3, .prepago .banner-mod2 .banner-principal .col-6 {
  margin: 0;
}

.prepago .banner-mod2 .grafica {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.prepago .banner-mod2 .left-cont {
  float: left;
  width: 200px;
}

.prepago .banner-mod2 .left-cont .right-align li {
  text-align: right;
}

.prepago .banner-mod2 .right-cont {
  width: 200px;
  float: right;
}

.prepago .banner-mod2 .right-cont .left-align li {
  text-align: left;
}

.prepago .banner-mod2 h3 {
  color: #666;
}

.prepago .banner-mod2 .precio {
  font-size: 50px;
  color: #381451;
  font-weight: bold;
  line-height: 20px;
}

.prepago .banner-mod2 .cuota {
  font-size: 13px;
  margin: 4px 0;
}

.prepago .banner-mod2 .gb {
  color: #381451;
  font-size: 25px;
  margin: 10px 0 4px;
}

.prepago .banner-mod2 .duracion {
  color: #666;
  font-size: 13px;
  margin: 0 0 4px;
}

.prepago .banner-mod2 .descripcion {
  color: #666;
  font-size: 12px;
  margin: 0 0 10px;
}

.prepago .banner-promo {
  margin: 0 auto 26px;
}

.prepago .banner-promo .banner {
  background: #e9e9e9;
  position: relative;
  overflow: hidden;
  min-height: 190px;
}

.prepago .banner-promo .banner .ball {
  margin: 30px auto 0;
}

.prepago .banner-promo .banner .nombre-plan .info {
  z-index: 5;
  display: table;
  margin: 39px 0 0 10%;
  position: relative;
  -ms-transform: rotate(-14deg);
  /* IE 9 */
  -webkit-transform: rotate(-14deg);
  /* Chrome, Safari, Opera */
  transform: rotate(-14deg);
}

.prepago .banner-promo .banner .nombre-plan .info h3 {
  color: #fff;
  display: table-row;
  font-size: 30px;
  margin: 0;
  vertical-align: middle;
}

.prepago .banner-promo .banner .nombre-plan .info span {
  color: #fff;
  display: table-row;
  vertical-align: middle;
}

.prepago .banner-promo .banner .nombre-plan .circle {
  background: #381451;
  border-radius: 500px;
  height: 400px;
  position: absolute;
  right: 72%;
  top: -40px;
  width: 400px;
  z-index: 1;
}

.prepago .banner-promo .banner .nombre-plan img {
  max-width: 210px;
  position: absolute;
  left: 15.6%;
  bottom: 0;
  z-index: 5;
}

.prepago .banner-promo .banner .middle-col {
  margin: 0 2px 0 1.1%;
  width: 130px;
}

.prepago .banner-promo .banner .cent-info span {
  float: left;
  font-weight: bold;
  color: #666;
  font-size: 38px;
  margin: 72px 0 0;
}

.prepago .banner-promo .banner .cent-info ul {
  float: left;
  margin: 53px 0 0 2%;
}

.prepago .banner-promo .banner .cent-info li {
  text-align: center;
  font-size: 14px;
  color: #242424;
}

.prepago .banner-promo .banner .cent-info li:first-child {
  font-size: 48px;
  font-weight: bold;
}

.prepago .banner-promo .banner .right {
  width: 30.5%;
  padding: 8px 18px 0 0px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/border-left-bg.png) 10px 50% no-repeat;
  min-height: 190px;
  height: auto;
  overflow: hidden;
}

.prepago .banner-promo .banner .right * {
  float: right;
  text-align: right;
  font-family: "ceraregular";
  color: #242424;
}

.prepago .banner-promo .banner .right span {
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
}

.prepago .banner-promo .banner .right .big {
  font-size: 46px;
  color: #381451;
  font-weight: bold;
  width: 100%;
}

.prepago .banner-promo .banner .right .precio {
  font-size: 22px;
  width: 100%;
}

.prepago .banner-promo .banner .right a {
  color: #fff;
}

.prepago .banner-promo .banner .right .wom-btn {
  width: 60%;
  text-align: left;
  margin: 10px 0 0;
}

.prepago .banner-promo ul li {
  list-style: none;
}

.prepago .opciones-prepago li {
  background: #e9e9e9;
  padding: 20px 0 10px;
  text-align: center;
}

.prepago .opciones-prepago .bottom-info {
  border-top: solid 1px #ccc;
  padding: 16px 0 10px;
}

.prepago .opciones-prepago .bottom-info * {
  text-align: center;
}

.prepago .opciones-prepago .bottom-info span {
  display: block;
  line-height: 18px;
  text-align: center;
  width: 100%;
  margin: 0 auto 14px;
  font-size: 11px;
}

.prepago .opciones-prepago .bottom-info .big {
  font-size: 38px;
}

.prepago .opciones-prepago .bottom-info .wom-btn {
  position: relative;
  margin: 0 auto;
  display: block;
}

.prepago .condiciones {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/nav-bg-bottom.jpg) top center no-repeat;
  padding: 20px 0 0 0;
  margin: 15px auto 60px;
}

.prepago .condiciones li {
  text-align: center;
}

.prepago .condiciones li h3 {
  color: #999;
}

.prepago .condiciones li span {
  color: #381451;
  border-bottom: 1px solid #242424;
  color: #381451;
  display: block;
  float: none;
  font-size: 51px;
  font-weight: bold;
  line-height: 18px;
  margin: 24px auto 12px;
  padding-bottom: 12px;
  position: relative;
  width: auto;
  display: table;
}

.prepago .condiciones li p {
  color: #381451;
}

.prepago .cont-planes-bolsas h2 span {
  color: #666;
  font-family: "ceraregular";
  font-size: 16px;
  font-weight: 100;
  text-transform: uppercase;
}

.no-touch .prepago.p-telefonia .kit-prepago li:hover .ball-info,
.touch .prepago.p-telefonia .kit-prepago li.active .ball-info {
  visibility: visible;
  opacity: 1;
}

/*kits*/
.why-wom-box {
  position: relative;
}

.why-wom-box a {
  display: block;
}

.why-wom-box .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.why-wom-box .mask:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjk5Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(99%, rgba(0, 0, 0, 0.99)), color-stop(100%, black));
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#000000",GradientType=0 );
  content: "";
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  -o-transform: translate3d(0, 50%, 0);
  -ms-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}

.why-wom-box .mask h2, .why-wom-box .mask h3 {
  color: #FFF;
  position: absolute;
  bottom: 10%;
  left: 0px;
  padding: 0 25px;
  width: 100%;
  text-align: left;
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  -o-transform: translate3d(0, 50%, 0);
  -ms-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  transition: all 300ms ease;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  font-size: 52px;
  transition-delay: 300ms;
}

@media only screen and (max-width: 400px) {
  .why-wom-box .mask h2, .why-wom-box .mask h3 {
    font-size: 22px;
  }
}
.why-wom-box .mask h3 {
  font-size: 22px;
}

@media only screen and (max-width: 480px) {
  .why-wom-box .mask h3 {
    font-size: 52px;
  }
}
@media only screen and (max-width: 400px) {
  .why-wom-box .mask h3 {
    font-size: 22px;
  }
}
.why-wom-box .mask p {
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  color: #484c61;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  -o-transform: translate3d(0, 50%, 0);
  -ms-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  transition: all 300ms ease;
  padding: 0 25px;
}

@media only screen and (max-width: 830px) {
  .why-wom-box .mask p {
    top: auto;
    bottom: 50px;
  }
}
.why-wom-box.small p {
  top: 40%;
}

@media only screen and (max-width: 1000px) and (min-width: 830px) {
  .why-wom-box.small p {
    top: 10%;
  }
}
@media only screen and (max-width: 830px) {
  .why-wom-box.small p {
    top: auto;
    bottom: 10%;
  }
}
@media only screen and (max-width: 480px) {
  .why-wom-box {
    width: 100%;
    float: left;
  }
}
.no-touch .why-wom-box:hover .mask:before {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.no-touch .why-wom-box:hover .mask h2, .no-touch .why-wom-box:hover .mask h3 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0ms;
}

.no-touch .why-wom-box:hover .mask p {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  transition-delay: 300ms;
  color: #fff;
}

@media only screen and (max-width: 830px) {
  .why-wom-holder {
    width: 100%;
  }
}
.prepago .banner-principal .cifras .precio {
  line-height: 100%;
}

.home-slider.chip-equipo .bx-controls {
  margin-left: 40.5%;
  position: static;
}

@media only screen and (max-width: 640px) {
  .home-slider.chip-equipo .bx-controls {
    margin-left: 0;
    text-align: center;
  }
}
.home-slider.chip-equipo .bx-pager {
  float: left;
}

@media only screen and (max-width: 640px) {
  .home-slider.chip-equipo .bx-pager {
    display: inline-block;
    float: none;
  }
}
.home-slider.chip-equipo .equipo-oferta {
  width: auto;
}

@media only screen and (max-width: 640px) {
  .home-slider.chip-equipo .equipo-oferta {
    display: block;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .home-slider.chip-equipo .datos .precio span, .home-slider.chip-equipo .cifras .precio span {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .home-slider.chip-equipo .datos .precio, .home-slider.chip-equipo .cifras .precio {
    text-align: center;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .home-slider.chip-equipo .datos, .home-slider.chip-equipo .cifras {
    text-align: center;
  }
}
.promocion-banner-left {
  width: 70.4%;
  float: left;
  margin-right: 2%;
}

@media only screen and (max-width: 768px) {
  .promocion-banner-left {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
.promocion-banner {
  background-color: #381451;
  color: #FFF;
  width: 27.6%;
  float: left;
  text-align: center;
  box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
  .promocion-banner {
    width: 100%;
    max-width: 300px;
    float: none;
    margin: 0 auto;
  }
}
.promocion-banner a {
  display: block;
  color: #FFF;
  padding: 30px 60px 50px 60px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}

.promocion-banner a:hover {
  background-color: #541e7a;
}

@media only screen and (max-width: 940px) {
  .promocion-banner a {
    padding: 30px 30px 50px 30px;
  }
}
.promocion-banner .normal-text {
  font-size: 18px;
  display: block;
  line-height: 130%;
  color: #B3B3B3;
}

.promocion-banner .big-text {
  font-size: 22px;
  font-family: "ceraregular";
  display: block;
  text-transform: uppercase;
  line-height: 130%;
}

.promocion-banner .big-number {
  font-size: 42px;
  font-weight: bold;
  display: block;
  line-height: 130%;
}

.promocion-banner .small-text {
  font-size: 12px;
  display: block;
  text-transform: uppercase;
  line-height: 130%;
  color: #B3B3B3;
}

.promocion-banner .inner-link {
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px solid #fff;
  margin-top: 10px;
  line-height: 130%;
  color: #B3B3B3;
}

.present-banner {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/chip-equipo/present-banner.png) no-repeat center center #fff;
  width: 47px;
  height: 47px;
  border-radius: 100%;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

/*end-kits*/
@media only screen and (max-width: 960px) {
  .bg-banner-top {
    left: -20%;
  }

  .prepago .banner-promo .banner .nombre-plan img {
    width: 20%;
  }

  .prepago .banner-principal .cifras .precio .anexo {
    bottom: 105px;
  }
}
@media only screen and (max-width: 768px) {
  .prepago .banner-mod2 .grafica {
    display: block;
    margin: 0 auto;
    position: relative;
    width: 50%;
  }

  .prepago .banner-mod2 .left-cont {
    width: 50%;
  }

  .prepago .banner-mod2 .left-cont .right-align li {
    text-align: center;
  }

  .prepago .banner-mod2 .right-cont {
    width: 50%;
  }

  .prepago .banner-mod2 .right-cont .left-align li {
    text-align: center;
  }

  .prepago .banner-mod2 .wom-btn {
    width: 50%;
  }

  .prepago .kit-prepago .col-4 {
    float: none;
    margin: 0 auto 20px;
    overflow: hidden;
    width: 60%;
  }

  .prepago .banner .col-4.nombre-plan {
    width: 100%;
    background: #381451;
    position: relative;
  }

  .prepago .banner .col-4.nombre-plan .info {
    margin: 30px 0 38px 10%;
  }

  .prepago .banner .col-4.nombre-plan img {
    left: auto;
    right: 8%;
    width: 48%;
  }

  .prepago .banner .col-4.nombre-plan .circle {
    display: none;
  }

  .prepago .banner .cent-info.col-2 {
    width: 29%;
  }

  .prepago .banner .col-4.right {
    width: 45.5%;
    float: right;
  }

  .prepago .banner .col-4.center {
    width: 270px;
  }

  .col-5.equipo {
    float: right;
    margin: 0;
  }

  .banner-principal .col-7.last {
    padding: 0 0 0 26px;
  }

  .banner-principal .col-7.last .wom-btn {
    width: 180px;
  }

  .prepago .banner-principal .cifras .precio .anexo {
    background: none;
    bottom: auto;
    color: #000;
    float: left;
    height: auto;
    margin: 0;
    overflow: hidden;
    padding: 0 0 0 30px;
    position: relative;
    text-align: left;
    top: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  .tarifas {
    width: 80%;
    margin: 0 auto;
  }

  .tarifas .col-6 {
    width: 100%;
  }

  .tarifas .box-ofertas {
    position: relative;
    margin: 0 auto;
    float: none;
    overflow: hidden;
  }

  .tarifas .box-ofertas.center {
    width: 100%;
  }

  .prepago.p-telefonia .tarifas .box-ofertas-small {
    margin: 0 0 20px 4%;
    width: 45%;
  }
}
@media only screen and (max-width: 640px) {
  .prepago .banner-principal .equipo {
    width: 100%;
  }

  .prepago .banner-principal .equipo img {
    width: 40%;
    position: relative;
    margin: 0 auto;
    display: block;
  }

  .head-landing {
    margin: 0 auto;
  }

  .head-landing h1 {
    display: block;
    padding: 30px 0;
  }

  .head-landing h1 span {
    display: block;
    line-height: 24px;
    margin: 30px auto 0;
  }

  .prepago .bottom-bar {
    bottom: 0;
  }

  .prepago .menu-prepago {
    padding: 0 0 15px;
  }

  .prepago .menu-prepago {
    display: table;
    width: 100%;
  }

  .prepago .menu-prepago li {
    display: table;
  }

  .prepago .menu-prepago li a {
    display: table-cell;
    vertical-align: middle;
    font-size: 15px;
  }

  .prepago h2 {
    margin: 20px auto 30px;
    position: relative;
    width: 90%;
  }

  .prepago.p-telefonia .tarifas .box-ofertas-small {
    width: 95%;
  }

  .tarifas {
    width: 90%;
  }

  .banner-principal .col-7.last {
    width: 95%;
  }

  .prepago .banner .cent-info.col-2 {
    width: 100%;
  }

  .prepago .banner .col-4.right {
    width: 100%;
    background: none;
  }

  .prepago .banner .col-4.right .precio {
    margin: 0 auto 10px;
  }

  .prepago .banner .col-4.right * {
    text-align: center;
  }

  .prepago .banner .col-4.right .wom-btn {
    display: block;
    float: none;
    margin: 15px auto 0;
    overflow: hidden;
    position: relative;
    width: 45%;
  }

  .prepago .banner .col-4.center {
    position: relative;
    margin: 0 auto;
    width: 270px;
    float: none;
  }

  .condiciones li.col-4 {
    position: relative;
    float: none;
    margin: 0 auto;
    width: 100%;
  }

  .condiciones li.col-4 span {
    width: 100%;
    border-bottom: dotted 3px #e9e9e9;
  }

  .condiciones li.col-4.last {
    margin: 0 auto;
  }

  .opciones-prepago ul li {
    width: 100%;
  }

  .opciones-prepago ul li .bottom-info .wom-btn {
    width: 45%;
  }

  .prepago .banner-mod2 .left-cont {
    width: 100%;
  }

  .prepago .banner-mod2 .right-cont {
    width: 100%;
  }

  .prepago .banner-mod2 .wom-btn {
    width: 50%;
  }

  .cuota-arriendo {
    font-weight: bold;
  }

  .chromebrowser .prepago.p-telefonia .tarifas .box-ofertas .circle {
    top: -2px;
  }

  .prepago.p-telefonia .tarifas .box-ofertas .circle div {
    display: table-cell;
    margin: 15px auto 20px;
    position: relative;
    width: 100%;
    transform: rotate(0deg);
  }

  .prepago.p-telefonia .tarifas .box-ofertas .circle.oval {
    width: 100%;
  }

  .prepago.p-telefonia .tarifas .box-ofertas .circle.oval.left {
    text-align: center;
  }

  .prepago.p-telefonia .tarifas .box-ofertas .circle.oval.left p, .prepago.p-telefonia .tarifas .box-ofertas .circle.oval.left span {
    padding: 0;
  }

  .prepago.p-telefonia .tarifas .box-ofertas ul {
    float: none;
    margin: 0 auto 20px;
    position: relative;
    width: auto;
  }

  .prepago.p-telefonia .tarifas .box-ofertas ul.right {
    float: none;
    margin: 0 auto 20px;
    position: relative;
    width: auto;
  }

  .prepago.p-telefonia .tarifas .box-ofertas a {
    position: relative;
    bottom: auto;
    left: auto;
    float: none;
    margin: 0 auto 16px;
    text-align: center;
    display: table;
  }

  .prepago.p-telefonia .tarifas .box-ofertas a.right {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    float: none;
    margin: 0 auto 16px;
    text-align: center;
    display: table;
  }

  .prepago.p-telefonia .tarifas .box-ofertas-small ul {
    float: none;
    margin: 25px auto 0;
    width: 28%;
  }

  /*.prepago.p-telefonia .tarifas .box-ofertas-small{
  	border-top: none;
  	border-bottom: 2px dotted #381451;
  	border-left: none;
  	border-right: none;
  	border-radius: 0;
  	min-width: 225px;
  }*/
  /*.prepago.p-telefonia .tarifas .box-ofertas-small .circle{
  	background: none;
  	border-radius: 0;
  	color: $wom-color;
  	height: auto;
  	margin: 8px auto;
  	width: 100%;

  	span{
  		padding: 0;
  		text-align: center;
  		width: 100%;
  	}

  	p{
  		font-weight: bold;
  		padding: 0;
  		text-align: center;
  	}

  }*/
  /*.prepago.p-telefonia .tarifas .box-ofertas-small .circle div{
  	 transform: rotate(0deg);
  }

  .prepago.p-telefonia .tarifas .box-ofertas-small ul{
  	margin: 0 auto 10px;
  	text-align: center;
  	width: 100%;
  }*/
}
@media only screen and (max-width: 480px) {
  .tarifas {
    width: 95%;
  }

  .prepago .kit-prepago .col-4 {
    float: none;
    margin: 0 auto 20px;
    overflow: hidden;
    width: 100%;
  }

  .prepago.p-telefonia .tarifas .box-ofertas {
    padding: 0 0 20px;
  }

  .prepago.p-telefonia .tarifas .box-ofertas ul {
    width: 100%;
    position: relative;
    margin: 0 auto;
    display: block;
    text-align: center;
  }

  .prepago.p-telefonia .tarifas .box-ofertas ul.first-line li:first-child {
    border-right: 0;
  }

  .prepago.p-telefonia .tarifas .box-ofertas ul li {
    display: inline-block;
    float: none;
  }

  .prepago.p-telefonia .tarifas .box-ofertas ul li span.left {
    text-align: center;
  }

  .prepago.p-telefonia .tarifas .box-ofertas ul li span.small-left {
    text-align: center;
  }

  .prepago.p-telefonia .tarifas .box-ofertas ul li .small {
    line-height: 38px;
    margin: 0 0 0 6px;
  }

  .prepago.p-telefonia .tarifas .box-ofertas .valor {
    display: block;
    width: 100%;
    position: relative;
    float: left;
  }

  .prepago.p-telefonia .tarifas .box-ofertas .valor:after {
    content: "";
    position: relative;
    width: 50%;
    height: 1px;
    margin: 0 auto 10px;
    border-bottom: solid 1px #381451;
    display: block;
  }

  .prepago.p-telefonia .tarifas .box-ofertas .valor p {
    display: table;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: auto;
  }

  .prepago.p-telefonia .tarifas .box-ofertas .valor p span {
    width: auto;
  }

  /*.prepago.p-telefonia .tarifas .box-ofertas{ border-radius: 0; border-top: 0 solid $wom-color; border-bottom: 3px dotted $wom-color; border-left: 0; border-right: 0;  }*/
  .prepago.p-telefonia .tarifas .box-ofertas .circle {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    margin-bottom: 10px;
    background-color: transparent;
    color: #381451;
  }

  .prepago.p-telefonia .tarifas .box-ofertas .circle div {
    display: block;
  }

  .prepago.p-telefonia .tarifas .box-ofertas ul {
    padding-left: 0;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 640px) {
  .prepago.p-telefonia .tarifas .box-ofertas ul.first-line li:first-child {
    display: block;
    width: 90%;
    overflow: hidden;
    float: none;
    border-bottom: solid 3px #381451;
    border-right: 0 none;
  }

  .prepago.p-telefonia .tarifas .box-ofertas ul li .big-price {
    text-align: left;
  }

  .prepago.p-telefonia .tarifas .box-ofertas a {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
  }

  .prepago.p-telefonia .tarifas .box-ofertas a.right {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
  }

  .prepago.p-telefonia .tarifas .box-ofertas.relative-position {
    margin-bottom: 30px;
  }
}
/*-----codina----*/
.prepago h2.align-left {
  text-align: left;
}

.prepago-img-info {
  position: absolute;
  bottom: 10px;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  padding: 10px;
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  transform: rotate(-10deg);
}

.prepago-img-info:after {
  content: "+";
  color: #fff;
  text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.5);
  position: absolute;
  font-size: 50px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  left: 20px;
  font-weight: bold;
  right: 0;
}

@media only screen and (max-width: 983px) and (min-width: 768px) {
  .prepago-img-info:after {
    left: -6%;
  }
}
.text-value {
  color: #fff;
  font-size: 19px;
  font-family: "ceraregular";
  display: block;
  text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.big-value {
  color: #FFF;
  font-size: 38px;
  font-family: "ceraregular";
  display: block;
  text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.5);
}

.rounded-box-prepago {
  background-color: #fff;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  margin: 0;
  float: right;
  display: table;
  margin-bottom: 20px;
}

.ball-info .rounded-box-prepago {
  float: none;
  width: 112px;
  height: 112px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.rounded-box-prepago .wrapper {
  display: table-cell;
  vertical-align: middle;
}

.rounded-box-prepago span {
  color: #FFF;
  font-size: 18px;
  color: #381451;
  text-transform: uppercase;
  display: block;
  font-family: "ceraregular";
  font-weight: bold;
}

.ball-info .rounded-box-prepago span {
  font-size: 21px;
}

.box-packaging-title {
  color: #381451;
  font-size: 34px;
  position: absolute;
  top: -15px;
  left: 0;
  padding: 10px;
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  transform: rotate(-10deg);
  z-index: 2;
  width: 170px;
  text-align: center;
  text-shadow: 1px 2px 0 rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 768px) {
  .box-packaging-title {
    display: none;
  }
}
.description.wrapp-top {
  margin-top: 10px;
}

.prepago.p-telefonia .tarifas .box-ofertas ul li span.small {
  display: inline;
}

@media only screen and (max-width: 768px) {
  .prepago.p-telefonia .tarifas .box-ofertas ul li span.small {
    float: none;
  }
}
.bolsas-holder {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
}

.bolsas-holder.active {
  opacity: 1;
  max-height: 500px;
}

span.wom-btn {
  color: #FFF !important;
  font-size: 19px !important;
}

.prepago .banner-principal {
  margin-bottom: 20px;
}

@media only screen and (max-width: 640px) {
  .home-slider.slider-prepago .bx-viewport {
    background-color: transparent;
  }
}
.gestor-info .plan-info {
  max-width: 100%;
  text-align: right;
}

.gestor-info .plan-info span {
  font-size: 60px;
  line-height: 100%;
}

.gestor-info .plan-info span.big-text {
  font-size: 94px;
}

@media only screen and (max-width: 1024px) and (min-width: 801px) {
  .gestor-info .plan-info span.big-text {
    font-size: 64px;
  }
}
.gestor-info .plan-info p {
  float: none;
}

.gest-info h3 {
  margin: 0 0 20px;
  font-size: 16px;
}

.gest-info p {
  font-size: 12px;
  line-height: 160%;
}

.gest-info ul {
  list-style: none;
  font-size: 12px;
}

.gest-info ul li {
  margin-bottom: 15px;
}

.gest-info ul li:last-child {
  margin-bottom: 0;
}

.shadow-right {
  -webkit-box-shadow: 2px 0px 5px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 0px 5px 1px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 2px 0px 5px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 0px 5px 1px rgba(0, 0, 0, 0.2);
}

.gestor-triangle li {
  padding-left: 15px;
  position: relative;
}

.gestor-triangle li:before {
  width: 10px;
  height: 8px;
  /*border-width: 5px 0 5px 8px;*/
  /*border-color: transparent transparent transparent #555;*/
  content: "";
  left: 0;
  position: absolute;
  /*transform: rotate(360deg);*/
  /*border-style:dotted none solid solid;*/
  top: 3px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle.png) center no-repeat;
}

.beneficios-gestor {
  display: table;
  width: 100%;
  margin-bottom: 100px;
}

.beneficios-gestor li {
  display: table-cell;
  padding: 0 20px;
  box-shadow: 1px 0 0 0 #ddd;
}

@media only screen and (max-width: 800px) and (min-width: 769px) {
  .beneficios-gestor li {
    width: 33.3333%;
    padding: 20px;
    display: block;
    float: left;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 801px) {
  .beneficios-gestor li {
    width: 33.3333%;
    padding: 20px;
    display: block;
    float: left;
  }
}
@media only screen and (max-width: 768px) {
  .beneficios-gestor li {
    width: 50%;
    padding: 20px;
    display: block;
    float: left;
  }
}
@media only screen and (max-width: 640px) {
  .beneficios-gestor li {
    width: 100%;
    padding: 20px;
    display: block;
  }
}
.beneficios-gestor li:first-child {
  padding: 0 20px 0 0;
}

@media only screen and (max-width: 768px) {
  .beneficios-gestor li:first-child {
    padding: 20px;
  }
}
.beneficios-gestor li:last-child {
  padding: 0 0 0 20px;
  box-shadow: none;
}

@media only screen and (max-width: 768px) {
  .beneficios-gestor li:last-child {
    padding: 20px;
  }
}
.beneficios-gestor h3 {
  font-size: 16px;
  margin: 0;
}

.beneficios-gestor p {
  font-size: 12px;
  color: #ABA6A6;
}

.big-text .big-text {
  font-size: 94px;
}

.simple-purple-title {
  color: #381451;
  font-size: 17px;
  text-transform: uppercase;
  font-family: "ceraregular";
  margin-bottom: 30px;
}

.label-wrapp {
  display: block;
}

.label-wrapp .label-like {
  display: block;
  color: #4F4E4E;
  font-size: 14px;
  font-family: "ceraregular";
  margin-bottom: 5px;
}

.label-wrapp input, .label-wrapp select {
  width: 100%;
  height: 42px;
  padding: 5px 10px;
  background-color: #FFF;
  border: 1px solid #CCC;
  border-radius: 5px;
  margin-bottom: 30px;
  width: 100%;
  display: block;
}

.label-wrapp input:focus, .label-wrapp select:focus {
  outline: 0 none;
}

.label-wrapp .weird-input-holder {
  display: table;
  margin-bottom: 30px;
}

.label-wrapp .weird-input-holder .weird-inner {
  display: table-cell;
  vertical-align: middle;
}

.label-wrapp .weird-input-holder .weird-inner.first {
  padding-right: 30px;
}

.label-wrapp .weird-input-holder .weird-inner.first span {
  color: #AEAEAE;
}

.label-wrapp .weird-input-holder .weird-inner.third {
  width: 100%;
}

.label-wrapp .weird-input-holder .weird-inner select {
  width: 60px;
  min-width: 0;
  border-radius: 5px 0 0 5px;
  border-right: 0;
  margin-bottom: 0;
  background: url("../img/selector-form.png") no-repeat 80% center #FFF;
}

.label-wrapp .weird-input-holder .weird-inner input {
  border-radius: 0 5px 5px 0;
  margin-bottom: 0;
}

.submit-btn {
  border-radius: 5px;
  background-color: #381451;
  text-align: center;
  padding: 10px 30px;
  color: #FFF;
  font-size: 16px;
  font-family: "ceraregular";
  border: 0 none;
  float: right;
}

.bg-gray {
  background-color: #e9e9e9;
  padding: 50px 0px;
}

.bg-gray .row {
  padding-left: 100px;
  padding-right: 100px;
}

@media only screen and (max-width: 768px) {
  .bg-gray .row {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.gestor-form {
  margin: 20px 0;
}

.gestor-form .col-6 {
  padding: 0 50px;
}

.gestor-title {
  color: #381451;
  font-size: 37px;
}

.gestor-text {
  color: #615F5F;
  margin-bottom: 30px;
}

@media only screen and (max-width: 800px) and (min-width: 769px) {
  .planimg.gestor-info {
    display: block;
    height: 320px;
    background-color: #4C3163;
  }
}
.planimg.gestor-info .plan-info {
  padding: 0 20px;
}

.main-foot {
  background-color: #2d1540;
  color: #fff;
  padding-top: 50px;
  position: relative;
  /* z-index: 999; */
  display: block;
  height: auto;
  clear: both;
}

.triangle-new-home {
  width: 100%;
  height: 60px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-new-home.png) no-repeat center bottom;
  background-size: 100% 100%;
  overflow: hidden;
  display: block;
  /* background: center bottom; */
}

.main-foot .triangle-foot {
  width: 0;
  height: 0;
  border-left-style: solid;
  border-left-color: transparent;
  border-right-style: solid;
  border-right-color: transparent;
  border-top: 50px inset #fff;
  top: 0px !important;
  position: absolute;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  transform: rotate(360deg);
  border-style: solid dotted none;
}

@media only screen and (max-width: 640px) {
  .logo-footer {
    display: table;
    margin: 20px auto;
  }
}
@media only screen and (max-width: 640px) {
  .logo-wrap {
    width: 100%;
  }
}
.logo-wrap p {
  font-size: 12px;
  line-height: 140%;
  margin: 20px 0 0 0;
  width: 80%;
}

.logo-wrap p span {
  color: #B171C3;
  font-weight: bold;
  font-size: 13px;
}

@media only screen and (max-width: 640px) {
  .logo-wrap p {
    display: none;
  }

  .logo-wrap p.wsp {
    display: block;
    padding: 5px 0 5px 30px;
  }
}
.logo-wrap p a {
  color: #B171C3;
}

@media only screen and (max-width: 640px) {
  .footer-link {
    width: 100%;
  }
}
.footer-link .foot-bloq ul {
  width: 100.2%;
}

.footer-link .col-5.foot-bloq {
  width: 40.3%;
}

.footer-link .foot-bloq {
  text-align: right;
}

@media only screen and (max-width: 640px) {
  div.pad-20 div.footer-link div.foot-bloq {
    text-align: left;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .footer-link .foot-bloq:last-child h3 {
    border-bottom: 1px solid #333;
  }
}
.footer-link .foot-bloq.mod-width {
  width: 32.1%;
}

.footer-link h3 {
  font-size: 16px;
  font-family: "ceraregular";
  font-weight: normal;
  color: #fff;
}

@media only screen and (max-width: 640px) {
  .footer-link h3 {
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid #333;
    color: #fff;
  }
}
.footer-link .foot-bloq.active ul {
  max-height: 400px;
}

.footer-link ul {
  list-style: none;
  -webkit-transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  transition: all ease 300ms;
}

@media only screen and (max-width: 640px) {
  .footer-link ul {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    padding: 0 20px;
  }
}
.footer-link ul li {
  margin: 0 0 5px 0;
}

.footer-link ul li a {
  font-size: 12px;
  color: #B171C3;
}

.accesos-foot {
  margin: 20px 0;
  float: left;
  width: 100%;
}

.accesos-foot a {
  color: #B171C3;
  font-size: 12px;
}

.accesos-foot li.roaming {
  padding: 0 0 0 35px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/roaming.png) no-repeat left center;
}

.accesos-foot li.sucursal {
  padding: 0 0 0 35px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/pin.png) no-repeat left center;
}

.wom-form {
  position: relative;
  z-index: 10;
}

.wom-form .combos {
  padding: 0 0 0 12px;
}

.wom-form .field input {
  border: solid 1px #A6A6A6;
  border-radius: 3px;
  background: #fff;
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  color: #242424;
  font-size: 12px;
  margin: 0 12px 12px;
  float: left;
  width: 100%;
}

.wom-form .field select {
  -moz-appearance: none;
  border: 1px solid #a6a6a6;
  border-radius: 3px;
  color: #a6a6a6;
  display: block;
  font-size: 12px;
  height: 36px;
  margin: 0 0 0 11px;
  padding: 0 0 0 4px;
  margin: 0 0 0 11px;
  width: 100%;
  background: url("../img/select-triangle.png") no-repeat scroll 97% 50%;
}

.wom-form .combo-box {
  border: solid 1px #A6A6A6;
  background: none;
  color: #A6A6A6;
  font-size: 12px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  height: 36px;
}

.wom-form .combo-box.last {
  margin: 0;
}

.wom-form .captcha-cont {
  background: #e9e9e9;
  float: left;
  height: auto;
  margin: 15px 0 12px 12px;
  overflow: hidden;
  width: 100%;
  padding: 0 0 10px 2px;
}

.wom-form .captcha-cont .ingreso-datos li {
  float: left;
  text-align: center;
  font-size: 12px;
  color: #666;
}

.wom-form .captcha-cont .ingreso-datos input {
  border: solid 1px #ccc;
  border-radius: 3px;
}

.wom-form .captcha-cont .btns {
  float: left;
  width: 14px;
  height: 55px;
  background: #fff;
  display: block;
  border-radius: 3px;
  margin: 10px 8px 0 8px;
}

.wom-form .captcha-cont .btns li {
  float: left;
  width: 100%;
  height: 30px;
}

.wom-form .captcha-cont .btns li:first-child {
  border-bottom: solid 1px #ccc;
}

.wom-form .captcha-cont .btns li a {
  text-indent: -99999px;
}

.wom-form .captcha-cont .ingreso-datos {
  float: left;
  width: 132px;
  margin: 6px 0 0 0;
}

.wom-form .captcha-cont .ingreso-datos li {
  color: #A6A6A6;
  float: left;
  font-size: 12px;
  margin: 8px 0 0;
  text-align: center;
  width: 100%;
}

.wom-form .captcha-cont .ingreso-datos li input {
  border: solid 1px #A6A6A6;
  border-radius: 3px;
  color: #242424;
  font-size: 12px;
  padding: 4px 10px 4px 10px;
  width: 100%;
}

.wom-form .captcha-cont .cap-bg {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #A6A6A6;
  border-radius: 6px;
  height: 55px;
  margin: 10px 0 0 10px;
  width: 133px;
  float: left;
}

.wom-form .captcha-cont img {
  display: block;
  margin: 17px auto 0;
  position: relative;
}

.wom-form li.btn-wom-cont {
  width: 100%;
  margin: 0 0 0 10px;
}

.wom-form li.btn-wom-cont .wom-btn {
  float: right;
}

.field.full-width select {
  width: 100%;
}

.field.full-width p {
  font-size: 13px;
  padding: 10px 0 10px 23px;
}

.exito {
  color: #381451;
  font-size: 17px;
  margin: 187px -13px 0;
  position: relative;
  text-align: right;
  width: 45%;
}

.exito h2 {
  font-size: 26px;
}

@media only screen and (max-width: 768px) {
  .wrap-modal {
    padding: 30px 0 0;
  }

  .wrap-modal .row {
    width: 90%;
    margin: 0;
  }

  .fondo-modal {
    display: none;
  }

  .info-right {
    display: none;
  }

  .wrap-modal h1 {
    text-align: center;
  }

  .wrap-modal .bajada {
    text-align: center;
  }

  .wrap-modal.modal-lo-quiero .wom-form {
    margin: 30px auto;
  }

  .exito {
    margin: 176px auto;
    width: 90%;
  }
}
@media only screen and (max-width: 480px) {
  /*Estilos para smartphones landscape i-phone 3gs*/
}
@media only screen and (max-width: 320px) {
  /*Estilos para smartphones portrait i-phone 3gs*/
}
.wrap-modal.modal-lo-quiero.prev-lo-quiero {
  padding: 0 0 20px 0;
  background: #f4f4f4;
}

.wrap-modal.modal-lo-quiero.prev-lo-quiero img {
  right: -20px;
}

.wrap-modal {
  padding: 30px 50px 50px;
}

.wrap-modal:before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  background: #381451;
  z-index: 5;
}

.wrap-modal li {
  list-style: none;
}

.wrap-modal h1 {
  font-family: "ceraregular";
  font-size: 30px;
  color: #381451;
  margin: 0 0 10px;
}

.wrap-modal .bajada {
  color: #242424;
  font-size: 14px;
  font-family: "ceraregular";
  margin: 10px 0;
}

.wrap-modal.modal-lo-quiero {
  max-width: 835px;
  height: auto;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  display: block;
  height: 540px;
}

.wrap-modal.modal-lo-quiero .wom-form {
  max-width: 315px;
  width: 100%;
  margin: 30px 0 30px 0;
}

.wrap-modal.modal-lo-quiero .fondo-modal {
  position: absolute;
  top: 0;
  right: 0;
}

.wrap-modal.modal-lo-quiero .info-right {
  max-width: 200px;
  -ms-transform: rotate(-10deg);
  /* IE 9 */
  -webkit-transform: rotate(-10deg);
  /* Chrome, Safari, Opera */
  transform: rotate(-10deg);
  height: auto;
  max-width: 310px;
  overflow: hidden;
  position: absolute;
  right: 90px;
  top: 30px;
  width: 100%;
  z-index: 10;
  color: #381451;
}

.wrap-modal.modal-lo-quiero .info-right * {
  display: block;
  float: left;
  font-size: 38px;
  text-align: center;
  width: 100%;
}

.wrap-modal.modal-lo-quiero .info-right .espera {
  font-family: "ceraregular";
  font-size: 22px;
  font-weight: 100;
  text-align: center;
}

.wrap-modal.modal-lo-quiero .info-right .serio {
  font-style: italic;
  padding: 0 0 0 110px;
  text-align: right;
  font-size: 25px;
}

.wrap-modal .prev-lo-quiero {
  padding: 0 0 0 20px;
}

.wrap-modal .info-title {
  margin: 148px 0 10px;
  padding: 0 42px 0 32px;
  width: 450px;
}

.wrap-modal .info-title h1.big {
  font-size: 40px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  color: #4E0081;
}

.wrap-modal .info-title h3 {
  font-weight: 100;
  margin: 0 auto;
  text-align: center;
  width: 90%;
  font-size: 23px;
  color: #4E0081;
}

.wrap-modal .info-title h3 span {
  font-weight: bold;
}

.wrap-modal .small-t {
  color: #4e0081;
  font-size: 15px;
  margin: 0 0 18px;
  padding: 0 30px 0 55px;
  text-align: center;
  width: 52%;
}

.wrap-modal .foot-text {
  font-size: 14px;
  color: #242424;
  margin: 116px 0 0;
  text-align: center;
  max-width: 53%;
}

.wrap-modal .foot-text a {
  text-decoration: underline;
  color: #242424;
}

@media only screen and (max-width: 768px) {
  .wrap-modal.modal-lo-quiero.prev-lo-quiero img {
    display: none;
  }

  .wrap-modal.prev-lo-quiero .row {
    margin: 0;
    width: 100%;
  }

  .wrap-modal .info-title {
    margin: 148px auto;
    padding: 0;
    width: 100%;
  }

  .wrap-modal .small-t {
    width: 100%;
  }

  .wrap-modal .foot-text {
    margin: 16px 0 0;
    max-width: 100%;
  }

  .head-landing-ficha {
    background: #381750 !important;
  }
}
@media only screen and (max-width: 640px) {
  .col-6.field {
    float: left;
    margin: 0 0 12px;
    width: 100%;
  }

  .info-gral-ficha h2 {
    color: #555;
  }

  .info-gral-ficha .triangle-list li {
    color: #555;
  }

  .info-gral-ficha .precios li {
    color: #555;
  }

  .info-gral-ficha .triangle-list li::after {
    border-color: transparent transparent transparent #555;
  }

  .col-m-5.equipo-head-img.equal-equipo {
    width: 100%;
    margin: 0 auto;
    display: block;
    float: none;
    overflow: hidden;
  }

  .equipo-head-img img {
    float: none;
    width: 87%;
    max-width: 350px;
    position: absolute;
    bottom: 0;
    margin: auto;
    top: auto;
    left: 0;
    right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .wrap-modal.modal-lo-quiero {
    height: auto !important;
  }

  .wrap-modal .info-title {
    margin: 148px auto 40px;
  }

  .wrap-modal .small-t {
    padding: 0;
  }
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: block;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 3px;
  min-width: 150px;
  font-size: 14px;
}

.ficha-cabecera {
  background: red;
  padding: 50px 0;
}

@media only screen and (max-width: 640px) {
  .ficha-cabecera {
    background: blue;
  }
}
.wom-btn {
  display: inline-block;
  font-size: 19px;
  margin: 0;
  padding: 10px 15px;
  text-align: left;
  width: 200px;
  background: #4E0081;
  height: 40px;
  position: relative;
  overflow: visible;
  border-radius: 5px;
  font-family: "ceraregular";
  color: #fff;
}

@media only screen and (max-width: 640px) {
  .wom-btn {
    width: 100%;
    margin: 10px 0;
  }
}
.wom-btn:before {
  box-shadow: -1px 0 0px 0 rgba(255, 255, 255, 0.12), 1px 0 0 0 rgba(0, 0, 0, 0.2) inset;
  content: "";
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/right_white_arrow.png) no-repeat center;
}

.wom-btn.big {
  height: 53px;
  display: inline-block;
  width: auto;
  padding: 15px 95px 15px 65px;
  font-size: 24px;
  /*----- SMARTPHONES --- */
}

.wom-btn.big:before {
  background-image: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/right-white-arrow-big.png);
  height: 53px;
  width: 53px;
}

@media only screen and (max-width: 640px) {
  .wom-btn.big {
    font-size: 21px;
    padding: 15px 65px 15px 20px;
  }
}
.valor-right {
  border-left: 3px solid;
}

@media only screen and (max-width: 640px) {
  .valor-right {
    border-left: none;
  }
}
@media only screen and (max-width: 640px) {
  .valor-right:after {
    border-bottom: none !important;
    border-top: 1px solid !important;
  }
}
@media only screen and (max-width: 640px) {
  .mobile-text-center {
    text-align: center !important;
  }
}
.table-mode {
  display: table !important;
  width: auto !important;
}

.buscador input[type=text] {
  padding: 10px 10px 10px 7px;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  color: #4e0081;
}

.buscador input[type=submit] {
  padding: 0 0 5px;
}

p.desktop-foot {
  margin: 5px 0 0 0;
  padding: 0 0 0 33px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/phone-icon.png) no-repeat;
  background-position: center left;
  background-size: 25px;
}

.wsp {
  padding: 0 0 0 33px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-whatsapp.png) no-repeat;
  background-position: center left;
  background-size: 25px;
}

.discontinuados-text {
  max-width: 1000px;
  width: 100%;
  display: block;
  margin: 20px auto;
}

.discontinuados-text p {
  padding: 16px 20px 17px 50px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/fecha-portabilidad.png) 1.2% 50% no-repeat #e9e9e9;
}

.equipos_recomendados.nontop-r {
  background: none;
}

.simple-table {
  /*border: 1px solid #e2e2e2;*/
  font-size: 13px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.simple-table tr {
  border-bottom: 1px solid #e2e2e2;
}
.simple-table th {
  background: #730383;
  border-right: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 100;
  padding: 8px 4%;
  text-align: left;
  width: 2%;
}
.simple-table th:last-child {
  border: none;
}
.simple-table td {
  font-weight: 100;
  padding: 5px 4%;
  text-align: left;
}
.simple-table .bolder {
  font-weight: bold;
}
.simple-table tbody tr:nth-child(2n+0) {
  background: #eaeaea;
}

.red-bar {
  background: red;
  color: #fff;
  padding: 2px 10px;
  margin-top: 5px;
}

.table-cent {
  display: table;
  margin: 0 auto;
  position: relative;
}
.table-cent div {
  display: table-cell;
  padding: 0 15px;
}
.table-cent span {
  font-size: 11px;
}
.table-cent p {
  font-size: 21px;
}

.disclaimer-form {
  border: 4px solid #fff;
  display: none;
  background: #391f4e;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 3px;
  width: 100%;
}
@media (max-width: 768px) {
  .disclaimer-form {
    max-width: 400px;
    margin: 0 auto;
  }
}
.disclaimer-form p {
  color: #ffffff;
  font-size: 23px;
  font-weight: 300;
  margin: 0;
  padding: 4px 0 5px 10px;
  text-align: center;
  text-transform: uppercase;
}
.disclaimer-form span.purple {
  color: #e50a82;
  font-size: 23px;
  font-weight: 600;
}

.invalid-input {
  background: #f1e2e5 none;
  border: 1px solid #df7278;
}

.loading-form {
  /*display: block;*/
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 30%;
  width: 20px;
}

.form-alert {
  border-radius: 5px;
  float: left;
  font-family: cera;
  font-size: 16px;
  font-weight: 100;
  margin: 20px auto;
  padding: 10px 0 0;
  position: relative;
  text-align: center;
  width: 100%;
}
.form-alert.success {
  background: #a27cb4;
  color: #fff;
  border: solid 1px #fff;
}
.form-alert.error {
  background: #e8a0a0;
  color: #b84545;
  border: solid 1px #d58989;
}

.accordion.cent .acc-button {
  text-align: center;
}
.accordion.left .acc-button {
  text-align: left;
}
.accordion .acc-item {
  margin-bottom: 1px;
  overflow: hidden;
  border-bottom: 1px solid #dee2e6 !important;
}
.accordion .acc-button {
  width: 100%;
  cursor: pointer;
  margin: 0;
  background: transparent !important;
  color: #381451 !important;
  text-transform: none;
  font-weight: normal;
  font-size: 16px;
  position: relative;
  padding: 18px 40px 18px 20px;
}
.accordion .acc-button:before {
  display: inline-block;
  text-align: center;
  content: "";
  background-color: transparent;
  background-image: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-plus.svg);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 0.8rem;
  top: 50%;
  bottom: 0;
  width: 15px;
  transition: all 0.6s;
  height: 15px;
  margin-top: -7px;
  margin-right: 0;
}
@media only screen and (max-width: 640px) {
  .accordion .acc-button:before {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.accordion .acc-button.active:before {
  transform: rotate(90deg);
  transform-origin: center center;
}
.accordion .deploy-acc {
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  opacity: unset;
  visibility: unset;
  max-height: unset;
  height: 0;
  transition: all 300ms ease;
}
.accordion .deploy-acc.active {
  transition: all 300ms ease;
}
.accordion .deploy-core {
  margin: 0 auto;
  color: #7c6c8a !important;
  font-size: 15px;
  font-weight: 300 !important;
  padding: 8px 20px 32px;
}
.accordion .deploy-core a {
  font-weight: 600 !important;
}
.accordion .deploy-core .arrow-list li {
  color: #7c6c8a !important;
  font-size: 15px;
  font-weight: 300 !important;
  padding: 0 0 0 20px;
}
.accordion .deploy-core .arrow-list li a {
  font-weight: 600 !important;
}

.bg-purp-mod {
  background: #3a1f4f;
}

.lightbox.row.max-480 h3 {
  color: #fff;
}
.lightbox.row.max-480.animated.bounceInDown {
  max-width: 480px;
}

.left-mod {
  padding: 32px 70px;
}
@media (max-width: 980px) {
  .left-mod {
    padding: 65px 35px 25px;
  }
}
@media (max-width: 480px) {
  .left-mod {
    padding: 65px 10px 25px;
  }
}

.btn.cent {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: block;
  font-size: 16px;
}
@media (max-width: 768px) {
  .btn.cent {
    margin: 10px auto;
  }
}

.pack-square.full.purple.mod-radius.cajatriple {
  float: none;
}

.pack-square table .detalle div {
  padding: 5px !important;
}

.exito .right-mod {
  background: url(../partials/img/bg-exito-experto.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 200px 60px 40px;
}
@media (max-width: 480px) {
  .exito .right-mod {
    padding: 200px 10px 40px;
  }
}
.exito .right-mod p {
  font-size: 25px;
  text-align: center;
}
@media (max-width: 480px) {
  .exito .right-mod p {
    font-size: 22px;
  }
}
.exito .right-mod .tx19 {
  font-size: 19px;
}
@media (max-width: 480px) {
  .exito .right-mod .tx19 {
    font-size: 17px;
  }
}
.exito .right-mod .recuadro {
  background: #381750;
  padding: 20px;
}
.exito .right-mod .recuadro p {
  margin: 0;
  text-align: left;
  font-size: 17px;
}
@media (max-width: 480px) {
  .exito .right-mod .recuadro p {
    font-size: 14px;
  }
}
.exito .right-mod .btn {
  display: block;
  margin: 20px auto 0;
  max-width: 150px;
}

.right-mod {
  padding: 35px 90px 35px;
  background: #6f2c8b;
  color: #fff;
}
@media (max-width: 980px) {
  .right-mod #form_contratar_plan {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .right-mod {
    padding: 30px 10px 30px;
  }
}
.right-mod .form-alert.success {
  background: #a27cb4;
  color: #fff;
  border: solid 1px #fff;
  position: absolute;
  left: 0;
  height: 50px;
  right: 0;
  bottom: 0;
  margin: auto;
  top: 0;
  width: 90%;
}

.actualize {
  width: 35px;
  margin: 15px 10px 0;
  display: inline-block;
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 1s;
  /** Aqui controlamos la velocidad de la animacion **/
  -ms-transition-property: -webkit-transform;
  -ms-transition-duration: 1s;
  /** Aqui controlamos la velocidad de la animacion **/
  -moz-transition-property: -moz-transform;
  -moz-transition-duration: 1s;
  /** Aqui controlamos la velocidad de la animacion **/
}
.actualize:hover {
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1s;
  /** Aqui controlamos la velocidad de la animacion **/
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -ms-animation-name: rotate;
  -ms-animation-duration: 1s;
  /** Aqui controlamos la velocidad de la animacion **/
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -moz-animation-name: rotate;
  -moz-animation-duration: 1s;
  /** Aqui controlamos la velocidad de la animacion **/
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  /*** Estado inicial de la rotacion ***/
  to {
    -webkit-transform: rotate(360deg);
  }
  /*** Estado final de la rotacion ***/
}
@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
  }
  /*** Estado inicial de la rotacion ***/
  to {
    -moz-transform: rotate(360deg);
  }
  /*** Estado final de la rotacion ***/
}
@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(0deg);
  }
  /*** Estado inicial de la rotacion ***/
  to {
    -ms-transform: rotate(360deg);
  }
  /*** Estado final de la rotacion ***/
}

.error_captcha {
  display: none;
  margin-top: 5px;
  color: #df175e;
}

.wr-item {
  margin-bottom: 10px;
}

.invalid-input {
  background: #500917 none;
  border: 1px solid #ff000e;
}

.screen {
  width: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  z-index: 999999;
  opacity: 0;
  transition: opacity 300ms ease;
}
.screen.on-screen {
  opacity: 1;
}
.screen * {
  box-sizing: border-box;
}

.lightbox {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}
.lightbox .modal-wrapp {
  padding: 0;
  border: 1px solid #000;
  background-color: #391F4E;
}
@media (max-width: 767px) {
  .lightbox .modal-wrapp {
    padding: 10px 20px;
  }
}
.lightbox .modal-wrapp .cabecera {
  text-transform: uppercase;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #979797;
}
.lightbox .modal-wrapp .cabecera h2 {
  font-size: 30px;
  color: #3e1051;
  margin: 0 0 5px;
}
@media (max-width: 768px) {
  .lightbox .modal-wrapp .cabecera h2 {
    font-size: 24px;
  }
}
.lightbox .modal-wrapp .cabecera p {
  font-size: 21px;
  font-weight: 300;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .lightbox .modal-wrapp .cabecera p {
    font-size: 16px;
  }
}
.lightbox .modal-wrapp .cabecera p.small-text {
  font-size: 14px;
}
@media (max-width: 768px) {
  .lightbox .modal-wrapp .cabecera p.small-text {
    font-size: 12px;
  }
}
.lightbox .modal-wrapp h3 {
  font-size: 26px;
  color: #3e1051;
  margin: 0 0 10px;
}
@media (max-width: 768px) {
  .lightbox .modal-wrapp h3 {
    font-size: 18px;
  }
}
.lightbox .modal-wrapp ul {
  padding-left: 30px;
  list-style: none;
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .lightbox .modal-wrapp ul {
    font-size: 14px;
  }
}
.lightbox .modal-wrapp ul li:before {
  content: "";
  border-color: transparent #3e1051;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  display: block;
  height: 0;
  width: 0;
  left: -14px;
  top: 20px;
  position: relative;
}
.lightbox .iframe_emprende {
  width: 49%;
  border: none;
  height: 500px;
}
@media only screen and (max-width: 767px) {
  .lightbox .iframe_emprende {
    width: 100%;
    border: none;
    height: 450px;
  }
}
.lightbox .costo-plan {
  background: #4A0E66;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
}
.lightbox .costo-plan p {
  color: #ffffff;
  margin: 0;
  font-size: 16px;
}
@media (max-width: 768px) {
  .lightbox .costo-plan p {
    font-size: 14px;
  }
}
.lightbox .costo-plan p span {
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .lightbox .costo-plan p span {
    font-size: 24px;
    margin-top: 5px;
  }
}
.lightbox .close-btn {
  background: url("../images/iconos/icon-cerrar.svg") no-repeat center #000000;
  position: absolute;
  right: 7px;
  top: 22px;
  width: 35px;
  height: 35px;
  text-indent: -9999px;
  cursor: pointer;
  display: block;
  visibility: visible;
  transition: all 300ms ease;
  z-index: 2;
}
.lightbox .close-btn:hover {
  background-color: #333333;
}

form .form-item {
  margin-bottom: 10px;
}
form input, form select, form textarea {
  width: 100%;
  padding: 8px 10px 5px;
  border: 2px solid #b41974;
  background: #391f4e;
  color: #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}
form input, form textarea {
  /* WebKit */
  /* Firefox 18- */
  /* Firefox 19+ */
  /* IE 10+ */
}
form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: #ffffff;
}
form input:-moz-placeholder, form textarea:-moz-placeholder {
  color: #ffffff;
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: #ffffff;
}
form input:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: #ffffff;
}
form select {
  background: url("https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/select.svg") no-repeat right top #391f4e;
}

.close-lightbox {
  position: absolute;
  right: 0;
  top: 0;
  width: 34px;
  height: 34px;
  color: #fff;
  font-weight: 600;
  padding: 9px;
  z-index: 99;
}
.close-lightbox i {
  background-position: -146px -90px;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  transition: transform ease 300ms;
  width: 16px;
}
.close-lightbox i:hover {
  transform: rotate(180deg);
}

@media (max-width: 1023px) {
  .csm-slider-5 {
    display: none !important;
  }
}
.csm-slider-5 .v-cent-img {
  padding: 0;
}
.csm-slider-5 h3.product-title {
  font-size: 48px;
  color: #3e1051;
  line-height: 90%;
  margin-bottom: 20px;
}
.csm-slider-5 h3.product-title span {
  color: #5D5D5D;
  font-weight: 300;
  display: block;
  font-size: 36px;
}
.csm-slider-5 .cuota-cel .c-number {
  font-size: 36px;
  font-weight: bold;
  color: #3e1051;
  line-height: 90%;
}
.csm-slider-5 .owl-nav {
  bottom: 0;
  height: 1px;
  margin: auto;
  position: absolute;
  top: 0;
  width: 100%;
}
.csm-slider-5 .owl-prev {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/slider-p-arrows.svg) -16px 0 no-repeat;
  display: block !important;
  height: 20px;
  text-indent: -999999px;
  width: 20px;
  z-index: 10;
  position: absolute;
  left: -30px;
}
.csm-slider-5 .owl-next {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/slider-p-arrows.svg) 4px 0 no-repeat;
  display: block !important;
  height: 20px;
  text-indent: -999999px;
  width: 20px;
  z-index: 10;
  position: absolute;
  right: -30px;
}
@media only screen and (max-width: 1245px) {
  .csm-slider-5 .owl-prev {
    left: 0;
  }
  .csm-slider-5 .owl-next {
    right: 0;
  }
}

.modal-wrapp .cuota-cel a {
  color: red !important;
  font-size: 16px;
}

.pack-square {
  border-radius: 14px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 398px;
  overflow: hidden;
  padding: 5px;
  position: relative;
  overflow: hidden;
}
.pack-square .cuatro-g {
  background: url(../images/planes/4g-icon.svg) center no-repeat;
  width: 11px;
  height: 14px;
  margin-right: 2px;
}
.pack-square.not-pad {
  padding: 0;
}
.pack-square.full {
  max-width: 100%;
}
.pack-square h4 {
  padding-left: 20px;
}
.pack-square.white {
  background: #fff;
}
.pack-square.white * {
  color: #3e1051;
}
.pack-square.white .sec-info .core:after {
  border-color: #3e1051;
}
.pack-square.white .cuatro-g {
  background: url(../images/planes/4g-icon-purple.svg) center no-repeat;
}
.pack-square.purple {
  background: #3e1051;
}
.pack-square.purple * {
  color: #fff;
}
.pack-square table {
  width: 100%;
  border-radius: 0;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .pack-square table tr td {
    display: block;
    text-align: center;
  }
}
.pack-square table .detalle {
  padding: 0;
}
.pack-square table .detalle p {
  margin-bottom: 0;
  text-transform: uppercase;
}
.pack-square table .detalle .mid-num {
  font-size: 40px;
  font-weight: 700;
  line-height: 60%;
}
.pack-square table .detalle > div {
  padding: 5px 0 8px 8px;
}
.pack-square.mod-radius table {
  border-radius: 10px;
}
.pack-square .purple-square {
  background: #3e1051;
}
.pack-square .purple-square * {
  color: #fff;
}
.pack-square .purple-square.mod {
  background: none;
}
.pack-square .purple.velocidad {
  padding: 10px 0;
  border-right: 2px solid #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .pack-square .purple.velocidad {
    border-right: none;
    border-bottom: 2px solid #ffffff;
  }
}
.pack-square .purple.b-top {
  border-top: 2px solid #ffffff;
}
.pack-square .white-square {
  background: #ffffff;
}
.pack-square .white-square * {
  color: #3e1051;
}
.pack-square .white-square.mod {
  background: none;
}
.pack-square .white.velocidad {
  border-right: 2px solid #3e1051;
  text-align: center;
}
@media (max-width: 768px) {
  .pack-square .white.velocidad {
    border-right: none;
    border-bottom: 2px solid #3e1051;
  }
}
.pack-square .white.b-top {
  border-top: 2px solid #3e1051;
}
.pack-square h4 {
  font-size: 23px;
  margin: 0 auto 10px;
}
.pack-square .price-square {
  padding: 2px 8px;
}
.pack-square .price-square * {
  display: inline-block;
  margin-bottom: 0;
  text-transform: uppercase;
  vertical-align: middle;
}
.pack-square .middle-size-text {
  display: inline-block;
  vertical-align: middle;
}
.pack-square .bordered-small-text {
  border: solid 1px;
  border-radius: 5px;
  padding: 2px 6px;
  font-style: normal;
  font-size: 13px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
}
.pack-square .bordered-small-text.white-border {
  border-color: #fff;
}
.pack-square .bordered-small-text.purple-border {
  border-color: #3e1051;
}
.pack-square .bordered-small-text.purple-border.big {
  font-size: 19px;
  font-weight: 100;
  padding: 1px 6px 4px;
}
.pack-square .big-text {
  font-size: 32px;
  line-height: normal;
  margin: 0;
  text-transform: uppercase;
}
.pack-square .big-text strong {
  font-weight: 700;
}
.pack-square .big-text.slim {
  font-size: 24px;
  font-weight: 100;
}
.pack-square .big-text-gigas {
  margin-bottom: 0;
}
.pack-square .small-text-gigas {
  font-size: 15px;
}
.pack-square .small-text-gigas strong {
  font-size: 17px;
}
.pack-square .mid-num {
  font-size: 40px;
  font-weight: bold;
  line-height: normal;
  /*margin-top: -12px;*/
  line-height: 60%;
}
.pack-square .mid-num i {
  /*font-size: 21px;
  font-style: normal;*/
  font-size: 21px;
  font-style: normal;
  position: relative;
  top: -12px;
}
.pack-square .square-num-small {
  /*border-radius: 5px;
  padding: 2px 4px;*/
  border-radius: 5px;
  font-size: 29px;
  font-weight: 700;
  line-height: normal;
  padding: 0 4px;
}
.pack-square .square-num-small.purple {
  background: #3e1051;
  color: #fff;
}
.pack-square .square-num-small.white {
  background: #fff;
  color: #3e1051;
}
.pack-square .small-t {
  font-size: 16px;
}
.pack-square.mod-square {
  padding: 5px 5px 18px;
}
.pack-square.mod-square table {
  margin-left: auto;
  margin-right: auto;
  width: 98%;
}
@media only screen and (max-width: 768px) {
  .pack-square.mod-square table {
    width: 100%;
  }
}
.pack-square.mod-square table.full {
  width: 100%;
}
.pack-square.mod-square .white-square {
  border-radius: 0;
}
.pack-square.mod-square .pruple-square {
  border-radius: 0;
}
.pack-square.mod-square .white.velocidad {
  border-right: 2px solid #3e1051;
  border-left: 2px solid #3e1051;
  text-align: center;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .pack-square.mod-square .white.velocidad {
    border-right: 0;
    border-left: 0;
    width: 100%;
  }
}
.pack-square.mod-square .purple.velocidad {
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
  text-align: center;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .pack-square.mod-square .purple.velocidad {
    border-right: 0;
    border-left: 0;
    width: 100%;
  }
}
.pack-square .mar-bottom-4 {
  margin-bottom: 4px;
}

.sec-info {
  display: table;
  margin: 0 auto;
  position: relative;
  width: 98%;
  padding: 0 14px;
}
.sec-info .info-area {
  display: table-cell;
  padding: 0;
  vertical-align: middle;
  width: 50%;
}
.sec-info .sub-big-num {
  display: table;
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 37px;
  margin: 0 auto;
  padding: 0 17px 0 5px;
  position: relative;
  text-align: right;
}
.sec-info .sub-big-num .word {
  bottom: 0;
  display: block;
  height: 58px;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.sec-info .more {
  bottom: 0;
  font-size: 30px;
  font-style: normal;
  height: 30px;
  left: -12px;
  line-height: normal;
  margin: auto;
  position: absolute;
  top: 0;
}
.sec-info .months {
  display: block;
  font-size: 12px;
  font-weight: 100;
  line-height: normal;
  margin: 4px auto 0;
  position: relative;
  text-align: justify;
  width: 110px;
}
.sec-info .months strong {
  font-weight: 600;
}
.sec-info .right-text {
  display: block;
  height: 80px;
  margin: 0 auto;
  text-align: left;
  max-width: 142px;
}
@media only screen and (max-width: 640px) {
  .sec-info .right-text {
    padding: 0 10px;
  }
}
.sec-info .right-text > span {
  font-size: 26px;
  font-weight: 600;
  line-height: 95%;
  margin-bottom: 5px;
}
.sec-info .right-text span {
  float: left;
  width: 100%;
}
.sec-info .right-text .light-text {
  font-size: 20px;
  font-weight: 100;
}
@media only screen and (max-width: 640px) {
  .sec-info .right-text > span {
    font-size: 20px;
  }
  .sec-info .right-text .light-text {
    font-size: 16px;
  }
  .sec-info .right-text .right-text {
    width: auto;
  }
}
.sec-info .core {
  position: relative;
}
.sec-info .core:after {
  border-right: 1px dashed #fff;
  content: "";
  height: 100%;
  position: absolute;
  right: 3px;
  top: 0;
  width: 1px;
}
@media only screen and (max-width: 640px) {
  .sec-info .core:after {
    display: none;
  }
}

.detail-square {
  border-radius: 0;
  padding: 10px 0;
  text-align: center;
  width: 96%;
  margin: 0 auto;
}
.detail-square > p {
  font-size: 19px;
  font-weight: 300;
}
.detail-square .big-num {
  font-size: 74px;
  font-weight: 600;
  line-height: 60%;
  margin: 0;
}
@media only screen and (max-width: 1100px) {
  .detail-square .big-num {
    font-size: 49px;
  }
}
.detail-square .big-num i {
  font-size: 40px;
  font-style: normal;
}
.detail-square.purple-bg * {
  color: #fff;
}

.min-bar span {
  display: inline-block;
  font-size: 42px;
  font-weight: 600;
  line-height: 95%;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.plan-internet {
  margin-bottom: 65px;
}
.plan-internet h3 {
  max-width: 398px;
  margin: 0 auto 10px;
  color: #4A0E66;
  font-size: 30px;
}

.small-box {
  box-sizing: border-box;
  float: left;
  margin-bottom: 25px;
  margin-right: 2%;
  width: 18.4%;
}
.small-box.last {
  margin-right: 0;
}
.small-box.purple * {
  color: #3e1051;
}
@media only screen and (max-width: 768px) {
  .small-box.sp-4-768 {
    margin-left: 1%;
    margin-right: 1%;
    width: 31.2%;
  }
}
@media only screen and (max-width: 480px) {
  .small-box.full-480 {
    width: 100%;
    margin-right: 0;
  }
}

.small-pack {
  border: 3px solid #3e1051;
  border-radius: 10px;
  display: table;
  padding: 8px 0 0;
  width: 100%;
  height: 150px;
}
.small-pack span {
  color: #3e1051;
}
.small-pack div {
  padding: 8px 0;
}
.small-pack .num {
  float: left;
  font-size: 29px;
  font-weight: 600;
  line-height: 96%;
  width: 100%;
}
.small-pack .time {
  font-size: 12px;
}

.bordered-bottom {
  border-bottom: solid 2px #3e1051;
}

.disclaimer-text {
  font-size: 16px;
  color: #440A6C;
}

.white-content * {
  color: #fff;
}

.external-less-top {
  position: relative;
  top: -50px;
}

.bordered-white {
  border: solid 2px #fff;
}

.box-device {
  /*margin-bottom: 30px;*/
  /*padding-bottom: 50px;*/
  width: 90%;
}
.box-device.center {
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.box-device.left {
  float: left;
}
.box-device.right {
  float: right;
}
.box-device .info * {
  line-height: 114%;
}
@media only screen and (max-width: 768px) {
  .box-device {
    width: 100%;
  }
  .box-device.center {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .box-device.left {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .box-device.right {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
.box-device * {
  float: left;
}
@media only screen and (max-width: 768px) {
  .box-device * {
    text-align: center;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
.box-device img {
  float: none;
}
.box-device h3 {
  font-size: 23px;
  font-weight: 500;
}
.box-device span {
  font-weight: 100;
  font-size: 16px;
}
.box-device .num {
  font-size: 24px;
  font-weight: 500;
}
.box-device .mid-num {
  font-size: 20px;
  font-weight: 100;
}
.box-device .big-num {
  font-size: 19px;
  font-weight: 600;
  margin-top: 15px;
}
.box-device span {
  display: block;
  width: 100%;
}
.box-device .btn {
  margin-left: auto;
  margin-right: auto;
  display: table;
  float: none;
}
.box-device .purple-square {
  background: #380F51;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 8px 16px;
  width: 90%;
}
.box-device .purple-square span {
  float: left;
  line-height: 108%;
  width: 100%;
}

.bordered-right:after {
  border-right: 1px solid #894da3;
  content: "";
  height: 85%;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
}
@media only screen and (max-width: 768px) {
  .bordered-right:after {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .bordered-bottom-768 {
    border-bottom: 1px solid #894da3;
    padding-bottom: 30px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  .bordered-bottom-768.last {
    border-bottom: none;
  }
}
/*---------------------cajas nuevos planes-------------------------*/
.max-640 {
  width: 100%;
  max-width: 640px;
}
.max-640 .btn.btn-pri.btn-fo {
  width: 45%;
  top: 105px;
}
@media only screen and (max-width: 930px) {
  .max-640 .btn.btn-pri.btn-fo {
    top: 0;
    width: 280px;
  }
}

.col-md-6.col-sm-6.plan-internet.triple {
  margin: 0 auto 30px;
}

.net-img1 {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto;
}
@media only screen and (max-width: 1180px) {
  .net-img1 {
    display: none;
  }
}

.net-img2 {
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto;
}
@media only screen and (max-width: 1180px) {
  .net-img2 {
    display: none;
  }
}

.net-img3 {
  display: none;
}
@media only screen and (max-width: 768px) {
  .net-img3 {
    margin: 0 auto;
    display: block;
  }
}

.new-net .btn.btn-pri.btn-fo {
  top: 50px;
}

.btn.btn-pri.btn-fo {
  position: absolute !important;
  top: 65px;
  left: auto;
  right: 0;
  bottom: 0;
  margin: auto !important;
  height: 47px;
}
@media (max-width: 1100px) {
  .btn.btn-pri.btn-fo {
    width: 30%;
  }
}
@media (max-width: 930px) {
  .btn.btn-pri.btn-fo {
    width: 100%;
    margin: 10px auto 0 !important;
    position: relative !important;
    display: block;
    top: 0;
  }
}

@media (max-width: 1100px) {
  .triple {
    width: 85% !important;
  }
}
#tab01 {
  position: relative;
}
#tab01 .img-flotante1 {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto;
}
#tab01 .img-flotante2 {
  position: absolute;
  top: auto;
  bottom: -270px;
  left: auto;
  right: 0;
  margin: auto;
}
@media (max-width: 1320px) {
  #tab01 .img-flotante1 {
    display: none;
  }
  #tab01 .img-flotante2 {
    display: none;
  }
}

.wrapper-pack {
  width: 100%;
  padding: 0 0 15px;
  /*------inicio responsive en el landimng de planes -----*/
  /*------fin responsive en el landing de planes-----*/
}
.wrapper-pack.tx-dark {
  color: #3e1051;
}
.wrapper-pack.tx-dark .wrapper-min .text-alone {
  font-size: 11px;
  text-align: center;
  background: #3E1051;
  border-radius: 20px;
  color: #fff;
  width: 90%;
  margin: 8px auto 0;
  padding: 5px 0;
}
@media (max-width: 640px) {
  .wrapper-pack {
    padding: 15px 0 10px;
  }
}
.wrapper-pack h4 {
  text-align: left !important;
  margin: 0 0 36px 10px;
  display: block;
  font-size: 20px;
}
@media (max-width: 640px) {
  .wrapper-pack h4 {
    width: 250px;
    margin: 0 auto 35px;
  }
}
.wrapper-pack h4 span {
  font-weight: normal;
  font-size: 16px;
}
.wrapper-pack .tx {
  font-weight: bold;
  font-size: 36px;
  line-height: 100%;
}
.wrapper-pack .tx2 {
  font-weight: bold;
  font-size: 26px;
  line-height: 100%;
  display: inline-block;
  border: 3px solid #fff;
  border-radius: 20px;
  padding: 5px 0px 5px 3px;
  margin-left: -13px;
}
.wrapper-pack .tx2 span {
  font-size: 14px;
  text-transform: uppercase;
  width: initial;
  text-align: left !important;
  position: relative;
  right: initial;
  top: initial;
  left: -5px;
}
.wrapper-pack .tx-minum {
  text-transform: uppercase;
  font-size: 10px;
  text-align: right !important;
  -webkit-transform: skewX(5deg);
  -khtml-transform: skewX(5deg);
  -moz-transform: skewX(5deg);
  -ms-transform: skewX(5deg);
  -o-transform: skewX(5deg);
  transform: skewX(5deg);
}
.wrapper-pack.dual-pack {
  /*.principal{
    &.dark-bord{
      &.24gb{
        background:#000;
        .number{
          margin:-27px 0 10px -15px;
        }
      }
    }
  }  */
}
.wrapper-pack.dual-pack .alone-gb8 {
  margin: 0 auto 36px;
  max-width: 230px;
}
.wrapper-pack.dual-pack .principal .number {
  margin: -25px 0 21px -14px;
  width: 164px;
}
.wrapper-pack.dual-pack .principal .tx {
  font-size: 29px;
}
.wrapper-pack.dual-pack .principal .tx.mil2 {
  font-size: 25px;
}
.wrapper-pack.dual-pack .principal .tx2 {
  font-size: 20px;
}
.wrapper-pack.dual-pack .principal .tx2 .min-circle {
  width: 18px;
}
.wrapper-pack.dual-pack .principal.gb4 {
  margin: 0px auto 15px;
  display: block;
  float: none;
  height: 160px;
  width: 235px;
}
.wrapper-pack.dual-pack .principal.gb4 .number {
  margin: -25px auto 0;
  width: 140px;
}
.wrapper-pack.dual-pack .principal.dark-bord.gb8 {
  margin: -5px auto 15px;
  display: block;
  float: none;
  height: 166px;
  width: 220px;
}
.wrapper-pack.dual-pack .principal.dark-bord.gb8 .number {
  margin: -27px auto 0;
  width: 140px;
}
.wrapper-pack.dual-pack .ilimitado.ili-white {
  background: #fff;
  -webkit-transform: skewX(5deg);
  -khtml-transform: skewX(5deg);
  -moz-transform: skewX(5deg);
  -ms-transform: skewX(5deg);
  -o-transform: skewX(5deg);
  transform: skewX(5deg);
}
@media (max-width: 768px) {
  .wrapper-pack.dual-pack .ilimitado.ili-white {
    margin: 15px auto -40px;
  }
}
.wrapper-pack.dual-pack .ilimitado.ili-dark {
  margin: 25px auto -35px;
  background: #3E1051;
  -webkit-transform: skewX(5deg);
  -khtml-transform: skewX(5deg);
  -moz-transform: skewX(5deg);
  -ms-transform: skewX(5deg);
  -o-transform: skewX(5deg);
  transform: skewX(5deg);
}
@media (max-width: 768px) {
  .wrapper-pack.dual-pack .ilimitado.ili-dark {
    margin: 5px auto -40px;
  }
}
.wrapper-pack.dual-pack .wrapper-min {
  padding: 25px 0 10px;
}
.wrapper-pack.dual-pack .wrapper-min .tx {
  font-size: 24px;
}
@media (max-width: 1145px) {
  .wrapper-pack.dual-pack .principal .number {
    margin: -42px 0 5px -16px;
    width: 160px;
  }
  .wrapper-pack.dual-pack .principal .tx {
    font-size: 24px;
  }
  .wrapper-pack.dual-pack .principal .tx2 {
    font-size: 20px;
  }
  .wrapper-pack.dual-pack .principal .tx2 .min-circle {
    width: 20px;
  }
  .wrapper-pack.dual-pack .wrapper-min .tx {
    font-size: 27px;
    text-align: center;
  }
}
@media (max-width: 860px) {
  .wrapper-pack.dual-pack .principal .number {
    margin: -42px 0 5px -16px;
    width: 160px;
  }
  .wrapper-pack.dual-pack .principal .tx {
    font-size: 20px;
  }
  .wrapper-pack.dual-pack .principal .tx2 {
    font-size: 16px;
  }
  .wrapper-pack.dual-pack .principal .tx2 .min-circle {
    width: 18px;
  }
  .wrapper-pack.dual-pack .wrapper-min .tx {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .wrapper-pack.dual-pack .principal .number {
    margin: -33px 0 5px -16px;
    width: 189px;
  }
  .wrapper-pack.dual-pack .principal .tx {
    font-size: 37px;
  }
  .wrapper-pack.dual-pack .principal .tx2 {
    font-size: 27px;
  }
  .wrapper-pack.dual-pack .principal .tx2 .min-circle {
    width: 20px;
  }
  .wrapper-pack.dual-pack .wrapper-min .tx {
    font-size: 37px;
  }
}
@media (max-width: 640px) {
  .wrapper-pack.dual-pack .principal {
    width: 230px;
  }
  .wrapper-pack.dual-pack .principal .tx2 {
    font-size: 25px;
  }
  .wrapper-pack.dual-pack .wrapper-min {
    padding: 40px 0 10px;
  }
  .wrapper-pack.dual-pack .wrapper-min .tx {
    font-size: 25px;
  }
  .wrapper-pack.dual-pack .wrapper-min .tx2 {
    font-size: 25px;
  }
}
.wrapper-pack.wrapper-internet {
  padding: 0 0 45px;
  max-width: 558px;
  width: 67%;
  float: left;
  color: #3e1051;
  /*------inicio planes internet la caja sola home-----*/
  /*------fin planes internet la caja sola home-----*/
  /*------inicio planes internet la caja sola en el landing de internet-----*/
  /*------fin planes internet la caja sola en el landing de internet-----*/
}
.wrapper-pack.wrapper-internet h4 {
  margin: 15px 0 55px 10px;
}
@media (max-width: 930px) {
  .wrapper-pack.wrapper-internet {
    float: none;
    margin: 0 auto;
    padding: 0 0 20px 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .wrapper-pack.wrapper-internet {
    padding: 0 5px;
    max-width: 260px;
    float: none;
    margin: 0 auto;
  }
}
.wrapper-pack.wrapper-internet.wrapper-alone-home {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  float: none;
  padding: 0;
}
@media (max-width: 940px) {
  .wrapper-pack.wrapper-internet.wrapper-alone-home {
    padding: 0 0 20px;
  }
}
.wrapper-pack.wrapper-internet.wrapper-alone-home h4 {
  margin: 15px 0 55px 10px;
}
@media (max-width: 768px) {
  .wrapper-pack.wrapper-internet.wrapper-alone-home h4 {
    width: 230px;
    margin: 15px auto 55px;
  }
}
.wrapper-pack.wrapper-internet.wrapper-alone-home .principal {
  width: 45%;
  margin: 0 2% 0 2px;
}
@media (max-width: 920px) {
  .wrapper-pack.wrapper-internet.wrapper-alone-home .principal {
    width: 45% !important;
    float: left !important;
  }
}
@media (max-width: 640px) {
  .wrapper-pack.wrapper-internet.wrapper-alone-home .principal {
    width: 230px !important;
    float: none !important;
    margin: 0 auto !important;
  }
}
.wrapper-pack.wrapper-internet.wrapper-alone-home .principal.pack-internet {
  border: 3px solid #fff;
}
.wrapper-pack.wrapper-internet.wrapper-alone-home .principal.pack-internet .table-cent.wrapper-valor {
  background: #3E1051;
}
.wrapper-pack.wrapper-internet.wrapper-alone-home .principal.pack-internet .table-cent.wrapper-valor .tx-net {
  color: #3e1051 !important;
}
.wrapper-pack.wrapper-internet.wrapper-alone-home .principal.pack-internet .table-cent.wrapper-valor .tx-net-precio {
  color: #3e1051 !important;
}
.wrapper-pack.wrapper-internet.wrapper-alone-home .principal.pack-internet .table-cent.wrapper-valor .light-color {
  color: #fff !important;
}
.wrapper-pack.wrapper-internet.wrapper-alone-home .wrapper-min {
  width: 46%;
  float: left;
  padding: 10px 0 0;
}
@media (max-width: 920px) {
  .wrapper-pack.wrapper-internet.wrapper-alone-home .wrapper-min {
    width: 53% !important;
    float: left !important;
    padding: 11px 0 0 0 !important;
  }
}
@media (max-width: 640px) {
  .wrapper-pack.wrapper-internet.wrapper-alone-home .wrapper-min {
    width: 230px !important;
    float: none !important;
    margin: 35px auto 0 !important;
  }
}
.wrapper-pack.wrapper-internet.wrapper-alone-home .wrapper-min .tx {
  font-size: 28px;
}
@media (max-width: 640px) {
  .wrapper-pack.wrapper-internet.wrapper-alone-home .wrapper-min .tx {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .wrapper-pack.wrapper-internet.wrapper-alone-home .wrapper-min {
    width: 100%;
    float: none;
    padding: 55px 0 0;
  }
}
.wrapper-pack.wrapper-internet.wrapper-alone-home .wrapper-min .min-pack {
  border: 3px solid #3E1051;
}
.wrapper-pack.wrapper-internet.alone-net {
  max-width: 300px;
  width: 300px;
}
@media only screen and (max-width: 930px) {
  .wrapper-pack.wrapper-internet.alone-net {
    padding-bottom: 30px;
  }
}
.wrapper-pack.wrapper-internet.alone-net .principal.pack-internet {
  width: 100%;
  margin: 0;
}
@media (max-width: 768px) {
  .wrapper-pack.wrapper-internet .principal.pack-internet {
    width: 100%;
    margin: 0;
    float: none;
  }
}
.wrapper-pack.wrapper-internet .principal.pack-internet p {
  text-align: center;
}
@media (max-width: 768px) {
  .wrapper-pack.wrapper-internet .principal.pack-internet p {
    font-size: 16px;
  }
}
.wrapper-pack.wrapper-internet .principal.pack-internet .table-cent.wrapper-valor {
  background: #3E1051;
}
.wrapper-pack.wrapper-internet .wrapper-min {
  width: 46%;
  float: left;
  padding: 10px 0 0;
}
.wrapper-pack.wrapper-internet .wrapper-min .text-alone {
  background: #3E1051;
  color: #fff;
}
.wrapper-pack.wrapper-internet .wrapper-min .tx {
  font-size: 27px;
}
@media (max-width: 768px) {
  .wrapper-pack.wrapper-internet .wrapper-min {
    width: 100%;
    float: none;
    padding: 55px 0 0;
  }
}
.wrapper-pack.wrapper-internet .wrapper-min .min-pack {
  border: 3px solid #3E1051;
}
.wrapper-pack.wrapper-internet .wrapper-min .light-color {
  border: 3px solid #fff !important;
}

/*-----inicio new planes-----*/
.new-plan {
  color: #fff;
  width: 100%;
  overflow: hidden;
  padding: 0px 0 50px;
  color: #3e1051;
  /*-----inicio new planes internet-----*/
  /*-----fin new planes internet-----*/
}
.new-plan.white-bord .principal {
  border: 3px solid #fff;
}
.new-plan.white-bord .wrap-right {
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
@media (max-width: 640px) {
  .new-plan.white-bord .wrap-right {
    border: none;
  }
}
@media (max-width: 640px) {
  .new-plan {
    padding: 0px 0 50px;
  }
}
.new-plan h4 {
  text-align: left !important;
  margin: 0 0 36px 10px;
  display: block;
  font-size: 20px;
}
.new-plan h4 span {
  font-weight: normal;
  font-size: 16px;
}
@media (max-width: 640px) {
  .new-plan h4 {
    width: 250px;
    margin: 0 auto 35px;
  }
}
.new-plan .principal {
  width: 40%;
  border: 3px solid #3E1051;
  border-radius: 45px;
  padding: 40px 10px 20px;
  position: relative;
  float: left;
  margin: 0 2%;
}
.new-plan .principal.gb4 {
  padding: 40px 10px 35px;
}
@media (max-width: 640px) {
  .new-plan .principal.gb4 {
    padding: 40px 10px 90px;
  }
}
@media (max-width: 640px) {
  .new-plan .principal {
    width: 230px;
    float: none;
    margin: 0 auto;
    padding: 40px 10px 80px;
    border-radius: 25px;
  }
  .new-plan .principal span {
    top: 0 !important;
    bottom: 0;
  }
}
.new-plan .principal .number {
  margin: -67px auto 5px;
  display: block;
  width: 158px;
}
.new-plan .principal span {
  width: 65px;
  text-align: left !important;
  position: absolute;
  top: auto;
  left: auto;
  right: 5px;
  bottom: 0;
  margin: auto;
  line-height: 100%;
  height: 65px;
}
@media (max-width: 640px) {
  .new-plan .principal span {
    text-align: right !important;
    right: 10px;
    bottom: 15px;
  }
}
.new-plan .wrap-right {
  width: 56%;
  float: left;
  padding: 5px 10px 15px;
  border-right: 3px solid #3E1051;
  border-top: 3px solid #3E1051;
  border-bottom: 3px solid #3E1051;
  border-radius: 0 45px 45px 0;
  margin: 26px 0 0 -15px;
}
@media (max-width: 640px) {
  .new-plan .wrap-right {
    width: 250px;
    float: none;
    margin: -86px auto 0;
    border: none;
  }
  .new-plan .wrap-right div {
    padding: 0 10px !important;
  }
  .new-plan .wrap-right .ilimitado {
    bottom: -35px !important;
  }
}
.new-plan .wrap-right div {
  display: table-cell;
  padding: 0;
  vertical-align: top;
}
.new-plan .wrap-right .tx {
  font-weight: bold;
  font-size: 33px;
  line-height: 100%;
}
.new-plan .wrap-right .tx span {
  display: block;
  margin: 0;
  line-height: 100%;
}
.new-plan .wrap-right .tx2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 100%;
  display: inline-block;
  margin: 15px 0 0 0;
}
.new-plan .wrap-right .tx2 .min-circle {
  width: 20px;
  margin: -6px 0 0 -3px;
}
.new-plan .wrap-right .ilimitado {
  position: absolute;
  top: auto;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
}
.new-plan .wrap-right .ilimitado.ili-white img {
  background: #fff;
}
.new-plan .wrap-right .ilimitado.ili-dark img {
  background: #3e1051;
}
.new-plan.new-net {
  width: 67%;
}
@media (max-width: 930px) {
  .new-plan.new-net {
    margin: 0 auto;
    max-width: 558px;
    padding: 0 0 5px 0;
  }
}
@media (max-width: 768px) {
  .new-plan.new-net {
    width: 260px;
    padding: 0 5px 25px;
  }
}
.new-plan.new-net .principal {
  width: 50%;
  padding: 40px 10px 55px;
}
@media (max-width: 768px) {
  .new-plan.new-net .principal {
    width: 100%;
    margin: 0;
    padding: 40px 10px 90px;
    border-radius: 35px;
  }
}
.new-plan.new-net .principal .number {
  width: 210px;
}
.new-plan.new-net .principal span {
  width: 100%;
  text-align: center !important;
  bottom: 27px;
  top: auto;
  height: 15px;
  font-size: 17px;
}
@media (max-width: 768px) {
  .new-plan.new-net .principal span {
    text-align: center;
    top: 15px;
    bottom: 0;
  }
}
.new-plan.new-net .wrap-right {
  width: 48%;
  margin: 34px 0 0 -15px;
  -webkit-transform: skewX(-5deg);
  -khtml-transform: skewX(-5deg);
  -moz-transform: skewX(-5deg);
  -ms-transform: skewX(-5deg);
  -o-transform: skewX(-5deg);
  transform: skewX(-5deg);
}
@media (max-width: 768px) {
  .new-plan.new-net .wrap-right {
    width: 100%;
    margin: -55px auto 0;
    display: block;
    border: none;
  }
}
.new-plan.new-net .wrap-right .tx {
  font-size: 20px;
  margin: 0 0 10px 0;
  text-align: center;
}
@media (max-width: 930px) {
  .new-plan.new-net .wrap-right .tx {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .new-plan.new-net .wrap-right .tx {
    text-align: center;
    margin: 0 0 5px 0;
  }
}
.new-plan.new-net .wrap-right div {
  display: block;
  width: 160px;
  text-align: center;
  padding: 0;
  position: relative;
  border-radius: 29px;
  font-size: 30px;
  color: #fff;
  margin: 0 auto -39px;
  background: #3E1051;
}

.table-cent .dark-bord {
  background: #3E1051 !important;
  border: none !important;
  color: #fff !important;
}
.table-cent .dark-bord span {
  color: #fff !important;
}

/*------fin new planes-----*/
.principal {
  width: 45%;
  border: 3px solid #fff;
  border-radius: 50px;
  padding: 10px 3px 20px 6px;
  position: relative;
  float: left;
  margin: 0 2%;
  -webkit-transform: skewX(-5deg);
  -khtml-transform: skewX(-5deg);
  -moz-transform: skewX(-5deg);
  -ms-transform: skewX(-5deg);
  -o-transform: skewX(-5deg);
  transform: skewX(-5deg);
  /*------inicio planes internet-----*/
  /*------fin planes internet-----*/
}
@media (max-width: 640px) {
  .principal {
    width: 230px;
    float: none;
    margin: 0 auto;
  }
  .principal .tx {
    font-size: 28px !important;
  }
  .principal .tx2 {
    font-size: 28px;
  }
}
.principal .ilimitado {
  margin: 16px auto -46px;
  width: 151px;
}
.principal .tx {
  font-size: 32px;
}
.principal p {
  margin: 0;
}
.principal .number {
  margin: -33px 0 0 -16px;
  display: block;
  width: 189px;
  -webkit-transform: skewX(5deg);
  -khtml-transform: skewX(5deg);
  -moz-transform: skewX(5deg);
  -ms-transform: skewX(5deg);
  -o-transform: skewX(5deg);
  transform: skewX(5deg);
}
.principal .circle {
  position: absolute;
  top: -28px;
  bottom: auto;
  left: auto;
  right: 30px;
  margin: auto;
}
.principal span {
  width: 65px;
  text-align: right !important;
  position: absolute;
  top: -35px;
  left: auto;
  right: 10px;
  bottom: 0;
  margin: auto;
  line-height: 100%;
  height: 70px;
  -webkit-transform: skewX(5deg);
  -khtml-transform: skewX(5deg);
  -moz-transform: skewX(5deg);
  -ms-transform: skewX(5deg);
  -o-transform: skewX(5deg);
  transform: skewX(5deg);
}
.principal .table-cent {
  display: table;
  -webkit-transform: skewX(5deg);
  -khtml-transform: skewX(5deg);
  -moz-transform: skewX(5deg);
  -ms-transform: skewX(5deg);
  -o-transform: skewX(5deg);
  transform: skewX(5deg);
  width: 100%;
}
.principal .table-cent div {
  padding: 0 0 0 10px;
}
@media (max-width: 640px) {
  .principal .table-cent div {
    padding: 0 0 0 11px;
  }
}
.principal .table-cent .min-circle {
  width: 23px;
  display: inline-block;
  margin: -5px 0 0 -3px;
}
.principal.pack-internet {
  width: 50%;
  border: 3px solid #3E1051;
  border-radius: 35px;
  padding: 30px 10px;
  position: relative;
  float: left;
  margin: 0 2%;
}
.principal.pack-internet p {
  font-size: 18px;
}
.principal.pack-internet .number {
  width: 228px;
  margin: -50px auto 10px;
}
.principal.pack-internet .table-cent.wrapper-valor {
  background: #fff;
  border-radius: 20px;
  padding: 0 5px 3px;
  margin: 15px auto -45px;
}
.principal.pack-internet .table-cent.wrapper-valor div {
  padding: 0;
  vertical-align: middle;
}
.principal.pack-internet .table-cent.wrapper-valor .tx-net {
  font-size: 11px;
  text-align: right;
  color: #fff;
  padding: 0 5px;
}
@media (max-width: 768px) {
  .principal.pack-internet .table-cent.wrapper-valor .tx-net {
    font-size: 10px;
  }
}
.principal.pack-internet .table-cent.wrapper-valor .tx-net-precio {
  font-size: 28px;
  color: #fff;
  padding: 0 5px;
}
@media (max-width: 768px) {
  .principal.pack-internet .table-cent.wrapper-valor .tx-net-precio {
    font-size: 26px;
  }
}
.principal.pack-internet .table-cent.light-bg {
  background: #3E1051;
  border: 3px solid #fff;
}

.dark-bord {
  border: 3px solid #3E1051 !important;
}

.wrapper-min {
  width: 51%;
  float: left;
  padding: 25px 0;
}
.wrapper-min .tx {
  font-size: 30px;
  -webkit-transform: skewX(5deg);
  -khtml-transform: skewX(5deg);
  -moz-transform: skewX(5deg);
  -ms-transform: skewX(5deg);
  -o-transform: skewX(5deg);
  transform: skewX(5deg);
}
.wrapper-min .text-alone {
  font-size: 12px;
  text-align: center;
  background: #3E1051;
  color: #fff;
  border-radius: 20px;
  padding: 5px 8px;
  width: 100%;
  max-width: 250px;
  margin: 8px auto 0;
}
@media (max-width: 640px) {
  .wrapper-min {
    width: 250px;
    float: none;
    padding: 40px 0 0;
    margin: 0 auto;
  }
  .wrapper-min .tx {
    font-size: 26px;
  }
}
.wrapper-min .min-pack {
  width: 47%;
  display: inline-block;
  border: 3px solid #fff;
  border-radius: 35px;
  padding: 10px;
  position: relative;
  vertical-align: middle;
  -webkit-transform: skewX(-5deg);
  -khtml-transform: skewX(-5deg);
  -moz-transform: skewX(-5deg);
  -ms-transform: skewX(-5deg);
  -o-transform: skewX(-5deg);
  transform: skewX(-5deg);
}
@media (max-width: 640px) {
  .wrapper-min .min-pack .xtwo {
    width: 60px;
  }
  .wrapper-min .min-pack .xfourth {
    width: 70px;
  }
}
.wrapper-min .min-pack:first-child {
  margin-right: 3%;
}
.wrapper-min .min-pack .number {
  margin: -26px auto 5px;
  display: block;
  -webkit-transform: skewX(5deg);
  -khtml-transform: skewX(5deg);
  -moz-transform: skewX(5deg);
  -ms-transform: skewX(5deg);
  -o-transform: skewX(5deg);
  transform: skewX(5deg);
}
@media (max-width: 640px) {
  .wrapper-min .min-pack .number {
    margin: -30px 0 5px 0px;
    width: 121px;
  }
}
.wrapper-min .min-pack p {
  margin: 0;
}
.wrapper-min .min-pack .circle {
  position: absolute;
  top: -24px;
  left: auto;
  right: 7px;
  bottom: auto;
  margin: auto;
  width: 46px;
}
@media (max-width: 640px) {
  .wrapper-min .min-pack .circle {
    top: -20px;
    width: 40px;
  }
}

/*------estilos click to chat-----*/
.panel-default {
  border-color: none !important;
}

#chattigo-webchat-container #chattigo-widget #chattigo-login-form-panel {
  border: none;
  border-radius: 5px;
  max-height: 80%;
  overflow-y: auto;
  position: absolute;
  width: 90%;
}

.triple {
  width: 77%;
  float: none;
  overflow: hidden;
  margin: 0 auto 74px;
  padding: 0;
}

.tripleimg {
  display: block;
  width: 28%;
  margin-left: 6%;
  float: left;
  margin-bottom: 34px;
}

.div_ventana.mostrar_ventana {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: 100%;
  display: block;
}

.cajatriple {
  float: left;
  max-width: 558px !important;
}

.btn-triplecenter {
  float: right;
  margin: 0;
}

.btn-triplecenter.middle {
  margin-top: 40px;
}

.tamdoblegigas {
  width: 150px;
}

.tamdoblegigas-net-em {
  width: 100%;
}

.mar-right-8 {
  margin: 0;
}

.plan-internet h3 {
  margin: 0;
}

.btn.rainbow:hover {
  border: solid 1px #a1065b;
  background: #e50981;
  color: #ffffff;
  transition: all 300ms ease;
}

/*//////////////botones css///////////////*/
.btn {
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
  margin: 0;
  display: block;
  text-decoration: none;
  max-width: 280px;
}

.btn-fb.btn-pri {
  background: #472D5C;
  color: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.6);
}

.btn-fb.btn-pri:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.6);
}

.btn-fb.btn-sec {
  background: #701B89;
  color: #fff;
}

.btn-fb.btn-ghost {
  color: #701B89;
  box-shadow: inset 0 0 0 2px #701B89;
}

.btn-fb.btn-ghost:before {
  background: #701B89 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  -ms-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -o-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: 0 50% 0;
  -moz-transform-origin: 0 50% 0;
  -ms-transform-origin: 0 50% 0;
  -webkit-transform-origin: 0 50% 0;
  -o-transform-origin: 0 50% 0;
  transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-property: transform;
  -ms-transition-property: transform;
  -moz-transition-property: transform;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  z-index: -1;
  border-radius: 0.25rem;
}

.btn-fb.btn-ghost:hover {
  color: #fff;
}

.btns-oscuro {
  padding: 100px 0;
  background: #472D5C;
  overflow: hidden;
}

.btns-oscuro h2 {
  color: #fff;
}

.btn-fo.btn-pri {
  background: #e50981;
  color: #fff;
}

.btn-fo.btn-pri:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.6);
}

.btn-fo.btn-sec {
  background: #701B89;
  color: #fff;
}

.btn-fo.btn-ghost {
  color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

.btn-fo.btn-ghost:before {
  background: white none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  -moz-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform-origin: 0 50% 0;
  -webkit-transform-origin: 0 50% 0;
  -moz-transform-origin: 0 50% 0;
  -ms-transform-origin: 0 50% 0;
  -o-transform-origin: 0 50% 0;
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-property: transform;
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  -ms-transition-property: transform;
  -o-transition-property: transform;
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  z-index: -1;
  border-radius: 0.25rem;
}

.btn-fo.btn-ghost:hover {
  color: #472D5C;
}

.btn {
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  box-shadow: 0 0 1px transparent;
  display: inline-block;
  position: relative;
  transform: translateZ(0px);
  -moz-transform: translateZ(0px);
  -o-transform: translateZ(0px);
  -webkit-transform: translateZ(0px);
  -ms-transform: translateZ(0px);
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-property: color;
  -moz-transition-property: color;
  -ms-transition-property: color;
  -o-transition-property: color;
  -moz-transition-property: color;
  vertical-align: middle;
}

.btn::before {
  background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  -moz-transform: scaleX(0);
  -o-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform-origin: 0 50% 0;
  -moz-transform-origin: 0 50% 0;
  -webkit-transform-origin: 0 50% 0;
  -o-transform-origin: 0 50% 0;
  -ms-transform-origin: 0 50% 0;
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-property: transform;
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  -o-transition-property: transform;
  -ms-transition-property: transform;
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  z-index: -1;
  border-radius: 0.25rem;
}

.btn:hover, .btn:focus, .btn:active {
  color: white;
}

.btn:hover::before, .btn:focus::before, .btn:active::before {
  transform: scaleX(1);
  -moz-transform: scaleX(1);
  -o-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
}

/*-----------CSS ROTA CAJAS-----------*/
div.div-ani {
  width: 100%;
  height: 100px;
  list-style: none;
  position: relative;
  cursor: pointer;
  font-family: "Open Sans";
  font-weight: 300;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  perspective: 1000;
}

div.rot-ani {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.img-rotate {
  width: 250px;
}

.front {
  z-index: 3;
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.back {
  text-align: center;
  line-height: 100%;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

div.div-ani:hover > .front {
  z-index: 0;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

div.div-ani.single-notRot:hover > .front {
  z-index: 0;
  -webkit-transform: inherit;
  -moz-transform: inherit;
  transform: inherit;
}

div.div-ani:hover > .back {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.back > .info-area > .core:after {
  border-right: 0;
}

.div-ani-internet {
  width: 28% !important;
  height: 150px !important;
  margin: 0 0 34px auto !important;
}

.div-ani-internet .rot-ani {
  padding: 0px;
}

.full.to-left.bordered-right.bordered-left::before {
  border-right: 1px solid #894da3;
  content: "";
  height: 85%;
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
}

.nuevo {
  position: absolute;
  right: 0;
  top: 0;
}

.main-head .accesos-top .icon-ph {
  background: #3B1F4F url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/icon-red-phone.png) no-repeat;
  background-size: 15px;
  background-position: center left;
}

.main-head .accesos-top .icon-w {
  background: #3B1F4F url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/icon-whatsapp.png) no-repeat;
  background-size: 15px;
  background-position: center left;
}

@media only screen and (max-width: 1100px) {
  .tripleimg {
    margin: 0 auto;
    float: none;
    width: 40%;
    min-width: 300px;
  }

  .cajatriple {
    max-width: 100% !important;
  }
}
@media only screen and (max-width: 1099px) {
  .cajatriple {
    max-width: 65% !important;
  }

  .tripleimg {
    float: left;
    width: 27%;
    min-width: 100px;
    margin-left: 6%;
    margin-bottom: 30px;
  }

  .btn-triplecenter {
    float: right !important;
  }

  .mar-right-8.first-break-cent {
    float: right;
    margin: 0;
  }

  .btn-triplecenter.middle {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 930px) {
  .div-ani-internet {
    width: 32% !important;
    margin: 0 auto !important;
  }

  .cajatriple {
    float: none;
  }

  .cent-text {
    padding: 15px 0 15px;
  }

  .tripleimg {
    margin: 0 auto;
    float: none;
    width: 40%;
    min-width: 220px;
  }

  .cajatriple {
    max-width: 100% !important;
  }

  .btn-triplecenter {
    margin: 20px auto 0;
    float: none;
  }

  .btn-triplecenter {
    float: none !important;
  }

  .mar-right-8.first-break-cent {
    margin: 20px auto;
  }

  .plan-internet h3 {
    width: 100%;
    max-width: 100%;
  }

  .plan-internet {
    overflow: hidden;
    margin: 0 auto 70px;
  }
}
@media only screen and (max-width: 768px) {
  .full.to-left.bordered-right.bordered-left::before {
    display: none;
  }

  .full.to-left.bordered-right.bordered-left {
    border-top: 1px solid #894da3;
    display: block;
    margin: 25px 0 0;
    padding: 15px 0 15px;
    position: relative;
  }

  .nuevo.new2 {
    top: 20px;
  }
}
#chattigo-webchat-container #chattigo-widget #chattigo-login-form-panel {
  border: 1px solid #fff !important;
  border-radius: 5px;
  max-height: 80%;
  overflow-y: auto;
  position: absolute;
  width: 90%;
}

.access-box {
  background: #6f1a7e;
  color: #fff;
}
.access-box p {
  bottom: 0;
  float: left;
  font-family: cera;
  font-size: 15px;
  left: 0;
  margin: 5px 0 0;
  padding: 10px 0;
}
.access-box a {
  font-weight: 300 !important;
  float: left;
  margin-left: 2%;
}
@media only screen and (max-width: 768px) {
  .access-box p, .access-box a {
    text-align: center;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .access-box a {
    display: table;
  }
}

.mixed-bar {
  min-height: 461px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.mixed-bar h2, .mixed-bar h3 {
  font-size: 60px;
  margin: 0 0 20px;
  text-transform: initial;
}
@media (max-width: 768px) {
  .mixed-bar h2, .mixed-bar h3 {
    font-size: 37px;
  }
}
.mixed-bar .info {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .mixed-bar .info {
    padding: 0 15px;
  }
}
.mixed-bar .info.to-right {
  margin-right: 10%;
}
@media (max-width: 1150px) {
  .mixed-bar .info.to-right {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .mixed-bar .info.to-right {
    float: inherit;
    margin: 0 auto 20px;
  }
}
.mixed-bar .info.to-left {
  margin-left: 10%;
}
@media (max-width: 1040px) {
  .mixed-bar .info.to-left {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .mixed-bar .info.to-left {
    float: inherit;
    margin: 0 auto 20px;
  }
}
.mixed-bar .info.center {
  margin-left: auto;
  margin-right: auto;
}
.mixed-bar .info h3 {
  font-size: 28px;
  margin-bottom: 5px;
}
.mixed-bar .info > p {
  font-size: 14px;
}
.mixed-bar .info .btn {
  max-width: 220px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .mixed-bar .info .btn {
    max-width: 280px;
  }
}

.img-bg.girl {
  background: url(../images/example/img-peluqueria.jpg) top center no-repeat #210a32;
  background-size: cover;
}
.img-bg.multimedia {
  background: url(../images/example/img-peluqueria2.jpg) top center no-repeat #210a32;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .img-bg.girl {
    display: none;
  }
  .img-bg.multimedia {
    display: none;
  }
}

.mod-servicios {
  margin: 50px 0;
}
.mod-servicios p {
  min-height: 60px;
}

.servicios {
  text-align: center;
  padding-bottom: 15px;
}
.servicios:first-child {
  border-left: none;
}
@media (max-width: 991px) {
  .servicios {
    border: none;
  }
}
.servicios h3, .servicios h4 {
  color: #4A4A4A;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  text-transform: none;
}
.servicios img {
  margin-bottom: 15px;
  max-height: 62px;
}

.bg-beneficios {
  background: #421259;
  background-size: cover;
}
@media (max-width: 480px) {
  .bg-beneficios {
    background: #421259;
  }
}

.beneficios {
  padding: 60px 15px;
}
@media (max-width: 768px) {
  .beneficios {
    background-position: center;
  }
}
.beneficios ul li {
  list-style: none;
  font-size: 18px;
  margin-bottom: 20px;
}
.beneficios h2, .beneficios h3 {
  font-size: 52px;
  font-weight: normal;
  text-transform: initial;
  margin: 0 0 30px;
}
@media (max-width: 768px) {
  .beneficios h2, .beneficios h3 {
    font-size: 34px;
  }
}

.rockers {
  background: url("../images/example/bg-rockers.png") no-repeat left top;
  background-size: cover;
  padding: 20px 15px;
}
@media (max-width: 768px) {
  .rockers {
    background-position: center;
  }
}
.rockers h3 {
  font-size: 64px;
  font-weight: normal;
  line-height: 100%;
  margin: 0 0 10px;
}
.rockers h3 span {
  display: block;
  font-weight: bold;
}

.m-5 {
  margin: 5px;
}

.m-left-5 {
  margin-left: 5px;
}

.m-right-5 {
  margin-right: 5px;
}

.m-top-5 {
  margin-top: 5px;
}

.m-bottom-5 {
  margin-bottom: 5px;
}

.m-10 {
  margin: 10px;
}

.m-left-10 {
  margin-left: 10px;
}

.m-right-10 {
  margin-right: 10px;
}

.m-top-10 {
  margin-top: 10px;
}

.m-bottom-10 {
  margin-bottom: 10px;
}

.m-15 {
  margin: 15px;
}

.m-left-15 {
  margin-left: 15px;
}

.m-right-15 {
  margin-right: 15px;
}

.m-top-15 {
  margin-top: 15px;
}

.m-bottom-15 {
  margin-bottom: 15px;
}

.m-20 {
  margin: 20px;
}

.m-left-20 {
  margin-left: 20px;
}

.m-right-20 {
  margin-right: 20px;
}

.m-top-20 {
  margin-top: 20px;
}

.m-bottom-20 {
  margin-bottom: 20px;
}

.m-25 {
  margin: 25px;
}

.m-left-25 {
  margin-left: 25px;
}

.m-right-25 {
  margin-right: 25px;
}

.m-top-25 {
  margin-top: 25px;
}

.m-bottom-25 {
  margin-bottom: 25px;
}

.m-30 {
  margin: 30px;
}

.m-left-30 {
  margin-left: 30px;
}

.m-right-30 {
  margin-right: 30px;
}

.m-top-30 {
  margin-top: 30px;
}

.m-bottom-30 {
  margin-bottom: 30px;
}

.m-35 {
  margin: 35px;
}

.m-left-35 {
  margin-left: 35px;
}

.m-right-35 {
  margin-right: 35px;
}

.m-top-35 {
  margin-top: 35px;
}

.m-bottom-35 {
  margin-bottom: 35px;
}

.m-40 {
  margin: 40px;
}

.m-left-40 {
  margin-left: 40px;
}

.m-right-40 {
  margin-right: 40px;
}

.m-top-40 {
  margin-top: 40px;
}

.m-bottom-40 {
  margin-bottom: 40px;
}

.m-45 {
  margin: 45px;
}

.m-left-45 {
  margin-left: 45px;
}

.m-right-45 {
  margin-right: 45px;
}

.m-top-45 {
  margin-top: 45px;
}

.m-bottom-45 {
  margin-bottom: 45px;
}

.m-50 {
  margin: 50px;
}

.m-left-50 {
  margin-left: 50px;
}

.m-right-50 {
  margin-right: 50px;
}

.m-top-50 {
  margin-top: 50px;
}

.m-bottom-50 {
  margin-bottom: 50px;
}

.p-5 {
  padding: 5px;
}

.p-left-5 {
  padding-left: 5px;
}

.p-right-5 {
  padding-right: 5px;
}

.p-top-5 {
  padding-top: 5px;
}

.p-bottom-5 {
  padding-bottom: 5px;
}

.p-10 {
  padding: 10px;
}

.p-left-10 {
  padding-left: 10px;
}

.p-right-10 {
  padding-right: 10px;
}

.p-top-10 {
  padding-top: 10px;
}

.p-bottom-10 {
  padding-bottom: 10px;
}

.p-15 {
  padding: 15px;
}

.p-left-15 {
  padding-left: 15px;
}

.p-right-15 {
  padding-right: 15px;
}

.p-top-15 {
  padding-top: 15px;
}

.p-bottom-15 {
  padding-bottom: 15px;
}

.p-20 {
  padding: 20px;
}

.p-left-20 {
  padding-left: 20px;
}

.p-right-20 {
  padding-right: 20px;
}

.p-top-20 {
  padding-top: 20px;
}

.p-bottom-20 {
  padding-bottom: 20px;
}

.p-25 {
  padding: 25px;
}

.p-left-25 {
  padding-left: 25px;
}

.p-right-25 {
  padding-right: 25px;
}

.p-top-25 {
  padding-top: 25px;
}

.p-bottom-25 {
  padding-bottom: 25px;
}

.p-30 {
  padding: 30px;
}

.p-left-30 {
  padding-left: 30px;
}

.p-right-30 {
  padding-right: 30px;
}

.p-top-30 {
  padding-top: 30px;
}

.p-bottom-30 {
  padding-bottom: 30px;
}

.p-35 {
  padding: 35px;
}

.p-left-35 {
  padding-left: 35px;
}

.p-right-35 {
  padding-right: 35px;
}

.p-top-35 {
  padding-top: 35px;
}

.p-bottom-35 {
  padding-bottom: 35px;
}

.p-40 {
  padding: 40px;
}

.p-left-40 {
  padding-left: 40px;
}

.p-right-40 {
  padding-right: 40px;
}

.p-top-40 {
  padding-top: 40px;
}

.p-bottom-40 {
  padding-bottom: 40px;
}

.p-45 {
  padding: 45px;
}

.p-left-45 {
  padding-left: 45px;
}

.p-right-45 {
  padding-right: 45px;
}

.p-top-45 {
  padding-top: 45px;
}

.p-bottom-45 {
  padding-bottom: 45px;
}

.p-50 {
  padding: 50px;
}

.p-left-50 {
  padding-left: 50px;
}

.p-right-50 {
  padding-right: 50px;
}

.p-top-50 {
  padding-top: 50px;
}

.p-bottom-50 {
  padding-bottom: 50px;
}

.comprar-texto {
  font-size: 1.1rem;
  font-weight: 400;
  color: #706d72;
  margin: 0;
}

.comprar-precio {
  font-size: 2.5625rem;
  font-weight: 500;
  color: #24152f;
  margin-bottom: 0.5rem;
}

.home-destacado {
  text-align: right;
}

.home-destacado img {
  width: 248px;
}

.content-tabs {
  margin: 20px 0 0;
  width: 100%;
}
.content-tabs .menu-tabs {
  list-style: none;
}
@media only screen and (max-width: 640px) {
  .content-tabs .menu-tabs li {
    float: left;
    width: 100%;
  }
  .content-tabs .menu-tabs a {
    display: block;
    width: 100%;
  }
}
.content-tabs .menu-tabs:after {
  background: #fff;
  content: "";
  height: 380px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  transform: skewX(-1deg);
  width: 0.8%;
  z-index: 100;
}
@media only screen and (max-width: 640px) {
  .content-tabs .menu-tabs:after {
    display: none;
  }
}
.content-tabs .left-tab {
  float: left;
  width: 50%;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
  background: url("../images/example/bg-pack-pyme01.jpg") no-repeat top center;
  background-size: cover;
  min-height: 380px;
}
@media only screen and (max-width: 480px) {
  .content-tabs .left-tab {
    background-position: 56% 0;
  }
}
.content-tabs .right-tab {
  float: right;
  width: 50%;
  clip-path: polygon(3% 0, 100% 0, 100% 100%, 0 100%);
  background: url("../images/example/bg-multimedia-empresas-01.jpg") no-repeat top center;
  background-size: cover;
  min-height: 380px;
}
@media only screen and (max-width: 480px) {
  .content-tabs .right-tab {
    background-position: 26% 0;
  }
}
.content-tabs .tabs {
  position: relative;
  overflow: hidden;
}
.content-tabs .tabs:hover {
  cursor: pointer;
}
.content-tabs .tabs:hover .hover {
  visibility: visible;
  opacity: 1;
}
.content-tabs .tabs:hover .title {
  display: none;
}
.content-tabs .tabs .title {
  position: absolute;
  bottom: 0;
  line-height: 100%;
  text-transform: uppercase;
}
.content-tabs .tabs .title span {
  font-size: 20px;
}
.content-tabs .tabs .title h3 {
  font-size: 35px;
  margin: 0 0 20px;
}
.content-tabs .tabs .hover {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(94, 14, 127, 0.8);
  opacity: 0;
  transition: opacity ease 300ms;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-tabs .tabs .hover .title-hover {
  line-height: 100%;
  text-transform: uppercase;
  max-width: 460px;
  margin: 0 auto;
}
.content-tabs .tabs .hover .title-hover span {
  font-size: 20px;
}
.content-tabs .tabs .hover .title-hover h3 {
  font-size: 35px;
  margin: 0 0 20px;
}
.content-tabs .info-tabs .tab, .content-tabs .info-filtros-fp .tab {
  display: none;
  margin-top: 20px;
}
.content-tabs .info-tabs .tab.active, .content-tabs .info-filtros-fp .tab.active {
  display: block;
}

.intro-planes {
  text-align: center;
  margin-bottom: 30px;
}
.intro-planes h2 {
  font-size: 36px;
  color: #4A0E66;
}
.intro-planes h2.white {
  color: #ffffff;
}
@media only screen and (max-width: 480px) {
  .intro-planes h2 {
    font-size: 26px;
  }
}
.intro-planes p {
  font-size: 18px;
}
.intro-planes.mar-bottom-0 {
  margin-bottom: 0px;
}

/* HOME EMPRESAS */
.seccion_plan_emprende {
  padding: 30px 0;
}
.seccion_plan_emprende-info {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.seccion_plan_emprende-titulo {
  font-size: 34px;
  font-weight: bold;
  font-family: "cera";
  margin-bottom: 30px;
  margin: 0 0 30px 0;
}
.seccion_plan_emprende-bajada {
  font-size: 20px;
  margin: 0 0 30px 0;
}
.seccion_plan_emprende-promo {
  max-width: 870px;
  height: auto;
  margin: 0 0 30px 0;
}
.seccion_plan_emprende-btns {
  font-size: 0;
  max-width: 560px;
  margin: 0;
}
.seccion_plan_emprende-btns.cent-element {
  margin: 0 auto;
}
.seccion_plan_emprende-btns .middle {
  width: 48%;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin-right: 2%;
}
@media (max-width: 768px) {
  .seccion_plan_emprende-btns .middle {
    margin-right: initial;
  }
}

@media (max-width: 480px) {
  .oferta_plan_boxbtn .btn.transparent {
    max-width: 230px;
    width: 100%;
    margin-top: 10px;
  }
}

.bajada_plan_emprende_home {
  margin-bottom: 40px;
}

/* Page Planes */
/* SLIDER HOME */
.height-static {
  min-height: 400px;
  background-size: cover;
  background-position: center center;
}
.height-static .img-slider-desktop {
  display: none !important;
}
.height-static-empresas {
  min-height: 440px;
}
@media only screen and (max-width: 480px) {
  .height-static-empresas {
    min-height: 510px;
  }
}

.slider_title-medium {
  font-size: 20px;
  font-family: "cera";
  font-weight: 300;
  color: #ffffff;
}

.slider_title-bold {
  font-weight: bold;
  font-size: 33px;
  font-family: "cera";
  color: #ffffff;
}

.force-width-360 {
  max-width: 360px !important;
}

.section_title_page {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.section_title_page-titulo {
  margin: 0 0 20px 0;
  font-size: 41px;
  font-family: "cera";
  color: #000000;
  font-weight: bold;
}

/* Seccion Oferta Planes */
.box_oferta_planes {
  padding-top: 40px;
  padding-bottom: 40px;
}
.box_oferta_planes .container {
  max-width: 750px;
}
.box_oferta_planes.internet {
  background-image: none;
  background-color: #F5F4F5;
}
.box_oferta_planes.internet .container {
  max-width: 700px;
}

.oferta_plan {
  text-align: center;
  margin-bottom: 50px;
}
.oferta_plan-promo-img {
  margin-bottom: 15px;
  width: 100%;
}
.oferta_plan:last-child {
  margin-bottom: 0;
}

/* CAJA DE MENSAJE CON LINEAS */
.box_mensaje_atencion {
  position: relative;
  text-align: center;
  color: #421259;
  margin-bottom: 40px;
}
.box_mensaje_atencion.purple {
  color: #35004B;
}
.box_mensaje_atencion.purple:before, .box_mensaje_atencion.purple:after {
  background-color: #35004B;
}
.box_mensaje_atencion:before, .box_mensaje_atencion:after {
  content: "";
  display: block;
  width: 25%;
  height: 1px;
  background-color: #421259;
  position: absolute;
  top: 50%;
  margin-top: -0.5px;
}
.box_mensaje_atencion:before {
  left: 25px;
}
.box_mensaje_atencion:after {
  right: 25px;
}

/* Section con nuevos planes small */
.box_nuevos_planes {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #F1F3F5;
}
.box_nuevos_planes-titulo {
  font-size: 35px;
  font-weight: bold;
  font-family: "cera";
  color: #5A1A5D;
  margin: 0 0 50px 0;
  text-align: center;
}

.box_datos_emprende {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.box_datos_emprende-item {
  margin-bottom: 20px;
}
.box_datos_emprende-item.bloque5 {
  width: 20%;
}
.box_datos_emprende-item.bloque2 {
  width: 50%;
}

.bolsa_emprende {
  border-top: 1px solid #DA0080;
  border-bottom: 1px solid #DA0080;
  background-color: #BE9DC6;
  color: #ffffff;
  padding-top: 4px;
}
.bolsa_emprende-cantidad {
  background-color: #7E3D8F;
  padding-top: 5px;
  padding-bottom: 5px;
}
.bolsa_emprende-cantidad h6 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 300;
}
.bolsa_emprende-cantidad h3 {
  margin: 0;
  padding: 0;
  font-size: 43px;
  font-weight: bold;
  font-family: "cera";
  letter-spacing: -2px;
  line-height: 49px;
}
.bolsa_emprende-cantidad h3 span {
  color: #DF7CAF;
}
.bolsa_emprende-cantidad h3.megas {
  font-size: 30px;
}
.bolsa_emprende-precio {
  margin: 0;
  font-size: 40px;
  font-weight: bold;
}
.bolsa_emprende-precio span {
  font-size: 25px;
  font-weight: 300;
  display: inline-block;
  margin-right: 4px;
}
.bolsa_emprende.bolsa_dark {
  background-color: rgba(62, 17, 81, 0.5);
}
.bolsa_emprende.bolsa_dark .bolsa_emprende-cantidad {
  background-color: rgba(62, 17, 81, 0.7);
}
.bolsa_emprende.bolsa_dark .bolsa_emprende-cantidad h3 span {
  color: #DA0080;
}

/* BOX con texto y boton derecho */
.box_text_btn {
  font-size: 0;
  margin-botton: 20px;
}
.box_text_btn .col-left {
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  width: 75%;
  margin-right: 5%;
  color: #5A1A5D;
}
.box_text_btn .col-left p {
  margin: 0;
}
.box_text_btn .col-right {
  width: 20%;
  display: inline-block;
  vertical-align: middle;
}
.box_text_btn .col-right a {
  background-color: transparent;
  font-size: 16px;
}

.oferta_plan-promo-img.mobile-img {
  display: none;
}

.box_mensaje_atencion-small {
  margin: 0;
  font-size: 22px;
  font-weight: 300;
}

.box_mensaje_atencion-medium {
  margin: 0;
  font-size: 33px;
  font-weight: bold;
  font-family: "cera";
}

/* SLIDE HOME EMPRESAS */
.owl-carousel .owl-item img.img_slide_promo_info {
  width: inherit;
  max-width: 280px;
}
.owl-carousel .owl-item img.img_slide_promo_info.auto {
  margin-left: auto;
  margin-right: auto;
}
.owl-carousel .owl-item img.img_slide_promo_info.margin-top-100 {
  margin-top: 100px;
}
.owl-carousel .owl-item img.img_slide_promo_info.margin-bot-40 {
  margin-bottom: 40px;
}
.owl-carousel .owl-item img.img_slide_promo_info.margin-bot-20 {
  margin-bottom: 20px;
}
.owl-carousel .owl-item img.img_slide_promo_info.width330 {
  max-width: 330px;
}

.slide-caption .box-slide.width360 {
  max-width: 360px;
}

@media only screen and (max-width: 1200px) and (min-width: 641px) {
  .slide-caption .box-slide.width360 {
    max-width: 360px;
  }
  .slide-caption .box-slide.width360 .half-1200 {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .box_oferta_planes.internet .oferta_plan-promo-img {
    max-width: 260px;
  }

  .oferta_plan-promo-img {
    display: none;
  }
  .oferta_plan-promo-img.mobile-img {
    display: inline-block;
    width: 100%;
    max-width: 260px;
  }

  .full-mob {
    width: 100%;
  }

  .box_datos_emprende-item {
    margin-bottom: 30px;
  }
  .box_datos_emprende-item.bloque5, .box_datos_emprende-item.bloque2 {
    width: 100%;
  }

  .box_text_btn .col-left,
.box_text_btn .col-right {
    width: 100%;
    text-align: center;
  }
  .box_text_btn .col-left {
    margin-bottom: 15px;
  }

  .csm-slider-item {
    background-size: cover;
    background-position: center center;
    display: none;
  }

  .box_mensaje_atencion:before, .box_mensaje_atencion:after {
    display: none;
  }

  .seccion_plan_emprende-info {
    padding-left: 15px;
    padding-right: 15px;
  }
  .seccion_plan_emprende-btns {
    font-size: 0;
  }
  .seccion_plan_emprende-btns .middle {
    width: 100%;
    margin-bottom: 15px;
  }
  .seccion_plan_emprende-btns .middle:last-child {
    margin-bottom: 0;
  }

  .csm-slider-content .owl-carousel .owl-item img.img_slide_promo_info {
    float: none;
  }
}
.horarios p {
  color: #fff;
  margin: 0;
  text-align: center;
}

.plan-gestor {
  text-align: center;
  margin-bottom: 70px;
  padding: 0 20px;
  color: #3e1051;
  font-weight: 100;
}
.plan-gestor h3 {
  font-size: 18px;
  color: #3e1051;
  margin: 0;
}

/*.lightbox{
    &.row{
        &.animated{
            &.bounceInDown {
                max-width: 640px;
            }
        }
    }    
}*/
.simple-table {
  margin-top: 0;
}

.relav {
  padding: 30px;
  z-index: 99;
  position: relative;
}

.relav-pad-0 {
  z-index: 99;
  position: relative;
}

.bl {
  display: none;
}
@media (max-width: 768px) {
  .bl {
    display: block;
  }
}

.nn {
  display: block;
  color: #3e1051;
  margin-left: 4%;
}
@media (max-width: 768px) {
  .nn {
    display: none;
  }
}

#entrada-roaming {
  background: inherit;
  color: #381750;
}

.intro-planes h2 {
  font-size: 36px;
  color: #4A0E66;
  margin-bottom: 50px;
}
.intro-planes h2 strong {
  font-weight: bold;
}

.bg-ed {
  background: #ededed;
  z-index: 9;
  position: relative;
}
.bg-ed .btn.transparent {
  max-width: 250px;
  width: 100%;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 15px;
}
@media (max-width: 768px) {
  .bg-ed .btn.transparent {
    max-width: 200px;
    padding: 5px;
    font-size: 15px;
  }
}
.bg-ed h3 {
  font-size: 30px;
  color: #3e1051;
  text-transform: initial;
  font-weight: normal;
}
@media (max-width: 768px) {
  .bg-ed h3 {
    font-size: 25px;
  }
}

.solo-phone {
  position: absolute;
  z-index: -9;
  top: -110px;
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .solo-phone {
    left: -150px;
    width: 300px;
    max-width: 300px;
  }
}

.container.relav550 {
  position: relative;
  height: 350px;
}
@media (max-width: 640px) {
  .container.relav550 {
    height: 300px;
  }
}

.head-empresas .head-caption.service-h {
  bottom: 0;
  left: auto;
  margin: auto;
  max-width: 950px;
  padding: 10px 5%;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 2;
  max-width: 450px;
  top: 0;
  height: 250px;
  padding: 0;
}
@media (max-width: 640px) {
  .head-empresas .head-caption.service-h {
    left: 0;
    max-width: 250px;
    padding: 0 10px;
    height: 180px;
  }
}
.head-empresas .head-caption.service-h .btn.btn-sec.btn-fb.rainbow {
  padding: 5px 10px;
  font-size: 14px;
  width: 100%;
  text-align: center;
  max-width: 200px;
}
@media (max-width: 640px) {
  .head-empresas .head-caption.service-h .btn.btn-sec.btn-fb.rainbow {
    max-width: 230px;
  }
}
.head-empresas .head-caption.service-h .btn.btn-sec.btn-fb.rainbow:hover {
  background: #a0065a;
}
.head-empresas .head-caption.service-h h1 {
  font-size: 62px;
  margin: 10px 0;
}
@media (max-width: 640px) {
  .head-empresas .head-caption.service-h h1 {
    font-size: 48px;
  }
}
.head-empresas .head-caption.service-h p {
  font-size: 16px;
  max-width: 330px;
}

/*------------------------------------------------------------------------------Slider */
/*OWL PATCH*/
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.top-slider * {
  color: #fff;
}
.top-slider .owl-nav {
  bottom: 0;
  display: block;
  height: 1px;
  left: 0;
  margin: auto !important;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .top-slider .owl-nav {
    display: none;
  }
}
.top-slider .owl-prev {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/arrow_left.min.svg) 0 0 no-repeat !important;
  display: block !important;
  height: 48px;
  left: 5%;
  position: absolute;
  width: 30px;
  z-index: 1;
  text-indent: -99999px;
  background-size: contain !important;
}
.top-slider .owl-next {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/arrow_right.min.svg) 0 0 no-repeat !important;
  display: block !important;
  height: 48px;
  right: 5%;
  position: absolute;
  width: 30px;
  z-index: 1;
  text-indent: -99999px;
  background-size: contain !important;
}
.top-slider .owl-dots {
  bottom: 10px;
  display: table;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
}
@media only screen and (max-width: 640px) {
  .top-slider .slider-bg {
    display: none !important;
  }
}

.slide-caption {
  bottom: 0;
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .slide-caption {
    position: relative;
    padding: 40px 0;
  }
}
.slide-caption .table-cent {
  display: table;
  height: 100%;
  margin: 0 auto;
  position: relative;
  vertical-align: middle;
  /*max-width: 1100px;*/
  max-width: 950px;
  width: 100%;
}
@media only screen and (min-width: 769px) and (max-width: 1300px) {
  .slide-caption .table-cent {
    width: 74%;
  }
}
@media only screen and (max-width: 640px) {
  .slide-caption .table-cent {
    width: 95%;
    max-width: 100%;
  }
}
.slide-caption .table-cent div {
  padding: 0;
}
.slide-caption .core {
  display: block;
  max-width: 630px;
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.slide-caption .core span {
  background: #3e1051;
  font-size: 19px;
  font-weight: bold;
  padding: 5px 10px;
  margin: 5px;
  display: inline-block;
}
@media only screen and (min-width: 769px) and (max-width: 1300px) {
  .slide-caption .core span {
    font-size: 16px;
  }
}
.slide-caption .box-slide {
  margin: 0 auto;
  max-width: 570px;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 641px) and (max-width: 1200px) {
  .slide-caption .box-slide {
    margin-left: 0;
  }
  .slide-caption .box-slide img {
    margin-top: 10px;
    width: 80%;
  }
}
.slide-caption .box-slide h3 {
  margin: 5px auto 20px;
}
.slide-caption .box-slide .title {
  float: left;
  width: 100%;
}
.slide-caption .box-slide .title h3 {
  display: block;
  float: left;
  width: 100%;
}
.slide-caption .box-slide span {
  background: none;
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}
.slide-caption .box-slide span.purple-square-text {
  background: #3e1051;
  float: left;
  padding: 0 10px 3px;
  text-align: center;
  width: auto;
}
.slide-caption .box-slide span.medium-text {
  font-size: 25px;
  font-weight: 600;
}
.slide-caption .box-slide span.big-text {
  font-size: 33px;
  font-weight: 700;
  margin-top: 7px;
}
@media only screen and (min-width: 641px) and (max-width: 1200px) {
  .slide-caption .box-slide span.medium-text {
    font-size: 26px;
  }
  .slide-caption .box-slide span.big-text {
    font-size: 34px;
  }
}
@media only screen and (max-width: 640px) {
  .slide-caption .box-slide span.medium-text {
    font-size: 29px;
  }
  .slide-caption .box-slide span.big-text {
    font-size: 38px;
  }
}
.slide-caption .box-slide .small-plan {
  border: 3px solid #fff;
  border-radius: 6px;
  display: table;
  float: left;
  padding: 0;
  width: 98%;
}
@media only screen and (min-width: 641px) and (max-width: 1200px) {
  .slide-caption .box-slide .small-plan {
    margin-top: 60px;
  }
}
.slide-caption .box-slide .small-plan .info {
  float: left;
  padding: 0;
  width: 50%;
}
.slide-caption .box-slide .small-plan .info div {
  float: left;
  width: 100%;
}
.slide-caption .box-slide .small-plan .info span {
  font-size: 16px;
  font-weight: 700;
  padding: 0 0 3px;
  text-align: center;
  text-transform: uppercase;
}
.slide-caption .box-slide .small-plan .info span.num {
  font-size: 44px;
  line-height: 35px;
  margin: 0;
  padding: 0;
}
.slide-caption .box-slide .small-plan .info .white-bg * {
  color: #3e1051;
}
@media only screen and (max-width: 768px) {
  .slide-caption .box-slide {
    margin-top: 0;
  }
}
@media only screen and (max-width: 640px) {
  .slide-caption .box-slide {
    display: block;
    float: none;
    margin: 0 auto;
  }
}
.slide-caption .box-slide .lineas {
  height: 34px;
  position: relative;
  top: -4px;
  width: 10px;
}
@media only screen and (min-width: 641px) and (max-width: 1200px) {
  .slide-caption .full-1200 {
    width: 100%;
    max-width: 100%;
  }
  .slide-caption .half-1200 {
    width: 50%;
  }
}

.top-slider {
  margin-top: 84px;
}
@media only screen and (max-width: 768px) {
  .top-slider {
    margin-top: 40px;
  }
}

.csm-slider-content .csm-slider-desk {
  max-height: 560px;
  overflow: hidden;
  position: relative;
  background: #000;
}
@media only screen and (max-width: 768px) {
  .csm-slider-content .csm-slider-desk {
    margin-top: 40px;
  }
}
.csm-slider-content .csm-slider-desk a {
  color: #ffffff;
}
.csm-slider-content .csm-slider-desk .csm-slider-item {
  position: relative;
  text-align: center;
  max-height: 560px;
}
.csm-slider-content .csm-slider-desk .csm-slider-item .csm-slider-text {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  top: -20px;
  z-index: 10;
}
.csm-slider-content .csm-slider-desk .csm-slider-item .csm-slider-text h2 {
  font-weight: 600;
  line-height: 100%;
  /*margin: 0;*/
  margin: 90px 0 0;
  transition: font-size ease 600ms;
  font-size: 42px;
  line-height: 94%;
}
@media only screen and (min-width: 769px) and (max-width: 1300px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item .csm-slider-text h2 {
    font-size: 32px;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item .csm-slider-text h2 {
    margin: 0;
    font-size: 26px;
  }
}
@media only screen and (max-width: 640px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item .csm-slider-text h2 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item .csm-slider-text h2 {
    font-size: 3rem;
  }
}
.csm-slider-content .csm-slider-desk .csm-slider-item .csm-slider-text p {
  font-size: 14px;
  font-weight: 100;
  line-height: 120%;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item .csm-slider-text p {
    margin-bottom: 0;
  }
}
.csm-slider-content .csm-slider-desk .csm-slider-item.to-left-slider {
  /*.core {
    float: left;
  }*/
}
.csm-slider-content .csm-slider-desk .csm-slider-item.to-left-slider .csm-slider-text h2 {
  float: left;
  text-align: left;
  width: 75%;
}
@media only screen and (max-width: 1300px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item.to-left-slider .csm-slider-text h2 {
    font-size: 32px;
    width: 100%;
  }
}
.csm-slider-content .csm-slider-desk .csm-slider-item.to-left-slider .csm-slider-text p {
  text-align: left;
  clear: both;
  padding-top: 20px;
}
@media only screen and (min-width: 769px) and (max-width: 1300px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item.to-left-slider .csm-slider-text p {
    margin-bottom: 5px;
    line-height: 94%;
    font-size: 16px;
  }
}
.csm-slider-content .csm-slider-desk .csm-slider-item.to-left-slider .csm-slider-text .csm-btn {
  float: left;
  clear: both;
}
@media only screen and (max-width: 640px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item.to-left-slider .csm-slider-text h2 {
    float: none;
    text-align: center;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) and (min-width: 769px) and (max-width: 1300px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item.to-left-slider .csm-slider-text h2 {
    font-size: 32px;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item.to-left-slider .csm-slider-text p {
    text-align: center;
    clear: none;
    padding-top: 0;
  }
}
@media only screen and (max-width: 640px) and (min-width: 769px) and (max-width: 1300px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item.to-left-slider .csm-slider-text p {
    margin-bottom: 5px;
    line-height: 94%;
    font-size: 16px;
  }
}
@media only screen and (max-width: 640px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item.to-left-slider .csm-slider-text .csm-btn {
    float: none;
    clear: none;
  }
}
.csm-slider-content .csm-slider-desk .csm-slider-item.to-right-slider .csm-slider-text h2 {
  float: right;
  text-align: right;
  width: 75%;
}
@media only screen and (min-width: 769px) and (max-width: 1300px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item.to-right-slider .csm-slider-text h2 {
    font-size: 32px;
  }
}
.csm-slider-content .csm-slider-desk .csm-slider-item.to-right-slider .csm-slider-text p {
  clear: both;
  padding-top: 20px;
  text-align: right;
}
@media only screen and (min-width: 769px) and (max-width: 1300px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item.to-right-slider .csm-slider-text p {
    margin-bottom: 5px;
    line-height: 94%;
  }
}
.csm-slider-content .csm-slider-desk .csm-slider-item.to-right-slider .csm-slider-text .csm-btn {
  float: right;
  clear: both;
}
.csm-slider-content .csm-slider-desk .csm-slider-item.to-right-slider .core {
  float: right;
}
@media only screen and (max-width: 640px) {
  .csm-slider-content .csm-slider-desk .csm-slider-item.to-right-slider .csm-slider-text h2 {
    float: none;
    text-align: center;
    width: 100%;
  }
  .csm-slider-content .csm-slider-desk .csm-slider-item.to-right-slider .csm-slider-text p {
    text-align: center;
    clear: none;
    padding-top: 0;
  }
  .csm-slider-content .csm-slider-desk .csm-slider-item.to-right-slider .csm-slider-text .csm-btn {
    float: none;
    clear: none;
  }
}
.csm-slider-content .csm-slider-desk .owl-item .csm-slider-text {
  opacity: 0;
}
.csm-slider-content .csm-slider-desk .owl-item.active .csm-slider-text {
  opacity: 1;
  top: 0;
  transition: all 600ms ease;
  transition-delay: 1000ms ease;
}
.csm-slider-content .owl-controls .owl-dots {
  left: 0;
  position: absolute;
  text-align: center;
  bottom: 10px;
  width: 100%;
}
.csm-slider-content .owl-controls .owl-dots .owl-dot {
  display: inline-block;
}
.csm-slider-content .owl-controls .owl-dots .owl-dot span {
  background-color: #ffffff;
  border: medium none;
  border-radius: 100%;
  display: block;
  height: 12px;
  margin: 5px 7px;
  opacity: 0.4;
  width: 12px;
}
.csm-slider-content .owl-controls .owl-dots .owl-dot.active span {
  opacity: 1;
  transition: all 300ms ease;
}
.csm-slider-content .owl-controls .owl-dots .owl-dot:hover span {
  opacity: 1;
  transition: all 300ms ease;
}

.csm-slider-content .csm-slider-desk .csm-slider-item .csm-slider-text {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .csm-slider-content .csm-slider-desk a .csm-slider-item .csm-slider-text h2 {
    font-size: 30px;
  }
  .csm-slider-content .csm-slider-desk a .csm-slider-item .csm-slider-text p {
    font-size: 13px;
  }
}

.cel-img {
  /*width: 50%;*/
}
.cel-img img {
  width: 100%;
  max-width: 470px;
}

.v-cent-img {
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .v-cent-img {
    padding: 50px 0 10px;
  }
}

.cle-descripcion {
  width: 50%;
}

.product-slider {
  padding: 0 10px;
}
@media only screen and (min-width: 769px) and (max-width: 1245px) {
  .product-slider {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
.product-slider .cel-descripcion h3.product-title {
  color: #3e1051;
  float: left;
  font-size: 60px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  width: 100%;
}
.product-slider .cel-descripcion h3.product-title span {
  color: #5d5d5d;
  font-size: 24px;
  font-weight: 100;
  line-height: normal;
  margin-bottom: -14px;
  text-align: left;
  float: left;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .product-slider .cel-descripcion h3.product-title {
    margin-top: 0;
  }
}
.product-slider .cel-descripcion ul {
  float: left;
  margin: 10px 0;
}
.product-slider .cel-descripcion li {
  color: #6a6a6a;
  margin-bottom: 10px;
  text-align: left;
  list-style: none;
  position: relative;
  padding: 0 0 0 14px;
}
.product-slider .cel-descripcion li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid #6E557D;
}
.product-slider .cel-descripcion .cuota-cel {
  color: #5d5d5d;
  font-size: 75px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.product-slider .cel-descripcion .cuota-cel .c-text {
  float: left;
  font-size: 15px;
  width: 100%;
}
@media only screen and (max-width: 960px) {
  .product-slider .cel-descripcion .cuota-cel .c-text {
    font-size: 22px;
  }
}
.product-slider .cel-descripcion .cuota-cel .c-number {
  margin: -8px 0 10px 0;
  float: left;
  color: #3e1051;
  line-height: normal;
  width: 100%;
  position: relative;
  font-size: 40px;
}
@media only screen and (max-width: 960px) {
  .product-slider .cel-descripcion .cuota-cel .c-number {
    font-size: 45px;
  }
}
.product-slider .cel-descripcion .cuota-cel .c-number i {
  font-size: 23px;
  font-style: normal;
}
@media only screen and (max-width: 960px) {
  .product-slider .cel-descripcion .cuota-cel .c-number i {
    font-size: 19px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 960px) {
  .product-slider .btn, .product-slider .link.big {
    font-size: 13px;
  }
}
.product-slider .owl-nav {
  bottom: 0;
  height: 1px;
  margin: auto;
  position: absolute;
  top: 0;
  width: 100%;
}
.product-slider .owl-prev {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/slider-p-arrows.svg) -16px 0 no-repeat;
  display: block !important;
  height: 20px;
  text-indent: -999999px;
  width: 20px;
  z-index: 10;
  position: absolute;
  left: -10px;
}
.product-slider .owl-next {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/slider-p-arrows.svg) 4px 0 no-repeat;
  display: block !important;
  height: 20px;
  text-indent: -999999px;
  width: 20px;
  z-index: 10;
  position: absolute;
  right: -10px;
}
@media only screen and (max-width: 1245px) {
  .product-slider .owl-prev {
    left: 0;
  }
  .product-slider .owl-next {
    right: 0;
  }
}

@media only screen and (min-width: 641px) and (max-width: 1200px) {
  .rounded-1200 {
    border-radius: 8px;
    overflow: hidden;
    width: 96% !important;
  }
}
@media only screen and (max-width: 640px) {
  .csm-slider-content .csm-slider-desk {
    max-height: 10000px;
  }
  .csm-slider-content .csm-slider-desk .csm-slider-item {
    max-height: 10000px;
  }
  .csm-slider-content .csm-slider-desk .csm-slider-item img {
    float: left;
  }
  .csm-slider-content .csm-slider-desk .csm-slider-item .csm-slider-text {
    position: relative;
    width: 100%;
    top: 0;
    float: left;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .csm-slider-content .csm-slider-desk .csm-slider-item .csm-slider-text h2, .csm-slider-content .csm-slider-desk .csm-slider-item .csm-slider-text p {
    color: #fff;
  }
}
.small2x1 {
  position: absolute;
  width: 150px !important;
  height: 135px;
  top: auto;
  z-index: 999;
  bottom: 40px;
  left: auto;
  right: 10px;
  margin: auto;
}
@media (max-width: 640px) {
  .small2x1 {
    display: none !important;
  }
}

.bwom .container {
  padding: 0;
}

.bwom .content {
  margin: 30px auto 0;
  display: flex;
}

.bwom .content .col {
  float: left;
  width: 50%;
  display: flex;
  align-items: flex-end;
}

.bwom .content .col.left {
  justify-content: flex-start;
  margin-left: 0;
}

.bwom .content .col.right {
  justify-content: flex-end;
}

.bwom .content .col.left div {
  max-width: 600px;
  float: left;
}

.bwom .content .col.right div {
  max-width: 230px;
  float: right;
  text-align: center;
}

.btn-block {
  display: block !important;
}

@media only screen and (max-width: 640px) {
  .slide-caption {
    position: relative;
    padding: 0;
  }

  .bwom .content {
    flex-flow: column wrap;
    margin: 20px auto 0;
  }

  .bwom .content .col.left div {
    max-width: 410px;
    float: none;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .csm-slider-text {
    margin-top: 75px !important;
  }

  .bwom .content .col {
    float: none;
    width: 100%;
  }

  .bwom .content .col.right div {
    margin: auto;
  }

  .bwom .content .col.right div img {
    float: none !important;
    max-width: 300px;
    margin: 0 auto 10px;
  }
}
@media only screen and (max-width: 360px) {
  .csm-slider-text {
    margin-top: 100px !important;
  }
}
.nav_slider {
  min-height: 110px;
}

@media screen and (max-width: 480px) {
  .main .banners .banner_main .carousel, .main .new_slider .slider_home .wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.nav_slider_link-titulo {
  font-size: 17px;
}

.nav_slider {
  min-height: 90px;
}

.nav_slider_link {
  min-height: 80px;
}

.wrapper {
  max-width: 1280px;
  width: 95%;
}

.nav_slider {
  background-color: #1d0c36;
}

.nav_slider .wrapper {
  margin-left: auto;
  margin-right: auto;
}

.nav_slider-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.nav_slider_link {
  text-align: center;
  text-decoration: none;
  color: #fff;
  position: relative;
  padding: 20px 10px 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  cursor: pointer;
}

.nav_slider_link-titulo {
  font-weight: 500;
  font-size: 18px;
  display: block;
  margin-bottom: 3px;
}

.nav_slider_link-bajada {
  font-size: 12px;
  display: block;
}

.nav_slider_link:after {
  content: "";
  width: 1px;
  background-color: rgba(255, 255, 255, 0.18);
  height: 80%;
  top: 10%;
  right: 0;
  display: block;
  position: absolute;
}

.nav_slider_link.active {
  background-color: #641672;
}

.nav_slider_link.active:before {
  content: "";
  width: 0;
  height: 0;
  border-right: 20px solid transparent;
  border-top: 32px solid transparent;
  border-left: 20px solid transparent;
  border-bottom: 16px solid #641672;
  background-color: transparent;
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  z-index: 999999;
}

.nav_slider_link:hover {
  background-color: #2a134d;
}

.nav_slider_link:hover:before {
  content: "";
  width: 0;
  height: 0;
  border-right: 20px solid transparent;
  border-top: 32px solid transparent;
  border-left: 20px solid transparent;
  border-bottom: 16px solid #2a134d;
  background-color: transparent;
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
}

.nav_slider_link:last-child:after {
  display: none;
}

@media screen and (max-width: 480px) {
  .nav_slider {
    display: none;
  }

  .height-static-empresas {
    min-height: 540px !important;
  }
}
.height-static-empresas {
  min-height: 480px;
}

.roaming {
  text-align: center;
}
.roaming h3 {
  font-size: 18px;
}

.tarifas-roaming {
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}

.tarifario {
  margin-bottom: 20px;
}
.tarifario thead tr {
  height: 60px;
}
.tarifario thead tr th {
  padding: 15px;
  background-color: #ffffff;
}
.tarifario thead tr th:first-child {
  background-color: #4A0E66;
  color: #ffffff;
  text-align: left;
}
.tarifario tbody tr {
  height: 60px;
}
.tarifario tbody tr td {
  text-align: center;
  padding: 15px;
  background-color: #E8E8E8;
}
.tarifario tbody tr td:first-child {
  background-color: #430C5C;
  color: #ffffff;
  text-align: left;
}
.tarifario tbody tr:nth-child(2n) td {
  background-color: #ffffff;
}
.tarifario tbody tr:nth-child(2n) td:first-child {
  background-color: #4A0E66;
}

.cobertura {
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}
.cobertura .white-square {
  background: #ffffff;
  padding: 0 24px 24px;
}
.cobertura form label {
  display: block;
  margin-bottom: 16px;
  font-size: 15px;
}
.cobertura form input {
  display: block;
  text-align: center;
  width: 100%;
  border: 1px solid #979797;
  padding: 10px 10px;
  margin-bottom: 16px;
}
.cobertura .operador {
  background: #4A0E66;
  color: #ffffff;
}
.cobertura .operador ul {
  list-style: none;
  text-align: left;
  padding: 10px;
}
.cobertura .costos-cobertura {
  width: 100%;
  margin-bottom: 20px;
}
.cobertura .costos-cobertura tr {
  background: #ffffff;
}
.cobertura .costos-cobertura tr.gray {
  background: #F2F2F2;
}
.cobertura .costos-cobertura tr td {
  padding: 8px 10px;
}
.cobertura .costos-cobertura tr th {
  padding: 8px 10px;
}
.cobertura .costos-cobertura .title-td {
  border-right: 1px solid #D9D9D9;
}
.cobertura .costos-cobertura .b-top {
  border-top: 1px solid #D9D9D9;
}

.sub-title {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 2rem;
  color: #551261;
  margin-bottom: 0.8rem;
  text-transform: lowercase;
}

.pasos_roaming_control {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
}
@media only screen and (max-width: 640px) {
  .pasos_roaming_control {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
.pasos_roaming_control .pasos_roaming_control_item {
  color: #421259;
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.pasos_roaming_control .pasos_roaming_control_item:last-child:before {
  display: none;
}
@media only screen and (max-width: 640px) {
  .pasos_roaming_control .pasos_roaming_control_item {
    padding-left: 6rem;
    padding-bottom: 2rem;
  }
}
.pasos_roaming_control .pasos_roaming_control_item::before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  border: 1px solid #68007b;
  top: 2.8rem;
  left: 50%;
  z-index: 0;
}
@media only screen and (max-width: 640px) {
  .pasos_roaming_control .pasos_roaming_control_item::before {
    height: 100%;
    width: 0;
    top: 40px;
    left: 40px;
  }
}
.pasos_roaming_control .pasos_roaming_control_item .btn {
  max-width: 220px;
  margin: 35px auto 0;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .pasos_roaming_control .pasos_roaming_control_item .btn {
    margin-top: 0;
  }
}
.pasos_roaming_control figure {
  text-align: center;
  z-index: 1;
}
@media only screen and (max-width: 640px) {
  .pasos_roaming_control figure {
    position: absolute;
    left: 0;
    top: 0;
    width: 84px;
    height: 84px;
  }
}
@media only screen and (max-width: 640px) {
  .pasos_roaming_control figure img {
    max-width: 100%;
  }
}
.pasos_roaming_control h3 {
  font-size: 2rem;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .pasos_roaming_control h3 {
    margin-bottom: 0.4rem;
    margin-top: 0;
  }
}
.pasos_roaming_control h3 span {
  color: #b3b9bd;
  font-size: 4rem;
}
@media only screen and (max-width: 640px) {
  .pasos_roaming_control h3 span {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 640px) {
  .pasos_roaming_control p {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
  }
}
.pasos_roaming_control ul li {
  list-style-type: none;
  font-size: 0.8rem;
  padding-left: 1rem;
  position: relative;
  min-height: 20px;
  margin-bottom: 0.5rem;
}
.pasos_roaming_control ul li::before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  background-color: #bbbfc2;
  border-radius: 50%;
}
.pasos_roaming_control ul li span {
  color: #ff2270;
}

.internet .intro-planes .h2 {
  text-transform: none !important;
  font-weight: 500;
}
.internet .intro-planes .h1 {
  font-weight: 500;
}
.internet .box-device * {
  float: none;
}
.internet .legal {
  color: rgba(255, 255, 255, 0.61);
  margin: 0.625rem 0;
  text-align: center;
  font-size: 0.8125rem;
}

.main-head {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-image: linear-gradient(18deg, #701a7f 0%, #641672 100%);
  /*------------------------------------------------------------------------------ Mixins */
  /* HTML5 display-role reset for older browsers */
}
.main-head #nav-hx {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #6f1a7e), to(#2b0a37));
}
.main-head article, .main-head aside, .main-head details, .main-head figcaption, .main-head figure,
.main-head footer, .main-head header, .main-head hgroup, .main-head menu, .main-head nav, .main-head section {
  display: block;
}
.main-head ol, .main-head ul {
  list-style: none;
}
.main-head blockquote, .main-head q {
  quotes: none;
}
.main-head blockquote:before, .main-head blockquote:after,
.main-head q:before, .main-head q:after {
  content: "";
  content: none;
}
.main-head .circle-movil, .main-head .circle, .main-head .circle-ayuda {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main-head .accesos-top .right-link .icon-footer-call::before {
  position: static;
}
.main-head .accesos-top .right-link .mr6 {
  margin-right: 6px;
}
.main-head .circle {
  border: 1px solid #fff;
  border-radius: 100%;
  height: 110px;
  left: 50%;
  margin-left: -55px;
  margin-top: -55px;
  position: absolute;
  top: 50%;
  width: 110px;
}
.main-head .circle-movil {
  border: 1px solid #fff;
  border-radius: 100%;
  height: 90px;
  left: 15px;
  margin-left: 0;
  margin-top: 0;
  position: absolute;
  top: 15px;
  width: 90px;
}
.main-head .circle-ayuda {
  border: 1px solid #fff;
  border-radius: 100%;
  height: 84px;
  left: 9px;
  margin-left: 0;
  margin-top: 0;
  position: absolute;
  top: 5px;
  width: 84px;
}
.main-head .logo-wraper img {
  position: relative;
  z-index: 999;
}
@keyframes "pulse2" {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  15% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes pulse2 {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -moz-transform: scale(0.9);
    transform: scale(0.9);
  }
  15% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  20% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes "pulse2" {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  15% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-ms-keyframes "pulse2" {
  0% {
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  15% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.main-head .pulse2 {
  -webkit-animation: pulse2 2000ms linear infinite;
  -moz-animation: pulse2 2000ms linear infinite;
  -ms-animation: pulse2 2000ms linear infinite;
  animation: pulse2 2000ms linear infinite;
}
@keyframes "pulse3" {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  20% {
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 1;
    border: 6px solid #fff;
  }
  40% {
    opacity: 0;
    border: 1px solid #fff;
  }
  100% {
    -moz-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
@-webkit-keyframes "pulse3" {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  20% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 1;
    -webkit-opacity: 1;
    border: 6px solid #fff;
  }
  40% {
    opacity: 0;
    -webkit-opacity: 0;
    border: 1px solid #fff;
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
@-moz-keyframes pulse3 {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -moz-transform: scale(0.9);
    transform: scale(0.9);
  }
  20% {
    -moz-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 1;
    border: 6px solid #fff;
  }
  40% {
    opacity: 0;
    border: 1px solid #fff;
  }
  100% {
    -moz-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.main-head .pulse3 {
  -webkit-animation: pulse3 2000ms linear infinite;
  -moz-animation: pulse3 2000ms linear infinite;
  -ms-animation: pulse3 2000ms linear infinite;
  animation: pulse3 2000ms linear infinite;
}
.main-head * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main-head article, .main-head aside, .main-head details, .main-head figcaption, .main-head figure, .main-head footer, .main-head header, .main-head hgroup, .main-head main, .main-head nav, .main-head section, .main-head summary {
  display: block;
}
.main-head audio, .main-head canvas, .main-head video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.main-head audio:not([controls]) {
  display: none;
  height: 0;
}
.main-head [hidden] {
  display: none;
}
.main-head html {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
.main-head button, .main-head html, .main-head input, .main-head select, .main-head textarea {
  font-family: "ceraregular";
}
.main-head body {
  font-family: "ceraregular";
  margin: 0;
  font-size: 16px;
}
.main-head a:focus {
  outline: thin dotted;
}
.main-head a:active, .main-head a:hover {
  outline: 0;
}
.main-head :after, .main-head :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main-head h1 {
  font-size: 2em;
  margin-top: 0;
}
.main-head h2 {
  font-size: 1.5em;
}
.main-head h3 {
  font-size: 1.17em;
}
.main-head h4 {
  font-size: 1em;
}
.main-head h5 {
  font-size: 0.83em;
}
.main-head h6 {
  font-size: 0.67em;
}
.main-head b, .main-head strong {
  font-weight: 700;
}
.main-head dfn {
  font-style: italic;
}
.main-head hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
.main-head mark {
  background: #ff0;
  color: #000;
}
.main-head p, .main-head pre {
  margin: 0;
}
.main-head code, .main-head kbd, .main-head pre, .main-head samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}
.main-head pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.main-head q {
  quotes: none;
}
.main-head q:after, .main-head q:before {
  content: "";
  content: none;
}
.main-head small {
  font-size: 80%;
}
.main-head sub, .main-head sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.main-head sup {
  top: -0.5em;
}
.main-head sub {
  bottom: -0.25em;
}
.main-head dl, .main-head menu, .main-head ol, .main-head ul {
  margin: 0;
}
.main-head dd {
  margin: 0 0 0 40px;
}
.main-head menu, .main-head ol {
  padding: 0;
}
.main-head nav ol, .main-head nav ul {
  list-style: none;
  list-style-image: none;
}
.main-head img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
.main-head svg:not(:root) {
  overflow: hidden;
}
.main-head figure, .main-head form {
  margin: 0;
}
.main-head button, .main-head input, .main-head select, .main-head textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
.main-head button, .main-head input {
  line-height: normal;
}
.main-head button, .main-head select {
  text-transform: none;
}
.main-head button, .main-head html input[type=button], .main-head input[type=reset], .main-head input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}
.main-head button[disabled], .main-head html input[disabled] {
  cursor: not-allowed;
}
.main-head input[type=checkbox], .main-head input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}
.main-head input[type=search] {
  -webkit-appearance: textfield;
}
.main-head input[type=search]::-webkit-search-cancel-button, .main-head input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.main-head button::-moz-focus-inner, .main-head input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.main-head textarea {
  overflow: auto;
  vertical-align: top;
}
.main-head table {
  border-collapse: collapse;
  border-spacing: 0;
}
.main-head button, .main-head html, .main-head input, .main-head select, .main-head textarea {
  color: #222;
}
.main-head body {
  font-size: 1em;
  line-height: 1.5;
}
.main-head ::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
.main-head ::selection {
  background: #b3d4fc;
  text-shadow: none;
}
.main-head hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
.main-head img {
  vertical-align: middle;
}
.main-head fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
.main-head textarea {
  resize: vertical;
}
.main-head .chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
.main-head pre {
  overflow: auto;
}
.main-head code, .main-head kbd, .main-head pre, .main-head samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
.main-head code, .main-head kbd, .main-head pre, .main-head samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
.main-head ul {
  list-style-position: inside;
}
.main-head code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  white-space: nowrap;
  border-radius: 4px;
}
.main-head kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.main-head pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  word-break: break-all;
  word-wrap: break-word;
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.main-head pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.main-head a {
  outline: none;
}
.main-head a:focus, .main-head a:active, .main-head a:visited {
  outline: 0 none;
}
.main-head .btn {
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
  margin: 10px;
  display: block;
  text-decoration: none;
  max-width: 280px;
}
.main-head .btn-fb.btn-pri {
  background: #472D5C;
  color: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.6);
}
.main-head .btn-fb.btn-pri:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.6);
}
.main-head .btn-fb.btn-sec {
  background: #701B89;
  color: #fff;
}
.main-head .btn-fb.btn-ghost {
  color: #701B89;
  box-shadow: inset 0 0 0 2px #701B89;
}
.main-head .btn-fb.btn-ghost:before {
  background: #701B89 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  -ms-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -o-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: 0 50% 0;
  -moz-transform-origin: 0 50% 0;
  -ms-transform-origin: 0 50% 0;
  -webkit-transform-origin: 0 50% 0;
  -o-transform-origin: 0 50% 0;
  transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-property: transform;
  -ms-transition-property: transform;
  -moz-transition-property: transform;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  z-index: -1;
}
.main-head .btn-fb.btn-ghost:hover {
  color: #fff;
}
.main-head .btns-oscuro {
  padding: 100px 0;
  background: #472D5C;
  overflow: hidden;
}
.main-head .btns-oscuro h2 {
  color: #fff;
}
.main-head .btn-fo.btn-pri {
  background: #e50981;
  color: #fff;
}
.main-head .btn-fo.btn-pri:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.6);
}
.main-head .btn-fo.btn-sec {
  background: #701B89;
  color: #fff;
}
.main-head .btn-fo.btn-ghost {
  color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}
.main-head .btn-fo.btn-ghost:before {
  background: #fff none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  -moz-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform-origin: 0 50% 0;
  -webkit-transform-origin: 0 50% 0;
  -moz-transform-origin: 0 50% 0;
  -ms-transform-origin: 0 50% 0;
  -o-transform-origin: 0 50% 0;
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-property: transform;
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  -ms-transition-property: transform;
  -o-transition-property: transform;
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  z-index: -1;
}
.main-head .btn-fo.btn-ghost:hover {
  color: #472D5C;
}
.main-head .btn {
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  box-shadow: 0 0 1px transparent;
  display: inline-block;
  position: relative;
  transform: translateZ(0px);
  -moz-transform: translateZ(0px);
  -o-transform: translateZ(0px);
  -webkit-transform: translateZ(0px);
  -ms-transform: translateZ(0px);
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-property: color;
  -moz-transition-property: color;
  -ms-transition-property: color;
  -o-transition-property: color;
  -moz-transition-property: color;
  vertical-align: middle;
}
.main-head .btn::before {
  background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  -moz-transform: scaleX(0);
  -o-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform-origin: 0 50% 0;
  -moz-transform-origin: 0 50% 0;
  -webkit-transform-origin: 0 50% 0;
  -o-transform-origin: 0 50% 0;
  -ms-transform-origin: 0 50% 0;
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-property: transform;
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  -o-transition-property: transform;
  -ms-transition-property: transform;
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  z-index: -1;
}
.main-head .btn:hover, .main-head .btn:focus, .main-head .btn:active {
  color: #fff;
}
.main-head .btn:hover::before, .main-head .btn:focus::before, .main-head .btn:active::before {
  transform: scaleX(1);
  -moz-transform: scaleX(1);
  -o-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
}
@media print {
  .main-head * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .main-head a, .main-head a:visited {
    text-decoration: underline;
  }
  .main-head a[href]:after {
    content: " (" attr(href) ")";
  }
  .main-head abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .main-head .ir a:after, .main-head a[href^="javascript:"]:after, .main-head a[href^="#"]:after {
    content: "";
  }
  .main-head blockquote, .main-head pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  .main-head thead {
    display: table-header-group;
  }
  .main-head img, .main-head tr {
    page-break-inside: avoid;
  }
  .main-head img {
    max-width: 100% !important;
  }
  @page {
    .main-head {
      margin: 0.5cm;
    }
  }
  .main-head h2, .main-head h3, .main-head p {
    orphans: 3;
    widows: 3;
  }
  .main-head h2, .main-head h3 {
    page-break-after: avoid;
  }
}
@font-face {
  .main-head {
    font-family: "cerablack";
    src: url(https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-black.otf);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
}
@font-face {
  .main-head {
    font-family: "cerabold";
    src: url(https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-bold.otf);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
}
@font-face {
  .main-head {
    font-family: "ceramedium";
    src: url(https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-medium.otf);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
}
@font-face {
  .main-head {
    font-family: "ceraregular";
    src: url(https://1701336841.rsc.cdn77.org/_assets/fonts/emprende/cera-regular.otf);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
}
.main-head body {
  line-height: 1.2;
  font-family: "ceraregular";
  -moz-font-feature-settings: lnum;
  -webkit-font-feature-settings: lnum;
  font-feature-settings: lnum;
}
.main-head body.numerical {
  -moz-font-feature-settings: lnum;
  -webkit-font-feature-settings: lnum;
  font-feature-settings: lnum;
}
.main-head .clearfix, .main-head .info-planes-equipo .doble-cont {
  *zoom: 1;
  clear: both;
}
.main-head .clearfix:before, .main-head .info-planes-equipo .doble-cont:before, .main-head .clearfix:after, .main-head .info-planes-equipo .doble-cont:after {
  content: " ";
  display: table;
}
.main-head .clearfix:after, .main-head .info-planes-equipo .doble-cont:after {
  clear: both;
}
.main-head a {
  text-decoration: none;
}
.main-head .row {
  width: 95%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.main-head .row.mini {
  max-width: 840px;
}
.main-head .row-no-rs {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.main-head .non-point {
  list-style: none;
}
.main-head .row [class*=col], .main-head .row-no-rs [class*=col] {
  display: block;
  float: left;
  margin-right: 2%;
}
.main-head .row [class*=col].last, .main-head .row-no-rs [class*=col].last {
  margin-right: 0;
}
@media only screen and (max-width: 640px) {
  .main-head .row [class*=col].down, .main-head .row-no-rs [class*=col].down {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .main-head .row [class*=col].down-tablets-vertical, .main-head .row-no-rs [class*=col].down-tablets-vertical {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 841px) {
  .main-head .row [class*=col].down-tablets-horizontal, .main-head .row-no-rs [class*=col].down-tablets-horizontal {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .row [class*=col].down-half-mobile, .main-head .row-no-rs [class*=col].down-half-mobile {
    width: 48.6%;
  }
  .main-head .row [class*=col].down-half-mobile.last-half, .main-head .row-no-rs [class*=col].down-half-mobile.last-half {
    margin-right: 0;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  .main-head .row [class*=col].down-half-tablets-horizontal, .main-head .row-no-rs [class*=col].down-half-tablets-horizontal {
    width: 48.6%;
  }
  .main-head .row [class*=col].down-half-tablets-horizontal.last-half, .main-head .row-no-rs [class*=col].down-half-tablets-horizontal.last-half {
    margin-right: 0;
  }
}
.main-head .col-1 {
  width: 6.5%;
}
.main-head .col-offset-1 {
  margin-left: 6.5%;
}
.main-head .col-2 {
  width: 15%;
}
.main-head .col-offset-2 {
  margin-left: 15%;
}
.main-head .col-3 {
  width: 23.5%;
}
.main-head .col-offset-3 {
  margin-left: 23.5%;
}
.main-head .col-4 {
  width: 32%;
}
.main-head .col-offset-4 {
  margin-left: 32%;
}
.main-head .col-5 {
  width: 40.5%;
}
.main-head .col-offset-5 {
  margin-left: 40.5%;
}
.main-head .col-6 {
  width: 49%;
}
.main-head .col-offset-6 {
  margin-left: 49%;
}
.main-head .col-7 {
  width: 57.5%;
}
.main-head .col-offset-7 {
  margin-left: 57.5%;
}
.main-head .col-8 {
  width: 66%;
}
.main-head .col-offset-8 {
  margin-left: 66%;
}
.main-head .col-9 {
  width: 74.5%;
}
.main-head .col-offset-9 {
  margin-left: 74.5%;
}
.main-head .col-10 {
  width: 83%;
}
.main-head .col-offset-10 {
  margin-left: 83%;
}
.main-head .col-11 {
  width: 91.5%;
}
.main-head .col-offset-11 {
  margin-left: 91.5%;
}
.main-head .row [class*=col-n-m], .main-head .row-no-rs [class*=col-n-m] {
  display: block;
  float: left;
  margin-right: 0;
}
.main-head .row [class*=col-n-m].last, .main-head .row-no-rs [class*=col-n-m].last {
  margin-right: 0;
}
@media only screen and (max-width: 640px) {
  .main-head .row [class*=col-n-m].down, .main-head .row-no-rs [class*=col-n-m].down {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .main-head .row [class*=col-n-m].down-tablets-vertical, .main-head .row-no-rs [class*=col-n-m].down-tablets-vertical {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 841px) {
  .main-head .row [class*=col-n-m].down-tablets-horizontal, .main-head .row-no-rs [class*=col-n-m].down-tablets-horizontal {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .row [class*=col-n-m].down-half-mobile, .main-head .row-no-rs [class*=col-n-m].down-half-mobile {
    width: 48.6%;
  }
  .main-head .row [class*=col-n-m].down-half-mobile.last-half, .main-head .row-no-rs [class*=col-n-m].down-half-mobile.last-half {
    margin-right: 0;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  .main-head .row [class*=col-n-m].down-half-tablets-horizontal, .main-head .row-no-rs [class*=col-n-m].down-half-tablets-horizontal {
    width: 48.6%;
  }
  .main-head .row [class*=col-n-m].down-half-tablets-horizontal.last-half, .main-head .row-no-rs [class*=col-n-m].down-half-tablets-horizontal.last-half {
    margin-right: 0;
  }
}
.main-head .col-n-m-1 {
  width: 8.33333%;
}
.main-head .col-n-m-offset-1 {
  margin-left: 8.33333%;
}
.main-head .col-n-m-2 {
  width: 16.66667%;
}
.main-head .col-n-m-offset-2 {
  margin-left: 16.66667%;
}
.main-head .col-n-m-3 {
  width: 25%;
}
.main-head .col-n-m-offset-3 {
  margin-left: 25%;
}
.main-head .col-n-m-4 {
  width: 33.33333%;
}
.main-head .col-n-m-offset-4 {
  margin-left: 33.33333%;
}
.main-head .col-n-m-5 {
  width: 41.66667%;
}
.main-head .col-n-m-offset-5 {
  margin-left: 41.66667%;
}
.main-head .col-n-m-6 {
  width: 50%;
}
.main-head .col-n-m-offset-6 {
  margin-left: 50%;
}
.main-head .col-n-m-7 {
  width: 58.33333%;
}
.main-head .col-n-m-offset-7 {
  margin-left: 58.33333%;
}
.main-head .col-n-m-8 {
  width: 66.66667%;
}
.main-head .col-n-m-offset-8 {
  margin-left: 66.66667%;
}
.main-head .col-n-m-9 {
  width: 75%;
}
.main-head .col-n-m-offset-9 {
  margin-left: 75%;
}
.main-head .col-n-m-10 {
  width: 83.33333%;
}
.main-head .col-n-m-offset-10 {
  margin-left: 83.33333%;
}
.main-head .col-n-m-11 {
  width: 91.66667%;
}
.main-head .col-n-m-offset-11 {
  margin-left: 91.66667%;
}
.main-head .row [class*=col-m], .main-head .row-no-rs [class*=col-m] {
  display: block;
  float: left;
  margin-right: 3%;
}
.main-head .row [class*=col-m].last, .main-head .row-no-rs [class*=col-m].last {
  margin-right: 0;
}
@media only screen and (max-width: 640px) {
  .main-head .row [class*=col-m].down, .main-head .row-no-rs [class*=col-m].down {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .main-head .row [class*=col-m].down-tablets-vertical, .main-head .row-no-rs [class*=col-m].down-tablets-vertical {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 841px) {
  .main-head .row [class*=col-m].down-tablets-horizontal, .main-head .row-no-rs [class*=col-m].down-tablets-horizontal {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .row [class*=col-m].down-half-mobile, .main-head .row-no-rs [class*=col-m].down-half-mobile {
    width: 48.6%;
  }
  .main-head .row [class*=col-m].down-half-mobile.last-half, .main-head .row-no-rs [class*=col-m].down-half-mobile.last-half {
    margin-right: 0;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  .main-head .row [class*=col-m].down-half-tablets-horizontal, .main-head .row-no-rs [class*=col-m].down-half-tablets-horizontal {
    width: 48.6%;
  }
  .main-head .row [class*=col-m].down-half-tablets-horizontal.last-half, .main-head .row-no-rs [class*=col-m].down-half-tablets-horizontal.last-half {
    margin-right: 0;
  }
}
.main-head .col-m-1 {
  width: 7.3%;
}
.main-head .col-m-offset-1 {
  margin-left: 7.3%;
}
.main-head .col-m-2 {
  width: 17.6%;
}
.main-head .col-m-offset-2 {
  margin-left: 17.6%;
}
.main-head .col-m-3 {
  width: 27.9%;
}
.main-head .col-m-offset-3 {
  margin-left: 27.9%;
}
.main-head .col-m-4 {
  width: 38.2%;
}
.main-head .col-m-offset-4 {
  margin-left: 38.2%;
}
.main-head .col-m-5 {
  width: 48.5%;
}
.main-head .col-m-offset-5 {
  margin-left: 48.5%;
}
.main-head .col-m-6 {
  width: 58.8%;
}
.main-head .col-m-offset-6 {
  margin-left: 58.8%;
}
.main-head .col-m-7 {
  width: 69.1%;
}
.main-head .col-m-offset-7 {
  margin-left: 69.1%;
}
.main-head .col-m-8 {
  width: 79.4%;
}
.main-head .col-m-offset-8 {
  margin-left: 79.4%;
}
.main-head .col-m-9 {
  width: 89.7%;
}
.main-head .col-m-offset-9 {
  margin-left: 89.7%;
}
.main-head .last {
  margin-right: !important;
}
.main-head .marg-10 {
  margin: 10px;
}
.main-head .marg-20 {
  margin: 20px;
}
.main-head .marg-30 {
  margin: 30px;
}
.main-head .marg-40 {
  margin: 40px;
}
.main-head .marg-50 {
  margin: 50px;
}
.main-head .marg-60 {
  margin: 60px;
}
.main-head .marg-70 {
  margin: 70px;
}
.main-head .marg-80 {
  margin: 80px;
}
.main-head .marg-90 {
  margin: 90px;
}
.main-head .marg-100 {
  margin: 100px;
}
.main-head .m-b-10 {
  margin-bottom: 10px !important;
}
.main-head .m-b-20 {
  margin-bottom: 20px !important;
}
.main-head .m-b-30 {
  margin-bottom: 30px !important;
}
.main-head .m-b-40 {
  margin-bottom: 40px !important;
}
.main-head .mar-10-20 {
  margin: 10px 20px;
}
.main-head .mar-20-40 {
  margin: 20px 40px;
}
.main-head .mar-30-0 {
  margin: 30px 0;
}
.main-head .pad-10 {
  padding: 10px;
}
.main-head .pad-20 {
  padding: 20px;
}
.main-head .pad-30 {
  padding: 30px;
}
.main-head .pad-40 {
  padding: 40px;
}
.main-head .pad-50 {
  padding: 50px;
}
@media only screen and (max-width: 1024px) {
  .main-head .pad-m {
    padding: 0 20px;
  }
}
.main-head .pad-20-30 {
  padding: 20px 30px;
}
.main-head .pad-20-40 {
  padding: 20px 40px;
}
.main-head .pad-20-60 {
  padding: 20px 60px;
}
.main-head .pad-0-10 {
  padding: 10px 0;
}
.main-head .pad-0-20 {
  padding: 20px 0;
}
.main-head .pad-30-0 {
  padding: 30px 0;
}
.main-head .pad-30-20 {
  padding: 30px 20px;
}
.main-head .pad-40-20 {
  padding: 40px 20px;
}
.main-head .pad-60-20 {
  padding: 60px 20px;
}
.main-head .ohidden {
  overflow: hidden;
}
.main-head strong {
  font-weight: 700;
}
.main-head em {
  font-style: italic;
}
.main-head .small-text {
  font-size: 12px !important;
  line-height: 160%;
}
.main-head .mid-text {
  font-size: 14px;
}
.main-head .text-center {
  text-align: center;
}
.main-head .text-right {
  text-align: right;
}
.main-head .text-left {
  text-align: left !important;
}
.main-head .number-xl {
  font-size: 80px;
  text-align: center;
  display: block;
  letter-spacing: -2px;
  color: #fff;
  background: #4E0081;
  font-weight: 700;
  height: 170px;
  width: 170px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto 10px;
  line-height: 200%;
  position: relative;
}
.main-head .number-xl .gb {
  background: #fff none repeat scroll 0 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  bottom: -25px;
  color: #4e0081;
  display: table;
  font-size: 24px;
  font-weight: 700;
  height: 65px;
  left: 0;
  line-height: 180%;
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 65px;
}
.main-head .border-right {
  border-right: 3px solid;
}
.main-head .flex-img {
  width: 100%;
  height: auto;
  display: block;
}
.main-head .b-bottom {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  overflow: hidden;
}
.main-head .no-marg {
  margin: 0;
}
.main-head .wrap {
  overflow: hidden;
  width: 100%;
}
.main-head .ico-face {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/ico-face.png) no-repeat center;
}
.main-head .ico-twitter {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/ico-twitter.png) no-repeat center;
}
.main-head .ico-youtube {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/ico-youtube.png) no-repeat center;
}
.main-head .main-head {
  background: #fff;
}
.main-head .wom-bg {
  background: #381451;
  box-shadow: none;
  height: 42px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .main-head .header-nav {
    height: 0;
  }
  .main-head .head-top {
    height: 40px;
    background: #381451;
  }
}
.main-head .wom-mundos {
  list-style: none;
  float: left;
  margin-top: 0;
  font-family: "ceraregular", "cera";
  margin-left: 120px;
}
@media only screen and (max-width: 768px) {
  .main-head .wom-mundos {
    display: none;
  }
}
.main-head .wom-mundos li {
  float: left;
  font-family: "ceraregular", "cera";
}
.main-head .wom-mundos li a {
  display: block;
  padding: 8px 14px;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  position: relative;
  font-weight: 500;
  border-top: 4px solid transparent;
}
.main-head .wom-mundos li a.active {
  color: #fff;
  border-top: 4px solid #fff;
}
.main-head .main-nav-wrap {
  position: relative;
}
.main-head .logo-head {
  position: absolute;
  top: -24px;
  z-index: 999;
  width: 100px;
  height: auto;
  border-radius: 100%;
  /* -webkit-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-direction: alternate;
  animation-direction: alternate; */
}
@media only screen and (max-width: 768px) {
  .main-head .logo-head {
    top: -35px;
    left: 10px;
    width: 70px;
    height: auto;
  }
  .main-head .logo-head img {
    display: block;
    width: 73%;
    height: auto;
  }
}
.main-head .div_ventana {
  display: none;
}
.main-head .div_ventana.mostrar_ventana {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: 100%;
  display: block;
}
.main-head .buscador input {
  background: none;
  border: none;
}
.main-head .buscador input[type=text] {
  color: #fff;
  font-family: "ceraregular";
  font-size: 13px;
  padding: 10px;
  width: 150px;
  transition: all ease 200ms;
  height: 40px;
}
.main-head .buscador input[type=text]:focus {
  background: #f1f1f1;
  color: #4e0081;
}
.main-head .buscador input:focus {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #7b539a;
}
.main-head .buscador input[type=text]::-webkit-input-placeholder {
  color: #4E0081;
  opacity: 1;
}
.main-head .buscador input[type=text]:-moz-placeholder {
  color: #4E0081;
  opacity: 1;
}
.main-head .buscador input[type=text]::-moz-placeholder {
  color: #4E0081;
  opacity: 1;
}
.main-head .buscador input[type=text]:-ms-input-placeholder {
  color: #4E0081;
  opacity: 1;
}
.main-head .buscador input[type=submit] {
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  padding: 0;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/lupa.png) center no-repeat;
}
.main-head .social {
  margin-left: 20px;
}
.main-head .social span {
  float: left;
  margin-top: 10px;
}
.main-head .social span a {
  display: block;
  height: 20px;
  width: 20px;
  padding: 0;
  text-indent: -9999px;
  margin-left: 10px;
}
.main-head .social span a:hover {
  opacity: 0.8;
}
.main-head .main-nav {
  float: right;
}
@media only screen and (max-width: 768px) {
  .main-head .main-nav {
    position: fixed;
    top: 0;
    z-index: 999999;
    right: 0;
    width: 50%;
    background: #381451;
    height: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    transition: all ease 300ms;
  }
}
.main-head .main-nav .wom-mundos {
  display: none;
}
@media only screen and (max-width: 768px) {
  .main-head .main-nav .wom-mundos {
    display: block;
    width: 100%;
    margin: 0;
    background: #fff;
  }
  .main-head .main-nav .wom-mundos li {
    float: left;
    padding: 0;
    width: 50%;
  }
  .main-head .main-nav .wom-mundos li a {
    background: #fff;
    color: #381451;
    padding: 10px 15px;
    text-align: center;
  }
  .main-head .main-nav .wom-mundos li a:hover {
    background: #fff;
  }
  .main-head .main-nav .wom-mundos li a.active {
    background: #381451;
    color: #fff;
  }
}
@media only screen and (max-width: 768px) {
  .main-head .main-nav.open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@media only screen and (max-width: 640px) {
  .main-head .main-nav {
    width: 80%;
  }
}
.main-head .main-nav ul li {
  float: left;
}
@media only screen and (max-width: 768px) {
  .main-head .main-nav ul li {
    float: none;
  }
}
.main-head .main-nav ul li a {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  display: block;
  padding: 0 1.5rem;
  position: relative;
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .main-head .main-nav ul li a:hover {
    background: rgba(0, 0, 0, 0.8);
  }
}
.main-head .main-nav ul li a.current:before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  height: 3px;
  background: #fff;
}
.main-head .fixed-header {
  height: 50px;
}
.main-head .fixed-header .main-nav ul li a.current:before {
  bottom: 0;
}
.main-head .fixed-header .main-nav ul li a:after {
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .main-head .main-nav ul li a.current:before {
    display: none;
  }
  .main-head .main-nav ul li a:after {
    display: none;
  }
}
.main-head .ham-btn span, .main-head .ham-btn span:before, .main-head .ham-btn span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 20px;
  background: #fff;
  position: absolute;
  display: block;
  content: "";
}
.main-head .ham-btn span:before {
  top: -10px;
}
.main-head .ham-btn span:after {
  bottom: -10px;
}
.main-head .ham-btn span, .main-head .ham-btn span:before, .main-head .ham-btn span:after {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.main-head .ham-btn.active span {
  background-color: transparent;
}
.main-head .ham-btn.active span:before, .main-head .ham-btn.active span:after {
  top: 0;
}
.main-head .ham-btn.active span:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main-head .ham-btn.active span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.main-head .ham-btn {
  background: #381451;
  border: medium none;
  height: 40px;
  left: -40px;
  position: absolute;
  top: 0;
  width: 40px;
  display: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .main-head .ham-btn {
    display: block;
  }
}
.main-head .fixed-header {
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
}
.main-head .sucursal-online {
  position: relative;
}
.main-head .sucursal-online a {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/user.png) no-repeat 10px #720184;
}
.main-head .sucursal-online a:hover {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/user.png) no-repeat 10px #4E0081 !important;
}
.main-head .sucursal-online a.olvidaste {
  background: none;
  color: #4E0081;
  font-size: 12px;
  padding: 0;
  text-align: center;
}
.main-head .sucursal-online a.olvidaste:hover {
  background: none !important;
}
.main-head .login {
  background: #fff;
  position: absolute;
  top: 39px;
  width: 100%;
  z-index: 99999;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all ease-out 300ms;
  -moz-transition: all ease 300ms;
  -ms-transition: all ease 300ms;
  transition: all ease 300ms;
}
.main-head .login.open {
  max-height: 300px;
  -webkit-box-shadow: 0 5px 16px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 5px 16px 2px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 5px 16px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 16px 2px rgba(0, 0, 0, 0.5);
}
.main-head .login .login-wrap {
  padding: 20px 20px 10px;
  position: relative;
}
.main-head .login .login-wrap:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent;
  border-top: 10px solid #720184;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  border-style: solid dotted none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.main-head .login h3 {
  font-family: "ceraregular";
  text-align: center;
  font-weight: 400;
  margin: 0;
  font-size: 14px;
  margin-bottom: 10px;
}
.main-head .login label {
  font-size: 12px;
  margin: 0 10px 10px 0;
}
.main-head .login input {
  font-family: "ceraregular";
  width: 100%;
}
.main-head .login input[type=password] {
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 10px;
  font-size: 14px;
  padding: 5px 10px;
}
.main-head .login input[type=text] {
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 10px;
  font-size: 14px;
  padding: 5px 10px;
}
.main-head .login input[type=submit] {
  display: table;
  width: 125px;
  margin: 0 auto 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: #4E0081;
  border: none;
  color: #fff;
  font-family: "ceraregular";
  padding: 4px 0;
  border-radius: 5px;
}
.main-head .login input[type=radio] {
  width: auto;
  margin: 0 10px 10px 0;
}
.main-head .bg-light {
  background-image: -webkit-linear-gradient(top, #fff 80%, #EBEBED 100%);
  background-image: -o-linear-gradient(top, #fff 80%, #EBEBED 100%);
  background-image: linear-gradient(to bottom, #fff 80%, #EBEBED 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF",endColorstr="#FFEBEBED",GradientType=0);
}
.main-head .bg-light .info-slide {
  color: #381451;
}
.main-head .bg-dark {
  background: #10120f;
}
.main-head .bg-dark .info-slide {
  color: #fff;
}
@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .main-head .bg-dark {
    background-color: #000;
  }
}
.main-head .bg-dark.overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 640px) {
  .main-head .bg-dark.overlay:before {
    display: none;
  }
}
.main-head .precio-slide {
  font-size: 50px;
  font-weight: 700;
  font-family: "ceraregular";
  display: block;
}
@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .main-head .precio-slide {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .precio-slide {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .main-head .precio-slide {
    font-size: 30px;
  }
}
.main-head .info-slide {
  position: relative;
  display: table !important;
  text-align: right;
  height: 100%;
}
@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .main-head .info-slide {
    position: static;
    font-size: 13px;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .info-slide {
    padding: 20px 0;
  }
  .main-head .info-slide.text-right {
    text-align: center;
    margin-left: 0 !important;
    padding: 30px 0;
  }
}
@media only screen and (max-width: 640px) and (max-width: 1615px) and (min-width: 1025px) {
  .main-head .info-slide {
    font-size: 14px;
  }
}
.main-head .info-slide h2 {
  font-size: 65px;
  margin: 0;
}
@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .main-head .info-slide h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .info-slide h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .main-head .info-slide h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .main-head .info-slide .mid-text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .main-head .info-slide .mid-text {
    font-size: 14px;
  }
}
.main-head .midle-align-wrap {
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .main-head .midle-align-wrap {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .midle-align-wrap {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .slide-img {
    display: none !important;
  }
}
.main-head .home-slider .slider {
  list-style: none;
}
.main-head .home-slider .slider li {
  overflow: hidden;
}
.main-head .home-slider .slider li img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .main-head .home-slider .slider li img {
    width: auto;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .main-head .home-slider .slider .wom-btn {
    left: 20px;
    bottom: 20px;
    position: absolute;
  }
}
.main-head .home-slider .bx-wrapper {
  position: relative;
}
.main-head .home-slider .bx-controls {
  width: 100%;
  max-width: 1000px;
  display: table;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 20px auto;
}
@media only screen and (max-width: 1024px) {
  .main-head .home-slider .bx-controls {
    padding: 0 20px !important;
    position: relative;
  }
}
.main-head .home-slider .bx-pager {
  float: right;
}
.main-head .home-slider .bx-pager-item {
  float: left;
  margin: 0 0 0 10px;
}
.main-head .home-slider .bx-pager-item a {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #e9e9e9;
  border-radius: 100%;
  background: #e9e9e9;
  text-indent: -9999px;
}
.main-head .home-slider .bx-pager-item a.active {
  background: #4E0081;
}
.main-head .rotate {
  -webkit-transform: rotate(-17deg);
  -moz-transform: rotate(-17deg);
  -ms-transform: rotate(-17deg);
  -ms-transform: rotate(-17deg);
  margin-bottom: 40px;
}
@media only screen and (max-width: 640px) {
  .main-head .rotate {
    display: table;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .rotate .rotate-wrapp {
    display: table-cell;
    vertical-align: middle;
  }
}
.main-head .rotate.align-center {
  text-align: center;
}
@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .main-head .rotate {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .main-head .rotate {
    margin-bottom: 0;
  }
}
.main-head .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
}
@media only screen and (max-width: 640px) {
  .main-head .slide-content {
    position: relative;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .bx-viewport {
    background-color: #381451;
  }
}
.main-head .table-wrapp {
  display: table !important;
  height: 100%;
}
.main-head .table-wrapp .table-cell-wrapp {
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (max-width: 640px) {
  .main-head .table-wrapp {
    display: none !important;
  }
}
@media only screen and (max-width: 1615px) and (min-width: 1025px) {
  .main-head .table-wrapp {
    display: block !important;
  }
}
.main-head .gb-slide {
  font-size: 30px;
  font-family: "ceraregular";
}
.main-head .more-btn {
  position: relative;
  margin: 0 auto;
  width: 28px;
  height: 28px;
  display: block;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-indent: -999999px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/add_icon.png) center no-repeat #4E0081;
}
.main-head .more-btn:hover {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/add_icon.png) center no-repeat #3A1F4F;
}
.main-head .gigas {
  font-size: 58px;
  font-family: "ceraregular", arial;
  font-weight: 700;
  color: #B171C3;
  margin: 0;
  line-height: 20px;
  font-weight: bold;
  position: relative;
}
.main-head .include {
  font-size: 25px;
  display: block;
  margin: 5px 0 15px;
}
.main-head .precio-grey {
  color: #333;
  font-size: 50px;
  font-weight: 700;
  display: block;
}
@media only screen and (max-width: 768px) {
  .main-head .precio-grey {
    font-size: 40px;
  }
}
.main-head .icono-gb {
  position: absolute;
  right: -38px;
  top: 8px;
  display: block;
  background: #852D9A;
  font-family: "ceraregular", arial;
  font-weight: 700;
  width: 32px;
  height: 32px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
}
.main-head .precio {
  font-family: "cerabold", arial;
  font-weight: 700;
  color: #B171C3;
}
.main-head .solo-sim-s {
  width: 104px;
  height: 18px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/solo-sim-s.png) no-repeat center;
  text-indent: -9999px;
  display: block;
  float: right;
  color: transparent;
  font-size: 0;
}
.main-head .destacados-home h2 {
  font-size: 24px;
  color: #3A1F4F;
  text-transform: uppercase;
}
@media only screen and (max-width: 640px) {
  .main-head .destacados-home h2 {
    text-align: center;
  }
}
.main-head .plan-destacado {
  -webkit-box-shadow: 13px 0 10px -10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 13px 0 10px -10px rgba(0, 0, 0, 0.3);
  box-shadow: 13px 0 10px -10px rgba(0, 0, 0, 0.3);
  padding-right: 2%;
}
@media only screen and (max-width: 640px) {
  .main-head .plan-destacado {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 0;
  }
}
.main-head .plan-destacado .cuota {
  float: left;
  width: 50%;
  padding: 0 20px;
}
@media only screen and (max-width: 640px) {
  .main-head .plan-destacado .cuota {
    width: 100%;
  }
}
.main-head .plan-destacado .cuota .number-xl {
  margin: 20px auto 10px;
}
@media only screen and (max-width: 640px) {
  .main-head .plan-destacado .cuota .number-xl {
    margin: 0 auto 20px;
  }
}
.main-head .plan-destacado .info-plan-desta {
  width: 50%;
  float: left;
  padding: 0 10px;
}
@media only screen and (max-width: 640px) {
  .main-head .plan-destacado .info-plan-desta {
    width: 100%;
  }
  .main-head .plan-destacado .info-plan-desta.text-right {
    text-align: center;
  }
  .main-head .plan-destacado .info-plan-desta .solo-sim-s {
    float: none;
    margin: 10px auto;
  }
}
.main-head .plan-destacado h3 {
  margin: 0;
  font-size: 28px;
}
@media only screen and (max-width: 640px) {
  .main-head .equipo-destacado {
    background: #f1f1f1;
    margin: 20px 0;
    overflow: hidden;
    padding: 10px;
  }
}
.main-head .plan-precio {
  width: 100%;
  background: rgba(0, 0, 0, 0.09);
  padding: 10px;
  border-radius: 10px;
  margin: 5px 0;
}
.main-head .plan-precio span {
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
}
.main-head .plan-precio span.mid-text {
  font-size: 20px;
}
.main-head .ranking {
  height: auto;
  margin: 6px auto 14px;
  position: relative;
  width: 70px;
}
.main-head .ranking li {
  float: left;
  height: 9px;
  list-style: none;
  margin: 0 3px 0 0;
  padding: 0;
  width: 11px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/black_star.png) center no-repeat;
  cursor: pointer;
}
.main-head .ranking li:active {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/color_star.png) center no-repeat;
}
.main-head .info-equipo-dest {
  float: left;
  width: 60%;
  padding: 0 0 0 5%;
}
@media only screen and (max-width: 640px) {
  .main-head .info-equipo-dest {
    width: 100%;
    text-align: center;
    padding: 0;
  }
}
.main-head .info-equipo-dest h4 {
  color: #4E0081;
  font-size: 24px;
  margin: 0;
}
.main-head .info-equipo-dest h3 {
  font-size: 28px;
  margin: 0 0 5px;
}
.main-head .info-equipo-dest .ranking {
  float: right;
  margin: 0 0 10px;
  width: auto;
}
.main-head .info-equipo-dest .ranking li {
  width: 12px;
  height: 12px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/star-big-grey.png) center no-repeat;
  margin: 0 0 0 10px;
}
.main-head .img-equipo-dest {
  width: 40%;
  float: left;
  padding-left: 10%;
}
@media only screen and (max-width: 640px) {
  .main-head .img-equipo-dest {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .main-head .img-equipo-dest img {
    width: 60%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .home-planes {
    overflow: hidden;
    padding-bottom: 2px;
  }
}
.main-head .home-planes .box {
  text-align: center;
  text-transform: uppercase;
  color: #242424;
  box-shadow: 12px 0 9px -9px rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 768px) {
  .main-head .home-planes .box {
    width: 50% !important;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .home-planes .box {
    box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.12);
    padding: 10px 10px 0;
  }
}
.main-head .home-planes .box.first {
  background: none;
}
.main-head .home-planes .box h3 {
  color: #242424;
  text-align: center;
  margin: 0 auto;
  font-size: 14px;
}
.main-head .home-planes .box .gigas {
  color: #b171c3;
  display: table;
  font-family: "ceraregular", arial;
  font-weight: 700;
  font-size: 58px;
  line-height: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .main-head .home-planes .box .gigas {
    font-size: 50px;
  }
}
.main-head .home-planes .box .gigas .icono-gb {
  font-family: "ceraregular", arial;
  font-weight: 700;
}
.main-head .home-planes .box .plan {
  float: left;
  font-size: 12px;
  text-align: center;
  text-transform: none;
  width: 100%;
}
.main-head .home-planes .box .precio {
  font-family: "ceraregular", arial;
  font-weight: 700;
  color: #B171C3;
  float: left;
  font-size: 30px;
  text-align: center;
  width: 100%;
}
.main-head .home-planes .box .min {
  font-size: 12px;
  margin: 12px auto 0;
  width: 100%;
  float: left;
  line-height: normal;
}
.main-head .home-planes .box .min span {
  font-size: 26px;
  float: none;
}
.main-head .home-planes .box .desc {
  text-transform: none;
}
.main-head .home-planes .wom-btn {
  font-family: "ceraregular", arial;
}
.main-head .home-equipos .box * {
  font-family: "ceraregular", arial;
}
.main-head .home-equipos {
  text-align: center;
}
.main-head .home-equipos h3 {
  font-size: 12px;
  margin: 0 auto 8px;
}
.main-head .home-equipos p {
  font-size: 12px;
  line-height: 10px;
  margin: 10px auto;
}
.main-head .home-equipos h4 {
  line-height: 20px;
  margin: 0 auto;
  font-size: 14px;
}
.main-head .home-equipos h4 span {
  font-size: 12px;
  width: 100%;
  display: inline-block;
  font-family: "ceraregular", arial;
  font-weight: 100;
}
.main-head .home-equipos .ranking {
  height: auto;
  margin: 6px auto 14px;
  position: relative;
  width: 70px;
}
.main-head .home-equipos .ranking li {
  float: left;
  height: 9px;
  list-style: none;
  margin: 0 3px 0 0;
  padding: 0;
  width: 11px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/black_star.png) center no-repeat;
  cursor: pointer;
}
.main-head .home-equipos .ranking li:active {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/color_star.png) center no-repeat;
}
.main-head .home-secciones {
  margin: 38px auto 0;
  width: 100%;
  text-align: center;
  min-height: 290px;
  height: auto;
  overflow: hidden;
}
.main-head .home-secciones h3 {
  color: #666;
  margin: 20px auto 3px;
}
.main-head .home-secciones .box img {
  position: relative;
  margin: 0 auto;
  display: block;
  max-width: 110px;
  width: 100%;
}
.main-head .home-secciones p {
  line-height: 16px;
  font-size: 12px;
  margin: 4px auto 18px;
  color: #666;
}
@media only screen and (max-width: 640px) {
  .main-head .accesos-directos .box {
    background: #fff none repeat scroll 0 0;
    margin-bottom: 40px;
    padding: 10px;
    position: relative;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .accesos-directos .box .more-btn {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -15px;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .accesos-directos .box:first-child {
    margin-top: 20px;
  }
}
.main-head .desta-action .wom-btn {
  float: right;
  margin: 10px 0;
  font-size: 14px;
  line-height: 150%;
}
.main-head .desta-action .wom-btn-left {
  float: left;
  margin: 10px 0;
  font-size: 14px;
  line-height: 150%;
}
.main-head .wom-btn-menos {
  background: #685A71 !important;
}
@media only screen and (max-width: 768px) {
  .main-head .desta-action .wom-btn {
    width: 100%;
  }
}
.main-head .desta-action .contrato-cel {
  display: table;
  float: left;
  margin: 20px 0 20px 28px;
}
@media only screen and (max-width: 768px) {
  .main-head .desta-action .contrato-cel {
    display: table;
    margin: 20px auto;
    float: none;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .cont-secciones .box {
    background: #f1f1f1;
  }
}
.main-head .gestor-home {
  background: #3A1F4F;
  color: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 10px 20px;
  margin: 30px auto;
}
.main-head .gestor-home .wom-btn {
  float: right;
  margin-top: 10px;
  width: 250px;
}
@media only screen and (max-width: 640px) {
  .main-head .gestor-home .wom-btn {
    width: 100%;
  }
}
.main-head .gestor-home h3 {
  margin: 0;
}
.main-head .gestor-home p {
  font-size: 12px;
  line-height: 140%;
}
.main-head .gestor-home .bloq {
  width: 25%;
  float: left;
  padding-right: 3%;
}
@media only screen and (max-width: 768px) {
  .main-head .gestor-home .bloq {
    width: 35%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .gestor-home .bloq {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.main-head .gestor-home .icon-gestor {
  width: 120px;
  height: 60px;
  float: left;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-gestor.png) no-repeat left center;
}
@media only screen and (max-width: 640px) {
  .main-head .gestor-home .icon-gestor {
    width: 100%;
    background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-gestor.png) no-repeat center;
    margin-bottom: 20px;
  }
}
.main-head .big-number-floated {
  font-size: 40px;
  font-weight: 700;
  position: relative;
  line-height: 100%;
}
.main-head .big-number-floated .min-top {
  display: block;
  font-size: 14px;
  line-height: 100%;
  position: absolute;
  right: -65px;
  top: 13px;
}
.main-head .big-number-floated .min-bottom {
  bottom: 11px;
  font-size: 14px;
  font-weight: lighter;
  line-height: 100%;
  position: absolute;
  right: -75px;
}
@media only screen and (max-width: 768px) {
  .main-head .plan-min {
    display: none;
  }
}
.main-head .wom-sec {
  color: #4E0081 !important;
}
.main-head .why-wom {
  background: #E4E4E6;
  margin: 20px 0;
}
.main-head .wom-why {
  margin: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  .main-head .wom-text {
    width: 100%;
    padding: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .main-head .img-wom {
    display: none !important;
  }
}
.main-head ul.resultados_header_global {
  background-color: #fff;
  border: 1px solid #d7d2cb;
  border-radius: 0 0 3px 3px;
  display: none;
  padding: 0 0 10px;
  position: absolute;
  width: 380px;
  z-index: 99999999 !important;
  margin: 40px 0 0;
  margin: 3px 0 0;
}
.main-head ul.resultados_header_global li {
  color: #666;
  cursor: pointer;
  display: block;
  font-weight: 400;
  height: auto;
  line-height: 19px;
  margin: 5px 0 0;
  padding: 2px 1em;
  text-decoration: none;
}
.main-head ul.resultados_header_global li:hover {
  background: #dcdbd8;
}
.main-head .lo_quiero {
  display: none !important;
  float: right;
}
.main-head .cuadro-promo {
  background: #720184;
  font-family: "ceraregular";
  font-size: 12px;
  max-width: 588px;
  padding: 6px 0 6px 20px;
  position: absolute;
  top: -26px;
  width: 100%;
  color: #fff;
  display: none;
}
.main-head .centrado {
  position: relative;
  margin: 0 auto;
  float: none;
}
.main-head .all-width {
  display: table;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
}
.main-head .all-width .half-color {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
}
.main-head .all-width .half-left {
  left: 0;
}
.main-head .all-width .half-right {
  right: 0;
}
.main-head .violeta {
  background: #4C3163;
}
.main-head .planimg {
  padding: 20px;
  position: relative;
}
.main-head .planimg img {
  position: absolute;
  top: -20px;
  right: -30px;
}
.main-head .planimg.last {
  left: 0;
}
.main-head .planimg.last img {
  right: auto;
  left: -20px;
}
.main-head .planimg.last .plan-info {
  left: 0;
  right: auto;
}
.main-head .planimg.last .plan-info span {
  text-align: left;
}
.main-head .planimg .plan-info {
  height: auto;
  max-width: 150px;
  position: absolute;
  right: 0;
  top: 50px;
  width: 100%;
  z-index: 50;
}
.main-head .planimg .plan-info span {
  color: #fff;
  float: left;
  font-family: "ceraregular";
  font-size: 180px;
  font-weight: 700;
  line-height: 130px;
  margin: 0 0 7px;
  text-align: right;
  width: 100%;
}
.main-head .planimg .plan-info p {
  color: #fff;
  float: left;
  font-family: "ceraregular";
  font-size: 18px;
}
.main-head .plan-wrap {
  position: relative;
  z-index: 999;
}
.main-head .conoce-mas {
  margin: 0 auto 30px;
  overflow: hidden;
  position: relative;
}
.main-head .conoce-mas p {
  padding: 20px 0 22px;
  text-align: center;
}
.main-head .conoce-mas p a {
  color: #4E0081;
}
.main-head .conoce-mas p a:hover {
  color: #381451;
}
.main-head .conoce-mas .col-7 {
  background: #e9e9e9;
  margin: 2px 0 0;
  width: 58.9%;
}
@media only screen and (max-width: 768px) {
  .main-head .conoce-mas .col-7 {
    width: 100%;
  }
}
.main-head .clear-down {
  margin-bottom: 0;
}
.main-head .row.conoce-mas {
  margin: 0 auto 30px;
  position: relative;
}
.main-head .planinfo {
  background: #E9E9E9;
}
@media only screen and (max-width: 640px) {
  .main-head .planinfo {
    text-align: center;
  }
}
.main-head .planinfo span {
  display: block;
}
.main-head .planinfo .gigas-xl {
  font-size: 100px;
  color: #7A6099;
  font-weight: 700;
  line-height: 100%;
  position: relative;
  display: table;
  position: relative;
  letter-spacing: -8px;
}
.main-head .planinfo .gigas-xl:after {
  content: "GB";
  font-weight: 400;
  font-size: 30px;
  position: absolute;
  width: 30px;
  right: -40px;
  top: 10px;
  letter-spacing: 0;
  line-height: 100%;
}
.main-head .planinfo .gigas-xl.mega:after {
  content: "MB";
}
.main-head .planinfo .docientos:after {
  content: "MB";
}
.main-head .precio-xl {
  font-size: 46px;
  font-weight: 700;
  color: #7A6099;
  margin: 10px 0 0;
}
.main-head .info-plan-foot {
  text-align: right;
  overflow: hidden;
  float: left;
  width: 100%;
  box-shadow: 0 20px 12px -13px rgba(0, 0, 0, 0.2) inset;
}
@media only screen and (max-width: 640px) {
  .main-head .info-plan-foot {
    box-shadow: none;
    padding: 10px !important;
  }
}
.main-head .info-plan-foot .wom-btn {
  display: inline-block;
  font-size: 19px;
  margin: 0;
  padding: 10px 15px;
  text-align: left;
  width: 200px;
  background: #4E0081;
  height: 40px;
  position: relative;
  overflow: visible;
}
@media only screen and (max-width: 640px) {
  .main-head .info-plan-foot .wom-btn {
    width: 100% !important;
  }
}
.main-head .info-plan-foot .wom-btn:before {
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.7), 1px 0 0 0 rgba(0, 0, 0, 0.2) inset;
  content: "";
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}
.main-head .contrato-cel, .main-head .link-ico-cel {
  font-size: 16px;
  margin-right: 20px;
  position: relative;
  color: #720184;
}
.main-head .contrato-cel:hover, .main-head .link-ico-cel:hover {
  color: #4E0081;
}
.main-head .contrato-cel:before, .main-head .link-ico-cel:before {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/phone.png);
  content: "";
  height: 21px;
  width: 14px;
  display: block;
  position: absolute;
  left: -20px;
  top: 0;
}
.main-head .contrato-cel:after, .main-head .link-ico-cel:after {
  content: "[+]";
  margin-left: 5px;
}
.main-head .head-landing {
  background: #e9e9e9;
  display: table;
  height: 200px;
  margin: 0 auto 30px;
  position: relative;
  width: 100%;
}
.main-head .head-landing.head-multimedia {
  background: url(/img/head-planes-guitar.png) no-repeat center;
  background-size: cover;
}
.main-head .head-landing.equipos-landing {
  background: url(/img/head-equipos-ban.png) no-repeat center;
  background-size: cover;
}
.main-head .head-landing.head-empresas {
  background: url(/img/head-planes-guitar.png) no-repeat center;
  background-size: cover;
}
.main-head .head-landing.head-bam {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/head-internet-doble.png) no-repeat center;
  background-size: cover;
}
.main-head .head-landing.head-prepago {
  background: url(/img/head-prepago-real.png) no-repeat center;
  background-size: cover;
}
.main-head .head-landing.head-serv {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/head-serv.png) no-repeat center;
  background-size: cover;
}
.main-head .head-landing:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: red;
  top: 50%;
  z-index: 1;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, transparent 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, black));
  background: -webkit-linear-gradient(top, transparent 0%, black 100%);
  background: -o-linear-gradient(top, transparent 0%, black 100%);
  background: -ms-linear-gradient(top, transparent 0%, black 100%);
  background: linear-gradient(to bottom, transparent 0%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#000000",GradientType=0);
}
.main-head .head-landing .row {
  bottom: 0;
  display: table;
  height: 200px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  vertical-align: middle;
  z-index: 2;
}
.main-head .head-landing h1 {
  color: #fff;
  display: table-cell;
  font-size: 50px;
  line-height: 33px;
  margin: 0 auto;
  padding: 90px 0 0;
  text-align: left;
  vertical-align: middle;
  text-shadow: 0 0 20px #000;
  font-family: "cerabold";
}
.main-head .head-landing h1 span {
  font-family: "ceraregular";
  font-size: 20px;
  font-weight: 100;
  margin: 0;
  padding: 0;
}
.main-head .fixed-landing-nav {
  -webkit-box-shadow: 0 5px 6px 0 rgba(50, 50, 50, 0.12);
  -moz-box-shadow: 0 5px 6px 0 rgba(50, 50, 50, 0.12);
  box-shadow: 0 5px 6px 0 rgba(50, 50, 50, 0.12);
  background: #e9e9e9;
  height: 90px;
  left: 0;
  max-width: 100%;
  position: fixed;
  top: 10px;
  width: 100%;
  z-index: 1000;
  display: block !important;
}
.main-head .fixed-landing-nav ul li .promo {
  display: none;
}
.main-head .fixed-landing-nav ul {
  float: none;
  margin: 0 auto;
  position: relative;
  width: 44%;
}
.main-head .landing-nav {
  margin: 0 auto 40px;
}
.main-head .landing-nav.normal li {
  background: #fff;
  box-shadow: 3px -3px 7px -6px;
}
.main-head .landing-nav.normal li:last-child {
  box-shadow: none;
}
.main-head .landing-nav.small {
  padding: 30px 0 0;
  display: none;
}
.main-head .landing-nav.small .bloque-promo {
  height: 60px;
}
.main-head .landing-nav.small .bloque-promo a {
  padding: 6px 0;
}
.main-head .landing-nav.small .bloque-promo.bolsas {
  display: table;
  padding: 0;
}
.main-head .landing-nav.small .bloque-promo.bolsas a {
  display: table-cell;
  vertical-align: middle;
  padding: 0;
}
.main-head .landing-nav.small .bloque-promo p {
  font-size: 30px;
  font-family: "ceraregular";
  font-weight: 700;
}
.main-head .landing-nav.small .bloque-promo .bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
}
.main-head .landing-nav.small .bloque-promo .bottom-bar span {
  width: 0;
  background: #4E0081;
  float: none;
  height: 15px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: block;
  z-index: 2;
}
.main-head .landing-nav.small .bloque-promo .bottom-bar .bar-bg {
  width: 80%;
  background: none;
  float: none;
  height: 15px;
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  display: block;
  z-index: 2;
  top: 0;
  left: 10%;
}
.main-head .landing-nav.small .bloque-promo .active .bar-bg {
  background: #4E0081;
}
.main-head .landing-nav.small .plan {
  color: #4E0081;
  font-size: 14px;
  font-family: "ceraregular";
  font-weight: 700;
  margin: 0;
}
.main-head .landing-nav.mod-height {
  height: 312px;
}
.main-head .landing-nav .bloque-promo {
  background: #e9e9e9;
  height: 350px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  width: 17.9%;
}
.main-head .landing-nav .bloque-promo:first-child {
  margin-left: 1.3%;
}
.main-head .landing-nav .bloque-promo * {
  text-align: center;
}
.main-head .landing-nav .bloque-promo a {
  padding: 8px 0 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #4E0081;
}
.main-head .landing-nav .bloque-promo a:hover .ver-detalles {
  background: #4E0081;
}
.main-head .landing-nav .bloque-promo .cantidad {
  border-radius: 112px;
  color: #fff;
  font-family: "ceraregular";
  font-size: 51px;
  font-weight: 700;
  height: 112px;
  line-height: 84px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 112px;
  background: #381451;
}
.main-head .landing-nav .bloque-promo .cantidad span {
  background: #fff;
  border-radius: 50px;
  bottom: -10px;
  color: #381451;
  font-family: "ceraregular";
  font-size: 27px;
  font-weight: 700;
  height: 48px;
  left: 34px;
  line-height: 43px;
  position: absolute;
  width: 48px;
}
.main-head .landing-nav .bloque-promo .min-sms {
  font-size: 13px;
  color: #242424;
}
.main-head .landing-nav .bloque-promo .min-sms span {
  font-size: 25px;
}
.main-head .landing-nav .bloque-promo .cuota {
  float: left;
  font-size: 18px;
  margin: 0;
  width: 100%;
  color: #4E0081;
  font-family: "ceraregular";
}
.main-head .landing-nav .bloque-promo .precio {
  font-family: "ceraregular";
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  color: #4E0081;
  line-height: 140%;
}
.main-head .landing-nav .bloque-promo .ver-detalles {
  border-radius: 3px;
  bottom: 14px;
  color: #fff;
  display: block;
  left: 17%;
  margin: 0 auto;
  padding: 5px;
  position: absolute;
  width: 65%;
  background: #720184;
}
.main-head .landing-nav .bloque-promo.bolsas {
  padding: 44px 0 0;
}
.main-head .landing-nav .bloque-promo.bolsas .sigue {
  color: #242424;
}
.main-head .landing-nav .bloque-promo.bolsas .frase {
  float: left;
  margin: 0 0 3px;
  text-align: center;
  width: 100%;
  text-transform: none;
}
.main-head .landing-nav .bloque-promo.bolsas .frase span {
  text-transform: uppercase;
  line-height: 23px;
}
.main-head .landing-nav .bloque-promo.bolsas p {
  color: #242424;
  margin: 0 0 5px;
  text-transform: uppercase;
}
.main-head .landing-nav .bloque-promo.bolsas .nombre-bolsa {
  color: #381451;
  font-family: "ceraregular";
  font-size: 46px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 0 4px;
}
.main-head .landing-nav .bloque-promo.bolsas .nombre-bolsa span {
  border-radius: 50px;
  color: #fff;
  display: block;
  font-size: 22px;
  font-weight: 400;
  height: 38px;
  line-height: 36px;
  margin: 5px auto;
  width: 38px;
  background: #381451;
}
.main-head .landing-nav .bloque-promo.promo-empresas {
  width: 15.6%;
  margin-right: 0.8%;
}
.main-head .landing-nav .bloque-promo.promo-empresas:first-child {
  margin-left: 1.2%;
}
.main-head .landing-nav .bloque-promo.promo-empresas .nombre-bolsa {
  font-size: 30px;
}
.main-head .triangle-new-home {
  background: rgba(0, 0, 0, 0) url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-new-home.png) no-repeat scroll center bottom/100% 100%;
  display: block;
  height: 60px;
  overflow: hidden;
  width: 100%;
}
.main-head .landing-nav .plan {
  float: left;
  margin: 0 0 3px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  color: #242424;
}
.main-head .landing-nav .descripcion {
  color: #242424;
  display: table;
  float: left;
  font-size: 12px;
  margin: 10px 0 6px;
  text-align: center;
  width: 100%;
}
.main-head .landing-nav .doble-cuota .promo {
  position: absolute;
  z-index: 1;
  top: -2px;
  left: -65px;
  -ms-transform: rotate(-35deg);
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
  -ms-transform: rotate(-35deg);
}
.main-head .landing-nav .doble-cuota .promo ul {
  width: 181px;
}
.main-head .landing-nav .doble-cuota .promo li {
  font-size: 12px;
  text-align: center;
  width: 100%;
  float: left;
  height: 23px;
  line-height: 22px;
  background: #e9e9e9;
}
.main-head .landing-nav .doble-cuota .promo .colored {
  background: #4E0081;
  color: #fff;
  height: auto;
  line-height: normal;
  padding: 0 13px 3px;
}
.main-head .landing-nav .doble-cuota ul li {
  float: left;
}
.main-head .landing-nav .doble-cuota a {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
}
.main-head .landing-nav a .letra {
  font-size: 70px;
  color: #381451;
  font-family: "ceraregular";
  float: left;
  font-weight: 700;
  margin: 0 0 0 12px;
  line-height: 1;
}
.main-head .plan-0, .main-head .plan-1, .main-head .plan-2, .main-head .plan-3, .main-head .plan-4, .main-head .plan-5 {
  position: absolute;
  top: -170px;
}
.main-head .info-planes-landing {
  overflow: hidden;
  max-width: 885px;
  width: 100%;
  float: none;
  margin: 0 auto 40px;
  position: relative;
}
.main-head .info-planes-landing ul {
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  padding: 0 0 40px;
}
.main-head .info-planes-landing ul li {
  float: left;
  font-size: 12px;
  height: auto;
  list-style: none;
  overflow: hidden;
  padding: 12px 18px 12px 48px;
  width: 100%;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-right-arrow.png) scroll 2% 50% no-repeat #fff;
}
.main-head .info-planes-landing ul .dark {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-right-arrow.png) scroll 2% 50% no-repeat #e9e9e9;
}
.main-head .info-planes-landing h3 {
  cursor: pointer;
  padding: 0;
}
.main-head .info-planes-landing h3 span {
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  height: 14px;
  margin: 0 10px 0 0;
  width: 13px;
  text-align: center;
}
.main-head .info-planes-landing h3.close span {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icono-mas-small.png) center no-repeat #720184;
}
.main-head .info-planes-landing h3.open span {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icono-menos-small.png) center no-repeat #720184;
}
.main-head .info-adicional {
  overflow: hidden;
  max-width: 885px;
  width: 100%;
  float: none;
  margin: 0 auto 40px;
  position: relative;
}
.main-head .info-adicional ul {
  display: none;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  padding: 0 0 40px;
}
.main-head .info-adicional ul li {
  float: left;
  font-size: 12px;
  height: auto;
  list-style: none;
  overflow: hidden;
  padding: 12px 18px 12px 48px;
  width: 100%;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-right-arrow.png) scroll 2% 50% no-repeat #fff;
}
.main-head .info-adicional ul .dark {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-right-arrow.png) scroll 2% 50% no-repeat #e9e9e9;
}
.main-head .info-adicional h3 {
  cursor: pointer;
  font-family: "ceraregular";
  font-size: 14px;
  padding: 0;
}
.main-head .info-adicional h3 span {
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  height: 14px;
  margin: 0 10px 0 0;
  width: 13px;
  text-align: center;
}
.main-head .info-adicional h3.close span {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icono-mas-small.png) center no-repeat #720184;
}
.main-head .info-adicional h3.open span {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icono-menos-small.png) center no-repeat #720184;
}
.main-head .cont-planes-bolsas {
  margin: 0 auto 40px;
  position: relative;
}
.main-head .cont-planes-bolsas h2 {
  text-align: center;
  font-size: 40px;
  margin: 0 auto 40px;
}
.main-head .cont-planes-bolsas ul li {
  text-align: center;
}
.main-head .cont-planes-bolsas ul li .gb {
  background: #381451;
  border-radius: 100px;
  color: #fff;
  display: block;
  font-size: 40px;
  font-weight: 700;
  height: 112px;
  padding: 25px 0 0;
  width: 112px;
  position: relative;
  margin: 0 auto;
  float: none;
  overflow: hidden;
}
.main-head .cont-planes-bolsas ul li .gb span {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}
.main-head .cont-planes-bolsas ul li .descripcion-bolsas {
  float: none;
  font-size: 12px;
  margin: 5px auto 6px;
  position: relative;
  text-align: center;
  width: 52%;
}
.main-head .cont-planes-bolsas ul li .wom-btn {
  width: 70%;
  float: none;
  padding: 10px 10px 12px;
}
@media only screen and (max-width: 990px) {
  .main-head .landing-nav .descripcion {
    color: #242424;
    display: table;
    float: left;
    font-size: 12px;
    margin: 8px 0 0;
  }
  .main-head .landing-nav a .letra {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1004px) {
  .main-head .cuadro-promo {
    width: 59%;
  }
  .main-head .landing-nav .bloque-promo.bolsas .nombre-bolsa {
    line-height: 32px;
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .main-head .planes .planinfo {
    width: 100%;
  }
  .main-head .planimg.down, .main-head .violeta {
    display: none;
  }
  .main-head .landing-nav {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  .main-head .cuadro-promo {
    max-width: 100%;
    width: 100%;
  }
  .main-head .info-adicional h3 {
    margin: 0 0 0 20px;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .planes .all-width {
    background: #e9e9e9;
  }
  .main-head .planes .planinfo {
    background: #e9e9e9;
  }
  .main-head .cont-planes-bolsas .col-3 {
    width: 46.5%;
  }
}
@media only screen and (max-width: 480px) {
  .main-head .head-landing h1 {
    padding: 50px 0 0;
    line-height: 43px;
  }
  .main-head .planes .all-width * {
    float: left;
    width: 100%;
  }
  .main-head .planes .all-width * .wom-btn {
    width: 60%;
  }
  .main-head .text-right {
    float: left;
    width: 100%;
    text-align: left;
    padding: 0 20px 15px;
  }
  .main-head .contrato-cel {
    margin: 0 0 15px 20px;
    text-align: left;
    width: 30%;
  }
}
@media only screen and (max-width: 480px) and (max-width: 640px) {
  .main-head .contrato-cel {
    display: table;
    float: none !important;
    margin: 0 auto 15px;
    text-align: center;
    width: auto !important;
  }
}
@media only screen and (max-width: 480px) {
  .main-head .planinfo .gigas-xl::after {
    right: auto;
    margin: 0 0 0 8px;
  }
  .main-head .info-adicional h3 {
    margin: 0 0 0 20px;
  }
  .main-head .cont-planes-bolsas .col-3 {
    width: 100%;
  }
}
.main-head .bloque-promo.promo-empresas.bolsas.plan-gestor.col-3.last {
  padding: 30px 0 0;
}
.main-head .solo-voz-wrap .head-landing-ficha {
  margin: 40px 0;
}
.main-head .solo-voz .bloque-promo {
  width: 22.6%;
  margin-right: 1.2%;
}
.main-head .solo-voz .bloque-promo .cuota {
  margin: 34px auto 0;
}
.main-head .solo-voz .bloque-promo .cantidad {
  font-size: 26px;
  line-height: 26px;
  padding: 21px 0 0;
  margin: 50px auto 22px;
}
.main-head .solo-voz .bloque-promo .cantidad span {
  font-size: 18px;
}
.main-head .solo-voz .bloque-promo .cantidad.single {
  padding: 36px 0 0;
  font-size: 40px;
}
.main-head .solo-voz-cont .small-text {
  margin: 0 0 20px;
}
.main-head .solo-voz-cont .gigas-xl:after {
  content: "Min";
}
.main-head .solo-voz-cont .plan-info.down {
  top: 36px;
  height: 240px;
}
.main-head .solo-voz-cont .col-m-6.planinfo.down {
  height: 250px;
}
.main-head .solo-datos-cont .small-text {
  margin: 0 0 20px;
}
.main-head .solo-datos-cont .gigas-xl:after {
  content: "GB";
}
.main-head .solo-datos-cont .plan-info {
  top: 36px;
  height: 230px;
}
.main-head .solo-datos-cont .col-m-6.planinfo {
  height: 220px;
}
.main-head .gigas-xl.mod-small {
  font-size: 80px;
}
.main-head .planes-bam.center-bloq {
  display: table;
  margin: 0 auto;
  float: none;
}
.main-head .planes-bam .bloque-promo {
  width: 23%;
  margin-right: 2%;
  float: left;
}
.main-head .planes-bam .bloque-promo:last-child {
  margin-right: 0;
}
.main-head .equipos {
  background: #381451;
  padding: 60px 0 50px;
  position: relative;
}
.main-head .equipos h2 {
  text-align: center;
  color: #fff;
}
.main-head .equipos.equipos-bam-cont {
  padding: 50px 0 20px;
}
.main-head .equipos.equipos-bam-cont .precio-desta-wrap {
  background: rgba(255, 255, 255, 0.2);
}
.main-head .equipos.equipos-bam-cont h2 {
  color: #fff;
}
.main-head .equipos.equipos-bam-cont .cat-info * {
  color: #fff;
}
.main-head .equipos.equipos-bam-cont .cat-info h2 {
  font-size: 20px;
  margin: 0 0 5px;
  text-align: right;
}
.main-head .equipos.equipos-bam-cont .cuota-inicial {
  background: none;
}
.main-head .equipos.equipos-bam-cont .cat-pro .wom-btn {
  margin: 16px 0 0;
}
.main-head .equipos .bam-img {
  float: left;
  width: 35%;
}
@media only screen and (max-width: 640px) {
  .main-head .equipos .bam-img {
    float: none;
    margin: 0 auto;
    position: relative;
    width: 35%;
  }
}
.main-head .equipos .bam-info {
  width: 55%;
  padding-left: 5%;
  float: left;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .main-head .equipos .bam-info {
    position: relative;
    margin: 10px auto 0;
    float: none;
    width: 100%;
  }
}
.main-head .equipos .bam-info h3 {
  color: #fff;
  font-size: 20px;
  margin: 0;
}
@media only screen and (max-width: 640px) {
  .main-head .equipos .bam-info h3 {
    text-align: center;
  }
}
.main-head .equipos .bam-info .precio {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .main-head .equipos .bam-info .precio {
    text-align: center;
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .equipos .bam-info .small-text {
    display: block;
    text-align: center;
  }
}
.main-head .equipos .bam-info .wom-btn {
  margin: 12px 0 0;
}
.main-head .equipos:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  border-style: solid dotted none;
}
.main-head .equipos .cuota-inicial {
  background: #4E0081;
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.main-head .equipos .cuota-inicial dl {
  font-size: 12px;
}
.main-head .equipos .cuota-inicial dd {
  float: left;
  margin: 0 10px 0 0;
}
.main-head .equipos .cuota-inicial dt {
  float: left;
  font-weight: 700;
}
.main-head .destacados-home {
  margin: 30px auto;
}
.main-head .empresa-landind-nav li {
  width: 12% !important;
}
.main-head .inc-plan {
  font-size: 23px;
}
.main-head .bajada-info {
  overflow: hidden;
  margin-bottom: 30px;
}
.main-head .bajada-info h3 {
  font-size: 24px;
  margin: 0 0 20px;
}
.main-head .bajada-info p {
  font-weight: 100;
  font-size: 18px;
}
.main-head .bajada-info p a {
  color: #4E0081;
  font-weight: 700;
  text-decoration: underline;
}
.main-head .align-center {
  text-align: center;
}
.main-head .big-wrapp {
  padding: 80px 0;
}
.main-head .indented {
  margin-left: 30px;
}
.main-head .not-full-text {
  width: 60%;
}
.main-head .light-text {
  color: #343434;
  font-size: 15px;
  margin-bottom: 20px;
}
.main-head .rounded-box {
  background-color: #381451;
  border-radius: 100%;
  color: #fff;
  position: relative;
  width: 30.4%;
  margin-right: 4.4%;
  float: left;
  margin-bottom: 100px;
}
.main-head .rounded-box.last {
  margin-right: 0;
}
@media only screen and (max-width: 640px) {
  .main-head .rounded-box.last {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 770px) and (min-width: 540px) {
  .main-head .rounded-box.last {
    margin-right: 4.4%;
  }
}
@media only screen and (max-width: 770px) and (min-width: 650px) {
  .main-head .rounded-box.last {
    margin-right: auto;
  }
}
@media only screen and (max-width: 770px) and (min-width: 540px) {
  .main-head .rounded-box.last-770 {
    margin-right: 0;
  }
}
@media only screen and (max-width: 770px) and (min-width: 650px) {
  .main-head .rounded-box.last-770 {
    margin-right: auto;
  }
}
.main-head .rounded-box header {
  position: absolute;
  max-width: 55px;
  margin: 0 auto;
  top: -13px;
  width: 100%;
  right: 45px;
  left: 0;
}
.main-head .rounded-box h2 {
  font-family: "ceraregular";
  font-weight: 100;
  font-size: 26px;
  line-height: 130%;
  margin-bottom: 5px;
}
.main-head .rounded-box p {
  font-size: 15px;
  margin-bottom: 20px;
}
.main-head .rounded-box .wom-btn {
  font-size: 14px;
  padding: 8px 10px;
  position: absolute;
  bottom: 0;
  text-transform: uppercase;
  height: 30px;
  width: 155px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.main-head .rounded-box .wom-btn:before {
  height: 30px;
  width: 30px;
}
@media only screen and (max-width: 640px) {
  .main-head .rounded-box {
    width: 100%;
    float: none;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 770px) and (min-width: 540px) {
  .main-head .rounded-box {
    width: 47.8%;
    float: left;
    margin-right: 4.4%;
  }
}
@media only screen and (max-width: 770px) and (min-width: 650px) {
  .main-head .rounded-box {
    width: 100%;
    float: none;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-head .rounded-box-content {
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  -m-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
  padding: 40px 10px 0;
}
.main-head .rounded-box-content.first {
  padding: 40px 35px 0;
}
.main-head .rounded-box-content.second {
  padding: 40px 45px 0 55px;
}
.main-head .big-text {
  font-family: "ceraregular";
  font-weight: 700;
  display: block;
  font-size: 37px;
}
.main-head .number {
  width: 55px;
  height: 55px;
  text-align: center;
  color: #381451;
  font-size: 30px;
  font-weight: 700;
  background-color: #fff;
  display: table-cell;
  border-radius: 100%;
  vertical-align: middle;
  position: relative;
  z-index: 9;
}
.main-head .rounded-box-icon {
  display: block;
  width: 117px;
  height: 94px;
  background-repeat: no-repeat;
  background-image: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/landing-sp.png);
  position: absolute;
  left: 22px;
  top: -39px;
}
.main-head .rounded-box-icon.chip {
  background-position: 0 -10px;
}
.main-head .rounded-box-icon.formulario {
  background-position: -140px -10px;
}
.main-head .rounded-box-icon.codigo {
  width: 117px;
  height: 107px;
  background-position: -262px 0;
}
.main-head .rounded-box-icon.codigo-ingresa {
  background-position: 0 -159px;
  width: 117px;
  height: 120px;
  top: -50px;
}
.main-head .rounded-box-icon.estado {
  background-position: -150px -160px;
  top: -50px;
  width: 137px;
  height: 118px;
}
.main-head .rounded-box-icon.chip-inserta {
  background-position: -320px -179px;
  width: 117px;
  height: 108px;
}
.main-head .desplegable-title {
  display: block;
  cursor: pointer;
  color: #381451;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  padding: 15px;
  border: 1px solid #CCC;
  background: #fff;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIyJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iI2NjY2NjYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, white 2%, #ccc 99%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(2%, white), color-stop(99%, #ccc));
  background: -webkit-linear-gradient(top, white 2%, #ccc 99%);
  background: -o-linear-gradient(top, white 2%, #ccc 99%);
  background: -ms-linear-gradient(top, white 2%, #ccc 99%);
  background: linear-gradient(to bottom, white 2%, #ccc 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#cccccc",GradientType=0);
}
.main-head .desplegable-title.active .desplegable-icon {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/desplegable-icon-menos.png) no-repeat center center;
}
.main-head .desplegable-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-head .desplegable-content.active {
  max-height: 1000px;
}
.main-head .desplegable-icon {
  display: inline-block;
  margin-right: 10px;
  width: 16px;
  height: 14px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/desplegable-icon.png) no-repeat center center;
}
@media only screen and (max-width: 640px) {
  .main-head .hide-on-phones {
    display: none !important;
  }
}
.main-head .all-width.no-down {
  margin-bottom: 0;
}
.main-head .nuevos-planes .left-cont {
  background: #e9e9e9;
  margin: 18px 0 30px;
  padding: 22px 0 25px;
  width: 58.8%;
}
@media only screen and (max-width: 640px) {
  .main-head .nuevos-planes .left-cont {
    width: 100%;
  }
}
.main-head .nuevos-planes .left-cont p {
  text-align: center;
}
.main-head .nuevos-planes .left-cont p a {
  color: #4E0081;
  text-decoration: underline;
}
.main-head .header-plan {
  color: #fff;
  font-family: "ceraregular";
  margin: 0;
  padding: 10px;
  width: 100%;
  display: none;
  background: #381451;
}
@media only screen and (max-width: 640px) {
  .main-head .header-plan {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .center-mobile {
    text-align: center;
  }
}
.main-head .tipo-plan {
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
}
.main-head .cat-desta {
  overflow: hidden;
  box-shadow: -10px 21px 35px -50px #000;
}
.main-head .cat-pro {
  padding: 0 30px;
  border-right: 2px dotted #ddd;
  margin-bottom: 40px;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  .main-head .cat-pro {
    padding: 0 20px;
    border-right: 0 none;
  }
}
@media only screen and (max-width: 768px) {
  .main-head .cat-pro {
    width: 50%;
  }
}
.main-head .cat-pro:nth-child(odd) {
  border-right: none;
}
.main-head .cat-pro .precio-desta-wrap {
  background: #eee;
  padding: 10px;
  border-radius: 5px;
}
.main-head .cat-pro .wom-btn {
  font-size: 14px;
  max-width: 180px;
  float: right;
}
@media only screen and (max-width: 640px) {
  .main-head .cat-pro .wom-btn {
    width: 100%;
    max-width: 100%;
  }
}
.main-head .precio-desta-wrap span {
  display: block;
}
.main-head .precio-desta-wrap .cuota-inicial {
  font-size: 12px;
  font-weight: 700;
}
.main-head .label-prepago {
  font-size: 12px;
  margin: 5px 0 10px;
  display: block;
  font-family: "cerabold";
}
.main-head .desta-oferta .precio {
  font-size: 20px;
  color: #4E0081;
}
.main-head .desta-oferta .label-bajada {
  color: #4E0081;
  font-size: 12px;
  margin-bottom: 5px;
}
.main-head .desta-normal .precio {
  font-size: 14px;
  color: #333;
  font-weight: 400;
}
.main-head .desta-normal .label-bajada {
  font-size: 12px;
}
.main-head .arriendo {
  border-bottom: 1px solid #ddd;
}
.main-head .arriendo .precio {
  font-weight: 400;
  font-size: 14px;
  color: #4E0081;
}
.main-head .cat-img {
  width: 38%;
  float: left;
}
@media only screen and (max-width: 480px) {
  .main-head .cat-img {
    width: 50%;
    float: none;
    margin: 10px auto;
    display: table;
  }
}
.main-head .cat-info {
  float: right;
  margin-left: 2%;
  width: 60%;
  padding-left: 20px;
}
.main-head .cat-info .sin-porta .desta-normal .precio {
  font-weight: 700;
  font-size: 20px;
  color: #555;
}
@media only screen and (max-width: 480px) {
  .main-head .cat-info {
    width: 100%;
    padding: 0;
  }
}
.main-head .cat-info h3 {
  font-size: 16px;
  margin: 0;
}
.main-head .cat-info h2 {
  margin: 0;
  font-size: 20px;
  margin-bottom: 5px;
}
.main-head .precio-wrap {
  background: #aaa;
}
.main-head .catalogo {
  margin: 20px 0;
  overflow: hidden;
}
.main-head .cat-header-aux {
  border-bottom: 2px dotted #ddd;
  margin-bottom: 50px;
  overflow: hidden;
  padding: 15px 0;
}
.main-head .cat-header-aux h2 {
  float: left;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .main-head .cat-equipos-wrap {
    width: 100%;
  }
}
.main-head .filtros {
  background: rgba(0, 0, 0, 0.05);
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  .main-head .filtros {
    width: 100%;
  }
}
.main-head .filtros h3 {
  font-size: 14px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/filters.png) no-repeat right center #381451;
  margin: 0;
  color: #fff;
  font-family: "ceraregular";
  font-weight: 100;
  padding: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .main-head .filtros h3 {
    background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/arrow-down.png) no-repeat 96% center #381451;
  }
}
.main-head .filtros h4 {
  font-family: "ceraregular";
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}
.main-head .filter-wrap {
  padding: 0 20px;
}
.main-head .mobile-filter {
  -webkit-transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  -ms-transition: all ease 300ms;
  transition: all ease 300ms;
}
@media only screen and (max-width: 768px) {
  .main-head .mobile-filter {
    max-height: 0;
    overflow: hidden;
  }
}
.main-head .mobile-filter.open {
  max-height: 1000px;
}
.main-head .filter {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 30px;
}
.main-head .filter li {
  margin-bottom: 5px;
  overflow: hidden;
}
.main-head .filter li label {
  margin: 0 0 0 10px;
  float: left;
  width: 79%;
}
.main-head .filter li input {
  float: left;
}
.main-head .sort {
  float: right;
}
@media only screen and (max-width: 640px) {
  .main-head .sort {
    width: 100%;
    text-align: right;
  }
}
.main-head .sort form {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 480px) {
  .main-head .sort form {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .main-head .sort form select {
    width: 100%;
  }
}
.main-head .sort input[type=text] {
  border: 1px solid #ddd;
  height: 30px;
  display: inline-block;
  border-radius: 3px;
  padding: 0 10px;
  width: 150px;
  font-size: 14px;
}
@media only screen and (max-width: 640px) {
  .main-head .sort input[type=text] {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 640px) and (min-width: 481px) {
  .main-head .sort input[type=text] {
    float: left;
    width: 67%;
    margin-bottom: 0;
  }
}
.main-head .sort select {
  padding: 5px;
  min-width: 150px;
}
.main-head .sort select:focus {
  outline: 0 none;
  background: #381451;
  color: #FFF;
}
@media only screen and (max-width: 640px) {
  .main-head .sort select {
    margin: 10px 0;
  }
}
.main-head .search input[type=submit] {
  background: #4E0081;
  height: 30px;
  border: none;
  font-size: 14px;
  color: #fff;
  font-family: "ceraregular";
  border-radius: 5px;
  padding: 0 10px;
}
.main-head .paginador {
  padding: 20px 30px;
  width: 100%;
  width: 100%;
  border-top: 2px dotted #ddd;
  float: left;
}
@media only screen and (max-width: 640px) {
  .main-head .paginador {
    padding: 20px;
    text-align: center;
  }
}
.main-head .paginador ul {
  float: right;
  list-style: none;
}
@media only screen and (max-width: 640px) {
  .main-head .paginador ul {
    float: none;
    display: inline-block;
  }
}
.main-head .paginador ul li {
  float: left;
  margin: 0 5px;
}
.main-head .paginador ul li a {
  width: 20px;
  height: 20px;
  display: block;
  color: #4E0081;
  text-align: center;
}
.main-head .paginador ul li a.current {
  background: #381451;
  border-radius: 100%;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.main-head .head-landing-ficha {
  background-image: -webkit-linear-gradient(top, #fff 80%, #EBEBED 100%);
  background-image: -o-linear-gradient(top, #fff 80%, #EBEBED 100%);
  background-image: linear-gradient(to bottom, #fff 80%, #EBEBED 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF",endColorstr="#FFEBEBED",GradientType=0);
  overflow: hidden;
  width: 100%;
}
.main-head .equipo-head-img img {
  float: right;
  width: 100%;
  max-width: 350px;
}
.main-head .info-gral-ficha h1 {
  font-size: 40px;
  margin: 0 0 10px;
}
.main-head .info-gral-ficha h2 {
  font-size: 26px;
  margin: 0;
}
.main-head .info-gral-ficha .triangle-list {
  list-style: none;
}
.main-head .info-gral-ficha .triangle-list li {
  font-size: 14px;
  color: #555;
  margin: 0 0 10px;
  position: relative;
  padding-left: 30px;
  font-family: "ceraregular";
}
.main-head .info-gral-ficha .triangle-list li:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #555;
  content: "";
  left: 0;
  position: absolute;
  top: 3px;
}
.main-head .info-gral-ficha .triangle-list li strong {
  color: #4E0081;
  font-family: "cerabold";
}
.main-head .info-gral-ficha .precios {
  font-size: 12px;
  color: #242424;
}
.main-head .info-gral-ficha .precios li {
  list-style: none;
  margin: 0 0 2px;
  font-family: "cerabold";
}
.main-head .info-gral-ficha .precios li span {
  color: #4E0081;
}
.main-head .row.portabilidad-equipos {
  width: 75%;
}
@media only screen and (max-width: 640px) {
  .main-head .row.portabilidad-equipos {
    width: 100%;
  }
}
.main-head .row.portabilidad-equipos p {
  font-size: 15px;
  margin: 20px 0 0;
  padding: 16px 20px 17px 50px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/fecha-portabilidad.png) 1.2% 50% no-repeat #e9e9e9;
}
.main-head .row.portabilidad-equipos p a {
  color: #4E0081;
  text-decoration: underline;
}
.main-head .info-planes-equipo {
  box-shadow: inset 1px 0 0 0 #fff;
  float: left;
  display: inline-block;
}
.main-head .info-planes-equipo * {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .main-head .info-planes-equipo {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .info-planes-equipo {
    width: 100%;
  }
}
.main-head .info-planes-equipo:hover {
  position: relative;
  z-index: 500;
  background: #e9e9e9;
}
@media only screen and (max-width: 768px) {
  .main-head .info-planes-equipo:hover {
    z-index: 0;
    box-shadow: none;
  }
}
.main-head .info-planes-equipo:hover h3 {
  background: #4E0081;
  color: #fff;
  box-shadow: none;
  font-size: 24px;
}
.main-head .info-planes-equipo:hover .doble-cont {
  margin: 0 0 10px;
}
.main-head .info-planes-equipo:hover .doble-cont:before {
  content: "+";
  font-size: 25px;
  color: #000;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  display: table;
  font-weight: 700;
  font-family: arial;
}
.main-head .info-planes-equipo:hover .detalle-plan {
  opacity: 1;
  visibility: visible;
  position: static;
}
.main-head .info-planes-equipo:hover .wom-btn {
  opacity: 1;
  visibility: visible;
  position: relative;
  width: 100%;
}
.main-head .info-planes-equipo:hover .tit-cuota {
  color: #222;
}
.main-head .info-planes-equipo:hover .valor-cuota {
  color: #381451;
}
.main-head .info-planes-equipo:hover .sin-port-dos {
  color: #720184;
}
.main-head .info-planes-equipo:hover .sin-port-dos span {
  color: #720184;
}
.main-head .info-planes-equipo:hover .tit-detalle {
  color: #222;
}
.main-head .info-planes-equipo:hover .detalle1 {
  color: #222;
}
.main-head .info-planes-equipo:hover .detalle1 span {
  color: #222;
  display: block;
}
.main-head .info-planes-equipo:hover .cargo-fijo {
  color: #222;
}
.main-head .info-planes-equipo h3 {
  background: #f1f1f1;
  padding: 10px 20px;
  color: #555;
  font-size: 16px;
  font-family: "ceraregular";
  font-weight: 700;
  box-shadow: -2px 0 0 0 #fff;
  margin: 0 0 20px;
  text-align: center;
}
.main-head .info-planes-equipo .tipo-plan {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
}
.main-head .info-planes-equipo li {
  margin-bottom: 5px 0 5px 0;
  list-style: none;
}
.main-head .info-planes-equipo .tit-cuota {
  font-size: 14px;
  font-weight: 700;
  color: #a6a6a6;
}
.main-head .info-planes-equipo .detalle-plan {
  color: #720184;
  display: block;
  margin: 28px 0 8px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}
.main-head .info-planes-equipo .doble-cont {
  width: 100%;
  position: relative;
}
.main-head .info-planes-equipo .doble-cont li {
  float: left;
  padding: 0 6px 0 3px;
  width: 50%;
}
.main-head .info-planes-equipo .doble-cont:before {
  content: "+";
  font-size: 25px;
  color: #a6a6a6;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  display: table;
  font-weight: 700;
  font-family: arial;
}
.main-head .info-planes-equipo .wom-btn {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}
.main-head .info-planes-equipo .valor-cuota {
  color: #a6a6a6;
  font-size: 32px;
  font-weight: 700;
  padding: 10px 0;
  line-height: 18px;
}
.main-head .info-planes-equipo .valor-cuota span {
  font-size: 12px;
}
.main-head .info-planes-equipo .sin-port {
  color: #a6a6a6;
  font-size: 32px;
  font-weight: 700;
  line-height: 20px;
  padding-bottom: 12px;
  padding-left: 0;
  padding-top: 5px;
}
.main-head .info-planes-equipo .sin-port-dos {
  color: #a6a6a6;
  font-size: 14px;
  font-family: "cerabold";
  line-height: 14px;
  padding-bottom: 12px;
  padding-left: 0;
  padding-top: 5px;
}
.main-head .info-planes-equipo .sin-port span {
  font-size: 12px;
  color: #a6a6a6;
}
.main-head .info-planes-equipo .tit-detalle {
  font-size: 14px;
  color: #a6a6a6;
  font-weight: 700;
  padding-top: 15px;
}
.main-head .info-planes-equipo .detalle1 {
  font-size: 12px;
  color: #a6a6a6;
  padding-left: 0;
  padding-top: 5px;
}
.main-head .info-planes-equipo .detalle1 span {
  font-size: 14px;
  font-weight: 700;
  color: #a6a6a6;
}
.main-head .info-planes-equipo .detalle1 .valor {
  display: block;
  width: 100%;
}
.main-head .info-planes-equipo .cargo-fijo {
  font-size: 12px;
  color: #a6a6a6;
  padding-left: 0;
  padding-top: 5px;
}
.main-head .info-planes-equipo .cargo-fijo strong {
  display: block;
}
.main-head .info-planes {
  padding: 0 20px 20px;
}
.main-head .detalles-tecnicos {
  padding: 34px 0 0;
  float: none;
  width: 100%;
}
.main-head .detalles-tecnicos h2 {
  padding: 0 0 15px 20px;
  border-bottom: dotted 3px #e9e9e9;
  color: #242424;
  font-size: 20px;
}
.main-head .detalles-tecnicos li {
  list-style: none;
  margin: 0 0 5px;
}
.main-head .detalles-tecnicos li.dark {
  background: #e9e9e9;
}
.main-head .detalles-tecnicos li li {
  font-size: 12px;
}
.main-head .detalles-tecnicos li li:before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background: #242424;
  margin: 0 5px 0 0;
  border-radius: 5px;
}
.main-head .detalles-tecnicos .equipo .prev1 {
  display: block;
}
.main-head .detalles-tecnicos .equipo .prev2, .main-head .detalles-tecnicos .equipo .prev3, .main-head .detalles-tecnicos .equipo .prev4 {
  display: none;
}
.main-head .detalles-tecnicos .equipo .sae {
  display: block;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .main-head .detalles-tecnicos .equipo .sae {
    width: 82%;
  }
}
.main-head .detalles-tecnicos .vistas {
  max-width: 50px;
  width: 100%;
  margin: 70px 2% 0 3%;
}
.main-head .detalles-tecnicos .vistas a:hover {
  opacity: 0.5;
  -webkit-transition: opacity 500ms ease-out 0.05s;
  -moz-transition: opacity 500ms ease-out 0.05s;
  -o-transition: opacity 500ms ease-out 0.05s;
  transition: opacity 500ms ease-out 0.05s;
}
.main-head .detalles-tecnicos .descripcion * {
  font-family: "ceraregular";
}
.main-head .detalles-tecnicos .descripcion li {
  padding: 8px 10px 8px 20px;
}
.main-head .detalles-tecnicos .descripcion li h4 {
  margin: 0 0 10px;
}
.main-head .detalles-tecnicos .descripcion li li {
  padding: 0;
}
.main-head .equipos-empresa .col-n-m-3 {
  width: 20%;
}
.main-head .equipos_recomendados {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/border-top.png) top center no-repeat;
  padding: 34px 0 0;
  margin: 30px auto;
}
.main-head .equipos_recomendados h2 {
  position: relative;
  margin: 0 auto 30px;
  width: 100%;
  color: #381451;
  font-family: "ceraregular";
  font-size: 35px;
  font-weight: 700;
}
.main-head .equipos_recomendados * {
  font-weight: 400;
  text-align: center;
  font-family: "ceraregular";
  color: #242424;
}
.main-head .equipos_recomendados li h3 {
  font-family: "ceraregular";
  font-size: 15px;
}
.main-head .equipos_recomendados li h4 {
  font-size: 12px;
}
.main-head .equipos_recomendados li h4 span {
  width: 100%;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: 700;
}
.main-head .equipos_recomendados li img {
  max-width: 130px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.main-head .equipos_recomendados .more-btn {
  margin: 35px auto 20px;
}
@media only screen and (max-width: 640px) {
  .main-head .col-m-5.last.info-gral-ficha {
    background: #f1f1f1 none repeat scroll 0 0;
    padding: 20px;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .detalles-tecnicos .equipo.col-3 {
    margin: 30px 0 40px 15%;
    width: 145px;
  }
  .main-head .detalles-tecnicos .descripcion {
    width: 100%;
    position: relative;
    margin: 0 auto;
    float: none;
    overflow: hidden;
  }
  .main-head .info-planes-equipo .doble-cont:before {
    visibility: visible;
    opacity: 1;
  }
  .main-head .info-planes-equipo .detalle-plan {
    opacity: 1;
    visibility: visible;
    position: relative;
  }
  .main-head .info-planes-equipo .wom-btn {
    opacity: 1;
    visibility: visible;
    position: relative;
  }
  .main-head .info-planes-equipo {
    position: relative;
    z-index: 500;
    background: #e9e9e9;
  }
  .main-head .info-planes-equipo .doble-cont:before {
    visibility: visible;
    opacity: 1;
  }
  .main-head .info-planes-equipo .detalle-plan {
    opacity: 1;
    visibility: visible;
    position: relative;
  }
  .main-head .info-planes-equipo .wom-btn {
    opacity: 1;
    visibility: visible;
    position: relative;
  }
}
@media only screen and (max-width: 640px) and (max-width: 768px) {
  .main-head .info-planes-equipo {
    z-index: 0;
    box-shadow: none;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .info-planes-equipo h3 {
    background: #4E0081;
    color: #fff;
    box-shadow: none;
    font-size: 24px;
  }
  .main-head .info-planes-equipo .doble-cont:before {
    content: "+";
    font-size: 25px;
    color: #000;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    display: table;
    font-weight: 700;
    font-family: arial;
  }
  .main-head .info-planes-equipo .detalle-plan {
    opacity: 1;
    visibility: visible;
    position: static;
  }
  .main-head .info-planes-equipo .wom-btn {
    opacity: 1;
    visibility: visible;
    position: relative;
    width: 100%;
  }
  .main-head .info-planes-equipo .tit-cuota {
    color: #222;
  }
  .main-head .info-planes-equipo .valor-cuota {
    color: #381451;
  }
  .main-head .info-planes-equipo .sin-port {
    color: #381451;
  }
  .main-head .info-planes-equipo .sin-port span {
    color: #222;
  }
  .main-head .info-planes-equipo .tit-detalle {
    color: #222;
  }
  .main-head .info-planes-equipo .detalle1 {
    color: #222;
  }
  .main-head .info-planes-equipo .detalle1 span {
    color: #222;
    display: block;
  }
  .main-head .info-planes-equipo .cargo-fijo {
    color: #222;
  }
}
@media only screen and (max-width: 480px) {
  .main-head .equipos_recomendados .col-3 {
    width: 100%;
  }
}
.main-head .align-left {
  text-align: left;
}
.main-head .alerta-home {
  background: #e9e9e9;
  width: 100%;
  height: auto;
  -webkit-box-shadow: inset 0 0 5px 0 rgba(50, 50, 50, 0.43);
  -moz-box-shadow: inset 0 0 5px 0 rgba(50, 50, 50, 0.43);
  box-shadow: inset 0 0 5px 0 rgba(50, 50, 50, 0.43);
}
.main-head .alerta-home p {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icono_alerta.png) no-repeat scroll left center;
  margin: 0 auto;
  padding: 23px 27px;
  position: relative;
  text-align: center;
  width: 92%;
}
.main-head .alerta-home p a {
  color: #4E0081;
  font-weight: 700;
}
.main-head .why-wom-box {
  position: relative;
}
.main-head .why-wom-box a {
  display: block;
}
.main-head .why-wom-box .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-head .why-wom-box .mask:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjk5Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(99%, rgba(0, 0, 0, 0.99)), color-stop(100%, black));
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#000000",GradientType=0);
  content: "";
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  -o-transform: translate3d(0, 50%, 0);
  -ms-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  transition: all 300ms ease;
}
.main-head .why-wom-box .mask h2, .main-head .why-wom-box .mask h3 {
  color: #FFF;
  position: absolute;
  bottom: 10%;
  left: 0;
  padding: 0 25px;
  width: 100%;
  text-align: left;
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  -o-transform: translate3d(0, 50%, 0);
  -ms-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  transition: all 300ms ease;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  font-size: 52px;
  transition-delay: 300ms;
}
@media only screen and (max-width: 400px) {
  .main-head .why-wom-box .mask h2, .main-head .why-wom-box .mask h3 {
    font-size: 22px;
  }
}
.main-head .why-wom-box .mask h3 {
  font-size: 22px;
}
@media only screen and (max-width: 480px) {
  .main-head .why-wom-box .mask h3 {
    font-size: 52px;
  }
}
@media only screen and (max-width: 400px) {
  .main-head .why-wom-box .mask h3 {
    font-size: 22px;
  }
}
.main-head .why-wom-box .mask p {
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  color: #484c61;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  -o-transform: translate3d(0, 50%, 0);
  -ms-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  transition: all 300ms ease;
  padding: 0 25px;
}
@media only screen and (max-width: 830px) {
  .main-head .why-wom-box .mask p {
    top: auto;
    bottom: 50px;
  }
}
.main-head .why-wom-box.small p {
  top: 40%;
}
@media only screen and (max-width: 1000px) and (min-width: 830px) {
  .main-head .why-wom-box.small p {
    top: 10%;
  }
}
@media only screen and (max-width: 830px) {
  .main-head .why-wom-box.small p {
    top: auto;
    bottom: 10%;
  }
}
@media only screen and (max-width: 480px) {
  .main-head .why-wom-box {
    width: 100%;
    float: left;
  }
}
.main-head .no-touch .why-wom-box:hover .mask:before {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.main-head .no-touch .why-wom-box:hover .mask h2, .main-head .no-touch .why-wom-box:hover .mask h3 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0;
}
.main-head .no-touch .why-wom-box:hover .mask p {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  transition-delay: 300ms;
  color: #fff;
}
.main-head .touch .why-wom-box.active .mask:before {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}
.main-head .touch .why-wom-box.active .mask h2, .main-head .touch .why-wom-box.active .mask h3 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0;
}
.main-head .touch .why-wom-box.active .mask p {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  transition-delay: 300ms;
  color: #fff;
}
@media only screen and (max-width: 830px) {
  .main-head .why-wom-holder {
    width: 100%;
  }
}
.main-head .prepago .banner-principal .cifras .precio {
  line-height: 100%;
}
.main-head .home-slider.chip-equipo .bx-controls {
  margin-left: 40.5%;
  position: static;
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.chip-equipo .bx-controls {
    margin-left: 0;
    text-align: center;
  }
}
.main-head .home-slider.chip-equipo .bx-pager {
  float: left;
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.chip-equipo .bx-pager {
    display: inline-block;
    float: none;
  }
}
.main-head .home-slider.chip-equipo .equipo-oferta {
  width: auto;
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.chip-equipo .equipo-oferta {
    display: block;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.chip-equipo .datos .precio span, .main-head .home-slider.chip-equipo .cifras .precio span {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.chip-equipo .datos .precio, .main-head .home-slider.chip-equipo .cifras .precio {
    text-align: center;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.chip-equipo .datos, .main-head .home-slider.chip-equipo .cifras {
    text-align: center;
  }
}
.main-head .promocion-banner-left {
  width: 70.4%;
  float: left;
  margin-right: 2%;
}
@media only screen and (max-width: 768px) {
  .main-head .promocion-banner-left {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
.main-head .promocion-banner {
  background-color: #381451;
  color: #FFF;
  width: 27.6%;
  float: left;
  text-align: center;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 768px) {
  .main-head .promocion-banner {
    width: 100%;
    max-width: 300px;
    float: none;
    margin: 0 auto;
  }
}
.main-head .promocion-banner a {
  display: block;
  color: #FFF;
  padding: 30px 60px 50px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-head .promocion-banner a:hover {
  background-color: #541e7a;
}
@media only screen and (max-width: 940px) {
  .main-head .promocion-banner a {
    padding: 30px 30px 50px;
  }
}
.main-head .promocion-banner .normal-text {
  font-size: 18px;
  display: block;
  line-height: 130%;
  color: #B3B3B3;
}
.main-head .promocion-banner .big-text {
  font-size: 22px;
  font-family: "ceraregular";
  display: block;
  text-transform: uppercase;
  line-height: 130%;
}
.main-head .promocion-banner .big-number {
  font-size: 42px;
  font-weight: 700;
  display: block;
  line-height: 130%;
}
.main-head .promocion-banner .small-text {
  font-size: 12px;
  display: block;
  text-transform: uppercase;
  line-height: 130%;
  color: #B3B3B3;
}
.main-head .promocion-banner .inner-link {
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px solid #fff;
  margin-top: 10px;
  line-height: 130%;
  color: #B3B3B3;
}
.main-head .present-banner {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/chip-equipo/present-banner.png) no-repeat center center #fff;
  width: 47px;
  height: 47px;
  border-radius: 100%;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}
.main-head .slider-pro {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .main-head .slider-pro {
    overflow: visible;
  }
}
.main-head .slider-pro button {
  text-indent: -9999px;
  display: block;
  border: none;
  width: 50px;
  height: 50px;
}
.main-head .slider-pro .next {
  position: absolute;
  right: 10px;
  top: 50%;
  display: block;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/next.png) no-repeat center;
}
@media only screen and (max-width: 640px) {
  .main-head .slider-pro .next {
    top: -20px;
    right: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .main-head .slider-pro .next {
    top: 0;
  }
}
.main-head .slider-pro .anterior {
  position: absolute;
  left: 20px;
  top: 50%;
  display: block;
  background: red;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/prev.png) no-repeat center;
}
@media only screen and (max-width: 640px) {
  .main-head .slider-pro .anterior {
    top: -20px;
    left: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .main-head .slider-pro .anterior {
    top: 0;
  }
}
.main-head .slider-pro .slide {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 300ms ease;
  -moz-transition: opacity 300ms ease;
  -ms-transition: opacity 300ms ease;
  -o-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.main-head .slider-pro .slide.active {
  opacity: 1;
  visibility: visible;
  position: static;
}
.main-head .menu-select {
  margin: 10px auto;
}
.main-head .menu-select select {
  width: 100%;
  font-size: 18px;
  padding: 0 10px;
  font-family: "ceraregular";
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/arrow-down.png) no-repeat center right;
}
.main-head .error {
  background-color: #000;
  position: relative;
  padding: 200px 0;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .main-head .error {
    padding: 100px 0;
  }
}
.main-head .error h2 {
  color: #FFF;
  font-size: 61px;
  text-transform: uppercase;
  font-family: "ceraregular";
  margin-bottom: 10px;
}
@media only screen and (max-width: 640px) {
  .main-head .error h2 {
    font-size: 41px;
  }
}
.main-head .error p {
  color: #FFF;
  font-size: 18px;
  font-family: "ceraregular";
}
.main-head .error a {
  color: #fff;
  text-decoration: underline;
}
.main-head .error .content {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 640px) {
  .main-head .error .content.rotate {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
}
@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .main-head .error .col-6 {
    width: 100%;
    float: none;
  }
}
.main-head .error:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 150px;
  width: 100%;
  z-index: 999999;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjk5Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(99%, rgba(0, 0, 0, 0.99)), color-stop(100%, black));
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#000000",GradientType=0);
}
@media only screen and (max-width: 640px) {
  .main-head .error:after {
    display: none;
  }
}
.main-head .error-image-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 1024px) and (min-width: 641px) {
  .main-head .error-image-holder img {
    width: auto;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .error-image-holder img {
    width: auto;
  }
}
.main-head .error-form {
  display: block;
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}
.main-head .align-right {
  text-align: right;
}
.main-head .search-input-error {
  width: 85%;
  border: 2px solid #381451;
  border-right: 0;
  float: left;
  display: block;
  height: 52px;
  color: #FFF;
  background-color: transparent;
  padding: 10px;
}
.main-head .search-input-error:focus {
  outline: 0 none;
}
.main-head .submit-search-error {
  width: 15%;
  border: 2px solid #381451;
  border-left: 0;
  float: left;
  display: block;
  height: 52px;
  background-color: transparent;
  background-image: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/search-error.png);
  background-position: center center;
  background-repeat: no-repeat;
}
.main-head .submit-search-error:focus {
  outline: 0 none;
}
.main-head .main-foot .triangle-foot.error-footer {
  border-top: 50px inset #000;
}
@media only screen and (max-width: 1360px) {
  .main-head .error-image-holder img {
    width: auto;
  }
}
.main-head html, .main-head body {
  overflow-x: hidden;
}
.main-head .chromebrowser .prepago.p-telefonia .tarifas .box-ofertas .circle {
  top: -2px;
  left: -2px;
}
.main-head .head-landing .row {
  z-index: 5;
}
.main-head .bg-banner-top {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  width: 1200px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.main-head .ball-info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  background: #e9e9e9;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}
.main-head .ball-info * {
  text-align: center;
}
.main-head .ball-info h3 {
  margin-bottom: 5px;
}
.main-head .ball-info .ball {
  background: #381451;
  border-radius: 112px;
  color: #fff;
  font-family: "ceraregular";
  font-size: 46px;
  font-weight: 700;
  height: 112px;
  line-height: 94px;
  margin: 20px auto 0;
  overflow: hidden;
  position: relative;
  width: 112px;
  text-align: center;
}
.main-head .ball-info.white-inner .ball span {
  background: #fff;
  border-radius: 50px;
  bottom: -10px;
  color: #381451;
  font-family: "ceraregular";
  font-size: 27px;
  font-weight: 700;
  height: 48px;
  left: 34px;
  line-height: 43px;
  position: absolute;
  width: 48px;
}
.main-head .ball-info .descripcion {
  text-align: center;
  color: #242424;
  font-size: 11px;
  text-transform: uppercase;
  margin: 10px auto;
}
.main-head .ball-info p {
  font-size: 12px;
  margin: 0 0 6px;
  color: #242424;
}
.main-head .ball-info p span {
  font-size: 26px;
}
.main-head .ball-info .bottom-info {
  border-top: solid 1px #ccc;
  padding: 16px 0 10px;
}
.main-head .ball-info .bottom-info * {
  text-align: center;
}
.main-head .ball-info .bottom-info span {
  display: block;
  line-height: 18px;
  text-align: center;
  width: 100%;
  margin: 0 auto 10px;
  font-size: 11px;
  color: #242424;
}
.main-head .ball-info .bottom-info .big {
  font-size: 48px;
  color: #381451;
  font-family: "ceraregular";
  line-height: 120%;
}
.main-head .ball-info .bottom-info .wom-btn {
  position: absolute;
  bottom: 10px;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  right: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .main-head .ball-info .bottom-info .wom-btn {
    position: relative;
  }
}
.main-head .prepago h2 {
  text-align: center;
  color: #381451;
}
.main-head .prepago .terminos {
  position: relative;
  margin: 30px auto 0;
  display: block;
  max-width: 400px;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/bottom-shadow2.png) top center no-repeat;
  color: #381451;
}
.main-head .prepago.p-telefonia .kit-prepago li {
  position: relative;
  overflow: hidden;
}
.main-head .prepago.p-telefonia .kit-prepago li .info-kit {
  bottom: 30px;
  position: absolute;
  right: 20px;
  z-index: 5;
  -ms-transform: rotate(-14deg);
  -webkit-transform: rotate(-14deg);
  transform: rotate(-14deg);
}
.main-head .prepago.p-telefonia .kit-prepago li .info-kit .white-ball {
  background: #fff;
  border-radius: 100px;
  text-align: center;
  width: 114px;
  height: 114px;
  display: table-cell;
  vertical-align: middle;
}
.main-head .prepago.p-telefonia .kit-prepago li .info-kit .white-ball span {
  font-family: "ceraregular";
  color: #381451;
  width: 100%;
  float: left;
  display: table;
  line-height: 24px;
  font-weight: 700;
  padding: 3px 0;
}
.main-head .prepago.p-telefonia .kit-prepago li .info-kit .white-ball .navega {
  font-size: 18px;
}
.main-head .prepago.p-telefonia .kit-prepago li .info-kit .white-ball .cifra {
  font-size: 42px;
}
.main-head .prepago.p-telefonia .kit-prepago li .info-kit .white-ball .mb {
  font-size: 25px;
}
.main-head .prepago.p-telefonia .kit-prepago li .info-kit span {
  color: #fff;
  text-align: center;
  font-size: 35px;
  font-family: "ceraregular";
  width: 100%;
  float: left;
  line-height: 21px;
}
.main-head .prepago.p-telefonia .kit-prepago li .info-kit span.por {
  font-size: 12px;
  text-align: left;
  width: 100%;
  float: left;
  font-family: "ceraregular";
  padding: 0 0 0 20px;
  margin: 0;
}
.main-head .prepago.p-telefonia .kit-prepago li .more {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 27px;
  height: 27px;
  color: #381451;
  text-align: center;
  line-height: 27px;
  background: #fff;
  z-index: 5;
  font-weight: 700;
}
.main-head .prepago.p-telefonia .kit-prepago li img {
  position: relative;
  z-index: 1;
  float: left;
}
.main-head .prepago.p-telefonia .tarifas {
  margin: 0 auto 50px;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas {
  border: solid 3px #381451;
  border-radius: 150px;
  margin-bottom: 20px;
  position: relative;
  height: 150px;
  display: table;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas .circle {
  display: table;
  background: #381451;
  border-radius: 100px;
  color: #fff;
  width: 150px;
  height: 150px;
  text-align: center;
  float: left;
  position: absolute;
  top: 0;
  left: 0;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas .circle.right {
  float: right;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas .circle.oval {
  width: 35%;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas .circle.oval.left {
  text-align: left;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas .circle.oval.left p, .main-head .prepago.p-telefonia .tarifas .box-ofertas .circle.oval.left span {
  padding: 0 30px 0 24%;
  display: block;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas .circle div {
  vertical-align: middle;
  display: table-cell;
  -ms-transform: rotate(-14deg);
  -webkit-transform: rotate(-14deg);
  transform: rotate(-14deg);
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas .circle p {
  font-family: "ceraregular";
  width: 100%;
  font-size: 21px;
  font-weight: 700;
  padding: 0 12px 0 10px;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas .circle span {
  font-family: "ceraregular";
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas span.left {
  text-align: left;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas ul {
  display: table-cell;
  margin: 35px auto 0;
  width: 100%;
  padding-left: 158px;
  vertical-align: middle;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas ul.right {
  margin: 56px 12px 0 30px;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas ul li {
  list-style: none;
  display: table-cell;
  vertical-align: middle;
  color: #381451;
  padding: 0 10px;
  font-size: 24px;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas ul li span {
  display: block;
  float: left;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 35px;
}
@media only screen and (max-width: 640px) {
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul li span {
    font-size: 25px;
  }
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas ul li .small-center {
  font-size: 12px;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas ul li .small-left {
  font-size: 12px;
  text-align: left;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas ul li .big-price {
  font-size: 35px;
  text-align: right;
  font-weight: 700;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas ul li .big-price.left {
  text-align: left;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas ul li .small {
  width: 100%;
  line-height: 10px;
  text-align: right;
  font-size: 15px;
  font-weight: 700;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas ul.first-line li:first-child {
  border-right: solid 3px #381451;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas a {
  position: absolute;
  bottom: 10px;
  left: 174px;
  color: #381451;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas a.right {
  left: auto;
  right: 90px;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas.center {
  margin: 30px auto;
  float: none;
  overflow: hidden;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas.relative-position {
  position: relative;
  overflow: visible;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas-small {
  border: solid 2px #381451;
  border-radius: 100px;
  min-width: 225px;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas-small .circle {
  border-radius: 100px;
  display: table;
  float: left;
  height: 90px;
  width: auto;
  background: #381451;
  color: #fff;
  margin-left: -1px;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas-small .circle div {
  display: table-cell;
  vertical-align: middle;
  -ms-transform: rotate(-14deg);
  -webkit-transform: rotate(-14deg);
  transform: rotate(-14deg);
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas-small .circle span {
  display: block;
  padding: 0 30px 0 39px;
  text-align: center;
  width: 100%;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas-small .circle p {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 25px;
  padding: 0 26px 0 20px;
  text-align: right;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas-small ul {
  display: table;
  float: left;
  margin: 25px 0 0 5px;
  width: auto;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas-small ul li {
  list-style: none;
  display: table-cell;
  vertical-align: middle;
  color: #381451;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas-small ul li p {
  font-size: 20px;
  font-weight: 700;
}
.main-head .prepago .menu-prepago li {
  float: left;
  font-size: 18px;
  font-family: "ceraregular";
  text-align: center;
  font-weight: 700;
}
.main-head .prepago .menu-prepago li a {
  display: block;
  color: #720184;
  padding: 0;
  height: 52px;
  position: relative;
}
.main-head .prepago .menu-prepago li a:hover {
  color: #242424;
}
.main-head .prepago .menu-prepago li a.activo .active-bar {
  width: 60%;
  background: #720184;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 5;
}
.main-head .prepago .bottom-bar {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  height: 5px;
  overflow: hidden;
}
.main-head .prepago .bottom-bar span {
  width: 0;
  background: #4E0081;
  float: none;
  height: 15px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: block;
  z-index: 2;
}
.main-head .prepago .bottom-bar .bar-bg {
  width: 80%;
  background: none;
  float: none;
  height: 15px;
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  display: block;
  z-index: 2;
  top: 0;
  left: 10%;
}
.main-head .prepago .banner-prepago {
  margin: 10px auto 0;
}
.main-head .prepago .banner-principal {
  position: relative;
  max-width: 806px;
  margin: 0 auto;
}
.main-head .prepago .banner-principal .equipo img {
  max-width: 300px;
  width: 100%;
}
.main-head .prepago .banner-principal ul li {
  list-style: none;
}
.main-head .prepago .banner-principal .datos li {
  color: #242424;
  margin: 10px 0;
}
.main-head .prepago .banner-principal .datos li span {
  color: #720184;
}
.main-head .prepago .banner-principal .datos li:before {
  content: "";
  display: inline-block;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-right-arrow.png) center no-repeat;
  width: 8px;
  height: 9px;
  margin: 0 10px 0 0;
}
.main-head .prepago .banner-principal .cifras {
  text-transform: uppercase;
}
.main-head .prepago .banner-principal .cifras .precio {
  font-size: 50px;
  color: #381451;
  font-weight: 700;
  line-height: 20px;
  border-bottom: 3px dotted #e9e9e9;
  margin: 14px 0 10px;
  padding: 0 0 6px;
  width: auto;
  display: table;
}
.main-head .prepago .banner-principal .cifras .precio span {
  font-size: 14px;
  color: #242424;
  text-transform: uppercase;
}
.main-head .prepago .banner-principal .cifras .precio .anexo {
  background: #381451;
  border-radius: 150px;
  bottom: 75px;
  color: #fff;
  height: 122px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 122px;
  display: table;
}
.main-head .prepago .banner-principal .cifras .precio .anexo p {
  font-size: 12px;
  text-transform: uppercase;
  display: table-cell;
  vertical-align: middle;
}
.main-head .prepago .banner-principal .cifras .precio .anexo p span {
  color: #fff;
  font-size: 28px;
  font-weight: 100;
}
.main-head .prepago .banner-principal .cifras .precio .anexo .more-btn {
  background: #720184 url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/add_icon.png) no-repeat scroll center center;
  bottom: 10px;
  height: 32px;
  left: -10px;
  position: absolute;
  width: 32px;
  z-index: 5;
}
.main-head .prepago .banner-mod2 .banner-principal {
  max-width: 815px;
  min-height: 340px;
}
.main-head .prepago .banner-mod2 .banner-principal .col-3, .main-head .prepago .banner-mod2 .banner-principal .col-6 {
  margin: 0;
}
.main-head .prepago .banner-mod2 .grafica {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.main-head .prepago .banner-mod2 .left-cont {
  float: left;
  width: 200px;
}
.main-head .prepago .banner-mod2 .left-cont .right-align li {
  text-align: right;
}
.main-head .prepago .banner-mod2 .right-cont {
  width: 200px;
  float: right;
}
.main-head .prepago .banner-mod2 .right-cont .left-align li {
  text-align: left;
}
.main-head .prepago .banner-mod2 h3 {
  color: #666;
}
.main-head .prepago .banner-mod2 .precio {
  font-size: 50px;
  color: #381451;
  font-weight: 700;
  line-height: 20px;
}
.main-head .prepago .banner-mod2 .cuota {
  font-size: 13px;
  margin: 4px 0;
}
.main-head .prepago .banner-mod2 .gb {
  color: #381451;
  font-size: 25px;
  margin: 10px 0 4px;
}
.main-head .prepago .banner-mod2 .duracion {
  color: #666;
  font-size: 13px;
  margin: 0 0 4px;
}
.main-head .prepago .banner-mod2 .descripcion {
  color: #666;
  font-size: 12px;
  margin: 0 0 10px;
}
.main-head .prepago .banner-promo {
  margin: 0 auto 26px;
}
.main-head .prepago .banner-promo .banner {
  background: #e9e9e9;
  position: relative;
  overflow: hidden;
  min-height: 190px;
}
.main-head .prepago .banner-promo .banner .ball {
  margin: 30px auto 0;
}
.main-head .prepago .banner-promo .banner .nombre-plan .info {
  z-index: 5;
  display: table;
  margin: 39px 0 0 10%;
  position: relative;
  -ms-transform: rotate(-14deg);
  -webkit-transform: rotate(-14deg);
  transform: rotate(-14deg);
}
.main-head .prepago .banner-promo .banner .nombre-plan .info h3 {
  color: #fff;
  display: table-row;
  font-size: 30px;
  margin: 0;
  vertical-align: middle;
}
.main-head .prepago .banner-promo .banner .nombre-plan .info span {
  color: #fff;
  display: table-row;
  vertical-align: middle;
}
.main-head .prepago .banner-promo .banner .nombre-plan .circle {
  background: #381451;
  border-radius: 500px;
  height: 400px;
  position: absolute;
  right: 72%;
  top: -40px;
  width: 400px;
  z-index: 1;
}
.main-head .prepago .banner-promo .banner .nombre-plan img {
  max-width: 210px;
  position: absolute;
  left: 15.6%;
  bottom: 0;
  z-index: 5;
}
.main-head .prepago .banner-promo .banner .middle-col {
  margin: 0 2px 0 1.1%;
  width: 130px;
}
.main-head .prepago .banner-promo .banner .cent-info span {
  float: left;
  font-weight: 700;
  color: #666;
  font-size: 38px;
  margin: 72px 0 0;
}
.main-head .prepago .banner-promo .banner .cent-info ul {
  float: left;
  margin: 53px 0 0 2%;
}
.main-head .prepago .banner-promo .banner .cent-info li {
  text-align: center;
  font-size: 14px;
  color: #242424;
}
.main-head .prepago .banner-promo .banner .cent-info li:first-child {
  font-size: 48px;
  font-weight: 700;
}
.main-head .prepago .banner-promo .banner .right {
  width: 30.5%;
  padding: 8px 18px 0 0;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/border-left-bg.png) 10px 50% no-repeat;
  min-height: 190px;
  height: auto;
  overflow: hidden;
}
.main-head .prepago .banner-promo .banner .right * {
  float: right;
  text-align: right;
  font-family: "ceraregular";
  color: #242424;
}
.main-head .prepago .banner-promo .banner .right span {
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
}
.main-head .prepago .banner-promo .banner .right .big {
  font-size: 46px;
  color: #381451;
  font-weight: 700;
  width: 100%;
}
.main-head .prepago .banner-promo .banner .right .precio {
  font-size: 22px;
  width: 100%;
}
.main-head .prepago .banner-promo .banner .right a {
  color: #fff;
}
.main-head .prepago .banner-promo .banner .right .wom-btn {
  width: 60%;
  text-align: left;
  margin: 10px 0 0;
}
.main-head .prepago .banner-promo ul li {
  list-style: none;
}
.main-head .prepago .opciones-prepago li {
  background: #e9e9e9;
  padding: 20px 0 10px;
  text-align: center;
}
.main-head .prepago .opciones-prepago .bottom-info {
  border-top: solid 1px #ccc;
  padding: 16px 0 10px;
}
.main-head .prepago .opciones-prepago .bottom-info * {
  text-align: center;
}
.main-head .prepago .opciones-prepago .bottom-info span {
  display: block;
  line-height: 18px;
  text-align: center;
  width: 100%;
  margin: 0 auto 14px;
  font-size: 11px;
}
.main-head .prepago .opciones-prepago .bottom-info .big {
  font-size: 38px;
}
.main-head .prepago .opciones-prepago .bottom-info .wom-btn {
  position: relative;
  margin: 0 auto;
  display: block;
}
.main-head .prepago .condiciones {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/nav-bg-bottom.jpg) top center no-repeat;
  padding: 20px 0 0;
  margin: 15px auto 60px;
}
.main-head .prepago .condiciones li {
  text-align: center;
}
.main-head .prepago .condiciones li h3 {
  color: #999;
}
.main-head .prepago .condiciones li span {
  color: #381451;
  border-bottom: 1px solid #242424;
  color: #381451;
  display: block;
  float: none;
  font-size: 51px;
  font-weight: 700;
  line-height: 18px;
  margin: 24px auto 12px;
  padding-bottom: 12px;
  position: relative;
  width: auto;
  display: table;
}
.main-head .prepago .condiciones li p {
  color: #381451;
}
.main-head .prepago .cont-planes-bolsas h2 span {
  color: #666;
  font-family: "ceraregular";
  font-size: 16px;
  font-weight: 100;
  text-transform: uppercase;
}
.main-head .no-touch .prepago.p-telefonia .kit-prepago li:hover .ball-info, .main-head .touch .prepago.p-telefonia .kit-prepago li.active .ball-info {
  visibility: visible;
  opacity: 1;
}
.main-head .why-wom-box {
  position: relative;
}
.main-head .why-wom-box a {
  display: block;
}
.main-head .why-wom-box .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-head .why-wom-box .mask:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjk5Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(99%, rgba(0, 0, 0, 0.99)), color-stop(100%, black));
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.99) 99%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#000000",GradientType=0);
  content: "";
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  -o-transform: translate3d(0, 50%, 0);
  -ms-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.main-head .why-wom-box .mask h2, .main-head .why-wom-box .mask h3 {
  color: #FFF;
  position: absolute;
  bottom: 10%;
  left: 0;
  padding: 0 25px;
  width: 100%;
  text-align: left;
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  -o-transform: translate3d(0, 50%, 0);
  -ms-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  transition: all 300ms ease;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  font-size: 52px;
  transition-delay: 300ms;
}
@media only screen and (max-width: 400px) {
  .main-head .why-wom-box .mask h2, .main-head .why-wom-box .mask h3 {
    font-size: 22px;
  }
}
.main-head .why-wom-box .mask h3 {
  font-size: 22px;
}
@media only screen and (max-width: 480px) {
  .main-head .why-wom-box .mask h3 {
    font-size: 52px;
  }
}
@media only screen and (max-width: 400px) {
  .main-head .why-wom-box .mask h3 {
    font-size: 22px;
  }
}
.main-head .why-wom-box .mask p {
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  color: #484c61;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  -o-transform: translate3d(0, 50%, 0);
  -ms-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  transition: all 300ms ease;
  padding: 0 25px;
}
@media only screen and (max-width: 830px) {
  .main-head .why-wom-box .mask p {
    top: auto;
    bottom: 50px;
  }
}
.main-head .why-wom-box.small p {
  top: 40%;
}
@media only screen and (max-width: 1000px) and (min-width: 830px) {
  .main-head .why-wom-box.small p {
    top: 10%;
  }
}
@media only screen and (max-width: 830px) {
  .main-head .why-wom-box.small p {
    top: auto;
    bottom: 10%;
  }
}
@media only screen and (max-width: 480px) {
  .main-head .why-wom-box {
    width: 100%;
    float: left;
  }
}
.main-head .no-touch .why-wom-box:hover .mask:before {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}
.main-head .no-touch .why-wom-box:hover .mask h2, .main-head .no-touch .why-wom-box:hover .mask h3 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0;
}
.main-head .no-touch .why-wom-box:hover .mask p {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  transition-delay: 300ms;
  color: #fff;
}
@media only screen and (max-width: 830px) {
  .main-head .why-wom-holder {
    width: 100%;
  }
}
.main-head .prepago .banner-principal .cifras .precio {
  line-height: 100%;
}
.main-head .home-slider.chip-equipo .bx-controls {
  margin-left: 40.5%;
  position: static;
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.chip-equipo .bx-controls {
    margin-left: 0;
    text-align: center;
  }
}
.main-head .home-slider.chip-equipo .bx-pager {
  float: left;
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.chip-equipo .bx-pager {
    display: inline-block;
    float: none;
  }
}
.main-head .home-slider.chip-equipo .equipo-oferta {
  width: auto;
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.chip-equipo .equipo-oferta {
    display: block;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.chip-equipo .datos .precio span, .main-head .home-slider.chip-equipo .cifras .precio span {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.chip-equipo .datos .precio, .main-head .home-slider.chip-equipo .cifras .precio {
    text-align: center;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.chip-equipo .datos, .main-head .home-slider.chip-equipo .cifras {
    text-align: center;
  }
}
.main-head .promocion-banner-left {
  width: 70.4%;
  float: left;
  margin-right: 2%;
}
@media only screen and (max-width: 768px) {
  .main-head .promocion-banner-left {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
.main-head .promocion-banner {
  background-color: #381451;
  color: #FFF;
  width: 27.6%;
  float: left;
  text-align: center;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 768px) {
  .main-head .promocion-banner {
    width: 100%;
    max-width: 300px;
    float: none;
    margin: 0 auto;
  }
}
.main-head .promocion-banner a {
  display: block;
  color: #FFF;
  padding: 30px 60px 50px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-head .promocion-banner a:hover {
  background-color: #541e7a;
}
@media only screen and (max-width: 940px) {
  .main-head .promocion-banner a {
    padding: 30px 30px 50px;
  }
}
.main-head .promocion-banner .normal-text {
  font-size: 18px;
  display: block;
  line-height: 130%;
  color: #B3B3B3;
}
.main-head .promocion-banner .big-text {
  font-size: 22px;
  font-family: "ceraregular";
  display: block;
  text-transform: uppercase;
  line-height: 130%;
}
.main-head .promocion-banner .big-number {
  font-size: 42px;
  font-weight: 700;
  display: block;
  line-height: 130%;
}
.main-head .promocion-banner .small-text {
  font-size: 12px;
  display: block;
  text-transform: uppercase;
  line-height: 130%;
  color: #B3B3B3;
}
.main-head .promocion-banner .inner-link {
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px solid #fff;
  margin-top: 10px;
  line-height: 130%;
  color: #B3B3B3;
}
.main-head .present-banner {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/chip-equipo/present-banner.png) no-repeat center center #fff;
  width: 47px;
  height: 47px;
  border-radius: 100%;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media only screen and (max-width: 960px) {
  .main-head .bg-banner-top {
    left: -20%;
  }
  .main-head .prepago .banner-promo .banner .nombre-plan img {
    width: 20%;
  }
  .main-head .prepago .banner-principal .cifras .precio .anexo {
    bottom: 105px;
  }
}
@media only screen and (max-width: 768px) {
  .main-head .prepago .banner-mod2 .grafica {
    display: block;
    margin: 0 auto;
    position: relative;
    width: 50%;
  }
  .main-head .prepago .banner-mod2 .left-cont {
    width: 50%;
  }
  .main-head .prepago .banner-mod2 .left-cont .right-align li {
    text-align: center;
  }
  .main-head .prepago .banner-mod2 .right-cont {
    width: 50%;
  }
  .main-head .prepago .banner-mod2 .right-cont .left-align li {
    text-align: center;
  }
  .main-head .prepago .banner-mod2 .wom-btn {
    width: 50%;
  }
  .main-head .prepago .kit-prepago .col-4 {
    float: none;
    margin: 0 auto 20px;
    overflow: hidden;
    width: 60%;
  }
  .main-head .prepago .banner .col-4.nombre-plan {
    width: 100%;
    background: #381451;
    position: relative;
  }
  .main-head .prepago .banner .col-4.nombre-plan .info {
    margin: 30px 0 38px 10%;
  }
  .main-head .prepago .banner .col-4.nombre-plan img {
    left: auto;
    right: 8%;
    width: 48%;
  }
  .main-head .prepago .banner .col-4.nombre-plan .circle {
    display: none;
  }
  .main-head .prepago .banner .cent-info.col-2 {
    width: 29%;
  }
  .main-head .prepago .banner .col-4.right {
    width: 45.5%;
    float: right;
  }
  .main-head .prepago .banner .col-4.center {
    width: 270px;
  }
  .main-head .col-5.equipo {
    float: right;
    margin: 0;
  }
  .main-head .banner-principal .col-7.last {
    padding: 0 0 0 26px;
  }
  .main-head .banner-principal .col-7.last .wom-btn {
    width: 180px;
  }
  .main-head .prepago .banner-principal .cifras .precio .anexo {
    background: none;
    bottom: auto;
    color: #000;
    float: left;
    height: auto;
    margin: 0;
    overflow: hidden;
    padding: 0 0 0 30px;
    position: relative;
    text-align: left;
    top: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  .main-head .tarifas {
    width: 80%;
    margin: 0 auto;
  }
  .main-head .tarifas .col-6 {
    width: 100%;
  }
  .main-head .tarifas .box-ofertas {
    position: relative;
    margin: 0 auto;
    float: none;
    overflow: hidden;
  }
  .main-head .tarifas .box-ofertas.center {
    width: 100%;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas-small {
    margin: 0 0 20px 4%;
    width: 45%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .prepago .banner-principal .equipo {
    width: 100%;
  }
  .main-head .prepago .banner-principal .equipo img {
    width: 40%;
    position: relative;
    margin: 0 auto;
    display: block;
  }
  .main-head .head-landing {
    margin: 0 auto;
  }
  .main-head .head-landing h1 {
    display: block;
    padding: 30px 0;
  }
  .main-head .head-landing h1 span {
    display: block;
    line-height: 24px;
    margin: 30px auto 0;
  }
  .main-head .prepago .bottom-bar {
    bottom: 0;
  }
  .main-head .prepago .menu-prepago {
    padding: 0 0 15px;
    display: table;
    width: 100%;
  }
  .main-head .prepago .menu-prepago li {
    display: table;
  }
  .main-head .prepago .menu-prepago li a {
    display: table-cell;
    vertical-align: middle;
    font-size: 15px;
  }
  .main-head .prepago h2 {
    margin: 20px auto 30px;
    position: relative;
    width: 90%;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas-small {
    width: 95%;
  }
  .main-head .tarifas {
    width: 90%;
  }
  .main-head .banner-principal .col-7.last {
    width: 95%;
  }
  .main-head .prepago .banner .cent-info.col-2 {
    width: 100%;
  }
  .main-head .prepago .banner .col-4.right {
    width: 100%;
    background: none;
  }
  .main-head .prepago .banner .col-4.right .precio {
    margin: 0 auto 10px;
  }
  .main-head .prepago .banner .col-4.right * {
    text-align: center;
  }
  .main-head .prepago .banner .col-4.right .wom-btn {
    display: block;
    float: none;
    margin: 15px auto 0;
    overflow: hidden;
    position: relative;
    width: 45%;
  }
  .main-head .prepago .banner .col-4.center {
    position: relative;
    margin: 0 auto;
    width: 270px;
    float: none;
  }
  .main-head .condiciones li.col-4 {
    position: relative;
    float: none;
    margin: 0 auto;
    width: 100%;
  }
  .main-head .condiciones li.col-4 span {
    width: 100%;
    border-bottom: dotted 3px #e9e9e9;
  }
  .main-head .condiciones li.col-4.last {
    margin: 0 auto;
  }
  .main-head .opciones-prepago ul li {
    width: 100%;
  }
  .main-head .opciones-prepago ul li .bottom-info .wom-btn {
    width: 45%;
  }
  .main-head .prepago .banner-mod2 .left-cont {
    width: 100%;
  }
  .main-head .prepago .banner-mod2 .right-cont {
    width: 100%;
  }
  .main-head .prepago .banner-mod2 .wom-btn {
    width: 50%;
  }
  .main-head .cuota-arriendo {
    font-weight: 700;
  }
  .main-head .chromebrowser .prepago.p-telefonia .tarifas .box-ofertas .circle {
    top: -2px;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas .circle div {
    display: table-cell;
    margin: 15px auto 20px;
    position: relative;
    width: 100%;
    transform: rotate(0deg);
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas .circle.oval {
    width: 100%;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas .circle.oval.left {
    text-align: center;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas .circle.oval.left p, .main-head .prepago.p-telefonia .tarifas .box-ofertas .circle.oval.left span {
    padding: 0;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul {
    float: none;
    margin: 0 auto 20px;
    position: relative;
    width: auto;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul.right {
    float: none;
    margin: 0 auto 20px;
    position: relative;
    width: auto;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas a {
    position: relative;
    bottom: auto;
    left: auto;
    float: none;
    margin: 0 auto 16px;
    text-align: center;
    display: table;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas a.right {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    float: none;
    margin: 0 auto 16px;
    text-align: center;
    display: table;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas-small ul {
    float: none;
    margin: 25px auto 0;
    width: 28%;
  }
}
@media only screen and (max-width: 480px) {
  .main-head .tarifas {
    width: 95%;
  }
  .main-head .prepago .kit-prepago .col-4 {
    float: none;
    margin: 0 auto 20px;
    overflow: hidden;
    width: 100%;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas {
    padding: 0 0 20px;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul {
    width: 100%;
    position: relative;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul.first-line li:first-child {
    border-right: 0;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul li {
    display: inline-block;
    float: none;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul li span.left {
    text-align: center;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul li span.small-left {
    text-align: center;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul li .small {
    line-height: 38px;
    margin: 0 0 0 6px;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas .valor {
    display: block;
    width: 100%;
    position: relative;
    float: left;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas .valor:after {
    content: "";
    position: relative;
    width: 50%;
    height: 1px;
    margin: 0 auto 10px;
    border-bottom: solid 1px #381451;
    display: block;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas .valor p {
    display: table;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: auto;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas .valor p span {
    width: auto;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas .circle {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    margin-bottom: 10px;
    background-color: transparent;
    color: #381451;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas .circle div {
    display: block;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul {
    padding-left: 0;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 640px) {
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul.first-line li:first-child {
    display: block;
    width: 90%;
    overflow: hidden;
    float: none;
    border-bottom: solid 3px #381451;
    border-right: 0 none;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul li .big-price {
    text-align: left;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas a {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas a.right {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
  }
  .main-head .prepago.p-telefonia .tarifas .box-ofertas.relative-position {
    margin-bottom: 30px;
  }
}
.main-head .prepago h2.align-left {
  text-align: left;
}
.main-head .prepago-img-info {
  position: absolute;
  bottom: 10px;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  padding: 10px;
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  transform: rotate(-10deg);
}
.main-head .prepago-img-info:after {
  content: "+";
  color: #fff;
  text-shadow: 1px 0 1px rgba(0, 0, 0, 0.5);
  position: absolute;
  font-size: 50px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  left: 20px;
  font-weight: 700;
  right: 0;
}
@media only screen and (max-width: 983px) and (min-width: 768px) {
  .main-head .prepago-img-info:after {
    left: -6%;
  }
}
.main-head .text-value {
  color: #fff;
  font-size: 19px;
  font-family: "ceraregular";
  display: block;
  text-shadow: 1px 0 1px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
.main-head .big-value {
  color: #FFF;
  font-size: 38px;
  font-family: "ceraregular";
  display: block;
  text-shadow: 1px 0 1px rgba(0, 0, 0, 0.5);
}
.main-head .rounded-box-prepago {
  background-color: #fff;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  margin: 0;
  float: right;
  display: table;
  margin-bottom: 20px;
}
.main-head .ball-info .rounded-box-prepago {
  float: none;
  width: 112px;
  height: 112px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.main-head .rounded-box-prepago .wrapper {
  display: table-cell;
  vertical-align: middle;
}
.main-head .rounded-box-prepago span {
  color: #FFF;
  font-size: 18px;
  color: #381451;
  text-transform: uppercase;
  display: block;
  font-family: "ceraregular";
  font-weight: 700;
}
.main-head .ball-info .rounded-box-prepago span {
  font-size: 21px;
}
.main-head .box-packaging-title {
  color: #381451;
  font-size: 34px;
  position: absolute;
  top: -15px;
  left: 0;
  padding: 10px;
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  transform: rotate(-10deg);
  z-index: 2;
  width: 170px;
  text-align: center;
  text-shadow: 1px 2px 0 rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 768px) {
  .main-head .box-packaging-title {
    display: none;
  }
}
.main-head .description.wrapp-top {
  margin-top: 10px;
}
.main-head .prepago.p-telefonia .tarifas .box-ofertas ul li span.small {
  display: inline;
}
@media only screen and (max-width: 768px) {
  .main-head .prepago.p-telefonia .tarifas .box-ofertas ul li span.small {
    float: none;
  }
}
.main-head .bolsas-holder {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
}
.main-head .bolsas-holder.active {
  opacity: 1;
  max-height: 500px;
}
.main-head span.wom-btn {
  color: #FFF !important;
  font-size: 19px !important;
}
.main-head .prepago .banner-principal {
  margin-bottom: 20px;
}
@media only screen and (max-width: 640px) {
  .main-head .home-slider.slider-prepago .bx-viewport {
    background-color: transparent;
  }
}
.main-head .gestor-info .plan-info {
  max-width: 100%;
  text-align: right;
}
.main-head .gestor-info .plan-info span {
  font-size: 60px;
  line-height: 100%;
}
.main-head .gestor-info .plan-info span.big-text {
  font-size: 94px;
}
@media only screen and (max-width: 1024px) and (min-width: 801px) {
  .main-head .gestor-info .plan-info span.big-text {
    font-size: 64px;
  }
}
.main-head .gestor-info .plan-info p {
  float: none;
}
.main-head .gest-info h3 {
  margin: 0 0 20px;
  font-size: 16px;
}
.main-head .gest-info p {
  font-size: 12px;
  line-height: 160%;
}
.main-head .gest-info ul {
  list-style: none;
  font-size: 12px;
}
.main-head .gest-info ul li {
  margin-bottom: 15px;
}
.main-head .gest-info ul li:last-child {
  margin-bottom: 0;
}
.main-head .shadow-right {
  -webkit-box-shadow: 2px 0 5px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 0 5px 1px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 2px 0 5px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 0 5px 1px rgba(0, 0, 0, 0.2);
}
.main-head .gestor-triangle li {
  padding-left: 15px;
  position: relative;
}
.main-head .gestor-triangle li:before {
  width: 10px;
  height: 8px;
  content: "";
  left: 0;
  position: absolute;
  top: 3px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle.png) center no-repeat;
}
.main-head .beneficios-gestor {
  display: table;
  width: 100%;
  margin-bottom: 100px;
}
.main-head .beneficios-gestor li {
  display: table-cell;
  padding: 0 20px;
  box-shadow: 1px 0 0 0 #ddd;
}
@media only screen and (max-width: 800px) and (min-width: 769px) {
  .main-head .beneficios-gestor li {
    width: 33.3333%;
    padding: 20px;
    display: block;
    float: left;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 801px) {
  .main-head .beneficios-gestor li {
    width: 33.3333%;
    padding: 20px;
    display: block;
    float: left;
  }
}
@media only screen and (max-width: 768px) {
  .main-head .beneficios-gestor li {
    width: 50%;
    padding: 20px;
    display: block;
    float: left;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .beneficios-gestor li {
    width: 100%;
    padding: 20px;
    display: block;
  }
}
.main-head .beneficios-gestor li:first-child {
  padding: 0 20px 0 0;
}
@media only screen and (max-width: 768px) {
  .main-head .beneficios-gestor li:first-child {
    padding: 20px;
  }
}
.main-head .beneficios-gestor li:last-child {
  padding: 0 0 0 20px;
  box-shadow: none;
}
@media only screen and (max-width: 768px) {
  .main-head .beneficios-gestor li:last-child {
    padding: 20px;
  }
}
.main-head .beneficios-gestor h3 {
  font-size: 16px;
  margin: 0;
}
.main-head .beneficios-gestor p {
  font-size: 12px;
  color: #ABA6A6;
}
.main-head .big-text .big-text {
  font-size: 94px;
}
.main-head .simple-purple-title {
  color: #381451;
  font-size: 17px;
  text-transform: uppercase;
  font-family: "ceraregular";
  margin-bottom: 30px;
}
.main-head .label-wrapp {
  display: block;
}
.main-head .label-wrapp .label-like {
  display: block;
  color: #4F4E4E;
  font-size: 14px;
  font-family: "ceraregular";
  margin-bottom: 5px;
}
.main-head .label-wrapp input, .main-head .label-wrapp select {
  width: 100%;
  height: 42px;
  padding: 5px 10px;
  background-color: #FFF;
  border: 1px solid #CCC;
  border-radius: 5px;
  margin-bottom: 30px;
  width: 100%;
  display: block;
}
.main-head .label-wrapp input:focus, .main-head .label-wrapp select:focus {
  outline: 0 none;
}
.main-head .label-wrapp .weird-input-holder {
  display: table;
  margin-bottom: 30px;
}
.main-head .label-wrapp .weird-input-holder .weird-inner {
  display: table-cell;
  vertical-align: middle;
}
.main-head .label-wrapp .weird-input-holder .weird-inner.first {
  padding-right: 30px;
}
.main-head .label-wrapp .weird-input-holder .weird-inner.first span {
  color: #AEAEAE;
}
.main-head .label-wrapp .weird-input-holder .weird-inner.third {
  width: 100%;
}
.main-head .label-wrapp .weird-input-holder .weird-inner select {
  width: 60px;
  min-width: 0;
  border-radius: 5px 0 0 5px;
  border-right: 0;
  margin-bottom: 0;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/selector-form.png) no-repeat 80% center #FFF;
}
.main-head .label-wrapp .weird-input-holder .weird-inner input {
  border-radius: 0 5px 5px 0;
  margin-bottom: 0;
}
.main-head .submit-btn {
  border-radius: 5px;
  background-color: #381451;
  text-align: center;
  padding: 10px 30px;
  color: #FFF;
  font-size: 16px;
  font-family: "ceraregular";
  border: 0 none;
  float: right;
}
.main-head .bg-gray {
  background-color: #e9e9e9;
  padding: 50px 0;
}
.main-head .bg-gray .row {
  padding-left: 100px;
  padding-right: 100px;
}
@media only screen and (max-width: 768px) {
  .main-head .bg-gray .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.main-head .gestor-form {
  margin: 20px 0;
}
.main-head .gestor-form .col-6 {
  padding: 0 50px;
}
.main-head .gestor-title {
  color: #381451;
  font-size: 37px;
}
.main-head .gestor-text {
  color: #615F5F;
  margin-bottom: 30px;
}
@media only screen and (max-width: 800px) and (min-width: 769px) {
  .main-head .planimg.gestor-info {
    display: block;
    height: 320px;
    background-color: #4C3163;
  }
}
.main-head .planimg.gestor-info .plan-info {
  padding: 0 20px;
}
.main-head .main-foot {
  background-color: transparent;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/footer-new-home.jpg) no-repeat center bottom;
  background-size: cover;
  color: #fff;
  padding-top: 50px;
  position: relative;
  z-index: 999;
  display: block;
  height: auto;
  clear: both;
}
.main-head .triangle-new-home {
  width: 100%;
  height: 60px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/triangle-new-home.png) no-repeat center bottom;
  background-size: 100% 100%;
  overflow: hidden;
  display: block;
}
.main-head .main-foot .triangle-foot {
  width: 0;
  height: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top: 50px inset #fff;
  top: 0 !important;
  position: absolute;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  transform: rotate(360deg);
  border-style: solid dotted none;
}
@media only screen and (max-width: 640px) {
  .main-head .logo-footer {
    display: table;
    margin: 20px auto;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .logo-wrap {
    width: 100%;
  }
}
.main-head .logo-wrap p {
  font-size: 12px;
  line-height: 140%;
  margin: 20px 0 0;
  width: 80%;
}
.main-head .logo-wrap p span {
  color: #B171C3;
  font-weight: 700;
  font-size: 13px;
}
@media only screen and (max-width: 640px) {
  .main-head .logo-wrap p {
    display: none;
  }
}
.main-head .logo-wrap p a {
  color: #B171C3;
}
@media only screen and (max-width: 640px) {
  .main-head .footer-link {
    width: 100%;
  }
}
.main-head .footer-link .foot-bloq ul {
  width: 100.2%;
}
.main-head .footer-link .col-5.foot-bloq {
  width: 40.3%;
}
.main-head .footer-link .foot-bloq {
  text-align: right;
}
@media only screen and (max-width: 640px) {
  .main-head div.pad-20 div.footer-link div.foot-bloq {
    text-align: left;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .footer-link .foot-bloq:last-child h3 {
    border-bottom: 1px solid #333;
  }
}
.main-head .footer-link .foot-bloq.mod-width {
  width: 32.1%;
}
.main-head .footer-link h3 {
  font-size: 16px;
  font-family: "ceraregular";
  font-weight: 400;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .main-head .footer-link h3 {
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid #333;
    color: #fff;
  }
}
.main-head .footer-link .foot-bloq.active ul {
  max-height: 400px;
}
.main-head .footer-link ul {
  list-style: none;
  -webkit-transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  transition: all ease 300ms;
}
@media only screen and (max-width: 640px) {
  .main-head .footer-link ul {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    padding: 0 20px;
  }
}
.main-head .footer-link ul li {
  margin: 0 0 5px;
}
.main-head .footer-link ul li a {
  font-size: 12px;
  color: #B171C3;
}
.main-head .accesos-foot {
  margin: 20px 0;
  float: left;
  width: 100%;
}
.main-head .accesos-foot a {
  color: #B171C3;
  font-size: 12px;
}
.main-head .accesos-foot li.roaming {
  padding: 0 0 0 35px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/roaming.png) no-repeat left center;
}
.main-head .accesos-foot li.sucursal {
  padding: 0 0 0 35px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/pin.png) no-repeat left center;
}
.main-head .wom-form {
  position: relative;
  z-index: 10;
}
.main-head .wom-form .combos {
  padding: 0 0 0 12px;
}
.main-head .wom-form .field input {
  border: solid 1px #A6A6A6;
  border-radius: 3px;
  background: #fff;
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  color: #242424;
  font-size: 12px;
  margin: 0 12px 12px;
  float: left;
  width: 100%;
}
.main-head .wom-form .field select {
  -moz-appearance: none;
  border: 1px solid #a6a6a6;
  border-radius: 3px;
  color: #a6a6a6;
  display: block;
  font-size: 12px;
  height: 36px;
  margin: 0 0 0 11px;
  padding: 0 0 0 4px;
  margin: 0 0 0 11px;
  width: 100%;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/select-triangle.png) no-repeat scroll 97% 50%;
}
.main-head .wom-form .combo-box {
  border: solid 1px #A6A6A6;
  background: none;
  color: #A6A6A6;
  font-size: 12px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  height: 36px;
}
.main-head .wom-form .combo-box.last {
  margin: 0;
}
.main-head .wom-form .captcha-cont {
  background: #e9e9e9;
  float: left;
  height: auto;
  margin: 15px 0 12px 12px;
  overflow: hidden;
  width: 100%;
  padding: 0 0 10px 2px;
}
.main-head .wom-form .captcha-cont .ingreso-datos li {
  float: left;
  text-align: center;
  font-size: 12px;
  color: #666;
}
.main-head .wom-form .captcha-cont .ingreso-datos input {
  border: solid 1px #ccc;
  border-radius: 3px;
}
.main-head .wom-form .captcha-cont .btns {
  float: left;
  width: 14px;
  height: 55px;
  background: #fff;
  display: block;
  border-radius: 3px;
  margin: 10px 8px 0;
}
.main-head .wom-form .captcha-cont .btns li {
  float: left;
  width: 100%;
  height: 30px;
}
.main-head .wom-form .captcha-cont .btns li:first-child {
  border-bottom: solid 1px #ccc;
}
.main-head .wom-form .captcha-cont .btns li a {
  text-indent: -99999px;
}
.main-head .wom-form .captcha-cont .ingreso-datos {
  float: left;
  width: 132px;
  margin: 6px 0 0;
}
.main-head .wom-form .captcha-cont .ingreso-datos li {
  color: #A6A6A6;
  float: left;
  font-size: 12px;
  margin: 8px 0 0;
  text-align: center;
  width: 100%;
}
.main-head .wom-form .captcha-cont .ingreso-datos li input {
  border: solid 1px #A6A6A6;
  border-radius: 3px;
  color: #242424;
  font-size: 12px;
  padding: 4px 10px;
  width: 100%;
}
.main-head .wom-form .captcha-cont .cap-bg {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #A6A6A6;
  border-radius: 6px;
  height: 55px;
  margin: 10px 0 0 10px;
  width: 133px;
  float: left;
}
.main-head .wom-form .captcha-cont img {
  display: block;
  margin: 17px auto 0;
  position: relative;
}
.main-head .wom-form li.btn-wom-cont {
  width: 100%;
  margin: 0 0 0 10px;
}
.main-head .wom-form li.btn-wom-cont .wom-btn {
  float: right;
}
.main-head .field.full-width select {
  width: 100%;
}
.main-head .field.full-width p {
  font-size: 13px;
  padding: 10px 0 10px 23px;
}
.main-head .exito {
  color: #381451;
  font-size: 17px;
  margin: 187px -13px 0;
  position: relative;
  text-align: right;
  width: 45%;
}
.main-head .exito h2 {
  font-size: 26px;
}
@media only screen and (max-width: 768px) {
  .main-head .wrap-modal {
    padding: 30px 0 0;
  }
  .main-head .wrap-modal .row {
    width: 90%;
    margin: 0;
  }
  .main-head .fondo-modal {
    display: none;
  }
  .main-head .info-right {
    display: none;
  }
  .main-head .wrap-modal h1 {
    text-align: center;
  }
  .main-head .wrap-modal .bajada {
    text-align: center;
  }
  .main-head .wrap-modal.modal-lo-quiero .wom-form {
    margin: 30px auto;
  }
  .main-head .exito {
    margin: 176px auto;
    width: 90%;
  }
}
.main-head .wrap-modal.modal-lo-quiero.prev-lo-quiero {
  padding: 0 0 20px;
  background: #f4f4f4;
}
.main-head .wrap-modal.modal-lo-quiero.prev-lo-quiero img {
  right: -20px;
}
.main-head .wrap-modal {
  padding: 30px 50px 50px;
}
.main-head .wrap-modal:before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  background: #381451;
  z-index: 5;
}
.main-head .wrap-modal li {
  list-style: none;
}
.main-head .wrap-modal h1 {
  font-family: "ceraregular";
  font-size: 30px;
  color: #381451;
  margin: 0 0 10px;
}
.main-head .wrap-modal .bajada {
  color: #242424;
  font-size: 14px;
  font-family: "ceraregular";
  margin: 10px 0;
}
.main-head .wrap-modal.modal-lo-quiero {
  max-width: 835px;
  height: auto;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  display: block;
  height: 540px;
}
.main-head .wrap-modal.modal-lo-quiero .wom-form {
  max-width: 315px;
  width: 100%;
  margin: 30px 0;
}
.main-head .wrap-modal.modal-lo-quiero .fondo-modal {
  position: absolute;
  top: 0;
  right: 0;
}
.main-head .wrap-modal.modal-lo-quiero .info-right {
  max-width: 200px;
  -ms-transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
  height: auto;
  max-width: 310px;
  overflow: hidden;
  position: absolute;
  right: 90px;
  top: 30px;
  width: 100%;
  z-index: 10;
  color: #381451;
}
.main-head .wrap-modal.modal-lo-quiero .info-right * {
  display: block;
  float: left;
  font-size: 38px;
  text-align: center;
  width: 100%;
}
.main-head .wrap-modal.modal-lo-quiero .info-right .espera {
  font-family: "ceraregular";
  font-size: 22px;
  font-weight: 100;
  text-align: center;
}
.main-head .wrap-modal.modal-lo-quiero .info-right .serio {
  font-style: italic;
  padding: 0 0 0 110px;
  text-align: right;
  font-size: 25px;
}
.main-head .wrap-modal .prev-lo-quiero {
  padding: 0 0 0 20px;
}
.main-head .wrap-modal .info-title {
  margin: 148px 0 10px;
  padding: 0 42px 0 32px;
  width: 450px;
}
.main-head .wrap-modal .info-title h1.big {
  font-size: 40px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  color: #4E0081;
}
.main-head .wrap-modal .info-title h3 {
  font-weight: 100;
  margin: 0 auto;
  text-align: center;
  width: 90%;
  font-size: 23px;
  color: #4E0081;
}
.main-head .wrap-modal .info-title h3 span {
  font-weight: 700;
}
.main-head .wrap-modal .small-t {
  color: #4e0081;
  font-size: 15px;
  margin: 0 0 18px;
  padding: 0 30px 0 55px;
  text-align: center;
  width: 52%;
}
.main-head .wrap-modal .foot-text {
  font-size: 14px;
  color: #242424;
  margin: 116px 0 0;
  text-align: center;
  max-width: 53%;
}
.main-head .wrap-modal .foot-text a {
  text-decoration: underline;
  color: #242424;
}
@media only screen and (max-width: 768px) {
  .main-head .wrap-modal.modal-lo-quiero.prev-lo-quiero img {
    display: none;
  }
  .main-head .wrap-modal.prev-lo-quiero .row {
    margin: 0;
    width: 100%;
  }
  .main-head .wrap-modal .info-title {
    margin: 148px auto;
    padding: 0;
    width: 100%;
  }
  .main-head .wrap-modal .small-t {
    width: 100%;
  }
  .main-head .wrap-modal .foot-text {
    margin: 16px 0 0;
    max-width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .col-6.field {
    float: left;
    margin: 0 0 12px;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .main-head .wrap-modal.modal-lo-quiero {
    height: auto !important;
  }
  .main-head .wrap-modal .info-title {
    margin: 148px auto 40px;
  }
  .main-head .wrap-modal .small-t {
    padding: 0;
  }
}
.main-head select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: block;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 3px;
  min-width: 150px;
  font-size: 14px;
}
.main-head .ficha-cabecera {
  background: red;
  padding: 50px 0;
}
@media only screen and (max-width: 640px) {
  .main-head .ficha-cabecera {
    background: blue;
  }
}
.main-head .wom-btn {
  display: inline-block;
  font-size: 19px;
  margin: 0;
  padding: 10px 15px;
  text-align: left;
  width: 200px;
  background: #4E0081;
  height: 40px;
  position: relative;
  overflow: visible;
  border-radius: 5px;
  font-family: "ceraregular";
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .main-head .wom-btn {
    width: 100%;
    margin: 10px 0;
  }
}
.main-head .wom-btn:before {
  box-shadow: -1px 0 0 0 rgba(255, 255, 255, 0.12), 1px 0 0 0 rgba(0, 0, 0, 0.2) inset;
  content: "";
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/right_white_arrow.png) no-repeat center;
}
.main-head .wom-btn.big {
  height: 53px;
  display: inline-block;
  width: auto;
  padding: 15px 95px 15px 65px;
  font-size: 24px;
}
.main-head .wom-btn.big:before {
  background-image: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icons/right-white-arrow-big.png);
  height: 53px;
  width: 53px;
}
@media only screen and (max-width: 640px) {
  .main-head .wom-btn.big {
    font-size: 21px;
    padding: 15px 65px 15px 20px;
  }
}
.main-head .valor-right {
  border-left: 3px solid;
}
@media only screen and (max-width: 640px) {
  .main-head .valor-right {
    border-left: none;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .valor-right:after {
    border-bottom: none !important;
    border-top: 1px solid !important;
  }
}
@media only screen and (max-width: 640px) {
  .main-head .mobile-text-center {
    text-align: center !important;
  }
}
.main-head .table-mode {
  display: table !important;
  width: auto !important;
}
.main-head .buscador input[type=text] {
  padding: 10px 10px 10px 7px;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  color: #4e0081;
}
.main-head .buscador input[type=submit] {
  padding: 0 0 5px;
}

.bg-servicios {
  position: relative;
  background: #421259;
  background: url(../images/servicios/fondo.jpg) center no-repeat #000;
  height: 375px;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .bg-servicios {
    margin-top: 40px;
    height: auto;
  }

  .menos35 {margin-top: 0px;}

}
@media (max-width: 640px) {
  .bg-servicios {
    height: auto;
  }
}

.head-empresas {
  position: relative;
  height: 290px;
  margin-top: 84px;
}
@media only screen and (max-width: 768px) {
  .head-empresas {
    margin-top: 40px;
  }
}
.head-empresas.internet-bg {
  background: #421259;
}
.head-empresas.purple-bg {
  background: #421259;
  height: 350px;
}
.head-empresas.general-bg {
  background: url(../images/example/bg-header-01.jpg) center no-repeat #000;
}
.head-empresas.general-bg.internet-bg {
  background: url(../images/internet/bg_banner_home_desk.jpg) center no-repeat #421259;
  height: 380px;
  background-size: cover;
}
@media only screen and (max-width: 480px) {
  .head-empresas.general-bg.internet-bg {
    background: url(../images/internet/bg_banner_home_mov.jpg) center no-repeat #421259;
    height: 480px;
  }
}
.head-empresas.general-bg.servicios-bg {
  background: #421259;
  background: url(../images/servicios/fondo.jpg) center no-repeat #000;
  height: 350px;
}
@media (max-width: 640px) {
  .head-empresas.general-bg.servicios-bg {
    height: 300px;
  }
}
.head-empresas.general-bg.planes-bg {
  background: url(../images/example/header-planes.jpg) center no-repeat #000;
}
.head-empresas .head-caption {
  bottom: 50px;
  left: 0;
  margin: auto;
  max-width: 950px;
  padding: 10px 5%;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 2;
}
.head-empresas .head-caption .info * {
  text-align: left;
  color: #fff;
}
.head-empresas h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
  .head-empresas h1 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .head-empresas h1 {
    font-size: 26px;
    line-height: 95%;
  }
}
.head-empresas p {
  font-size: 16px;
}

.servicios .head-empresas .h1 {
  font-size: 2em !important;
  text-transform: none !important;
}
@media only screen and (max-width: 1200px) {
  .servicios .head-empresas .h1 {
    font-size: 1.8em;
  }
}

/*------------------------------------------------------------------------------iconos */
.icon-element {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-sucursales.svg) no-repeat;
  margin-right: 5px;
}
.icon-element.sucursales-icon {
  background-position: 0 0;
}
.icon-element.sucursal-online-icon {
  background-position: -18px -1px;
}

.sucursal-link:hover .icon-element {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/icon-sucursales-hover.svg) no-repeat;
}
.sucursal-link:hover .icon-element.sucursal-online-icon {
  background-position: -15px 0;
}

@media only screen and (max-width: 768px) {
  .main-head .row {
    width: 100%;
  }
}
footer {
  background: #34004B;
  color: #9E64B2;
  font-size: 14px;
}
footer h1 {
  margin: 0 0 20px;
  background: url("https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/logo-wom-empresas.png") no-repeat left top;
  width: 100%;
  height: 70px;
  display: block;
  text-indent: -9999px;
  background-size: 100%;
  max-width: 136px;
}
footer h2 {
  color: #fff;
  font-weight: normal;
  font-size: 20px;
  margin: 0 0 20px;
  font-weight: 100;
}
footer a {
  color: #9E64B2;
}
footer a:hover {
  color: #c9a8d4;
}
footer .info-wom .redes-sociales li {
  display: inline-block;
}
footer .link-rel ul {
  padding-left: 15px;
}
footer .link-rel ul li {
  line-height: 120%;
}
footer .link-cs {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
footer .icon-cs {
  background: url("https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/cobertura-sucursal.png") no-repeat left top;
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
footer .icon-cs.cobertura {
  background-position: 0 0;
}
footer .icon-cs.sucursal {
  background-position: 0 -28px;
}
footer .icon-redes {
  background: url("https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/redes-sociales.png") no-repeat left top;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  text-indent: -9999px;
}
footer .icon-redes.face {
  background-position: 0 0;
}
footer .icon-redes.twitter {
  background-position: -20px 0;
}
footer .icon-redes.youtube {
  background-position: -40px 0;
}
footer .icon-redes.instagram {
  background-position: -60px 0;
}

.ico-phone {
  background: url(https://1701336841.rsc.cdn77.org/_assets/img/emprendedores/icons/phone-icon-purple.png) no-repeat;
  padding: 0 0 0 37px;
  background-position: center left;
  margin: 0;
}

.ico-phone2 {
  padding: 0 0 0 37px;
  margin: 0 0 5px 0;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
.main .footer_wom .social_footer .socnet-icon:hover {
  background: white;
  color: #2d1540;
}
*/
.w240 {
  width: 240px !important;
}
.w160px {
  width: 160px;
}
.ml-14-px {
  margin-left: 14px !important;
}

  .internet .box_oferta_planes.internet .container {
    max-width: 867px !important;
  }

.planes .box_oferta_planes .container {
  max-width: 100%;
}
.planes .oferta_plan {
  text-align: center;
  max-width: 867px;
  margin: 0 auto 50px;
  display: block;
}
.planes .title-intermedio {
  text-align: center;
  margin: 90px 0 80px;
  display: block;
}
.planes .title-intermedio h2 {
  position: relative;
  font-weight: 500;
}
.planes .title-intermedio h2:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #801a7e;
  max-width: 290px;
  position: absolute;
  left: 0;
  top: 25px;
  bottom: auto;
  right: auto;
  margin: auto;
}
.planes .title-intermedio h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #801a7e;
  max-width: 290px;
  position: absolute;
  left: auto;
  top: 25px;
  bottom: auto;
  right: 0;
  margin: auto;
}
.planes .title-intermedio p {
  font-size: 13px;
}
.planes .box_datos_emprende .box_datos_emprende-item img {
  max-width: 212px;
}
@media (max-width: 860px) {
  .planes .title-intermedio h2 {
    font-size: 28px;
  }
  .planes .title-intermedio h2:after {
    max-width: 220px;
  }
  .planes .title-intermedio h2:before {
    max-width: 220px;
  }
}
@media (max-width: 640px) {
  .planes .title-intermedio h2:after {
    display: none;
  }
  .planes .title-intermedio h2:before {
    display: none;
  }
  .planes .box_datos_emprende .box_datos_emprende-item img {
    max-width: 225px;
  }
}

@media only screen and (max-width: 768px) {
  .main .footer_wom .submenu_wrapper {
    flex-flow: column !important;
  }
}


.bg-line {
  content: '';
  background-color: #80197E;
  height: 1px;
  position: absolute;
  top: 50%;
  left: -80px;
  right: -80px;
}
.bg-title {
  background-color: #f5f4f5;
}
.huincha-top-slider{
  background-color: #E92070;
  padding: 5px 0 10px;
}
.huincha-top-slider h2{
  color: #ffffff;
  font-size: 25px;
  line-height: 29px;
  text-align: center;
  margin: 0;
}
.huincha-top-slider p{
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  margin: 0;
}
@media only screen and (max-width: 480px) {
  .huincha-top-slider h2{
    font-size: 21px;
    line-height: 25px;
  }
  .huincha-top-slider p{
    font-size: 14px;
    line-height: 19px;
  }
}