@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,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 {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

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

.sweet-alert input:focus::-webkit-input-placeholder {
  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.0 - 2019-08-10
* http://sorgalla.com/lity/
* Copyright (c) 2015-2019 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;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

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

html {
  font-size: 15px;
}

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

strong, b {
  font-weight: 700;
}

#general {
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
}

section {
  max-width: 1220px;
  margin: 50px auto;
  padding: 0 10px;
}

.titulo {
  margin: 35px 0;
}

.titulo h2 {
  font-size: 16.5px;
  color: black;
  font-weight: 300;
}

.titulo h2 strong {
  font-weight: 600;
}

header .superior {
  background-color: #7A61A1;
}

header .superior .contenido {
  padding: 15px 40px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
}

header .superior .contenido:after {
  content: "";
  display: block;
  clear: both;
}

header .superior .info {
  border-right: 1px solid #fff;
  margin-right: 10px;
}

header .superior .info li {
  display: inline-block;
  vertical-align: middle;
  padding-left: 22px;
  padding-right: 15px;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  background-repeat: no-repeat;
  background-position: 0;
  line-height: 20px;
}

header .superior .info li.ubicacion {
  background-image: url(../img/layout/iconos/marcador-blanco.png);
  background-size: auto 20px;
}

header .superior .info li.telefono {
  background-image: url(../img/layout/iconos/telefono-blanco.png);
  background-size: auto 15px;
}

header .superior .info li.email {
  background-image: url(../img/layout/iconos/email-blanco.png);
  background-size: auto 12px;
}

header .superior .redes a {
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  margin-right: 10px;
  transition: transform 0.7s ease;
}

header .superior .redes a:last-child {
  margin-right: 0;
}

header .superior .redes a:hover {
  transform: rotate(45deg);
}

header .superior .redes a.facebook {
  width: 9px;
  height: 17px;
  background-image: url(../img/layout/iconos/facebook-blanco.svg);
}

header .superior .redes a.twitter {
  width: 16px;
  height: 14px;
  background-image: url(../img/layout/iconos/twitter-blanco.svg);
}

header .superior .redes a.instagram {
  width: 16px;
  height: 16px;
  background-image: url(../img/layout/iconos/instagram-blanco.svg);
}

header .superior .usuario {
  flex-grow: 1;
  text-align: right;
  color: white;
  font-size: 15px;
}
header .superior .usuario a.destacar {
  display: inline-block;
  color: #7A61A1;
  background-color: white;
  text-transform: uppercase;
  padding: 4px 8px;
  font-weight: 700;
}
header .superior .usuario .menu {
  display: inline-block;
  position: relative;
}
header .superior .usuario .menu a.desplegable {
  display: inline-block;
  line-height: 18px;
  cursor: pointer;
}
header .superior .usuario .menu a.desplegable:after {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-left: 10px;
  width: 18px;
  height: 14px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/elementos/desplegar-blanco.svg);
  transition: transform 0.2s ease;
}
header .superior .usuario .menu a.desplegable.desplegado:after {
  transform: rotate(180deg);
}
header .superior .usuario .menu .submenu {
  display: none;
  background-color: white;
  min-width: 200px;
  position: absolute;
  right: 0;
  top: 37px;
  z-index: 100;
  box-shadow: 0px 3px 11px -2px rgba(0, 0, 0, 0.65);
}
header .superior .usuario .menu .submenu a {
  display: block;
  padding: 14px 8px;
  border-bottom: 1px solid #ddd;
  color: #6D6F71;
  font-size: 14px;
}
header .superior .usuario .menu .submenu a:last-child {
  border-bottom: 0;
}
header .superior .usuario .menu .submenu a:hover {
  color: black;
}

header .inferior {
  padding: 20px 35px;
  background-color: #f1f2f2;
}

header .inferior:after {
  display: block;
  clear: both;
  content: "";
}

header .inferior a.logo {
  float: left;
  display: block;
  width: 280px;
  height: 63px;
  margin-top: 5px;
  background-image: url(../img/logo.png);
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

header .inferior .menu {
  float: right;
}

header .inferior .menu a.desplegar {
  display: none;
}

header .inferior .menu .contenido {
  padding: 20px 25px 20px 20px;
}

header .inferior .menu li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0;
  font-size: 13px;
  color: #7A61A1;
}

