/*
    Form
    ===============
*/

.formulario select {
  padding: 0 15px 10px 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  /*  appearance: none;*/
  border-bottom: 2px solid #eee;
  width: 100%;
  box-sizing: border-box;
  color: #a2a1a0;
  font-size: 13px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: inherit;
}

.link-disabled,
.formulario .link-disabled,
.formulario .link-disabled.finalizar {
  pointer-events: none;
  cursor: default;
  background-color: #ccc;
}

.action-button-disabled,
.formulario .action-button-disabled {
  padding: 13px 30px;
  margin: 0 auto;
  border-radius: 100px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  width: 80%;
  font-family: "Museo";
  background: #ccc;
  pointer-events: none;
  cursor: default;
}

.action-button-disabled:hover,
.action-button-disabled:focus {
  color: #fff;
  background: #ccc;
  pointer-events: none;
  cursor: default;
}

.action-button-valid {
  background: green;
  padding: 13px 30px;
  border-radius: 100px;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  width: 80%;
  font-family: "Museo";
}

.action-button-valid:hover,
.action-button-valid:focus {
  color: #fff;
}

.action-button-invalid {
  background: red;
  padding: 13px 30px;
  border-radius: 100px;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  width: 80%;
  font-family: "Museo";
}

.action-button-invalid:hover,
.action-button-invalid:focus {
  color: #fff;
}

.formulario .upload-disabled,
.info-historial .upload-disabled {
  pointer-events: none;
  cursor: default;
  border: 2px solid #ccc;
}

.formulario .upload-finished {
  border: 2px solid green;
}

.bg-green-valid,
.bg-green-valid:hover {
  background-color: green;
}

.bg-red-invalid,
.bg-red-invalid:hover {
  background-color: red;
}

.page-registro .formulario .validar {
  background-color: transparent !important;
}

.page-registro .formulario .fileUpload {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid #59bcbb;
  border-radius: 100px;
  padding: 10px 30px;
  cursor: pointer;
  margin-top: 0;
  width: 100%;
}

.page-registro .formulario .upload-disabled {
  border: 2px solid #ccc;
  pointer-events: none;
  cursor: default;
}

.page-registro .formulario .upload-finished {
  border: 2px solid green;
}

.page-registro .formulario .fileUpload span {
  position: relative;
  color: #a2a1a0;
  font-family: "Museo";
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.4px;
}
.page-registro .formulario .fileUpload span i {
  left: -20px;
  color: #a2a1a0;
  font-size: 15px;
}
.page-registro .formulario .fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.info-historial .fileUpload {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid #59bcbb;
  border-radius: 100px;
  padding: 5px;
  cursor: pointer;
  margin-top: 0;
  display: block;
}
.info-historial.fileUpload span {
  position: relative;
  color: #59bcbb;
  font-family: "Museo";
  font-size: 10px;
  font-weight: 500;
  letter-spacing: -0.4px;
}
.info-historial.fileUpload span i {
  left: -20px;
  color: #59bcbb;
  font-size: 12px;
}
.info-historial .fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

/*
    Placeholder for date inputs
*/
input[type="date"]:before {
  content: attr(placeholder) !important;
  width: 100%;
  color: #a2a1a0;
}

input[type="date"]:focus:before,
input[type="date"]:valid:before {
  display: none;
}

/*
    Error alerts
*/

.alert-danger {
  margin-top: 2px;
}

/*
    Loader
    =============
*/

.loader {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
}

.button-loader span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #009fda;
  margin: 35px 5px;
}

.button-loader span:nth-child(1) {
  animation: bounce 1s ease-in-out infinite;
}

.button-loader span:nth-child(2) {
  animation: bounce 1s ease-in-out 0.33s infinite;
}

