/* Uncomment and set these variables to customize the grid. */

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem;
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-1 {
    margin-left: 8.333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.667%;
  }

  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 62em) {
  .container {
    width: 61rem;
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-1 {
    margin-left: 8.333%;
  }

  .col-md-offset-2 {
    margin-left: 16.667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.333%;
  }

  .col-md-offset-5 {
    margin-left: 41.667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.333%;
  }

  .col-md-offset-8 {
    margin-left: 66.667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.333%;
  }

  .col-md-offset-11 {
    margin-left: 91.667%;
  }

  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .container {
    width: 71rem;
  }

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-1 {
    margin-left: 8.333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.667%;
  }

  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
/*!
 * bootstrap-fileinput v4.5.0
 * http://plugins.krajee.com/file-input
 *
 * Krajee default styling for bootstrap-fileinput.
 *
 * Author: Kartik Visweswaran
 * Copyright: 2014 - 2018, Kartik Visweswaran, Krajee.com
 *
 * Licensed under the BSD 3-Clause
 * https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md
 */.btn-file input[type=file],.file-caption-icon,.file-no-browse,.file-preview .fileinput-remove,.file-zoom-dialog .btn-navigate,.file-zoom-dialog .floating-buttons,.krajee-default .file-thumb-progress{position:absolute}.file-loading input[type=file],input[type=file].file-loading{width:0;height:0}.file-no-browse{left:50%;bottom:20%;width:1px;height:1px;font-size:0;opacity:0;border:none;background:0 0;outline:0;box-shadow:none}.file-caption-icon,.file-input-ajax-new .fileinput-remove-button,.file-input-ajax-new .fileinput-upload-button,.file-input-ajax-new .no-browse .input-group-btn,.file-input-new .close,.file-input-new .file-preview,.file-input-new .fileinput-remove-button,.file-input-new .fileinput-upload-button,.file-input-new .glyphicon-file,.file-input-new .no-browse .input-group-btn,.file-zoom-dialog .modal-header:after,.file-zoom-dialog .modal-header:before,.hide-content .kv-file-content,.kv-hidden{display:none}.btn-file,.file-caption,.file-input,.file-loading:before,.file-preview,.file-zoom-dialog .modal-dialog,.krajee-default .file-thumbnail-footer,.krajee-default.file-preview-frame{position:relative}.file-error-message pre,.file-error-message ul,.krajee-default .file-actions,.krajee-default .file-other-error{text-align:left}.file-error-message pre,.file-error-message ul{margin:0}.krajee-default .file-drag-handle,.krajee-default .file-upload-indicator{float:left;margin:5px 0 -5px;width:16px;height:16px}.krajee-default .file-thumb-progress .progress,.krajee-default .file-thumb-progress .progress-bar{height:11px;font-family:Verdana,Helvetica,sans-serif;font-size:9px}.krajee-default .file-caption-info,.krajee-default .file-size-info{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:160px;height:15px;margin:auto}.file-zoom-content>.file-object.type-flash,.file-zoom-content>.file-object.type-image,.file-zoom-content>.file-object.type-video{max-width:100%;max-height:100%;width:auto}.file-zoom-content>.file-object.type-flash,.file-zoom-content>.file-object.type-video{height:100%}.file-zoom-content>.file-object.type-default,.file-zoom-content>.file-object.type-html,.file-zoom-content>.file-object.type-pdf,.file-zoom-content>.file-object.type-text{width:100%}.file-loading:before{content:" Loading...";display:inline-block;padding-left:20px;line-height:16px;font-size:13px;font-variant:small-caps;color:#999;background:url(../img/loading.gif) top left no-repeat}.file-object{margin:0 0 -5px;padding:0}.btn-file{overflow:hidden}.btn-file input[type=file]{top:0;left:0;min-width:100%;min-height:100%;text-align:right;opacity:0;background:none;cursor:inherit;display:block}.btn-file ::-ms-browse{font-size:10000px;width:100%;height:100%}.file-caption .file-caption-name{width:100%;margin:0;padding:0;box-shadow:none;border:none;background:0 0;outline:0}.file-caption.icon-visible .file-caption-icon{display:inline-block}.file-caption.icon-visible .file-caption-name{padding-left:15px}.file-caption-icon{left:8px}.file-error-message{color:#a94442;background-color:#f2dede;margin:5px;border:1px solid #ebccd1;border-radius:4px;padding:15px}.file-error-message pre{margin:5px 0}.file-caption-disabled{background-color:#eee;cursor:not-allowed;opacity:1}.file-preview{border-radius:5px;border:1px solid #ddd;padding:8px;width:100%;margin-bottom:5px}.file-preview .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.file-preview .fileinput-remove{top:1px;right:1px;line-height:10px}.file-preview .clickable{cursor:pointer}.file-preview-image{font:40px Impact,Charcoal,sans-serif;color:green}.krajee-default.file-preview-frame{margin:8px;border:1px solid #ddd;box-shadow:1px 1px 5px 0 #a2958a;padding:6px;float:left;text-align:center}.krajee-default.file-preview-frame .kv-file-content{width:213px;height:160px}.krajee-default.file-preview-frame .kv-file-content.kv-pdf-rendered{width:400px}.krajee-default.file-preview-frame .file-thumbnail-footer{height:70px}.krajee-default.file-preview-frame:not(.file-preview-error):hover{box-shadow:3px 3px 5px 0 #333}.krajee-default .file-preview-text{display:block;color:#428bca;border:1px solid #ddd;font-family:Menlo,Monaco,Consolas,"Courier New",monospace;outline:0;padding:8px;resize:none}.krajee-default .file-preview-html{border:1px solid #ddd;padding:8px;overflow:auto}.krajee-default .file-other-icon{font-size:6em}.krajee-default .file-footer-buttons{float:right}.krajee-default .file-footer-caption{display:block;text-align:center;padding-top:4px;font-size:11px;color:#777;margin-bottom:15px}.krajee-default .file-preview-error{opacity:.65;box-shadow:none}.krajee-default .file-thumb-progress{height:11px;top:37px;left:0;right:0}.krajee-default.kvsortable-ghost{background:#e1edf7;border:2px solid #a1abff}.krajee-default .file-preview-other:hover{opacity:.8}.krajee-default .file-preview-frame:not(.file-preview-error) .file-footer-caption:hover{color:#000}.kv-upload-progress .progress{height:20px;margin:10px 0;overflow:hidden}.kv-upload-progress .progress-bar{height:20px;font-family:Verdana,Helvetica,sans-serif}.file-zoom-dialog .file-other-icon{font-size:22em;font-size:50vmin}.file-zoom-dialog .modal-dialog{width:auto}.file-zoom-dialog .modal-header{display:flex;align-items:center;justify-content:space-between}.file-zoom-dialog .btn-navigate{padding:0;margin:0;background:0 0;text-decoration:none;outline:0;opacity:.7;top:45%;font-size:4em;color:#1c94c4}.file-zoom-dialog .btn-navigate:not([disabled]):hover{outline:0;box-shadow:none;opacity:.6}.file-zoom-dialog .floating-buttons{top:5px;right:10px}.file-zoom-dialog .btn-navigate[disabled]{opacity:.3}.file-zoom-dialog .btn-prev{left:1px}.file-zoom-dialog .btn-next{right:1px}.file-zoom-dialog .kv-zoom-title{font-weight:300;color:#999;max-width:50%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.file-input-ajax-new .no-browse .form-control,.file-input-new .no-browse .form-control{border-top-right-radius:4px;border-bottom-right-radius:4px}.file-caption-main{width:100%}.file-thumb-loading{background:url(../img/loading.gif) center center no-repeat content-box!important}.file-drop-zone{border:1px dashed #aaa;border-radius:4px;height:100%;text-align:center;vertical-align:middle;margin:12px 15px 12px 12px;padding:5px}.file-drop-zone.clickable:hover{border:2px dashed #999}.file-drop-zone.clickable:focus{border:2px solid #5acde2}.file-drop-zone .file-preview-thumbnails{cursor:default}.file-drop-zone-title{color:#aaa;font-size:1.6em;padding:85px 10px;cursor:default}.file-highlighted{border:2px dashed #999!important;background-color:#eee}.file-uploading{background:url(../img/loading-sm.gif) center bottom 10px no-repeat;opacity:.65}.file-zoom-fullscreen.modal{position:fixed;top:0;right:0;bottom:0;left:0}.file-zoom-fullscreen .modal-dialog{position:fixed;margin:0;padding:0;width:100%;height:100%;max-width:100%;max-height:100%}.file-zoom-fullscreen .modal-content{border-radius:0;box-shadow:none}.file-zoom-fullscreen .modal-body{overflow-y:auto}.floating-buttons{z-index:3000}.floating-buttons .btn-kv{margin-left:3px;z-index:3000}.file-zoom-content{height:480px;text-align:center}.file-zoom-content .file-preview-image,.file-zoom-content .file-preview-video{max-height:100%}.file-zoom-content>.file-object.type-image{height:auto;min-height:inherit}.file-zoom-content>.file-object.type-audio{width:auto;height:30px}@media (min-width:576px){.file-zoom-dialog .modal-dialog{max-width:500px}}@media (min-width:992px){.file-zoom-dialog .modal-lg{max-width:800px}}@media (max-width:767px){.file-preview-thumbnails{display:flex;justify-content:center;align-items:center;flex-direction:column}.file-zoom-dialog .modal-header{flex-direction:column}}@media (max-width:350px){.krajee-default.file-preview-frame .kv-file-content{width:160px}}@media (max-width:420px){.krajee-default.file-preview-frame .kv-file-content.kv-pdf-rendered{width:100%}}.file-loading[dir=rtl]:before{background:url(../img/loading.gif) top right no-repeat;padding-left:0;padding-right:20px}.file-sortable .file-drag-handle{cursor:move;opacity:1}.file-sortable .file-drag-handle:hover{opacity:.7}.clickable .file-drop-zone-title{cursor:pointer}.kv-zoom-actions .btn-kv{margin-left:3px}.file-preview-initial.sortable-chosen{background-color:#d9edf7}
:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

* {
  font-family: 'Muli', sans-serif;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 14px; }

ul {
  list-style: none; }

a {
  text-decoration: none; }

small {
  font-size: 11px;
  font-weight: 500; }

input[type="text"], input[type="email"], input[type="date"], textarea, select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  border-radius: 0;
  outline: none;
  height: 2.5rem;
  width: 100%;
  font-size: 16px;
  margin: 0 0 25px 0;
  padding: 10px 0;
  box-shadow: none;
  box-sizing: content-box;
  transition: all .3s;
  margin: 0; }

select {
  font-size: 16px; }
  select option {
    font-size: 16px;
    padding: 10px 15px; }

body {
  font-family: Muli, sans-serif;
  margin: 0px;
  overflow-x: hidden; }

.btn {
  display: inline-block;
  position: relative;
  border-radius: 50px;
  position: relative;
  font-size: 0.97em;
  cursor: pointer;
  text-align: center;
  margin: 0 auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: 0;
  padding: 10px 39px; }

.btnResponive {
  display: none; }

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.form-group {
  margin-bottom: 15px; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
    outline: none;
    height: 2.5rem;
    width: 100%;
    font-size: 16px;
    margin: 0 0 25px 0;
    padding: 10px 0;
    box-shadow: none;
    box-sizing: content-box;
    transition: all .3s;
    margin: 0; }
    .input-group .form-control .file-caption-name {
      font-size: 16px;
      line-height: 36px; }
    .input-group .form-control:last-child {
      border-left: 0 none;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }

.input-group-btn {
  width: 1%;
  display: table-cell;
  position: relative;
  font-size: 0;
  white-space: nowrap; }

.btn-file {
  border: 1px solid #64307c !important;
  padding: 9px 18px;
  margin-left: 0;
  z-index: 2; }
  .btn-file span {
    color: #64307c; }
  .btn-file input[type=file] {
    width: 100%;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }
  .btn-file:hover {
    background-color: #64307c;
    cursor: pointer; }
    .btn-file:hover span {
      color: #fff;
      cursor: pointer; }

.file-caption-icon, .file-input-ajax-new .fileinput-remove-button, .file-input-ajax-new .fileinput-upload-button, .file-input-ajax-new .no-browse .input-group-btn, .file-input-new .close, .file-input-new .file-preview, .file-input-new .fileinput-remove-button, .file-input-new .fileinput-upload-button, .file-input-new .glyphicon-file, .file-input-new .no-browse .input-group-btn, .file-zoom-dialog .modal-header:after, .file-zoom-dialog .modal-header:before, .hide-content .kv-file-content, .kv-hidden {
  display: none; }

.tooltipEspe {
  position: relative; }
  .tooltipEspe:before {
    opacity: 0;
    content: attr(data-info);
    color: white;
    font-size: 0.9em;
    padding: 6% 13%;
    background: rgba(0, 0, 0, 0.63);
    border-radius: 4px;
    position: absolute;
    top: 4em;
    left: -12%;
    z-index: 999;
    width: auto;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out; }
  .tooltipEspe:hover:before {
    opacity: 1; }

.img-responsive {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  vertical-align: middle; }

.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .loading img {
    animation: pulseLogo 3s infinite; }

@keyframes pulseLogo {
  from {
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5); }
  50% {
    -webkit-transform: scale3d(0.6, 0.6, 0.6);
    transform: scale3d(0.6, 0.6, 0.6); }
  to {
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5); } }

.trans03 {
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out; }

.modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: 5;
  display: none;
  background-color: rgba(255, 255, 255, 0.9); }
  .modal > header {
    position: absolute;
    right: 3%;
    top: 7%;
    opacity: 0;
    -webkit-animation-delay: 1.5s, 1.5s;
    animation-delay: 1.5s, 1.5s;
    z-index: 1; }
    .modal > header .cerrar {
      position: absolute;
      right: 4%;
      top: 0%;
      cursor: pointer; }
      .modal > header .cerrar svg {
        width: 3em; }
  .modal .cuerpoModal .supImagenModal {
    position: absolute;
    width: 34%;
    height: 100%;
    background-color: #fff;
    z-index: 1;
    -webkit-animation-delay: 0.6s, 0.6s;
    animation-delay: 0.6s, 0.6s; }
  .modal .cuerpoModal .imgModal {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    opacity: 0;
    -webkit-animation-delay: 0.8s, 0.8s;
    animation-delay: 0.8s, 0.8s; }
    .modal .cuerpoModal .imgModal img {
      position: relative; }
  .modal .cuerpoModal .bodyModal {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5% 15% 0 0;
    background-color: #fff;
    -webkit-animation-delay: 0.8s, 0.8s;
    animation-delay: 0.8s, 0.8s; }
    .modal .cuerpoModal .bodyModal header {
      margin-bottom: 8%;
      text-align: center;
      opacity: 0;
      -webkit-animation-delay: 1s, 1s;
      animation-delay: 1s, 1s; }
      .modal .cuerpoModal .bodyModal header h2 {
        font-size: 4em;
        text-align: center; }
    .modal .cuerpoModal .bodyModal article {
      text-align: center;
      opacity: 0;
      -webkit-animation-delay: 1.5s, 1.5s;
      animation-delay: 1.5s, 1.5s; }
      .modal .cuerpoModal .bodyModal article h5 {
        font-size: 1.7em;
        text-align: center; }
        .modal .cuerpoModal .bodyModal article h5 a {
          font-size: 1em;
          color: #64307c; }
      .modal .cuerpoModal .bodyModal article .btn {
        margin-top: 8%;
        font-size: 1.5em; }

.modalMensaje .cuerpoModal, .modalCita .cuerpoModal, .modalFisio .cuerpoModal {
  opacity: 0;
  width: 105%; }

.modalFisio .bodyModal {
  padding: 5% 0 0 0 !important; }

.spinnerModal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute; }