header .inferior .menu li a {
  display: block;
  padding: 5px 8px;
}

header .inferior .menu li a:hover {
  text-decoration: underline;
}

header .inferior .titulos {
  float: left;
  display: flex;
  height: 70px;
  align-items: stretch;
}

header .inferior .titulos .col {
  display: flex;
  align-items: center;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #7A61A1;
  color: #7A61A1;
}

header .inferior .titulos h1 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

header .inferior .titulos h2 {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

header .inferior .menu nav a:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  header {
    padding-bottom: 5px;
  }

  .contenido-comun .barra-links .links .link {
    width: 20%;
  }

  header .inferior a.logo {
    float: none;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  header .inferior .menu {
    float: none;
    width: 100%;
  }
  header .inferior .menu .contenido {
    text-align: center;
  }
}
@media (max-width: 650px) {
  section {
    margin: 0 auto;
  }

  .titulo {
    margin: 15px 0;
  }

  header {
    padding-bottom: 10px;
  }

  header .superior .contenido {
    padding: 20px 10px;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
  }

  header .superior .contenido:after {
    content: "";
    display: block;
    clear: both;
  }

  header .superior .info {
    display: none;
  }

  header .superior .redes a {
    margin-right: 15px;
  }

  header .superior .redes a.facebook {
    width: 11px;
    height: 20px;
  }

  header .superior .redes a.twitter {
    width: 20px;
    height: 17px;
  }

  header .superior .redes a.instagram {
    width: 20px;
    height: 20px;
  }

  header .superior .redes {
    display: none;
  }

  header .inferior {
    padding: 20px 10px;
  }

  header .inferior a.logo {
    float: none;
    display: block;
    width: 230px;
    height: 50px;
  }

  header .inferior .menu {
    padding-top: 20px;
    position: relative;
    width: 100%;
    float: none;
  }

  header .inferior .menu a.desplegar {
    display: block;
    position: absolute;
    top: -10px;
    right: 15px;
    width: 20px;
  }

  header .inferior .menu a.desplegar span {
    display: block;
    border-bottom: 1.5px solid #666;
    padding: 3px 0;
  }

  header .inferior .menu nav {
    display: none;
  }

  header .inferior .menu .contenido {
    padding: 0;
    text-align: center;
  }

  header .inferior .menu li {
    display: block;
    margin-bottom: 2px;
    padding-bottom: 2px;
    border-bottom: 1px solid #aaa;
    font-size: 12px;
    font-weight: 400;
  }

  header .inferior .menu li a {
    padding: 10px 12px;
  }

  header .inferior .menu li:last-child {
    border-bottom: 0;
  }

  header .inferior a.logo {
    margin: 0 auto;
  }

  header .inferior .titulos {
    display: none;
  }

  header .inferior .titulos {
    float: none;
    height: auto;
  }

  header .inferior .titulos .col {
    margin: 10px 0;
    padding: 5px 15px;
    flex-basis: 50%;
    text-align: center;
    border-left: 0;
  }

  header .inferior .titulos .col:first-child {
    max-width: 100%;
  }
}
footer {
  max-width: 1200px;
  margin: 30px auto;
  width: 100%;
  background: #404041;
  padding-top: 35px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

footer a, footer h2 {
  color: #f7941d;
}

footer h2 {
  text-transform: uppercase;
  font-weight: 900;
}

footer h2, footer p {
  margin-bottom: 10px;
}

footer .iconos {
  width: 234px;
  height: 43px;
  text-align: center;
  font-size: 0;
  margin: 0 auto;
  position: relative;
  bottom: -20px;
}

footer .iconos .icono {
  display: inline-block;
  width: 42px;
  height: 43px;
  margin-left: 6px;
  position: relative;
  transition: transform 0.7s ease;
}

footer .iconos .icono:first-child {
  margin-left: 0;
}

footer .iconos .icono:hover {
  transform: rotate(1turn);
}

footer .logo {
  text-align: left;
}

footer .logo img {
  max-width: 100%;
  width: 115px;
}

footer .informacion {
  display: table;
  width: 100%;
}

footer .informacion .row {
  display: table-row;
}

footer .informacion .col {
  display: table-cell;
  vertical-align: top;
  padding: 0 60px;
}

footer .informacion .primera.col a {
  color: #f7941d;
}

footer .informacion .primera.col span {
  line-height: 1.5em;
}

footer .informacion .centro.col {
  border-left: 1px solid #fff;
  padding: 0 20px;
}

footer .informacion .centro.col a {
  margin-bottom: 6px;
}

footer .informacion .ultima.col {
  font-size: 14px;
}

footer .informacion .ultima.col h2 {
  background-image: url("../img/layout/telefono-footer.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  padding-left: 28px;
  margin-left: -28px;
  min-height: 22px;
}

footer .informacion .ultima.col p {
  line-height: 1.67em;
}

footer .informacion a {
  color: #fff;
  display: block;
  margin-bottom: 10px;
}

footer .informacion .destacado {
  color: #f7941d;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 900;
}

@media (max-width: 1020px) {
  footer .informacion .col {
    padding: 0 40px;
  }

  footer .informacion .col:nth-child(4) {
    display: none;
  }
}
@media (max-width: 710px) {
  footer .informacion .col {
    padding: 0 20px;
  }

  footer .informacion .col:nth-child(2) {
    display: none;
  }
}
@media (max-width: 550px) {
  footer .informacion .col.centro {
    display: none;
  }

  footer .informacion .ultima.col {
    display: none;
  }
}
/**************************/
.texto {
  font-size: 13px;
}

.texto ul {
  margin-bottom: 15px;
  padding-left: 30px;
  list-style: disc;
}

.texto ol {
  margin-bottom: 15px;
  padding-left: 30px;
  list-style: decimal;
}

.texto li {
  list-style: inherit;
}

.texto p {
  margin-bottom: 15px;
}

.texto table {
  border-collapse: collapse;
}
.texto table td {
  border: 1px solid #aaa;
  padding: 4px 8px;
}

.centrar {
  text-align: center;
}

[data-checkbox] {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

[data-checkbox] input {
  width: 0;
  height: 0;
  font-size: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

[data-checkbox]::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  margin-right: 2px;
  width: 16px;
  height: 16px;
  line-height: 13px;
  border: 1px solid #afafaf;
  font-size: 17px;
  font-weight: 600;
  color: black;
  text-align: center;
}

[data-checkbox].selecto::before {
  content: "x";
}

.popup .texto.importante {
  max-width: 750px;
  padding: 30px;
}

.popup .texto.importante h2 {
  font-size: 18px;
  color: #7A61A1;
  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/quilmes.svg);
  background-size: 40px;
  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: #7A61A1;
  padding: 6px 12px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 650px) {
  .popup .texto.importante {
    padding: 15px;
  }
}
a.scroll-arriba {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 40px;
  width: 45px;
  height: 45px;
  box-sizing: border-box;
  background-color: #7A61A1;
  padding: 20px;
  border-radius: 50%;
  text-align: center;
}
a.scroll-arriba:after {
  display: block;
  content: "^";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: white;
  font-weight: 700;
}

@media (max-width: 650px) {
  a.scroll-arriba {
    right: 15px;
    bottom: 11px;
  }
}
[class^=select2] {
  border-radius: 0px !important;
}

.select2-selection__arrow b {
  border: 0;
  background-image: url(../img/elementos/desplegar.svg);
  width: 10px;
  height: 10px;
  left: 20% !important;
  background-size: 10px;
  background-position: top left;
  background-repeat: no-repeat;
}

.select2-selection__rendered {
  line-height: 31px !important;
}

.select2-container .select2-selection--single {
  height: 35px !important;
}

.select2-selection__arrow {
  height: 34px !important;
}

.select2-selection.select2-selection--single {
  background-color: #efefef !important;
  font-size: 12px;
  border: 1px solid #ccc !important;
}

.select2-container--default .select2-results > .select2-results__options {
  font-size: 12px;
}

#formulario select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  box-sizing: border-box;
  border-radius: 0;
  outline: none;
  display: block;
  width: 100%;
  background-color: #efefef;
  padding: 0 8px;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 400;
  color: #231f20;
  background-image: url(../img/elementos/desplegar.svg);
  background-size: 10px auto;
  background-position: right 10px center;
  background-repeat: no-repeat;
  border: 1px solid #ccc;
  height: 35px;
}
#formulario input[type=text],
#formulario input[type=number],
#formulario input[type=email],
#formulario input[type=password],
#formulario input[type=date],
#formulario textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  box-sizing: border-box;
  border-radius: 0;
  outline: none;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  background-color: #efefef;
  padding: 8px;
  font-size: 12px;
  font-weight: 400;
  color: #231f20;
}
#formulario input[type=text]:-moz-read-only,
#formulario input[type=number]:-moz-read-only,
#formulario input[type=email]:-moz-read-only,
#formulario input[type=password]:-moz-read-only,
#formulario input[type=date]:-moz-read-only,
#formulario textarea:-moz-read-only {
  background-color: #dfdfdf;
  cursor: not-allowed;
}
#formulario input[type=text]:read-only,
#formulario input[type=number]:read-only,
#formulario input[type=email]:read-only,
#formulario input[type=password]:read-only,
#formulario input[type=date]:read-only,
#formulario textarea:read-only {
  background-color: #dfdfdf;
  cursor: not-allowed;
}
#formulario textarea {
  height: 150px;
}
#formulario input[type=number] {
  -moz-appearance: textfield;
}
#formulario input[type=number]::-webkit-outer-spin-button, #formulario input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#formulario input[type=file] {
  opacity: 0;
  height: 1px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