.button-loader span:nth-child(3) {
  animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce {
  0%,
  75%,
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

/* The element pre-loader will fade out before it is removed from the DOM */
.page-loader.ng-leave {
  -webkit-transition: 0.5s linear all;
  -moz-transition: 0.5s linear all;
  -o-transition: 0.5s linear all;
  transition: 0.5s linear all;
  opacity: 1;
}

.page-loader.ng-leave.ng-leave-active {
  opacity: 0;
}

#loading {
  height: 100vh;
}

#loading-center {
  height: 100vh;
}

/* The content will fade in before is added to the DOM*/
.page-content-grow.ng-enter {
  -webkit-transition: 0.5s linear all;
  -moz-transition: 0.5s linear all;
  -o-transition: 0.5s linear all;
  transition: 0.5s linear all;
  opacity: 0;
  height: 15vh;
  /*    height: 20%;*/
}

.page-content-grow.ng-enter.ng-enter-active {
  opacity: 1;
  height: 100vh;
  /*    height: 100%;*/
}

.image-loading.ng-enter {
  -webkit-transition: 0.8s ease-in all;
  -moz-transition: 0.8s ease-in all;
  -o-transition: 0.8s ease-in all;
  transition: 0.8s ease-in all;
  opacity: 0;
}

.image-loading.ng-enter.ng-enter-active {
  opacity: 1;
}

/*
  Animations
  ==============
*/
.content-fade-in.ng-enter {
  -webkit-transition: 0.5s linear all;
  -moz-transition: 0.5s linear all;
  -o-transition: 0.5s linear all;
  transition: 0.5s linear all;
  opacity: 0;
}

.content-fade-in.ng-enter.ng-enter-active {
  opacity: 1;
}

.alert-fade.ng-leave {
  -webkit-transition: 0.5s linear all;
  -moz-transition: 0.5s linear all;
  -o-transition: 0.5s linear all;
  transition: 0.5s linear all;
  opacity: 1;
}

.alert-fade.ng-leave.ng-leave-active {
  opacity: 0;
}

/*
    Profile nav
    ==================
*/
.perfil .datos .active-btn i {
  background: #a3a1a0;
}

/*
    Profile chart
    ==================
*/
.profile-bar {
  background-color: blue;
  position: absolute;
  bottom: 0;
}

.y {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: bottom left;
  bottom: 0;
  padding: 5px;
}

.x {
  position: absolute;
  top: 100%;
  width: 100%;
  padding: 5px;
}

/*
    Footer
    ==================
*/
.terms-link {
  color: #eee;
  text-decoration: underline;
}

.terms-link:hover {
  cursor: pointer;
  color: #fff;
}

/*
    Pager
    ==================
*/

.pagination .active a,
.pagination .active a:hover,
.pagination .active a:active,
.pagination .active a:link,
.pagination .active a:visited {
  background: #979298;
  color: #fff;
  border-radius: 0px;
  padding-top: 2px;
  padding-bottom: 1px;
  margin-top: 3px;
}

.pager li a:hover,
.pager li a:active,
.pager li a:link,
.pager li a:visited {
  padding: 5px 7px;
  border: 0;
  color: #979298;
}

.pagination-next,
.pagination-prev {
  font-size: 16px;
}

/*
    Tables
    ===================
*/
.empty-trip-line {
  height: 43px;
}

.search-button {
  padding-top: 5px;
}

/*
    Modals
    ===================
*/
.modal-dialog {
  margin-top: 12%;
}

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

.content-historial {
  width: 100%;
}

