@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,600,700,400i,600i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700&display=swap);
/* inicial */
* {
  margin: 0;
  padding: 0;
  border: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  box-sizing: content-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
  outline: none !important;
}

body {
  color: #000;
  font-family: sans-serif;
  background-color: #fff;
}

li {
  vertical-align: bottom;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  font-size: 1em;
}

section, header, footer, aside, nav, article, iframe {
  display: block;
}

div, input, section, textarea, li, header, footer {
  box-sizing: border-box;
}

input, textarea, select {
  font-family: inherit;
}

img {
  max-width: 100%;
}

/* clearfix optimizado, ie8+ */
.group::after {
  content: "";
  display: table;
  clear: both;
}

.clear {
  clear: both;
}

.hide {
  display: none;
}

.fancybox-overlay {
  max-width: none;
}

.compartir .at-icon-wrapper {
  display: none;
}

/* fin inicial */
body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000;
}

.sweet-alert {
  background-color: white;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999;
}

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block;
}

.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}

.sweet-alert fieldset {
  border: none;
  position: relative;
}

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s;
}

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s;
}

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}

.sweet-alert .sa-error-container p {
  display: inline-block;
}

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: scale(0.5);
  transform-origin: 50% 50%;
  transition: all 0.1s;
}

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px;
}

.sweet-alert .sa-input-error::before {
  transform: rotate(-45deg);
}

.sweet-alert .sa-input-error::after {
  transform: rotate(45deg);
}

.sweet-alert .sa-input-error.show {
  opacity: 1;
  transform: scale(1);
}

.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  transition: all 0.3s;
}

.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed;
}

.sweet-alert input:focus::-moz-placeholder {
  -moz-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus:-ms-input-placeholder {
  -ms-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd;
}

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert.show-input input {
  display: block;
}

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative;
}

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
}

.sweet-alert button {
  background-color: #8CD4F5;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer;
}

.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.sweet-alert button:hover {
  background-color: #7ecff4;
}

.sweet-alert button:active {
  background-color: #5dc2f1;
}

.sweet-alert button.cancel {
  background-color: #C1C1C1;
}

.sweet-alert button.cancel:hover {
  background-color: #b9b9b9;
}

.sweet-alert button.cancel:active {
  background-color: #a8a8a8;
}

.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
}

.sweet-alert button[disabled] {
  opacity: 0.6;
  cursor: default;
}

.sweet-alert button.confirm[disabled] {
  color: transparent;
}

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.sweet-alert button::-moz-focus-inner {
  border: 0;
}

.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}

.sweet-alert .sa-icon.sa-error {
  border-color: #F27474;
}

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  transform: rotate(45deg);
  left: 17px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  transform: rotate(-45deg);
  right: 16px;
}

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86;
}

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: "";
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  transform: rotate(-45deg);
  transform-origin: 60px 60px;
}

.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  transform: rotate(-45deg);
  transform-origin: 0px 60px;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@-webkit-keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@-webkit-keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@-webkit-keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
@keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s;
}

.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none;
}

.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s;
}

.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s;
}

.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s;
}

.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none;
}

.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s;
}

.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s;
}

@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s;
}

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in;
}

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s;
}

@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s;
}

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}
@keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}
.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate;
}

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}
@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}
.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate;
}

@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9 ;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9 ;
}

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9 ;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9 ;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9 ;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  box-sizing: border-box;
}

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-ball-fall.la-dark {
  color: #333;
}

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-fall {
  width: 54px;
  height: 18px;
}

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite;
}

.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  animation-delay: -200ms;
}

.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  animation-delay: -100ms;
}

.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px;
}

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px;
}

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px;
}

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}

/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    transform: translateY(-145%);
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(145%);
  }
}
@keyframes ball-fall {
  0% {
    opacity: 0;
    transform: translateY(-145%);
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(145%);
  }
}
/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

.grecaptcha-badge {
  z-index: 900;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #6D6F71;
}

strong, b {
  font-weight: 700;
}

.contenedor {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
}

html {
  font-size: 15px;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #6D6F71;
}

strong, b {
  font-weight: 700;
}

.contenedor {
  width: 90%;
  max-width: 1700px;
  margin: 0 auto;
}