#formulario a.input-archivo {
  display: block;
  position: relative;
  height: 100px;
  position: relative;
  background-image: url(../img/elementos/subir-archivo.svg);
  background-position: 20px center;
  background-size: 30px;
  background-repeat: no-repeat;
  border: 1px solid #ccc;
}
#formulario a.input-archivo span {
  display: block;
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #6E6F71;
}
#formulario a.input-archivo.seleccionado {
  background-color: rgba(0, 200, 0, 0.1);
}
#formulario .multiarchivo {
  border: 1px solid #ccc;
  min-height: 0;
  font-size: 12px;
  color: #6E6F71;
}
#formulario .multiarchivo .dz-message {
  text-align: left;
}
#formulario .multiarchivo .dz-default {
  padding-left: 50px;
  background-image: url(../img/elementos/subir-archivo.svg);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: left top;
  min-height: 30px;
  padding-top: 5px;
}
#formulario .multiarchivo .dz-error-mark {
  background-color: white;
  border-radius: 50%;
}
#formulario .multiarchivo .dz-error-mark svg g g {
  fill: #c00;
  fill-opacity: 1;
}
#formulario .multiarchivo .dz-preview.dz-error .dz-error-message {
  opacity: 1;
}
#formulario .checks label[data-checkbox] {
  display: inline-block !important;
  vertical-align: top;
  margin-right: 5px;
  margin-bottom: 5px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 12px;
  border: 1px solid #ccc;
  background-color: #efefef;
}
#formulario .checks label[data-checkbox] input[type=checkbox] {
  width: 0;
  height: 0;
  font-size: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