.content-historial img {
  width: 800px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.content-historial .info-historial {
  width: 100%;
}

.modal-open {
  overflow: initial;
}

.close-modal {
  position: absolute;
  z-index: 2;
  width: 100%;
  text-align: right;
  padding-right: 5px;
  padding-top: 8px;
}

.close-modal span {
  /*background-color: #fff;*/
  border-radius: 50%;
  border: 1px solid #aaa;
  font-weight: 800;
  font-size: 16px;
  padding: 3px;
  padding-left: 8px;
  padding-right: 8px;
  cursor: pointer;
}

.resend-modal .modal-content {
  color: #fff;
  background-color: transparent;
  -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  border: 0px;
}

.resend-backdrop {
  opacity: 0.9 !important;
}

.resend-modal .close-modal {
  position: relative;
  z-index: 2;
  width: 85%;
  text-align: right;
  padding-right: 5px;
  padding-top: 8px;
}

.resend-modal .close-modal span {
  background-color: transparent;
  border: 0px;
  font-weight: 800;
  font-size: 16px;
  padding: 5px;
  padding-left: 8px;
  padding-right: 8px;
  cursor: pointer;
}

.content-historial .info-historial .tourist-pin {
  color: #555;
  font-weight: 600;
  font-size: 40px;
}

@media screen and (max-width: 1024px) {
  .resend-modal .close-modal {
    width: 100%;
  }
  .navbar-sponsor {
    margin: 0px 0px 0px 32px !important;
  }

  .footer-sponsor-text {
    left: 30%;
  }
  .footer-sponsor-link {
    position: absolute;
    top: 14%;
    left: 78%;
    color: #88d964 !important;
    font-size: 19px;
    font-weight: 1000;
    z-index: 1;
    margin: 10px;
    padding: 5px 20px 5px 20px;
    border-radius: 50px;
    width: 140px;
    text-align: center;
    background: white;
  }
  .footer-sponsor-link > strong > a {
    color: #88d964 !important;
  }
  .footer-sponsor-logo {
    position: absolute;
    top: 20%;
    left: 5%;
  }
}

@media screen and (max-width: 375px) {
  .footer-sponsor-logo {
    position: absolute;
    top: 20%;
    left: 5%;
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .resend-modal .close-modal {
    width: 100%;
  }

  .navbar-sponsor {
    margin: 0px 0px 0px 32px !important;
  }

  .footer-sponsor-text {
    display: none;
  }
  .footer-sponsor-link {
    position: absolute;
    top: 14%;
    left: 55%;
    color: #88d964 !important;
    font-size: 19px;
    font-weight: 1000;
    z-index: 1;
    margin: 10px;
    padding: 5px 20px 5px 20px;
    border-radius: 50px;
    width: 140px;
    text-align: center;
    background: white;
  }
  .footer-sponsor-link > strong > a {
    color: #88d964 !important;
  }
  .footer-sponsor-logo {
    position: absolute;
    top: 20%;
    left: 5%;
  }
}

/*
    Buttons
    ==============
*/

.content-historial .btn-tabla {
  padding: 7px 15px;
  border-radius: 17px;
  font-size: 12px;
  cursor: pointer;
}

/*
    Register
    ==============
*/
.page-registro .info-message {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #a2a1a0;
}

.convenio {
  clear: both;
  margin-bottom: 20px;
}

.formulario .convenio input {
  width: inherit;
}

.formulario .responsible input {
  width: inherit;
}

.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.flex-auto {
  flex: auto;
}
.formulario .movi-user .student-franchise .input {
  width: auto;
}
.formulario .movi-user .student-franchise .span {
  padding-left: 10px;
  padding-top: 5px;
  width: auto;
}
.formulario .movi-user .student-franchise-requirements .span {
  font-size: 12px;
}

.emailToolTip {
  color: #a2a1a0;
  font-size: 13px;
  text-align: center;
  padding-left: 4px;
}

/*
    Messages
    ==============
*/
.error-message {
  color: crimson;
}

.success-message {
  color: forestgreen;
}

/*
    Tickets
    =====================
*/
.ticket-replies {
  height: 300px;
  overflow: scroll;
  overflow-x: hidden;
  padding: 0px;
}

.ticket-admin-reply {
  text-align: left;
  background-color: #ededed;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #111;
  border-bottom: 1px solid #ccc;
}

.ticket-admin-reply img {
  float: right;
  max-height: 50px;
  padding-right: 10px;
}

.ticket-user-reply {
  text-align: right;
  background-color: #fefefe;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.ticket-user-reply img {
  float: left;
  max-height: 50px;
  padding-left: 10px;
}

.ticket-date-reply {
  font-style: italic;
  font-size: 11px;
}

.ticket-new-reply {
  background: #ddd; /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(#ddd, #fff); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#ddd, #fff); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#ddd, #fff); /* For Firefox 3.6 to 15 */
  background: linear-gradient(#ddd, #fff); /* Standard syntax */
}

.ticket-new-reply textarea {
  width: 100%;
  height: 60px;
  padding-top: 10px;
  padding-left: 10px;
  border: 0px;
  background-color: transparent;
}

.reply-upload {
  border: 2px solid #009fda;
  border-radius: 100px;
  padding: 8px;
  padding-right: 10px;
  background-color: transparent;
  color: #009fda;
}

.reply-upload-disabled {
  border: 2px solid #ccc;
  color: #ccc;
  pointer-events: none;
  cursor: default;
}

.reply-upload-finished {
  border: 2px solid green;
  color: green;
}

.reply-send {
  padding-top: 5px;
  padding-left: 0px;
  font-size: 40px;
  cursor: pointer;
  background-color: transparent;
}

.reply-send-disabled {
  cursor: default;
  pointer-events: none;
}

.ticket-new-reply .fileUpload span {
  position: relative;
  font-family: "Museo";
  font-size: 20px;
}

.ticket-new-reply .fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
}
/*
    Inscription
    ===========
*/

.funcionalidad strong {
  float: left;
  color: #009fda;
  font-family: "Museo700";
  font-size: 18px;
  margin-right: 5px;
}

/*
    Estilar Autocompletes
    =====================
*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  padding: 0px 15px 10px 30px;
  border-bottom: 2px solid #eee;
  width: 100%;
  box-sizing: border-box;
  color: #a2a1a0;
  font-size: 13px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  transition: background-color 5000s ease-in-out 0s;
}

.widget_muni a,
.widget_muni a:active,
.widget_muni a:hover {
  color: #fff;
}
.widget_muni .footer-link {
  float: left;
  color: #fff;
  margin-right: 5px;
}

.rosario a,
.rosario a:hover,
.rosario a:active {
  font-family: "Museo700";
  letter-spacing: 0px;
  color: #fff;
}

.action-button {
  padding: 13px 30px;
  border-radius: 100px;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  width: 80%;
  font-family: "Museo";
}

.action-button.registrarme {
  background: #0066cc;
  color: #fff;
  cursor: pointer;
}
.action-button.registrarme:hover {
  background: #009fda;
}
.banner-rosario-action {
  margin-top: 30px;
  margin-bottom: 45px;
  text-align: center;
}
.banner-rosario-icons {
  line-height: 0.4;
}
.banner-rosario-icons i {
  font-size: 40px;
  margin-left: 12px;
}
.banner-rosario-icons span {
  font-size: 12px;
}
.banner-rosario-icons div {
  padding-bottom: 20px;
}
.copyright .container .col-md-9.col-sm-9.col-xs-12 {
  margin-left: 0px;
  padding-left: 0px;
}
.copyright .container .logo_rosario {
  margin-top: 8px;
}
.fa.fa-circle.orange {
  color: #59bcbb;
}
a {
  cursor: pointer;
}
.orange {
  color: #0066cc;
}
.reverse .fa.fa-bicycle {
  height: 140px;
}
.obejtivos.m-top-40 {
  margin-bottom: 40px;
}
.img-circle-avatar {
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin: auto;
}
.icon-clima:before {
  font-size: 92px;
}
.registro.fix.roomy-70 {
  padding-top: 0px;
  padding-bottom: 50px;
}
.footer-brand {
  height: inherit;
  line-height: inherit;
  font-family: "Asap-bold";
  font-size: 28px;
  letter-spacing: 0px;
  margin-bottom: 0;
  float: left;
  color: #fff !important;
  margin: 0 !important;
  width: 100%;
}

/*Test Section
======================*/

.quote {
  font-style: italic;
}