.landing {
  margin-top: calc(95px + 30px);
}

.ancla {
  position: relative;
  top: -105px;
}

h2 {
  margin: 30px auto;
  text-align: center;
  color: black;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4em;
}
h2:after {
  display: block;
  content: "";
  width: 80px;
  margin: 10px auto;
  border-top: 3px solid #88499b;
}

.intro {
  font-size: 22px;
  color: #58595B;
  margin: 30px auto;
  text-align: center;
  width: 90%;
}

@media (max-width: 850px) {
  h2 {
    font-size: 25px;
  }

  .intro {
    font-size: 18px;
  }
}
.whatsapp {
  width: 56px;
  height: 56px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/whatsapp.png);
  display: block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  transition: all 0.2s ease;
}
.whatsapp:hover {
  transform: scale(1.2);
}
@media (max-width: 850px) {
  .whatsapp {
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

header {
  position: relative;
  z-index: 100;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 800;
  background-color: #88499b;
}
header .contenedor {
  width: 100%;
  padding: 0 3%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
header .logo {
  padding: 20px 10px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
header .logo:before {
  display: block;
  content: "";
  height: 70px;
  width: 220px;
  background-image: url(../img/logo.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
header .logo h1, header .logo h2 {
  font-size: 0;
}
header .logo h1:after, header .logo h2:after {
  display: none;
}
header nav {
  align-self: center;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
}
header nav ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
header nav ul > li {
  position: relative;
  margin: 0 10px;
  color: #FFF;
  font-weight: 700;
  font-size: 15px;
}
header nav ul > li.idioma-movil {
  display: none;
}
header nav ul > li a {
  display: block;
  padding: 5px;
}
header nav ul > li a:hover {
  text-decoration: underline;
}
header nav ul > li a.activo {
  text-decoration: underline;
}
header a.airbnb {
  display: block;
  width: 65px;
  height: 70px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/airbnb.svg);
  align-self: center;
}
header .redes {
  display: flex;
  align-items: center;
  background-color: #FFF;
  padding: 10px;
  margin-left: 120px;
}
header .redes a {
  display: flex;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  margin: 0 3px;
  border: 2px solid #88499b;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 55%;
  transition: transform 0.2s ease;
}
header .redes a.email {
  background-image: url(../img/email-color.svg);
}
header .redes a.compartir {
  background-image: url(../img/compartir.svg);
}
header .redes a.instagram {
  background-image: url(../img/instagram-color.svg);
}
header .redes a:hover {
  transform: scale(1.1);
}
header .redes a.idioma {
  text-align: center;
  color: white;
}
header .redes a.idioma span {
  margin: 0 auto;
  align-self: center;
}
header .redes a.idioma.activo {
  color: #88499b;
  background-color: white;
}

footer {
  margin-top: 50px;
}
footer .destacado {
  padding: 45px 10px;
  background-color: #88499b;
  text-align: center;
  color: white;
  border-bottom: 1px solid white;
}
footer .destacado p {
  font-size: 35px;
  font-weight: 700;
}
footer .info {
  padding: 50px 0;
  background-color: #010101;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}
footer .info .contenedor {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: center;
}
footer .info .col {
  margin: 0 30px;
  max-width: 300px;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
}
footer .info .col:last-child {
  padding-right: 0;
  border-right: 0;
  margin-right: 0;
}
footer .info .logo {
  display: block;
  width: 210px;
  height: 210px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/logo-footer.svg);
  font-size: 0;
}
footer .info h3 {
  font-weight: 600;
}
footer .info p {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  line-height: 1.4em;
}
footer .info p a:hover {
  text-decoration: underline;
}
footer .info .newsletter input[type=email] {
  display: block;
  width: 100%;
  max-width: 200px;
  background-color: white;
  color: #010101;
  padding: 5px 10px;
  font-size: 13px;
  margin-top: 10px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}
footer .info .redes {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}
footer .info .redes a {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 15px;
  height: 22px;
  width: 22px;
  transition: transform 0.2s ease;
}
footer .info .redes a:last-child {
  margin-right: 0;
}
footer .info .redes a.facebook {
  background-image: url(../img/facebook.svg);
}
footer .info .redes a.twitter {
  background-image: url(../img/twitter.svg);
}
footer .info .redes a.instagram {
  background-image: url(../img/instagram.svg);
}
footer .info .redes a.youtube {
  background-image: url(../img/youtube.svg);
}
footer .info .redes a.compartir {
  background-image: url(../img/compartir.svg);
}
footer .info .redes a:hover {
  transform: scale(1.2);
}

@media (max-width: 1030px) {
  header .redes {
    display: none;
  }

  header a.airbnb {
    display: none;
  }
}
@media (max-width: 920px) {
  header .redes {
    display: flex;
  }

  header .contenedor {
    display: block;
    width: 100%;
  }
  header .logo {
    justify-content: center;
  }
  header .logo:after {
    display: none;
  }
  header .logo h1, header .logo h2 {
    margin: 0;
  }
  header .logo h1::after, header .logo h2::after {
    display: none;
  }
  header .redes {
    display: none;
    justify-content: center;
  }
  header .redes a {
    margin: 0 10px;
  }
  header nav {
    position: relative;
  }
  header nav .desplegar-menu-principal {
    display: block;
    width: 25px;
    height: 18px;
    position: relative;
    position: absolute;
    right: 15px;
    top: -45px;
  }
  header nav .desplegar-menu-principal span {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-top: 1px solid #999;
  }
  header nav .desplegar-menu-principal:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-top: 1px solid #999;
  }
  header nav .desplegar-menu-principal:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid #999;
  }
  header nav ul {
    display: none;
  }
  header nav ul > li {
    margin: 0;
    padding: 10px 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
  }
  header nav ul > li:last-child {
    border-bottom: 0;
  }
  header nav ul > li.idioma-movil {
    display: block;
    color: #88499b;
  }

  footer {
    margin-top: 50px;
  }
  footer .info .contenedor {
    display: block;
  }
  footer .info .col {
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
    padding: 0;
    border: 0;
    justify-content: center;
  }
  footer .info .col:last-child {
    margin-right: auto;
  }
  footer .info p {
    font-size: 14px;
  }
  footer .info .newsletter input[type=email] {
    margin: 15px auto;
  }
  footer .info .redes {
    justify-content: center;
    margin: 16px 0;
  }
  footer .info .redes a {
    margin-right: 20px;
    height: 22px;
    width: 22px;
    transition: none;
  }
  footer .info .redes a:hover {
    transform: none;
  }
}
.popup .texto.importante {
  max-width: 750px;
  padding: 30px;
}

.popup .texto.importante h2 {
  font-size: 18px;
  color: #80132c;
  font-weight: 600;
  line-height: 50px;
  text-transform: uppercase;
  padding-right: 62px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #aaa;
  background-image: url(../img/iconos/lanus.svg);
  background-size: 50px;
  background-position: right 5px top;
  background-repeat: no-repeat;
}

.popup .texto.importante h3 {
  font-size: 18px;
  color: black;
  margin-bottom: 20px;
}

.popup .texto.importante p {
  font-size: 14px;
  color: #231f20;
  font-weight: 300;
  line-height: 1.6em;
  margin-bottom: 20px;
}

.popup .texto.importante a.boton {
  display: inline-block;
  vertical-align: middle;
  background-color: #80132c;
  padding: 6px 12px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 650px) {
  .popup .texto.importante {
    padding: 15px;
  }
}
.popup img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.slides {
  margin-top: -25px;
}
.slides .slide {
  height: 35vw;
  position: relative;
}
.slides .slide .imagen {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slides .slide .imagen_vertical {
  display: none;
}
.slides .slide .titulo {
  position: absolute;
  z-index: 20;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  line-height: 1.4em;
  font-weight: 700;
  color: white;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.slides .slide a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
}
.slides .slick-prev {
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 20px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/anterior.svg);
  left: 5%;
  background-color: transparent;
  background-position: center;
  cursor: pointer;
}
.slides .slick-next {
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 20px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/siguiente.svg);
  right: 5%;
  background-color: transparent;
  background-position: center;
  cursor: pointer;
}
@media (max-width: 840px) {
  .slides .slide {
    height: 40vh;
  }
  .slides .slide .imagen_vertical {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .slides .slide .titulo {
    font-size: 20px;
  }
  .slides .slick-prev {
    display: none;
    opacity: 0;
  }
  .slides .slick-next {
    display: none;
    opacity: 0;
  }
}

.servicios {
  margin: 50px auto;
}
.servicios .intro {
  font-size: 25px;
  font-weight: 700;
  color: #595b61;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.servicios ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.servicios ul li {
  flex-basis: 33%;
  padding: 10px;
}
.servicios article {
  padding-left: 28px;
  position: relative;
  color: #454545;
}
.servicios article i {
  width: 20px;
  height: 24px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.servicios article i img {
  max-width: 100%;
  max-height: 100%;
}
.servicios article h3 {
  font-weight: 700;
  font-size: 700;
  line-height: 1.4em;
}
.servicios article p {
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 300;
}
.servicios article a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 840px) {
  .servicios {
    margin: 30px auto;
  }
  .servicios .intro {
    font-size: 16px;
  }
  .servicios ul {
    display: block;
  }
  .servicios ul li {
    width: 100%;
    padding: 10px;
  }
}

.novedades {
  margin: 50px auto;
  padding: 0 30px;
}
.novedades .listado .slick-prev, .novedades .listado .slick-next {
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  width: 50px;
  height: 50px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 50%;
          mask-size: 50%;
  background-color: #88499b;
  -webkit-mask-position: center;
          mask-position: center;
  cursor: pointer;
  border-radius: 50%;
}
.novedades .listado .slick-prev {
  -webkit-mask-image: url(../img/anterior.svg);
          mask-image: url(../img/anterior.svg);
  left: -60px;
}
.novedades .listado .slick-next {
  -webkit-mask-image: url(../img/siguiente.svg);
          mask-image: url(../img/siguiente.svg);
  right: -60px;
}
.novedades .listado .novedad {
  max-width: 400px;
  position: relative;
  margin: 0 2.5px;
  height: 400px;
}
.novedades .listado article .imagen {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.novedades .listado article .over {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  transition: opacity 0.2s ease;
  background-color: #88499b;
}
.novedades .listado article h3 {
  position: absolute;
  z-index: 30;
  bottom: 10%;
  left: 6%;
  right: 6%;
  color: white;
  font-size: 22px;
  line-height: 1.4em;
  font-weight: 600;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}
.novedades .listado article a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 40;
}
.novedades .listado .novedad:hover .over {
  opacity: 0;
}
.novedades .listado .novedad:hover h3 {
  transform: scale(1.05);
}
@media (max-width: 840px) {
  .novedades {
    margin: 30px auto;
  }
  .novedades .listado {
    display: block;
  }
  .novedades .listado .novedad {
    max-width: none;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .novedades .listado article .over {
    transition: none;
  }
  .novedades .listado article h3 {
    font-size: 18px;
  }
  .novedades .listado .novedad:hover .over {
    opacity: 0;
  }
}

@media (max-width: 850px) {
  .galeria {
    width: 100%;
  }
}
.galeria .contenidos .slick-prev, .galeria .contenidos .slick-next {
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 25%;
  background-color: #88499b;
  background-position: center;
  cursor: pointer;
  border-radius: 50%;
}
.galeria .contenidos .slick-prev {
  background-image: url(../img/anterior.svg);
  left: 5%;
}
.galeria .contenidos .slick-next {
  background-image: url(../img/siguiente.svg);
  right: 5%;
}
.galeria .contenidos article .imagen {
  display: block;
  width: 100%;
  padding-top: 42%;
  position: relative;
}
@media (max-width: 850px) {
  .galeria .contenidos article .imagen {
    padding-top: 45vh;
  }
}
.galeria .contenidos article .imagen img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.galeria .contenidos article .video:hover:after {
  transform: translateY(-50%) scale(1.2);
}
.galeria .video {
  position: relative;
}
.galeria .video:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 20;
  width: 80px;
  height: 80px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/play.svg);
  transition: transform 0.2s ease;
}
@media (max-width: 850px) {
  .galeria .video:after {
    transition: none;
  }
  .galeria .video:hover:after {
    transform: translateY(-50%) !important;
  }
}
.galeria ul.nav {
  position: relative;
  top: -6px;
}
.galeria ul.nav li {
  cursor: pointer;
  padding: 2px 1px;
}
.galeria ul.nav li .video {
  display: block;
  position: relative;
}
.galeria ul.nav li .video:after {
  width: 40px;
  height: 40px;
}
@media (max-width: 850px) {
  .galeria ul.nav {
    display: none;
  }
}

.ubicacion {
  margin: 50px auto;
}
.ubicacion .mapa img {
  width: 100%;
}
.ubicacion .mapa img.grande {
  display: block;
}
.ubicacion .mapa img.chico {
  display: none;
}
@media (max-width: 650px) {
  .ubicacion .mapa img.grande {
    display: none;
  }
  .ubicacion .mapa img.chico {
    display: block;
  }
}

.consulta {
  margin: 50px auto;
}
.consulta .formulario {
  max-width: 1000px;
  margin: 0 auto;
}

.formulario {
  margin: 40px auto;
}
.formulario .errores {
  margin-bottom: 20px;
  color: red;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4rem;
}
.formulario .errores li {
  display: block;
  list-style-type: disc;
  margin-bottom: 10px;
}
.formulario .campos {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.formulario .campos .col {
  padding: 0 10px;
  margin-bottom: 20px;
}
.formulario .campos .col.c-100 {
  flex-basis: 100%;
}
.formulario .campos .col.c-50 {
  flex-basis: 50%;
}
.formulario .campos input[type=text],
.formulario .campos input[type=email],
.formulario .campos textarea {
  background-color: white;
  border: 1px solid #ccc;
  padding: 8px 14px;
  display: block;
  width: 100%;
  color: #6e6f71;
  font-size: 14px;
}
.formulario .campos textarea {
  height: 160px;
}
.formulario .campos label {
  padding: 0 10px;
  display: block;
  margin-bottom: 5px;
  color: #6e6f71;
  font-size: 14px;
}
.formulario .campos input[type=file] {
  width: 0;
  opacity: 0;
}
.formulario .campos a.archivo {
  display: flex;
  width: 100%;
  align-items: center;
  box-sizing: border-box;
  padding: 45px 15px;
  padding-left: 60px;
  border: 1px solid #ccc;
  cursor: pointer;
  background-image: url(../img/subir.svg);
  background-size: 30px;
  background-position: left 15px center;
  background-repeat: no-repeat;
}
.formulario .campos a.archivo span {
  color: #6e6f71;
  font-size: 14px;
}
.formulario .campos a.archivo.seleccionado {
  background-color: rgba(0, 200, 0, 0.1);
}
.formulario .recaptcha {
  width: 310px;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 0 10px;
}
.formulario .accion {
  padding: 0 10px;
  text-align: center;
}
.formulario .accion button {
  display: inline-block;
  background-color: #88499b;
  padding: 8px 25px;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 840px) {
  .formulario {
    margin: 30px auto;
  }
  .formulario .campos {
    display: block;
  }
  .formulario .campos .col {
    padding: 0 10px;
  }
  .formulario .campos .col.c-100 {
    width: 100%;
  }
  .formulario .campos .col.c-50 {
    width: 100%;
  }
  .formulario .recaptcha {
    transform: scale(0.9);
    transform-origin: left top;
  }
  .formulario .accion button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 10px;
    box-sizing: border-box;
  }
}
.iconos {
  margin: 40px auto;
}
.iconos ul {
  padding: 0 60px;
}
.iconos ul .slick-track {
  display: flex;
}
.iconos ul .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
.iconos ul .slick-prev {
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  width: 20px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/anterior-color.svg);
  left: 25px;
  background-color: transparent;
  background-position: center;
  cursor: pointer;
}
.iconos ul .slick-next {
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  width: 20px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/siguiente-color.svg);
  right: 25px;
  background-color: transparent;
  background-position: center;
  cursor: pointer;
}
.iconos ul li {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 20px;
}
.iconos ul li img {
  max-height: 110px;
  max-width: 130px;
}
.iconos ul li a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 850px) {
  .iconos {
    margin: 30px auto;
  }
  .iconos ul {
    padding: 0 10px;
  }
  .iconos ul .slick-prev {
    display: none;
    opacity: 0;
  }
  .iconos ul .slick-next {
    display: none;
    opacity: 0;
  }
}