#formulario .checks label[data-checkbox]::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  margin-right: 2px;
  width: 16px;
  height: 16px;
  line-height: 13px;
  border: 1px solid #afafaf;
  font-size: 17px;
  font-weight: 600;
  color: black;
  text-align: center;
}
#formulario .checks label[data-checkbox].selecto::before {
  content: "x";
}
#formulario [class^=select2] {
  border-radius: 0px !important;
}
#formulario .select2-selection__arrow b {
  border: 0;
  background-image: url(../img/elementos/desplegar.svg);
  width: 10px;
  height: 10px;
  left: 20% !important;
  background-size: 10px;
  background-position: top left;
  background-repeat: no-repeat;
}
#formulario .select2-selection__rendered {
  line-height: 31px !important;
}
#formulario .select2-container .select2-selection--single {
  height: 35px !important;
}
#formulario .select2-selection__arrow {
  height: 34px !important;
}
#formulario .select2-selection.select2-selection--single {
  background-color: #efefef !important;
  font-size: 12px;
  border: 1px solid #ccc !important;
}
#formulario .errores {
  margin-bottom: 20px;
  list-style: disc;
  padding-left: 40px;
}
#formulario .errores li {
  margin: 5px 0;
  color: red;
  font-size: 14px;
  list-style: inherit;
}
#formulario .exito {
  color: #00a634;
  font-size: 15px;
  font-weight: 700;
  margin: 15px 0;
}
#formulario form .campos {
  font-size: 0;
}
#formulario form .campos .campo {
  display: inline-block;
  vertical-align: top;
  padding: 0 6px;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}