@keyframes fadeOutUpSlider {
  0% {
    opacity: 1; }
  20% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0); }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.fadeOutUpSlider {
  -webkit-animation-name: fadeOutUpSlider;
  animation-name: fadeOutUpSlider; }

/* Date time picker*/
.bootstrap-datetimepicker-widget {
  position: fixed;
  width: 35vw !important;
  height: 46vh;
  top: 53%;
  right: 25.7vw !important;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.98);
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-box-shadow: -16px 20px 28px 4px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: -16px 20px 28px 4px rgba(0, 0, 0, 0.11);
  box-shadow: -16px 20px 28px 4px rgba(0, 0, 0, 0.11);
  border: 0; }
  .bootstrap-datetimepicker-widget > div {
    width: 80%;
    height: 80%;
    background-color: #fff;
    margin: 0 auto; }
    .bootstrap-datetimepicker-widget > div > div {
      display: flex;
      flex-direction: column;
      justify-content: center; }
  .bootstrap-datetimepicker-widget table {
    margin: 0 auto; }
    .bootstrap-datetimepicker-widget table thead tr th {
      height: 30px;
      width: 30px;
      color: #2c2c2c;
      font-weight: 600;
      font-size: 14px;
      border-radius: 50px; }
      .bootstrap-datetimepicker-widget table thead tr th.picker-switch {
        color: #2c2c2c;
        font-size: 16px;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        font-weight: 600; }
    .bootstrap-datetimepicker-widget table td {
      color: #2c2c2c;
      border-radius: 50px; }
      .bootstrap-datetimepicker-widget table td.day {
        height: 30px;
        line-height: 30px;
        width: 35px;
        border-radius: 50px;
        font-size: 13px;
        color: #2c2c2c;
        font-weight: 500;
        text-align: center; }
      .bootstrap-datetimepicker-widget table td.today:before {
        border-bottom-color: #64307c; }
      .bootstrap-datetimepicker-widget table td.old {
        color: #c8c7cc; }
      .bootstrap-datetimepicker-widget table td.active {
        background-color: #64307c;
        color: #fff;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
        font-weight: 800; }
        .bootstrap-datetimepicker-widget table td.active:hover {
          background-color: #50146d; }
      .bootstrap-datetimepicker-widget table td.disabled {
        color: #c4c3c3  !important; }
      .bootstrap-datetimepicker-widget table td span {
        border-radius: 50px;
        line-height: 60px; }
        .bootstrap-datetimepicker-widget table td span.active {
          background-color: #64307c; }
  .bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute {
    color: #2c2c2c;
    font-size: 2em; }
  .bootstrap-datetimepicker-widget .separator {
    font-size: 2em;
    color: #2c2c2c; }
  .bootstrap-datetimepicker-widget button[data-action='togglePeriod'] {
    font-size: 1em;
    font-weight: 600; }
  .bootstrap-datetimepicker-widget.dropdown-menu.top:after, .bootstrap-datetimepicker-widget.dropdown-menu.top:before {
    border-top: 20px solid transparent;
    border-left: 24px solid #fff;
    border-bottom: 20px solid transparent;
    bottom: 42%;
    right: -23px; }

#gradient-horizontal {
  --color-stop-1: #64307c;
  --color-stop-2: #476bb8;
  --color-stop-3: #04a1dd; }

.iconSuccess, .iconGradient {
  fill: url(#gradient-horizontal) gray; }

.spinner {
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out; }

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    opacity: 0; } }

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }

.animatedFisio {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.section-sigle section {
  height: 100vh; }
  .section-sigle section:not(.citaPago) {
    padding: 4% 6% 0 6%; }
    .section-sigle section:not(.citaPago) > header {
      margin-bottom: 3%; }
  .section-sigle section.solicitud > header h2 {
    font-size: 1.3em; }
  .section-sigle section.citaPago {
    padding: 2% 6% 0 6%; }
  .section-sigle section > header h2 {
    font-size: 2.5em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #64307c; }
  .section-sigle section article > div > h5 {
    font-size: 1.1em;
    margin: 4px 0;
    font-weight: 600;
    text-transform: uppercase; }

.section-sigle .resumenCompra {
  margin: 0 0 0 7%; }
  .section-sigle .resumenCompra .paqueteCompra {
    background-color: #f5f5f5;
    margin: 0; }
    .section-sigle .resumenCompra .paqueteCompra div {
      text-align: center; }
    .section-sigle .resumenCompra .paqueteCompra h5 {
      font-size: 18px;
      text-transform: uppercase;
      font-weight: 400;
      margin-top: 8px;
      margin-bottom: 0; }
    .section-sigle .resumenCompra .paqueteCompra small {
      color: #777; }
    .section-sigle .resumenCompra .paqueteCompra h4 {
      font-size: 27px;
      margin-top: 15%;
      font-family: 'Montserrat', sans-serif;
      color: #64307c;
      margin-bottom: 15%; }
      .section-sigle .resumenCompra .paqueteCompra h4 sup {
        font-family: 'Montserrat', sans-serif;
        font-size: 10px; }
  .section-sigle .resumenCompra > h5 {
    font-size: 1.1em;
    margin-bottom: 5%;
    font-weight: 600;
    text-transform: uppercase; }

.section-sigle .tiposPago {
  padding-top: 4%; }
  .section-sigle .tiposPago h5 {
    font-size: 1.1em;
    margin-bottom: 5%;
    font-weight: 600;
    text-transform: uppercase;
    color: #777; }
    .section-sigle .tiposPago h5.active {
      color: #64307c; }
  .section-sigle .tiposPago p {
    font-weight: 500; }
  .section-sigle .tiposPago ul.menuMetodo li {
    padding-top: 5px;
    padding-bottom: 5px; }
    .section-sigle .tiposPago ul.menuMetodo li p {
      font-size: 0.9em;
      line-height: 1.8em; }
  .section-sigle .tiposPago .transferencia .formReferencia .btnPago {
    background-color: #04a1dd;
    color: #fff;
    font-size: 16px;
    -webkit-box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.2);
    margin-top: 3%;
    width: 43%; }
  .section-sigle .tiposPago .transferencia .formReferencia .bootstrap-datetimepicker-widget {
    right: 0;
    left: 17%;
    -webkit-box-shadow: 0px 30px 30px 15px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 30px 30px 15px rgba(0, 0, 0, 0.11); }
  .section-sigle .tiposPago ul.menuMetodo {
    display: flex;
    flex-direction: row; }
    .section-sigle .tiposPago ul.menuMetodo li {
      margin-right: 10%; }
  .section-sigle .tiposPago .bootstrap-datetimepicker-widget.dropdown-menu.top:before {
    left: 98%; }
  .section-sigle .tiposPago .bootstrap-datetimepicker-widget.dropdown-menu.top:after {
    left: 98%; }

.textResultPago {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh; }
  .textResultPago h2 {
    font-weight: 900;
    color: #64307c;
    margin-bottom: 5%;
    font-size: 5em; }
  .textResultPago p {
    font-size: 1.8em;
    margin-bottom: 5%; }
  .textResultPago .btn {
    background-color: #64307c;
    color: #fff;
    font-size: 1.8em;
    -webkit-box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.2); }

.imgResultPago {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh; }
  .imgResultPago svg {
    width: 70%; }

.listBancos {
  padding-top: 8%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; }
  .listBancos li {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center; }
    .listBancos li p {
      font-size: 1.1em;
      font-weight: 500;
      color: #383838;
      line-height: 1.5; }

.pago-bancos {
  text-align: center; }
  .pago-bancos > p {
    font-size: 13px; }
  .pago-bancos ul {
    margin-top: 7%;
    border-left: 1px solid #f3f2ee;
    text-align: center; }
    .pago-bancos ul li {
      line-height: 1.5;
      padding: 10px 0; }
      .pago-bancos ul li p {
        font-size: 13px;
        font-weight: 500;
        color: #4e4e4e;
        line-height: 2; }

.textoTarifa {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; }
  .textoTarifa h4 {
    margin-top: 5% !important;
    margin-bottom: 5% !important; }

.bootstrap-datetimepicker-widget table {
  width: 100%;
  text-align: center; }

@media only screen and (max-width: 600px) {
  .pago-bancos {
    padding-top: 10%; }
    .pago-bancos ul {
      border-left: 0px; } }

@media only screen and (max-width: 1024px) {
  .btn {
    padding: 6px 39px; }
  .menu-header ul li a {
    font-size: 15px; }
  .formSolicitud {
    padding: 0 15px 0px 15px; }
    .formSolicitud > header {
      display: none; }
    .formSolicitud > article {
      height: 100vh; }
      .formSolicitud > article form {
        padding-top: 0px; }
        .formSolicitud > article form footer {
          padding-top: 0; }
          .formSolicitud > article form footer .btn {
            font-size: inherit; }
          .formSolicitud > article form footer .redesForm {
            display: none; }
  .mainHome .contentHome .sliderHome h1:first-child {
    font-size: 4em; }
  .mainHome .contentHome .sliderHome h1:nth-child(2) {
    font-size: 4.5em; }
  .mainHome .contentHome .sliderHome2 h4 {
    font-size: 1.4em; }
  body > .section-wrapper > section:not(.mainHome) {
    height: auto;
    padding: 4% 0 4% 7%; }
    body > .section-wrapper > section:not(.mainHome) > header h2 {
      font-size: 2em; }
    body > .section-wrapper > section:not(.mainHome) article > h5 {
      font-size: 16px; }
  ul.listaEspecialidades li h3 {
    font-size: 16px; }
  ul.listaDoctores > div .owl-item > div li .detalleDoctor h2 {
    font-size: 16px; }
  .tarifas .linkPrecio {
    font-size: 11px; }
    .tarifas .linkPrecio a {
      font-size: 11px; }
  .tarjetaTarifa .headerTarifa h5 {
    font-size: 14px; }
  .tarjetaTarifa .textoTarifa p {
    font-size: 12px; }
  .tarjetaTarifa .textoTarifa h4 {
    font-size: 20px; }
  .listTestimonios {
    padding: 10% 0; }
    .listTestimonios section .img-testimonio h4 {
      font-size: 16px; } }

@media only screen and (max-width: 768px) {
  .formSolicitud {
    display: none; }
  .menu-header {
    display: none; }
  .btnResponive {
    text-align: right;
    display: block; }
  .main-header {
    padding-left: 2em;
    padding-right: 2em; }
    .main-header .logo-header {
      width: auto; }
  .menu-header ul:not(.menuSalir) {
    padding-right: 0; }
  .navigationHome {
    display: none; }
  .mainHome .contentHome .sliderHome h1:first-child {
    font-size: 3em; }
  .mainHome .contentHome .sliderHome h1:nth-child(2) {
    font-size: 3.5em; }
  .mainHome .contentHome .sliderHome2 h4 {
    font-size: 1.2em; }
  .mainHome .contentHome .especialidadesHome {
    padding-top: 0;
    width: 64%; }
    .mainHome .contentHome .especialidadesHome li img {
      width: 34px; }
  body > .section-wrapper > section:not(.mainHome) {
    height: auto;
    padding: 4% 0 4% 7%;
    width: 88% !important; }
    body > .section-wrapper > section:not(.mainHome) > header h2 {
      font-size: 1.7em; }
  ul.listaEspecialidades li h3 {
    font-size: 16px !important; }
  ul.listaDoctores > div .owl-item > div li .detalleDoctor h2 {
    font-size: 14px; }
  .tarifas .linkPrecio {
    font-size: 10px; }
    .tarifas .linkPrecio a {
      font-size: 10px; }
  .tarjetaTarifa .headerTarifa h5 {
    font-size: 12px; }
  .tarjetaTarifa .textoTarifa p {
    font-size: 10px; }
  .tarjetaTarifa .textoTarifa h4 {
    font-size: 18px; }
  .listTestimonios {
    padding: 10% 0; }
    .listTestimonios section .img-testimonio h4 {
      font-size: 4px; } }

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  html, body {
    overflow-x: hidden !important; }
  .formSolicitud {
    width: 100% !important;
    background-image: linear-gradient(to right bottom, rgba(48, 3, 133, 0.95), rgba(90, 37, 150, 0.95), rgba(107, 53, 168, 0.95), rgba(126, 90, 144, 0.95), rgba(188, 129, 205, 0.95)) !important;
    height: 100vh !important;
    z-index: 5 !important;
    right: -120% !important;
    padding: 20px !important; }
    .formSolicitud header h4 {
      font-size: 20px !important; }
    .formSolicitud .back {
      display: block !important; }
    .formSolicitud > article {
      height: 72vh !important; }
      .formSolicitud > article .form-group {
        margin-bottom: 2px !important; }
  .navigationHome {
    display: none !important; }
  .main-header {
    padding: 0 !important; }
    .main-header .logo-header {
      width: 100% !important; }
    .main-header .menu-header {
      display: none !important; }
  .mainHome .contentHome .sliderHome {
    width: 100% !important;
    padding-top: 0 !important; }
    .mainHome .contentHome .sliderHome .owl-item {
      width: 100% !important; }
    .mainHome .contentHome .sliderHome h1 {
      font-size: 3em !important; }
    .mainHome .contentHome .sliderHome:nth-child(2) {
      font-size: 3.5em !important; }
  .mainHome .contentHome .sliderHome2 {
    width: 100% !important; }
    .mainHome .contentHome .sliderHome2 .owl-item {
      width: 100% !important; }
    .mainHome .contentHome .sliderHome2 h4 {
      font-size: 1.1em !important; }
  .mainHome .contentHome .especialidadesHome {
    width: 80% !important; }
    .mainHome .contentHome .especialidadesHome li {
      padding: 0 2px 0 2px !important; }
      .mainHome .contentHome .especialidadesHome li img {
        width: 30px !important; }
  body > .section-wrapper > section:not(.mainHome) {
    padding: 10% 0 8% 5% !important;
    width: 95% !important;
    height: auto !important; }
    body > .section-wrapper > section:not(.mainHome) > header {
      margin-top: 5% !important;
      margin-bottom: 10% !important; }
      body > .section-wrapper > section:not(.mainHome) > header h2 {
        font-size: 1.3em !important; }
    body > .section-wrapper > section:not(.mainHome) > article > h5 {
      font-size: 1em !important;
      line-height: 27px !important; }
  ul.listaEspecialidades li {
    padding-top: 10px !important;
    padding-bottom: 10px !important; }
    ul.listaEspecialidades li h3 {
      font-size: 1.1em !important;
      margin-bottom: 5px !important; }
    ul.listaEspecialidades li p {
      font-size: 0.9em !important;
      line-height: 20px !important; }
    ul.listaEspecialidades li .saberMas {
      display: block !important; }
  ul.listaEspecialidades aside {
    display: none !important; }
  ul.listaDoctores li {
    padding-top: 5% !important;
    padding-bottom: 5% !important; }
    ul.listaDoctores li .imgDoctor {
      width: 100% !important;
      margin: 0 !important; }
    ul.listaDoctores li .detalleDoctor {
      text-align: left !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      align-self: center !important;
      height: 100% !important;
      flex-flow: column !important; }
      ul.listaDoctores li .detalleDoctor h2 {
        font-size: 1.1em !important;
        padding-top: 10% !important; }
        ul.listaDoctores li .detalleDoctor h2:after {
          width: 100% !important;
          margin-top: 12px !important;
          margin-bottom: 0 !important; }
      ul.listaDoctores li .detalleDoctor p {
        font-size: 0.9em !important; }
  .fisioterapeutas ul.listaFisios .nombreFisio h2 {
    font-size: 1.1em !important; }
  .fisioterapeutas ul.listaFisios .owl-nav {
    position: absolute !important;
    bottom: -10% !important; }
  .fisioterapeutas ul.listaFisios a {
    width: 100% !important; }
  .imgModeloFisio {
    display: none !important; }
  .doctores {
    width: 100% !important; }
    .doctores > article {
      height: 90% !important; }
  .tarjetaTarifa {
    padding-bottom: 10% !important;
    display: block !important; }
    .tarjetaTarifa:not(.lastTarjeta) {
      border-right: 0px !important;
      border-bottom: 1px solid #f3f2ee !important; }
    .tarjetaTarifa .headerTarifa {
      margin-bottom: 5% !important; }
      .tarjetaTarifa .headerTarifa h5 {
        font-size: 1.1em !important; }
    .tarjetaTarifa .textoTarifa img {
      margin-bottom: 5% !important; }
    .tarjetaTarifa .textoTarifa h4 {
      margin-top: 5% !important;
      margin-bottom: 5% !important;
      font-size: 1.5em !important; }
    .tarjetaTarifa .textoTarifa p {
      font-size: 0.9em !important; }
    .tarjetaTarifa .botonTarifa {
      padding-top: 0 !important; }
  .listTestimonios {
    height: auto !important;
    flex-direction: column !important; }
    .listTestimonios section {
      padding-bottom: 10% !important; }
      .listTestimonios section .img-testimonio > aside {
        width: 70px !important;
        height: 70px !important; }
  .footer {
    position: relative !important;
    width: 100% !important;
    left: 70% !important;
    padding-top: 10% !important; }
  .btnResponive {
    display: block !important; }
    .btnResponive .btnSolicitar {
      padding: 6px 20px !important; }
  .modal > header {
    right: 6% !important;
    top: 4% !important; }
    .modal > header .cerrar svg {
      width: 2em !important; }
  .modal .cuerpoModal .bodyModal {
    padding: 5% !important;
    height: auto !important; }
    .modal .cuerpoModal .bodyModal header h2 {
      font-size: 1.6em !important; }
    .modal .cuerpoModal .bodyModal article h5 {
      font-size: 1em !important;
      font-weight: 500 !important; }
    .modal .cuerpoModal .bodyModal .btn {
      font-size: 1em !important; }
  .modal .cuerpoModal .imgModal img {
    width: 40% !important; }
  .modal .supImagenModal {
    display: none !important; }
  .section-pago section > header h2 {
    margin-bottom: 10% !important; }
  .resumenCompra {
    margin: 20% 0 0 0 !important; }
  .section-sigle section {
    height: 100% !important; }
  #formSolicitud {
    padding-top: 10% !important; }
    #formSolicitud label.error {
      color: #ac2925 !important;
      position: absolute !important;
      right: 7% !important;
      font-weight: 600 !important;
      font-size: 11px !important;
      margin-top: 18% !important; }
    #formSolicitud .form-group {
      margin-bottom: 10% !important; }
      #formSolicitud .form-group > label:first-child {
        font-weight: 600 !important; }
    #formSolicitud .btn {
      background-color: #04a1dd !important;
      color: #fff !important;
      font-size: 16px !important;
      -webkit-box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.2) !important;
      box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.2) !important;
      width: 60% !important; }
  .imgModal svg {
    width: 20vw !important;
    height: 20vh !important; }
  .bootstrap-datetimepicker-widget {
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 100% !important;
    z-index: 3 !important; } }