.ficha {
  margin: 10px auto;
}
.ficha .cuerpo-ficha {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px;
  margin-bottom: 25px;
}
.ficha .cuerpo-ficha h1 {
  margin: 30px auto;
  text-align: center;
  color: #595b61;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.4em;
}
.ficha .cuerpo-ficha h1:after {
  display: block;
  content: "";
  width: 80px;
  margin: 10px auto;
  border-top: 3px solid #88499b;
}
.ficha .cuerpo-ficha .bajada {
  font-size: 20px;
  margin-bottom: 20px;
  color: #88499b;
}
.ficha .cuerpo-ficha .texto {
  font-size: 16px;
  line-height: 1.4em;
}
.ficha .cuerpo-ficha .texto ul {
  margin-bottom: 15px;
  padding-left: 30px;
  list-style: disc;
}
.ficha .cuerpo-ficha .texto ul li {
  list-style: inherit;
}
.ficha .cuerpo-ficha .texto ol {
  margin-bottom: 15px;
  padding-left: 30px;
  list-style: decimal;
}
.ficha .cuerpo-ficha .texto ol li {
  list-style: inherit;
}
.ficha .cuerpo-ficha .texto p {
  margin-bottom: 15px;
}
.ficha .cuerpo-ficha .texto a {
  color: #88499b;
}
.ficha .cuerpo-ficha .texto a:hover {
  text-decoration: underline;
}
.ficha .cuerpo-ficha .texto table {
  border-collapse: collapse;
}
.ficha .cuerpo-ficha .texto table td {
  border: 1px solid #aaa;
  padding: 4px 8px;
}
.ficha .cuerpo-ficha .texto iframe {
  display: inline;
}
.ficha .cuerpo-ficha .multimedia {
  margin-bottom: 25px;
}
.ficha .cuerpo-ficha .multimedia .foto {
  position: relative;
  height: 480px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.ficha .cuerpo-ficha .multimedia .foto.video::after {
  display: block;
  content: "";
  position: absolute;
  z-index: 25;
  width: 80px;
  height: 80px;
  background-image: url(../img/play.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}
.ficha .cuerpo-ficha .multimedia .foto a {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.ficha .cuerpo-ficha .multimedia .slick-prev {
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 22px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/anterior.svg);
  background-position: center;
  left: 20px;
  background-color: transparent;
  cursor: pointer;
}
.ficha .cuerpo-ficha .multimedia .slick-next {
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 22px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/siguiente.svg);
  background-position: center;
  right: 20px;
  background-color: transparent;
  cursor: pointer;
}

@media (max-width: 650px) {
  .ficha .cuerpo-ficha {
    padding: 20px 0;
  }
  .ficha .cuerpo-ficha h1 {
    font-size: 30px;
  }
  .ficha .cuerpo-ficha .multimedia .foto {
    height: 340px;
  }
}
.encuesta {
  max-width: 900px;
}
.encuesta input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: var(white);
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: #88499b;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #ccc;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
.encuesta input[type=radio]::before {
  content: "";
  width: 1em;
  height: 1em;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #88499b;
  /* Windows High Contrast Mode */
  background-color: #88499b;
}
.encuesta input[type=radio]:checked {
  border: 1px solid #88499b;
}
.encuesta input[type=radio]:checked::before {
  transform: scale(1);
}
.encuesta .intro {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}
.encuesta .titulo {
  margin-bottom: 40px;
  border-bottom: 1px solid #aaa;
  padding-bottom: 10px;
}
.encuesta .titulo span {
  display: inline-block;
  padding: 6px 12px;
  background-color: #88499b;
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.encuesta .preguntas li {
  margin-bottom: 30px;
}
.encuesta .preguntas li .pregunta {
  font-size: 25px;
  font-weight: 600;
  color: #88499b;
  margin-bottom: 20px;
}
.encuesta .preguntas li .opciones {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.encuesta .preguntas li .opciones li {
  margin-right: 20px;
  margin-bottom: 15px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.encuesta .preguntas li .opciones li input {
  margin-right: 5px;
}
.encuesta .preguntas li .opciones li label {
  font-size: 18px;
}
.encuesta .boton {
  text-align: center;
  margin: 30px 0;
}
.encuesta .boton button {
  display: inline-block;
  background-color: #88499b;
  color: white;
  padding: 6px 12px;
  font-size: 18px;
}