#formulario form .campos .campo.ancho-25 {
  width: 25%;
}
#formulario form .campos .campo.ancho-33 {
  width: 33.33%;
}
#formulario form .campos .campo.ancho-66 {
  width: 66.66%;
}
#formulario form .campos .campo.ancho-50 {
  width: 50%;
}
#formulario form .campos .campo.ancho-75 {
  width: 75%;
}
#formulario form .campos .campo.ancho-100 {
  width: 100%;
}
#formulario form .campos .campo .contenido {
  position: relative;
}
#formulario form .campos .campo label {
  display: block;
  color: #6E6F71;
  font-size: 12.5px;
  margin-bottom: 5px;
}
#formulario form .campos .campo h3 {
  margin: 15px 0;
  font-size: 18px;
  color: black;
  font-weight: 600;
}
#formulario form .campos .campo h3.destacado {
  color: #7A61A1;
  font-weight: 700;
}
#formulario form .campos .campo .texto {
  margin: 15px 0;
}
#formulario form .campos .campo .orden {
  margin-bottom: 15px;
}
#formulario form .campos .campo .orden span {
  display: block;
  width: 30px;
  line-height: 30px;
  background-color: #7A61A1;
  color: white;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
}
#formulario form .campos .campo .error {
  display: block;
  margin-top: 10px;
  color: red;
  font-size: 13px;
  font-weight: 700;
}
#formulario form .campos .campo a {
  color: #7A61A1;
  font-size: 16px;
}
#formulario form .recaptcha {
  padding: 0 6px;
  margin: 15px 0;
}
#formulario form .accion {
  padding: 0 6px;
  margin: 20px 0;
}
#formulario form .accion button {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  background-color: #7A61A1;
  padding: 6px 12px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}
#formulario form .elegir-residencia {
  font-size: 14px;
}
#formulario form .elegir-residencia span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  background-color: white;
  padding: 6px 12px;
  color: #7A61A1;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
#formulario form .elegir-residencia span.activo {
  background-color: #7A61A1;
  color: white;
}

@media (max-width: 650px) {
  #formulario form .campos .campo {
    display: block;
  }
  #formulario form .campos .campo.ancho-25 {
    width: 100%;
  }
  #formulario form .campos .campo.ancho-33 {
    width: 100%;
  }
  #formulario form .campos .campo.ancho-66 {
    width: 100%;
  }
  #formulario form .campos .campo.ancho-50 {
    width: 100%;
  }
  #formulario form .campos .campo.ancho-75 {
    width: 100%;
  }
  #formulario form .campos .campo.ancho-100 {
    width: 100%;
  }
  #formulario form .recaptcha {
    transform: scale(0.95);
    transform-origin: 0;
  }
}
.menu-tramites {
  max-width: 900px;
  display: flex;
  margin: 20px 0;
}
.menu-tramites a {
  flex-basis: 0;
  flex-grow: 1;
  display: block;
  padding: 8px 12px;
  margin-right: 10px;
  background-color: #696868;
  color: white;
  font-size: 16px;
}
.menu-tramites a:last-child {
  margin-right: 0;
}
.menu-tramites a:hover {
  background-color: #515151;
}

.buscador-tramites {
  max-width: 900px;
  margin: 20px 0;
  padding-right: 20px;
}
.buscador-tramites label {
  color: #575756;
  padding: 8px 12px;
  display: block;
  font-size: 16px;
}
.buscador-tramites select {
  display: block;
  width: 100%;
}
.buscador-tramites .select2-container .select2-selection--single .select2-selection__rendered {
  padding-top: 2.5px;
  padding-left: 11px;
  font-size: 13px;
  text-align: left !important;
}

