@font-face {
  font-family: 'Jost400';
  font-weight: 400;
  src: url("../fonts/jost/Jost-Regular.ttf") format("opentype");
}
@font-face {
  font-family: 'Jost500M';
  font-weight: 500;
  src: url("../fonts/jost/Jost-Medium.ttf") format("opentype");
}
@font-face {
  font-family: 'Jost600S';
  font-weight: 600;
  src: url("../fonts/jost/Jost-SemiBold.ttf") format("opentype");
}
@font-face {
  font-family: 'Jost800';
  font-weight: 800;
  src: url("../fonts/jost/Jost-Bold.ttf") format("opentype");
}
@font-face {
  font-family: 'Jost200';
  font-weight: 200;
  src: url("../fonts/jost/Jost-Light.ttf") format("opentype");
}
@font-face {
  font-family: 'Ubuntu500';
  font-weight: 500;
  src: url("../fonts/ubuntu/Ubuntu-Medium.ttf") format("opentype");
}
@font-face {
  font-family: 'Ubuntu400';
  font-weight: 400;
  src: url("../fonts/ubuntu/Ubuntu-Regular.ttf") format("opentype");
}
@font-face {
  font-family: 'Ubuntu600S';
  font-weight: 600;
  src: url("../fonts/ubuntu/Ubuntu-Bold.ttf") format("opentype");
}

.more-information {
  cursor: pointer;
  display: inline-block;
  margin-top: 20px;
  background-repeat: no-repeat;
  line-height: 20px;
  font-size: 14px;
  color: #00035B;
}
.more-information:before {
  content: '';
  background-color: #00035B;
  height: 20px;
  width: 22px;
  display: inline-block;
  float: left;
  line-height: 35px;
  -webkit-mask-image: url(../images/iconos/plus.svg);
  mask-image: url(../images/iconos/plus.svg);
  background-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.more-information:hover {
  color: #2dc0e8;
}
.more-information:hover:before {
  background-color: #2dc0e8;
}
@media only screen and (max-width: 991px) {
  .more-information {
    margin-top: 10px;
    width: auto;
  }
}

.loading:before {
  content: '\f110' !important;
  font-family: FontAwesome;
  background: none;
  color: #fff;
  position: absolute;
  outline: none;
  width: 100%;
  font-size: 24px;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  right: 0;
  top: 0;
}

.cms-home .loading:before {
  left: -27px;
}

/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

$mq-support: false;
$mq-fixed-value: 1024;

// Renders at fixed value
@include bp (min-width, 300px) { 
    div { color:#000; }
}

// Doesn't render without MQ support
@include bp (min-width, 1200px) { 
    div { color:#FFF; }
}

// Doesn't render without MQ support
@include bp (max-width, 300px) { 
    div { color:#444; }
}

// Renders at fixed value
@include bp (max-width, 1200px) { 
    div { color:#888; }
}

// ----------------------------------------------
*/
/* ============================================ *
 * SCAFFOLD FORM
 * ============================================ */
/* Scaffolding can not be applied globally to all forms, since some forms are best displayed in a stacked layout */
.scaffold-form .form-list > li {
  display: block;
}
.scaffold-form .form-list > li:after {
  content: '';
  display: table;
  clear: both;
}
.scaffold-form .fields {
  margin: 0;
  padding: 0;
}
.scaffold-form .fields:after {
  content: '';
  display: table;
  clear: both;
}
.scaffold-form .fields > .fields,
.scaffold-form .field,
.scaffold-form .wide,
.scaffold-form .control {
  margin-bottom: 7px;
}
.scaffold-form .fields > .fields:after,
.scaffold-form .field:after,
.scaffold-form .wide:after,
.scaffold-form .control:after {
  content: '';
  display: table;
  clear: both;
}
.scaffold-form label:first-child {
  float: left;
  width: 135px;
  padding: 7px 8px 0 0;
}
.scaffold-form select,
.scaffold-form textarea,
.scaffold-form input[type=email],
.scaffold-form input[type=search],
.scaffold-form input[type=number],
.scaffold-form input[type=password],
.scaffold-form input[type=tel],
.scaffold-form input[type=text] {
  width: 330px;
  max-width: 100%;
}
.scaffold-form .input-box {
  float: left;
  max-width: 350px;
}
.scaffold-form .buttons-set {
  padding-top: 5px;
}

@media only screen and (max-width: 599px) {
  .scaffold-form label:first-child {
    float: none;
    width: auto;
    padding: 0;
  }
  .scaffold-form .input-box {
    float: none;
    max-width: 100%;
  }
  .scaffold-form .control .input-box {
    clear: none;
    float: left;
    display: inline;
    width: auto;
  }
  .scaffold-form .control label:first-child {
    float: left;
  }
}

/*# sourceMappingURL=scaffold-forms.css.map */