.novedades {
  margin: 40px 0;
  padding: 15px;
  background-color: #7A61A1;
  color: white;
  font-size: 16px;
  padding-left: 90px;
  background-image: url(../img/elementos/info.svg);
  background-size: 40px;
  background-position: left 30px center;
  background-repeat: no-repeat;
}
.novedades .novedad {
  display: block;
}

#tramites .lista h3 {
  margin: 30px 0;
  padding: 0 20px;
  color: black;
  font-size: 20px;
  display: flex;
  align-items: center;
}
#tramites .lista h3 span {
  display: block;
  flex-basis: 40px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#tramites .lista h3 i {
  font-style: normal;
  flex-basis: 0;
  flex-grow: 1;
}
#tramites .lista .tramites {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
}
#tramites .lista .tramites article {
  flex-basis: 33.33%;
  margin-bottom: 20px;
  padding: 5px;
  box-sizing: border-box;
}
#tramites .lista .tramites article a.tramite {
  padding: 10px 30px;
  height: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  background-color: #F6F6F6;
}
#tramites .lista .tramites article a.tramite:hover {
  background-color: #EDEDED;
}
#tramites .lista .tramites article a.tramite span {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #1D1D1B;
}

@media (max-width: 650px) {
  .novedades {
    margin: 25px 0;
    padding: 15px;
    padding-top: 70px;
    background-image: url(../img/elementos/info.svg);
    background-size: 40px;
    background-position: center top 15px;
    background-repeat: no-repeat;
  }
  #tramites .lista h3 {
    margin: 20px 0;
  }
  #tramites .lista .tramites {
    display: block;
  }
  #tramites .lista .tramites article {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
  }
  #tramites .lista .tramites article a.tramite {
    padding: 10px 30px;
    height: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    background-color: #F6F6F6;
  }
  #tramites .lista .tramites article a.tramite:hover {
    background-color: #EDEDED;
  }
  #tramites .lista .tramites article a.tramite span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #1D1D1B;
  }
}
#tramite .organismo {
  margin: 40px 0;
  padding: 15px;
  background-color: #00AEA5;
  color: white;
  font-size: 16px;
  padding-left: 90px;
  background-image: url(../img/elementos/info.svg);
  background-size: 40px;
  background-position: left 30px center;
  background-repeat: no-repeat;
}
#tramite .cuerpo {
  padding: 0 40px;
}
#tramite .cuerpo .cabecera {
  border-bottom: 1px solid #aaa;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
#tramite .cuerpo .cabecera h2 {
  font-size: 26px;
  color: black;
  margin-bottom: 30px;
}
#tramite .cuerpo .cabecera .info {
  display: flex;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 20px;
}
#tramite .cuerpo .cabecera .info div {
  margin-right: 30px;
}
#tramite .cuerpo .cabecera .bajada {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 30px;
}
#tramite .cuerpo .botones {
  display: flex;
}
#tramite .cuerpo .botones a {
  display: block;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px 25px;
  background-color: #EEA4CC;
  font-size: 15px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}
#tramite .cuerpo .botones a:last-child {
  margin-right: 0;
}
#tramite .cuerpo .botones a:hover {
  background-color: #E78DBE;
}
#tramite .cuerpo .botones a.destacado {
  background-color: #7A61A1;
}
#tramite .cuerpo .botones a.destacado:hover {
  background-color: #783884;
}
#tramite .cuerpo .modulos .modulo {
  border-bottom: 1px solid #aaa;
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 16px;
  color: #1D1D1B;
  font-weight: 300;
}
#tramite .cuerpo .modulos .modulo h3 {
  margin: 20px 0;
  color: black;
  font-size: 26px;
  font-weight: 300;
  display: flex;
  align-items: center;
}
#tramite .cuerpo .modulos .modulo h3 span {
  display: block;
  flex-basis: 40px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#tramite .cuerpo .modulos .modulo h3 i {
  font-style: normal;
  flex-basis: 0;
  flex-grow: 1;
}
#tramite .cuerpo .modulos .modulo .texto {
  font-size: 16px;
  color: #1D1D1B;
  font-weight: 300;
}
#tramite .cuerpo .modulos .modulo .pasos .paso {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
#tramite .cuerpo .modulos .modulo .pasos .paso .numero {
  flex-basis: 30px;
  font-size: 26px;
  font-weight: 300;
  margin-right: 10px;
}
#tramite .cuerpo .modulos .modulo .pasos .paso .texto {
  flex-basis: 0;
  flex-grow: 1;
  padding-top: 5px;
}
#tramite .cuerpo .modulos .modulo .lista a {
  display: block;
  padding: 20px;
  background-color: #F6F6F6;
  color: #7A61A1;
  font-weight: 400;
}
#tramite .cuerpo .modulos .modulo .lista a:nth-child(2n) {
  background-color: white;
}
#tramite .cuerpo .modulos .modulo .lista a:hover {
  text-decoration: underline;
}
#tramite .cuerpo .modulos .modulo .lista a.documento {
  background-image: url(../img/iconos/pdf.svg);
  background-size: 26px;
  background-position: right 20px center;
  background-repeat: no-repeat;
}

@media (max-width: 650px) {
  #tramite .cuerpo {
    padding: 0;
  }
  #tramite .cuerpo .cabecera {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #tramite .cuerpo .cabecera h2 {
    font-size: 26px;
    color: black;
    margin-bottom: 20px;
  }
  #tramite .cuerpo .cabecera .info {
    display: block;
  }
  #tramite .cuerpo .cabecera .info div {
    margin-right: 0;
    margin-bottom: 10px;
  }
  #tramite .cuerpo .cabecera .bajada {
    margin-bottom: 20px;
  }
  #tramite .cuerpo .botones {
    display: block;
  }
  #tramite .cuerpo .botones a {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
    padding: 8px 10px;
    background-color: #555550;
    font-size: 15px;
    text-align: center;
  }
  #tramite .cuerpo .modulos .modulo {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #tramite .cuerpo .modulos .modulo h3 span {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
  #tramite .cuerpo .modulos .modulo .lista a {
    display: block;
    padding: 10px;
  }
  #tramite .cuerpo .modulos .modulo .lista a.documento {
    padding: 15px;
  }
}
#preguntas h3 {
  margin: 30px 0;
  color: black;
  font-size: 20px;
}
#preguntas .listado-desplegable {
  margin: 20px 0;
}
#preguntas .listado-desplegable .col {
  max-width: 850px;
  margin: 10px 0;
  padding: 0 16px;
}
#preguntas .listado-desplegable .titulo {
  display: block;
  padding: 10px 20px;
  background-color: #EBEBEB;
  margin: 0;
  position: relative;
  font-weight: 700;
  color: black;
  font-size: 14px;
}
#preguntas .listado-desplegable .titulo::after {
  display: block;
  content: "";
  position: absolute;
  right: 18px;
  top: 14px;
  width: 17px;
  height: 11px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/elementos/desplegar.svg);
  transition: transform 0.2s ease;
}
#preguntas .listado-desplegable .titulo.desplegado::after {
  transform: rotate(180deg);
}
#preguntas .listado-desplegable .info {
  display: none;
  padding: 18px 20px;
  padding-bottom: 0;
}
#preguntas .listado-desplegable .info .texto {
  font-size: 15px;
  font-weight: 300;
  color: black;
}

@media (max-width: 650px) {
  #preguntas .listado-desplegable .col {
    padding: 0;
  }
}
.login {
  max-width: 700px;
  margin: 30px auto;
  padding: 2% 4%;
  border: 1px solid #aaa;
}
.login .texto {
  margin: 30px 0;
}
.login .destacado {
  color: #7A61A1;
  font-weight: 600;
}

.registro {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 4%;
}
.registro .texto {
  margin: 30px 0;
}

.contenedor-crm {
  max-width: 1200px;
  margin: 20px auto;
}
.contenedor-crm .logout {
  margin-bottom: 10px;
  padding-left: 10px;
}
.contenedor-crm .logout a {
  color: #7A61A1;
  font-size: 13px;
  font-weight: 600;
}
.contenedor-crm .logout a:hover {
  text-decoration: underline;
}
.contenedor-crm iframe {
  border: 0;
  width: 100%;
  min-height: 100vh;
  overflow-y: auto;
}
.contenedor-crm .error h2 {
  font-size: 25px;
  color: red;
  margin-bottom: 20px;
}
.contenedor-crm .error p {
  font-size: 16px;
  color: black;
}

#dashboard h2 {
  color: black;
  font-weight: 400;
}
#dashboard .consultas .error {
  color: #7A61A1;
  font-size: 15px;
  font-weight: 600;
}
#dashboard .consultas .bloque {
  margin: 30px 0;
}
#dashboard .consultas .bloque .titulo {
  background-color: #7A61A1;
  color: white;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
#dashboard .consultas .bloque .titulo h3 {
  font-size: 15px;
  font-weight: 700;
}
#dashboard .consultas .bloque .titulo a {
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
}
#dashboard .consultas .bloque .tabla > p {
  color: black;
  font-size: 15px;
  padding-left: 16px;
}
#dashboard .consultas .bloque .tabla table {
  width: 100%;
  border-spacing: 0;
  padding: 0;
}
#dashboard .consultas .bloque .tabla table th {
  padding: 16px 22px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: #414142;
  border-bottom: 1px solid #aaa;
  margin-bottom: 10px;
}
#dashboard .consultas .bloque .tabla table td {
  padding: 16px 22px;
  background-color: #f1f2f2;
  font-size: 13px;
  color: #6d6f71;
}
#dashboard .consultas .bloque .tabla table tr:nth-child(2n) td {
  background-color: white;
}
#dashboard .consultas .bloque .tabla table tr:hover td {
  background-color: #e5e5e5;
}
#dashboard .consultas .bloque .tabla i {
  font-size: 16px;
  margin-right: 6px;
}
#dashboard .consultas .bloque .tabla .oscuro {
  color: black;
  font-size: 15px;
}
#dashboard .consultas .bloque .tabla .bordo {
  color: #7A61A1;
  font-size: 15px;
}
#dashboard .consultas .bloque .tabla .verde {
  color: #00a634;
}
#dashboard .consultas .bloque .tabla .naranja {
  color: #f7941d;
}
#dashboard .consultas .bloque .tabla .rojo {
  color: #ed1a4b;
}
#dashboard .consultas .bloque .tabla a.pdf {
  display: inline-block;
  width: 24px;
  height: 32px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/iconos/pdf.svg);
}
#dashboard .consultas .bloque .tabla a.lupa {
  display: inline-block;
  width: 24px;
  height: 32px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/iconos/lupa.svg);
}
#dashboard .consultas .bloque .tabla a.eliminar {
  font-size: 15px;
  font-weight: 900;
  color: #7A61A1;
}
#dashboard .solo-movil {
  display: none;
}

.accesos-directos {
  margin: 0;
  max-width: 1000px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.accesos-directos > div {
  padding: 10px;
  flex-basis: 33.33%;
}
.accesos-directos a {
  display: block;
  background-size: auto 25px;
  background-position: left 15px center;
  background-repeat: no-repeat;
  padding: 15px;
  padding-left: 55px;
  color: #7A61A1;
  font-size: 13px;
  font-weight: 600;
  transition: box-shadow 0.2s ease;
  border: 1px solid #ccc;
}
.accesos-directos a:hover {
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

@media (max-width: 650px) {
  #dashboard .solo-movil {
    display: block;
  }
  #dashboard span.solo-movil {
    display: inline;
  }
  #dashboard .consultas .bloque .tabla tbody, #dashboard .consultas .bloque .tabla table, #dashboard .consultas .bloque .tabla tr, #dashboard .consultas .bloque .tabla td {
    display: block;
    width: 100%;
  }
  #dashboard .consultas .bloque .tabla table th {
    display: none;
  }
  #dashboard .consultas .bloque .tabla table td {
    padding: 5px;
    background-color: white !important;
  }
  #dashboard .consultas .bloque .tabla table tr {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #aaa;
  }
  #dashboard .consultas .bloque .tabla table tr:first-child, #dashboard .consultas .bloque .tabla table tr:last-child {
    border-bottom: 0;
  }

  .accesos-directos {
    display: block;
  }
}