/* Global */

a,
button,
img,
span,
h1,
h2,
h3,
h4,
h5,
h6,
tr,
td {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
}
a {
  text-decoration: none;
}

a:hover {
  color: black;
}

a.btn {
  background-color: #56b9e5;
  color: white;
}

a.btn:hover {
  background: #0e1428;
  color: white;
}

.btn {
  white-space: normal !important;
  word-break: break-word !important;
}

form .btn {
  margin-bottom: 15px;
}

.btn-panel {
  font-size: 18px !important;
  background-color: #56b9e5 !important;
  color: white !important;
  border: 0px solid transparent !important;
  border-radius: 1rem !important;
  padding: 10px 30px !important;
  text-transform: uppercase !important;
}

.btn-panel:hover {
  background: #0e1428 !important;
  color: white !important;
  border: 0px solid transparent !important;
}

.center {
  text-align: center;
}

.justify-text {
  text-align: justify;
}

.box-shadow {
  box-shadow: 0 0 5px rgb(0 0 0 / 25%) !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 20px !important;
}

.no-mgt {
  margin-top: 0 !important;
}

.no-mgb {
  margin-bottom: 0 !important;
}

.img {
  max-width: 100%;
  height: auto;
}

.img-inline {
  width: 100%;
  max-width: 40px;
  margin: 0 1rem 0 0;
}

.vcenter {
  display: flex;
  align-items: center;
}

.align-items-stretch {
  align-items: stretch !important;
}

.alt-green {
  color: #57a773;
}

.alt-red {
  color: #f9564f;
}

.g-recaptcha > div {
  margin: 2rem auto 0 auto;
}

.large-text p {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 50px;
}

.nolist {
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
}

.nolist > li:not(:last-child) {
  border-bottom: 1px solid #d2d2d2;
  width: fit-content;
  margin: 0 auto;
}

/* Global Text Styles */

body {
  font-size: 16px;
  line-height: 22px;
}
h1 {
  font-size: 40px;
  line-height: 46px;
}
h2 {
  font-size: 36px;
  line-height: 42px;
}
h3 {
  font-size: 32px;
  line-height: 38px;
}
h4 {
  font-size: 28px;
  line-height: 34px;
}
h5 {
  font-size: 24px;
  line-height: 30px;
}
h6 {
  font-size: 20px;
  line-height: 26px;
}
p {
  font-size: 16px;
  line-height: 22px;
}

/* Global Alerts */

.alert-float {
  position: fixed;
  width: 100%;
  height: 0px;
  top: 50px;
  left: 0;
  z-index: 99999999;
}

.alert-float .alert {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  font-size: 16px;
  border-width: 3px;
}

.alert .close {
  font-size: 24px !important;
}

.msgAlert {
  color: #ff2f2f;
  margin: 1rem 0;
}

.animateOpen {
  -webkit-animation: moveOpen 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
}

@-webkit-keyframes moveOpen {
  from {
    -webkit-transform: translate(0, -200px);
  }
  10% {
    -webkit-transform: translate(0, 40px);
  }
  12% {
    -webkit-transform: translate(0, 44px);
  }
  16% {
    -webkit-transform: translate(0, 40px);
  }
  80% {
    -webkit-transform: translate(0, 40px);
  }
  85% {
    -webkit-transform: translate(0, 45px);
  }
  to {
    -webkit-transform: translate(0, -200px);
  }
}
@-moz-keyframes moveOpen {
  from {
    -moz-transform: translate(0, -200px);
  }
  10% {
    -moz-transform: translate(0, 40px);
  }
  12% {
    -moz-transform: translate(0, 44px);
  }
  16% {
    -moz-transform: translate(0, 40px);
  }
  80% {
    -moz-transform: translate(0, 40px);
  }
  85% {
    -moz-transform: translate(0, 45px);
  }
  to {
    -moz-transform: translate(0, -200px);
  }
}
@-o-keyframes moveOpen {
  from {
    -o-transform: translate(0, -200px);
  }
  10% {
    -o-transform: translate(0, 40px);
  }
  12% {
    -o-transform: translate(0, 44px);
  }
  16% {
    -o-transform: translate(0, 40px);
  }
  80% {
    -o-transform: translate(0, 40px);
  }
  85% {
    -o-transform: translate(0, 45px);
  }
  to {
    -o-transform: translate(0, -200px);
  }
}
@keyframes moveOpen {
  from {
    transform: translate(0, -200px);
  }
  10% {
    transform: translate(0, 40px);
  }
  12% {
    transform: translate(0, 44px);
  }
  16% {
    transform: translate(0, 40px);
  }
  80% {
    transform: translate(0, 40px);
  }
  85% {
    transform: translate(0, 45px);
  }
  to {
    transform: translate(0, -200px);
  }
}

/* Global Containers */

.row-flex {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 50px;
  gap: 50px;
  flex-wrap: wrap;
}

.col-flex-1,
.col-flex-2,
.col-flex-3 {
  flex-basis: 0;
}

.col-flex-1 {
  flex-grow: 1;
}

.col-flex-2 {
  flex-grow: 2;
}

.col-flex-3 {
  flex-grow: 3;
}

.align-top {
  align-items: flex-start !important;
}

/* Global Forms */

.form-check {
  width: fit-content;
  margin: 0 20px;
  float: left;
}

.scnd-content {
  padding: 2rem 0 1rem 0;
}

.scnd-content p > a {
  margin: 0 1rem;
}

input[type="checkbox"] {
  -ms-transform: scale(2);
  -moz-transform: scale(2);
  -webkit-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
  margin: 15px !important;
}

input[type="password"] {
  font-size: 24px;
  font-weight: bold;
}

form[action="/login_check"] .form-control,
form[action="/register/"] .form-control {
  margin-bottom: 15px;
}

.btns-login {
  display: flex;
  row-gap: 10px;
}

.btn.btn-scnd {
  font-size: 14px !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  background: #466060 !important;
}

.btn.btn-scnd:hover {
  background: #0e1428 !important;
}

/* Colores */

.c-celeste {
  color: #56b9e5 !important;
}

.c-azul {
  color: #0099cc !important;
}

.c-naranjo {
  color: #f47920;
}

.c-oscuro {
  color: #0e1428;
}

.c-blanco {
  color: white;
}

.bg-blanco {
  background: white !important;
}

.bg-celeste {
  background-color: #56b9e5;
}

.bg-azul {
  background-color: #0099cc;
}

.bg-naranjo {
  background-color: #f47920;
}

.bg-oscuro {
  background-color: #0e1428;
}

.bg-fondo {
  background-color: #f7f0f5;
}

.label-oscuro {
  background-color: #0e1428;
}

.label-gris {
  margin: 15px auto;
  background: #466060;
  border-radius: 15px;
  color: white;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  width: fit-content;
}

.label-oscuro {
}

.cardSigns {
  background-color: #d9edf7;
  border-radius: 20px;
  border: 1px solid #95d7f8;
  padding: 5px;
}

/* Titles and paragraphs */

.banner-page-title {
  padding: 40px;
}

.banner-header {
  margin: 0 0 20px 0;
  color: white;
  padding: 0 0 10px 0;
  border-bottom: 4px solid #56b9e5;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5),
    0 0 5px rgba(0, 0, 0, 0.5);
}

.banner-subheader {
  color: white;
  margin: 0;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5);
}

.header {
  margin: 100px 0 20px 0;
  color: #466060;
  padding: 0 0 10px 0;
  border-bottom: 4px solid #56b9e5;
  font-weight: 700;
}

.header-alt {
  margin: 100px 0 20px 0;
  color: white;
  padding: 0 0 10px 0;
  font-weight: 700;
}

.header.first,
.header-alt.first {
  margin: 50px 0 20px 0;
}

.subheader {
  font-size: 20px;
  color: #636363;
  margin: 0 auto 50px auto;
  width: min(800px, 90%);
}

.subheader-alt {
  color: white;
  margin: 0 auto 50px auto;
}

.h2 {
  margin-bottom: 4rem !important;
}

.h4 {
  font-weight: 600 !important;
  margin-top: 30px !important;
  margin-bottom: 15px !important;
}

.alt-text {
  color: #dcf1f9;
}

/* Fondos */

.fondoempresas {
  background: url("https://publicinnova.s3-us-west-2.amazonaws.com/homeempresas.jpg");
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
}

.fondocontacto {
  background: url("/assets/img/segundaempresas.png");
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
}

.dollarm:before {
  content: "$";
  font-size: 5vw;
  vertical-align: top;
  padding-right: 0px;
}

/* Header */

#logo-header {
  width: 100%;
  max-width: 150px;
  display: inline-block !important;
  margin: 10px 0;
}

nav.navbar.navbar-default {
  position: fixed;
  z-index: 1000;
  display: block;
  width: 100%;
  padding: 0 !important;
  margin-bottom: 0 !important;
  border: 0px solid transparent !important;
}

.navbar {
  border-radius: 0 !important;
}

.navbar > .container .navbar-brand {
  margin-left: 10px !important;
}

.menu-container {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: stretch;
}

.navbar-collapse {
  padding: 0 10px !important;
}
.test-opacity {
  opacity: 0.7;
  text-decoration: underline;
  font-size: 20px;
}

.test-opacity:hover {
  opacity: 1;
}

.alert-test-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 5px 30px 5px 30px;
  gap: 8px;
  justify-content: center;
  align-items: center;
  /* background-color: #f47920; */
  font-size: 20px;
}

.controls-style {
  display: flex;
  position: absolute;
  top: 0px;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
  padding: 2px 20px 2px 20px;
  align-items: center;
  height: 100%;
  margin: 0 auto;
}

/* Menu */

ul.nav.navbar-nav.navbar-right {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  align-items: stretch;
  float: none !important;
  height: 100%;
}

#myNavbar .navbar-nav > li > a {
  font-weight: 600;
  letter-spacing: 0;
  padding: 0 10px;
  display: inline-block;
  height: auto;
  line-height: 70px;
  font-size: 16px;
}

.navbar-nav > li {
  padding: 0;
  float: none !important;
  margin: 0;
}

.menu-item-blue > a,
.menu-item-orange > a {
  color: white !important;
}

.menu-item-blue > a {
  background: #0099cc;
}

.menu-item-orange > a {
  background: #f47920;
}

.menu-item-blue > a:hover,
.menu-item-orange > a:hover {
}

#myNavbar .navbar-nav > li > a:hover {
  background: #135c7c;
  color: white;
}

.navbar-default .navbar-nav > .open > a.dropdown-toggle {
  background: #135c7c !important;
  color: white !important;
}

.dropdown-menu > li > a {
  font-size: 16px;
  padding: 10px 20px !important;
}

.dropdown-menu > li > a i {
  margin: 0 10px 0 0;
  font-size: 20px;
}

/* Content */

#main-content {
  /* padding: 50px 0; */
  padding: 130px 0 0 0;
}

.initialBanner {
  color: white;
  min-height: 100vh !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

.initialBanner > div {
  min-height: 100vh !important;
}

.initialBanner > div > div {
  padding-top: 50px !important;
}

.initialBanner h1,
.initialBanner h2,
.initialBanner p {
  margin: 4vh auto !important;
}

.initialBanner h1 {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-weight: 900;
  color: #a7dbf1 !important;
}

.initialBanner h2 {
  line-height: 30px;
}

.initialBanner img {
  margin: 1rem 0 0 0;
}

.initialBanner .firstSection {
  background: rgba(19, 92, 124, 0.75);
}

.banner {
  padding: 200px 0 !important;
  margin: -100px 0 0 0;
}

/* Mockup */

.mockup-container,
.mockup-desc {
  flex-basis: 600px;
}

.mockup {
  width: fit-content;
  max-width: 100%;
  position: relative;
  margin: 4rem auto;
}

.mockup::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../img/mockup/mockup-bg.png") center center no-repeat;
  background-size: contain;
  content: "";
}

.mockup > img {
  width: 100%;
  visibility: hidden;
}

.screenshot-desktop,
.screenshot-mobile {
  position: absolute;
}

.screenshot-desktop img,
.screenshot-mobile img {
  width: 100%;
}

.screenshot-desktop {
  top: 5.5%;
  left: 12%;
  width: 76%;
}

.screenshot-mobile {
  bottom: 7.2%;
  right: 0.7%;
  width: 12.5%;
}

/* Modal Dialog */

.panel-body .container-fluid {
  padding-top: 0;
  padding-bottom: 0;
}

.altomodal {
  height: 730.59px;
}
@media (min-width: 535px) {
  .altomodal {
    height: 700.59px;
  }
}

.modal-content {
  border: 5px solid #0099cc !important;
}

#MisionModal .modal-dialog {
  width: auto;
}
#ValoresModal .modal-dialog {
  width: auto;
}
#VisionModal .modal-dialog {
  width: auto;
}
#EquipoModal .modal-dialog {
  width: auto;
}
#NosotrosModal .modal-dialog {
  width: auto;
}
.show2 {
  display: block;
  background: #252727b1;
}
.modal-dialog {
  max-width: min(90vw, 700px) !important;
  width: 100% !important;
  margin: 100px auto 50px auto !important;
}

.modal-dialog p {
  font-size: 16px;
}

.close {
  font-size: 36px !important;
  line-height: 18px !important;
  color: black !important;
  opacity: 1 !important;
  margin: 0;
}

.close:hover {
  color: #f9564f !important;
  opacity: 1 !important;
}

.alert .close:hover {
  background: transparent !important;
}

/* Mi perfil de usuario */

.containerp .label {
  font-size: 18px;
}

/* Mi programa de salud */

.panel-heading {
  font-size: 20px;
}

.panel-heading a {
  color: #0099cc;
}

.panel-heading a:hover,
.panel-heading a:active,
.panel-heading a:focus {
  text-decoration: none;
}

.grid-ejercicios {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  align-items: stretch;
}

.grid-ejercicios > div {
  background: white;
  flex-basis: calc(50% - 20px);
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
}

.grid-ejercicios > div a {
  cursor: pointer !important;
  color: white;
  background: #56b9e5;
  padding: 10px;
  text-decoration: none;
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
  border-radius: 5px;
}

.grid-ejercicios > div a.active {
  background: #0e1428;
}

.grid-ejercicios > div a:hover {
  background: #135c7c;
}

.excerciseName {
  font-size: 16px;
  text-align: center;
  color: #0e1428;
  margin: 0;
  padding: 0;
}

.excerciseButtons {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin: 0;
  padding: 10px 0 0 0;
  gap: 10px;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Navigation, paginator */

#navigator.navigation {
  margin: 20px 0 0 0;
}

#navigator.navigation .paginator {
  margin: 0 10px;
}

.pagination > li > a {
  color: #0e1428;
  background-color: #cae9f7;
  border: 1px solid #95d4ee;
}

.pagination > li > a:hover {
  color: white;
  background-color: #135c7c;
  border-color: #135c7c;
}

.pagination > .disabled > a {
  color: #56b9e5 !important;
  background-color: #edf8fc !important;
  border: 1px solid #95d4ee !important;
}

.pagination > .active > a,
.pagination > .active > a:hover {
  color: white;
  background-color: #0e1428;
  border-color: #0e1428;
}

/* Portal educativo */

.articulos-portal {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.articulo {
  min-width: 180px;
  max-width: 400px;
  flex-grow: 0;
  flex-basis: 23%;
  background: #edf8fc;
  border-radius: 15px;
}

.articulo img {
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: auto;
}

.articulo .articulo-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  height: 100%;
  gap: 20px;
}

.articulo .articulo-content > *:not(img) {
  padding: 0 20px;
  margin: 0;
}

.articulo .articulo-content > *:last-child {
  margin-top: auto;
}

.articulo .articulo-content .portal-btn {
  background: #56b9e5;
  color: white;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 20px;
  font-size: 16px;
  border-radius: 0 0 15px 15px;
}

.articulo .articulo-content .portal-btn:hover {
  background: #0e1428;
}

.articulo .articulo-content .portal-btn i {
  margin: 0 10px 0 0;
}

.labels-portal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

form.btn-portal {
  border: 0;
  padding: 0;
  margin: 0;
}

.label-portal {
  background: #edf8fc;
  border-radius: 5px;
  color: #135c7c;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10px;
  margin: 0;
}

.label-portal:hover {
  color: #0e1428;
}

.label-portal-btn {
  cursor: pointer;
  background: #edf8fc;
  border: 1px solid #cae9f7;
  padding: 5px 10px;
  border-radius: 5px;
  color: #135c7c;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  margin: 0;
}

.label-portal-btn:hover {
  text-decoration: none;
}

/* Investigación */

.articulo-inv {
  min-width: 250px;
  flex-grow: 0;
  flex-basis: 48%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.articulo-inv img {
  border-radius: 15px 15px 0 0;
}

.articulo-inv .containerp {
  text-align: center;
  padding: 30px 20px;
}

.articulo-inv a,
.articulo-inv a:hover,
.articulo-inv button {
  text-decoration: none;
}

/* Podcasts */

.articulo .articulo-content .podcast-title {
  margin: 0;
  font-weight: 600;
}

.podcast-invited {
  text-transform: none;
  font-size: 12px;
}

.btn-podcasts .podcast-links {
  margin: 1rem 0 0 0;
  font-size: 30px;
  line-height: 36px;
}

.btn-podcasts a {
  color: white;
  text-decoration: none;
}

.btn-podcasts a:hover {
  color: #56b9e5;
}

.btn-podcasts.portal-btn i {
  margin: 0.5rem;
}

/* Beneficios */

.beneficios-item img {
  padding: 2rem;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.beneficios-item p {
  word-break: break-word;
}

/* VIDEOS ADMIN */

.video-category h4 {
  text-align: center;
  background: #0e1428;
  color: white;
  padding: 15px;
  margin: 0;
}

.video-category .row {
  padding: 0;
  border: 1px solid #eeeeee;
  margin: 0;
  display: flex;
}

.video-category .row .col-md-3 {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
}

.video-category h6 {
  text-align: center;
}

.video-category .row .col-md-3:not(:last-child) {
  border-right: 1px solid #eeeeee;
}

/* Footer */

#logo-header-footer {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

#footer-innova {
  padding: 50px !important;
  background-color: #0e1428;
}

.footer-menu {
  list-style: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  width: fit-content;
}

.footer-menu li {
  border-bottom: 1px solid #135c7c;
}

.footer-menu li a {
  padding: 1rem 2rem;
}

.footer-menu li a::before {
  content: "\2192";
  color: #56b9e5;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin: 0 2rem 0 0;
}

#footer-innova p {
  color: #bebebe;
  text-align: justify;
}

#footer-innova a {
  color: #56b9e5;
}

#footer-innova a:hover {
  color: white;
  text-decoration: none;
}

.footer-header {
  color: white;
  margin: 0 0 1.5rem 0;
  font-weight: 700;
}

footer {
  padding: 10px !important;
  background-color: #0e1428 !important;
}

footer p {
  margin: 0;
  color: white;
  font-size: 12px;
}

.copyright,
.copyright row,
.copyright .col-md-12 {
  padding: 0 !important;
}

/* Nosotros */

.equipo {
  margin: 1rem 0 5rem 0;
}

.equipo div p {
  text-align: center;
  font-size: 20px;
  color: #666666;
  margin-bottom: 10px;
}

.equipo div p.name-equipo {
  font-size: 20px;
  color: #56b9e5;
}

.img-equipo img {
  width: calc(100% - 50px);
  margin: 0 1rem 3rem 1rem;
  border-radius: 15px;
}

/* Como funciona */

.steps {
  display: flex;
  flex-direction: column;
}

.step-title {
  font-weight: 600;
  color: #56b9e5;
}

.step-desc {
  font-weight: 600;
}

.step-why {
  color: #135c7c;
}

.steps img {
  filter: invert(63%) sepia(77%) saturate(301%) hue-rotate(155deg)
    brightness(89%) contrast(102%);
}

/* Especializaciones */

.specialities {
  align-items: stretch !important;
  margin-top: 30px;
}

.speciality {
  cursor: pointer;
  background: #135c7c;
  padding: 20px;
  border-radius: 15px;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.speciality.lift.speciality-fondo {
  background: #0e1428;
}

.speciality a,
.speciality a:hover {
  text-decoration: none;
  color: white;
}

.speciality img {
  filter: brightness(0) invert(1);
}

.speciality p {
  color: #a7dbf1;
}

p.cifra {
  color: white;
  font-weight: 700;
  font-size: 64px;
  line-height: 70px;
}

/* Cifras */

.cifra-box {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* Call to action */

.single-cta {
  padding: 100px;
}

/* Planes */

.plans-container {
  margin-bottom: 100px;
}

.plans-container .row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.plans {
  margin: 0 auto 50px auto;
  width: calc(25% - 20px) !important;
  min-width: 250px;
  background: white !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

.plans:nth-child(4) h5 {
  font-size: 18px;
}

.planshead {
  padding: 10px 0;
  text-align: center;
  border-radius: 20px 20px 0 0;
}

.plansico {
  margin: 20px 0 0 0;
}

.plansico img {
  width: 100%;
  max-width: 80px;
}

.planstitle {
  color: white;
  margin: 20px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.plans .pricing {
  padding: 25px 0;
  background: white;
  text-align: center;
  margin: 0;
}

.plans .pricing p {
  font-size: 1.7rem;
  color: #636363;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0;
}

/*
.plans .pricing p:first-child {
    font-size: 1.5rem;
    color: #636363;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.plans .pricing p:last-child {
    font-size: 1.5rem;
    color: #636363;
    font-weight: 400;
    letter-spacing: 0.5px;
}
*/

.pricingcosts {
  margin: 10px 0;
  font-size: 6rem;
  font-weight: 900;
}

.pricingcosts .dollar::before {
  content: "$";
  font-size: 4rem;
  color: #636363;
  font-weight: 100;
  vertical-align: top;
  padding: 0 5px 0 0;
}

.plans .desc {
  padding: 20px 10px;
  height: 100%;
  font-size: 16px;
  border-bottom: 1px solid #8c8b8b;
  border-top: 1px solid #8c8b8b;
  background: #f5f5f5;
}

.plans .desc p {
  text-align: center;
  font-weight: 900;
  color: black;
}

.plans .desc ul {
  padding-inline-start: 30px;
  margin: 0;
}

.calltoaction {
  padding: 30px 20px 50px 20px;
  border-radius: 0 0 20px 20px;
  text-align: center;
}

.calltoaction p {
  font-size: 2rem;
  font-weight: 400;
  color: white;
}

.calltoaction p span {
  font-size: 2.7rem;
  font-weight: 700;
}

.calltoaction p:first-child {
  margin-bottom: 2rem;
}

.calltoaction i {
  margin: 0 10px 0 0;
}

.btn.buyplan {
  background: #56b9e5;
  padding: 15px 25px;
  /* margin: 20px 0 0 0; */
  font-size: 2rem;
  border-radius: 20px;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: normal;
}

.btn.buyplan.buyplanlarge {
  font-size: 3rem;
  padding: 20px 40px;
  margin: 0;
}

.btn-cta,
.btn.btn-cta {
  background: #f47920;
}

.btn.buyplan:hover {
  background: #0e1428;
  color: white;
}

.buyplan i {
  margin: 0 20px 0 0;
}

.plansdetails {
}

.plansdetails h6 {
  color: #56b9e5;
  font-weight: 700;
  margin: 30px 0 20px 0;
}

.plansdetails p {
  color: #636363;
  text-align: justify;
  font-size: 16px;
}

.plansdetails p span {
  color: #0e1428;
  font-weight: 700;
}

/* Pricing Table */

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 0 none;
  display: block;
  overflow-x: auto;
}
.price-table td {
  background: transparent;
  border: 0;
  text-align: initial;
}
.price-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.price-table tr td {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 24px;
  font-size: 14px;
}
.price-table tr td:first-child {
  border-left: 0 none;
}
.price-table tr td:not(:first-child) {
  text-align: center;
  font-size: 18px;
}
.price-table tr:nth-child(even) {
  background-color: #ffffff;
}
.price-table tr:hover {
  background-color: #eeeeee;
}
.price-table tr.category-title {
  background: #cae9f7;
  cursor: pointer;
}
.price-table tr.category-title:hover {
  background: #a7dbf1;
  color: #0e1428;
}
.price-table tr.category-title td:not(:first-child) {
  font-weight: 600;
}
.price-table .fa-check {
  color: #57a773;
  text-shadow: 0 0 15px #93ffb9, 0 0 10px #93ffb9, 0 0 5px #93ffb9;
}
.price-table .fa-times {
  color: #d8d6e3;
}

/* Highlighted column */
.price-table tr:nth-child(2n) td:nth-child(3) {
  background-color: rgba(216, 214, 227, 0.25);
}
.price-table tr td:nth-child(3) {
  background-color: rgba(216, 214, 227, 0.15);
  padding: 8px 48px;
}
.price-table tr td:nth-child(3) .fa-check,
.price-table tr:nth-child(2n) td:nth-child(3) .fa-check {
  /* color: #ffffff; */
}
/**/

.price-table tr.price-table-head td {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.price-table tr.price-table-head {
  background-color: #135c7c;
  color: #ffffff;
}
.price-table td.price {
  color: #f43f54;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat";
}
.price-table td.price a {
  background-color: #0e1428;
  color: #ffffff;
  padding: 12px 32px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 64px;
  text-decoration: none;
}
.price-table td.price a:hover {
  text-decoration: none;
  background-color: #56b9e5;
}
.price-table td.price-table-popular {
  border-top: 3px solid #135c7c;
  color: #135c7c;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 48px;
  font-weight: 700;
}
.price-table .price-blank {
  background-color: #fafafa;
  border: 0 none;
}

.price-table svg {
  width: 90px;
  fill: #135c7c;
}

/* Planes OLD */

.detalle-planes p {
  text-align: justify;
}

.btn-plan {
  margin: 35px 0 25px 0 !important;
}

.desc-plan {
  background: white;
  border-radius: 5px;
  padding: 20px;
  margin: 5px;
}

.desc-plan.box-shadow {
  background: white !important;
  border-radius: 5px !important;
}

.desc-plan p {
  text-align: left;
  color: #666666;
  font-size: 16px;
  margin: 0 0 15px;
}

.desc-plan span {
  font-weight: 700;
}

.desc-plan p:last-child {
  margin: 0;
}

.pricing {
  margin: 20px 0 50px 0;
}

.featured-plan {
  text-align: center;
  margin: 20px -15px 40px -15px;
  padding: 10px 15px;
  background: #56b9e5;
  color: white;
}

.featured-plan span {
  font-weight: 600;
}

/* Panel Login */

.login-box .col-md-8 > div:first-child:not(.panel) {
  background: #f9564f;
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 5px #d3342e;
  margin: 0 0 2rem 0;
  text-align: center;
  font-size: 2rem;
}

.btn-panel-login-container {
  margin-top: 15px !important;
}

.btn-panel-login {
  margin-top: 0 !important;
}

.btn-panel-register {
  margin: 1rem;
  margin-top: 0;
  background: #f47920 !important;
}

.btn-panel-register:hover {
  background: #0e1428 !important;
}

.container.login-box {
  margin: 5rem auto !important;
}

.login-box .panel-body {
  background: #edf8fc;
}

.panel-headingp {
  height: auto;
  overflow: hidden;
}

.panel-headingp img {
  margin-top: -50px;
}

/* Panel Registro */

.password {
  display: flex;
}

.password > .form-group {
  flex-grow: 1;
}

.password > .form-group:first-child {
  padding: 0 15px 0 0;
}

.password > .form-group:last-child {
  padding: 0 0 0 15px;
}

.form-recaptcha {
  max-width: 310px;
  width: 100%;
  margin: 0 auto 2rem auto;
}

.tos {
  width: 100%;
  min-height: 50px;
}

.tos .form-check {
  width: 100%;
  min-height: 50px;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Alianzas */

.alianzas {
  margin-bottom: 50px;
}

.alianzas .row > div {
  margin: 0 0 3rem 0;
}

.alianzas .row-flex {
  justify-content: center;
}

.alianzas .col-flex-1 {
  flex-basis: 200px;
  flex-grow: 0;
}

.alianzas img {
  width: 100%;
  min-width: 100px;
  border-radius: 1rem;
  opacity: 0.8;
}

.alianzas img.blackLogo {
  -webkit-filter: brightness(0%);
  filter: brightness(0%);
  opacity: 0.8;
}

.alianzas img:hover {
  opacity: 1;
}

.alianzas img.blackLogo:hover {
  opacity: 1;
  -webkit-filter: brightness(0%);
  filter: brightness(0%);
}

/* Health Tips */

#health-tips code {
  background: #f5f5f5;
}

#health-tips {
  margin: 0.5rem auto;
  width: 100%;
  font: 18px/1.5 sans-serif;
}

/* Onboarding */

div#chat-application {
  bottom: 70px !important;
  max-height: 450px !important;
  max-width: 300px !important;
}

/* ADMIN GENERALS */

.form-sidebar {
  width: 100%;
  max-width: 400px;
  margin: 0 auto !important;
}

.select-sidebar {
  background: white;
  border: 1px solid #ccc;
  padding: 1rem;
  margin: 0 1rem 0 0;
}

.table-responsive table td,
.table-responsive table th {
  padding: 1rem;
}

.table-responsive table td button {
  margin: 0;
  background: #56b9e5;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border: 0;
  color: white;
}

.table-responsive table td button:hover {
  background: #1e91c2;
}

/* Empresas */

#ods8-pre:hover img,
#ods3-pre:hover img {
  box-shadow: 0 0 15px #56b9e5;
}

.flex-align-top {
  align-items: flex-start;
}

.ods-desc {
  border: 2px solid #dddddd;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 15px;
}

.ods-desc h5 {
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}

.ods-desc p {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}

.ods-desc p:not(:last-child) {
  margin: 0 0 15px 0;
}

/* ADMIN - Usuarios no activados */

/* NEW UI/UX */

.app-box .slick-track {
  width: 100% !important;
}

.v-align {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.app-header {
  margin: 2rem 0 1rem 0;
  background: #0e1428;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.app-title {
  text-transform: uppercase;
  margin: 0;
  color: #56b9e5;
  font-weight: 600;
}

.app-subtitle {
  margin: 0;
  color: white;
}

.app-container {
}

.app-container .panel {
  border-color: transparent;
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}

.app-container .panel-heading {
  background: #0e1428;
  border: 0;
  color: white;
  padding: 15px;
}

.app-container .panel-heading a {
  color: white;
}

.app-container .app-box .panel-group .panel-heading {
  background: #edf8fc;
}

.app-container table .panel-heading {
  background: white;
}

.app-photo {
  width: 100%;
  max-width: 250px;
  margin: 0 0 1rem 0;
  border-radius: 15px;
}

.app-plan-label {
  background: #56b9e5;
  color: white;
  padding: 5px 10px;
  text-align: center;
  border-radius: 10px;
  font-weight: 100;
}

.app-menu {
  list-style: none;
  padding-inline-start: 0;
}

.app-menu li.app-menu-title {
  text-transform: uppercase;
  background: #edf8fc;
  padding: 0.5rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-top: 3px solid #56b9e5;
  color: #0e1428;
  margin: 3rem 0 0.5rem 0;
}

.app-menu li.app-menu-desc {
  text-transform: uppercase;
  background: #eeeeee;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0e1428;
  margin: -0.5rem 0 0 0;
}

.app-menu li {
  padding: 5px 0;
  margin: 0;
}

.app-menu li a {
  width: 100%;
  display: block;
  color: #0e1428;
  background: #cae9f7;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 1rem;
  text-decoration: none;
}

.app-menu li a:hover {
  color: white;
  background: #56b9e5;
}

a.app-toggle.app-menu-external {
  background: #cae9f7 url("/assets/img/icons/external_link.png") no-repeat;
  background-size: 20px;
  background-position: 95% center;
}

a.app-toggle.app-menu-external:hover {
  background: #56b9e5 url("/assets/img/icons/external_link.png") no-repeat;
  background-size: 20px;
  background-position: 95% center;
}

.app-test form {
  max-height: 60vh;
  overflow: auto;
  border-radius: 0;
}

.app-test fieldset.form-group {
  margin: 0 0 30px 0;
}

.app-test legend {
  font-size: 16px;
  font-weight: 600;
  border: 0;
  margin: 0 0 10px 0;
}

.app-test .form-group > div label {
  font-weight: 400;
}

.app-test div.form-group {
  margin: 0;
  text-align: center;
}

/* UI/UX Table Results */

table.app-modal-results {
}

.app-modal-results thead td {
  background: #edf8fc;
  color: #0e1428;
  font-weight: 600;
}

.app-modal-results tbody td {
  padding: 10px 15px;
}

.app-modal-results tbody td:nth-child(2) {
  text-align: left;
}

.app-modal-results tbody td:nth-child(3) {
  font-size: 20px;
  color: #0099cc;
  font-weight: 600;
}

/* UI/UX Alert Modal */

#modal-app {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  color: #0e1428;
  background: white;
  padding: 20px;
  border-radius: 15px;
  border: 5px solid #f9564f;
  box-shadow: 0 0 35px #f9564f;
}

#modal-app h4 {
  font-weight: 600;
  text-align: center;
}

.modal-app-desc {
  padding: 20px 0 0 0;
}

.modal-app-btn {
  background: #56b9e5;
  cursor: pointer !important;
  color: white;
  padding: 10px 15px;
  text-align: center;
  width: 100%;
  max-width: 250px;
  margin: 0 20px;
  font-weight: 600;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-app-btn:hover {
  background: #0e1428;
  color: white;
  text-decoration: none;
}

#box1 .panel-body {
  text-align: center;
}

#box1 .v-align .col-md-3 {
  margin: 0 auto;
}

/* Trainer */

*[data-toggle="collapse"] {
  cursor: pointer !important;
}

.trainer-menu-item {
  font-size: 24px;
  margin: 0;
}

.trainer-title {
  border-bottom: 3px solid #56b9e5;
  padding: 15px;
  color: #0e1428;
  font-weight: 400;
  margin: 0 0 20px 0;
}

.trainer-menu-item:hover {
  text-decoration: none;
}

/* Parametros de salud */

.param-title {
  border-bottom: 3px solid #56b9e5;
  background: #edf8fc;
  padding: 10px;
  margin: 0 0 30px 0;
  cursor: pointer !important;
}

.param-title:hover {
  background: #cae9f7;
}

.param-title span {
  font-weight: 600;
}

.health-params {
  margin: 0;
  padding: 15px 0 0 0;
  height: fit-content;
}

.health-params tr:hover {
  background: #edf8fc !important;
}

.health-params tr td {
  background: transparent;
  padding: 0;
  color: black;
  height: 100%;
}

.health-params tr td:last-child {
  text-align: justify;
}

.params-table-content {
  padding: 10px;
  display: inline-flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.health-param-green-alert {
  background: #b5ffb3;
}

.health-param-yellow-alert {
  background: #fffdb3;
}

.health-param-red-alert {
  background: #ffb3b3;
  font-weight: 600;
}

/* Old */

top-buffer {
  margin-top: 0px;
}

button,
input[type="submit"] {
  padding: 15px;
  margin-top: 20px;
  background: whitesmoke;
  border: 1px solid #0099cc;
  color: #0099cc;
  cursor: pointer;
  transition: all 300ms;
}

button:hover,
input[type="submit"]:hover {
  color: white;
  background: #0099cc;
}

.bg-4 {
  background-color: black;
  color: #fff;
}

.navbar-brand {
  padding: 0 !important;
  float: none !important;
  height: auto !important;
}

.navbar {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  padding-top: 5px;
  padding-bottom: 5px;
  border: none;
  border-radius: 0;
  margin-bottom: 0px;
  font-size: 12px;
  letter-spacing: 3px;
  background-color: rgba(255, 255, 255, 1) !important;
}

.navbar-nav > li > a {
  font-weight: 600;
  letter-spacing: 0.5px;
}

a.btnorangenew {
  background-color: #f47920;
  border: 1px solid #f47920;
  color: white;
  border-radius: 20px;
  padding: 13px;
  margin-top: 15px;
  width: 35%;
}

a.btnorangenew:hover {
  border: 1px solid #f47920;
  background-color: white;
  color: #ff9933;
  text-decoration: none;
}

a.btncelestenew {
  background-color: #0099cc;
  border: 1px solid #0099cc;
  color: white;
  border-radius: 20px;
  padding: 13px;
  margin-top: 15px;
  width: 35%;
}

a.btncelestenew:hover {
  border: 1px solid #0099cc;
  background-color: white;
  color: #0099cc;
  text-decoration: none;
}

a.btnorange {
  background-color: #ff9933;
  color: white;
  border-radius: 20px;
  padding: 10px;
  margin-top: 15px;
  display: block;
  width: 100%;
  border: 1px solid #ff9933;
}

a.btnorangesmall {
  background-color: #ff9933;
  color: white;
  border-radius: 20px;
  padding: 10px;
  margin-top: 15px;
}

a.btnorange:hover {
  border: 1px solid #ff9933;
  background-color: whitesmoke;
  color: #ff9933;
  text-decoration: none;
}

a.btnorangesmall:hover {
  border: 1px solid #ff9933;
  background-color: whitesmoke;
  color: #ff9933;
  text-decoration: none;
}

a.btnazul {
  border-radius: 20px;
  padding: 10px;
  margin-top: 15px;
  display: block;
  border: 1px solid #333366;
  background-color: whitesmoke;
  color: #333366;
}

a.btnazul:hover {
  background-color: #333366;
  color: white;

  width: 100%;
  text-decoration: none;
}

a.btngrey {
  background-color: #999999;
  color: white;
  border-radius: 20px;
  padding: 10px;
  margin-top: 15px;
  display: block;
  width: 100%;
}

a.btngrey:hover {
  border: 1px solid #999999;
  background-color: whitesmoke;
  color: #999999;
  text-decoration: none;
}

a.btnceleste {
  background-color: #0099cc;
  color: white;
  border-radius: 20px;
  padding: 10px;
  margin-top: 15px;
  display: block;
  width: 100%;
}

a.btnceleste:hover {
  border: 1px solid #0099cc;
  background-color: whitesmoke;
  color: #0099cc;
  text-decoration: none;
}

.btnceleste {
  background-color: #0099cc;
  color: white;
  border-radius: 20px;
  padding: 10px;
  margin-top: 15px;
  display: block;
  width: 100%;
}

.btnceleste:hover {
  border: 1px solid #0099cc;
  background-color: whitesmoke;
  color: #0099cc;
  text-decoration: none;
}

ul li {
  padding: 10px 0;
}

.vertical-menu {
  width: auto;
  height: 150px;
  padding-right: 15px;
}

.container-fluid {
  padding-top: 30px;
  padding-bottom: 10px;
}

.vertical-menu a {
  display: block;
  padding: 3px;
  text-decoration: none;
  font-size: 15px;
}

.vertical-menu h4 {
  font-size: 17px;
  color: whitesmoke;
}
p {
  color: black;
}

h2 {
  color: black;
}

/* Special class on .container surrounding .navbar, used for positioning it into place. */
.navbar-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  margin-top: 20px;
}

/* Flip around the padding for proper display in narrow viewports */
.navbar-wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.navbar-wrapper .navbar {
  padding-left: 15px;
  padding-right: 15px;
}

.navbar-content {
  width: 400px;
  padding: 15px;
  padding-bottom: 0px;
}
.navbar-content:before,
.navbar-content:after {
  display: table;
  content: "";
  line-height: 0;
}
.navbar-footer {
  background-color: #ddd;
}
.navbar-footer-content {
  padding: 15px 15px 15px 15px;
}
.dropdown-menu {
  padding: 0px;
  overflow: hidden;
}

table {
  width: 100%;
}

table th,
table td {
  padding: 15px;
  padding-right: 25px;
  padding-left: 25px;
  border: 1px solid #aaaaaa;
  background: #eee;
  text-align: center;
}

table td {
  background: white;
}

.buttons a {
  text-decoration: none;
  border: 1px solid #444;
  padding: 10px;
  color: white;
  background: #0099cc;
}

a.buttons {
  text-decoration: none;
  border: 1px solid #444;
  padding: 10px;
  color: white;
  background: #0099cc;
}

.btn-circle.btn-xl {
  width: 200px;
  height: 200px;
  padding: 10px 16px;
  margin: 10px;
  border-radius: 100px;
  font-size: 18px;
  line-height: 170px;
  background: #0099cc;
  color: white;
}

form {
  border: 2px solid #0099cc;
  border-radius: 16px;
  padding: 20px;
}
.estiloForm {
  overflow-y: auto;
  height: 80%;
}
.nocss {
  border: 0px solid #0099cc;
  border-radius: 0px;
  padding: 0px;
  margin: 0px;
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid grey;
}

.card-header:hover {
  background-color: #0099cc;
}

.card-header:hover > .card-link {
  color: white;
}
.card-header:hover > .btn {
  color: white;
}
.orange {
  border-left: 1px solid orange;
  border-right: 1px solid orange;
  border-bottom: 1px solid orange;
  padding: 10px;
}

.polaroid {
  width: 80%;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 25px;
}

.containerp {
  text-align: center;
  padding: 10px 20px;
}
.primaryblue {
  color: #fff;
  background-color: #0099cc;
  border-color: #2e6da4;
}

.bubble {
  position: relative;
  font-family: sans-serif;
  font-size: 18px;
  line-height: 24px;
  width: 300px;
  background: #a6a6a6;
  border-radius: 40px;
  padding: 24px;
  text-align: center;
  color: white;
}

.bubble-bottom-left:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 24px solid #a6a6a6;
  border-right: 12px solid transparent;
  border-top: 12px solid #a6a6a6;
  border-bottom: 20px solid transparent;
  right: 32px;
  bottom: -24px;
}

div.toolbar,
div.toolbarsPC,
div.toolbarp,
div.toolbars,
div.toolbarss,
div.toolbars2,
div.toolbarpa,
div.toolbarm,
div.toolbarh,
div.toolbarg,
div.toolbarauto,
div.toolbarres,
div.toolbarmus,
div.toolbarmeta,
div.toolbarbps,
div.toolbarimg,
div.toolbarlab,
div.toolbarbarthel,
div.toolbaryesevage,
div.toolbarromberg,
div.toolbarupandgo,
div.toolbarunipodal,
div.toolbarsf,
div.toolbarIDC,
div.toolbarDash,
div.toolbarRMorris,
div.toolbarOwestry,
div.toolbarHoos,
div.toolbarWomac,
div.toolbarLysholm,
div.toolbarKoos,
div.toolbarFaos,
div.toolbarVisap,
div.toolbarVisaa,
div.toolbarPcs,
div.toolbarVigilance,
div.toolbarTsk,
div.toolbarCsi,
div.toolbarNfdolor,
div.toolbarInsomnio,
div.toolbarSueno,
div.toolbarAliment,
div.toolbarGoldberg,
div.toolbarPhq9,
div.toolbarFelicidad,
div.toolbarIpaqv,
div.toolbarEag,
div.toolbarlawton,
div.toolbarvisita {
  float: right;
}

.sectionGrafic {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.graficResult {
  width: 100%;
}
.textResult {
  width: 100%;
}
.textResult2 {
  width: 100%;
}
.contentGrafic {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .centerText {
    display: flex;
    justify-content: center;
  }
  .sectionGrafic {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
  }
  .graficResult {
    width: 50%;
  }
  .textResult {
    width: 50%;
  }
  .textResult2 {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .textResultHoos {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .contentGrafic {
    width: 60%;
    margin: 0 auto;
  }
  .contentGrafic2 {
    width: 80%;
    margin: 0 auto;
  }
  .alert-test-section {
    flex-direction: row;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .test-opacity {
    font-size: 16px;
  }
  .controls-style {
    padding: 2px 60px 2px 60px;
  }
}

@media (min-width: 1225px) {
  .contentGrafic2 {
    width: 50%;
    margin: 0 auto;
  }
  .controls-style {
    justify-content: space-around;
    padding: 2px 20px 2px 20px;
  }
}

.hidden {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  color: #0099cc !important;
}

.slick-slide {
  cursor: grab !important;
}

.slick-slide:active {
  cursor: grabbing !important;
}

.panel-heading a:before {
  font-family: "Glyphicons Halflings";
  content: "\e114";
  float: right;
  transition: all 0.5s;
}
.panel-heading.active a:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.panel-group {
  margin-bottom: 0px;
}

.menubar {
  height: 23px;
  width: 100%;
  border: 1px solid #0099cc;
}

.panelprice {
  border-radius: 20px;
  box-shadow: none;
  background-color: #0099cc;
}

.panelprice .panel-headingp {
  padding: 1px 12px;
}

.panelprice .panel-bodyp {
  background-color: white;
  border-radius: 6px;
  margin: 0px 6px 6px 6px;
  min-height: 200px;
}

/* Agendamiento */

iframe#ycbmiframeelegirhorarioinnovahope {
  min-height: 500px !important;
}

/* Suscripcion */

#progress-bar-container ul li .step-inner {
  position: absolute;
  width: 100%;
  bottom: 0;
  font-size: 14px;
}

#progress-bar-container ul li.active,
#progress-bar-container ul li:hover {
  color: #444;
}

#progress-bar-container ul li::after {
  content: " ";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #777;
  margin: auto;
  border: 7px solid #fff;
  border-radius: 50%;
  margin-top: 40px;
  box-shadow: 0 2px 13px -1px rgba(0, 0, 0, 0.2);
  transition: all ease 0.25s;
}
#progress-bar-container ul li:hover::after {
  background: #555;
}

#progress-bar-container ul li.active::after {
  background: #56b9e5;
}

#progress-bar-container #line {
  width: 80%;
  margin: auto;
  background-color: #eee;
  height: 6px;
  position: absolute;
  left: 10%;
  top: 57px;
  z-index: 1;
  border-radius: 50px;
  transition: all ease 0.75s;
}

#progress-bar-container #line-progress {
  content: " ";
  width: 7%;
  height: 100%;
  background-color: #56b9e5;
  background: linear-gradient(to right #56b9e5 0%, #135c7c 100%);
  position: absolute;
  z-index: 2;
  border-radius: 50px;
  transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.25);
}
#progress-content-section {
  position: relative;
  top: 100px;
  width: 100%;
  margin: auto;
  background: #f3f3f3;
  border-radius: 4px;
}
#progress-content-section .section-content {
  padding: 30px 40px;
  text-align: center;
}

.section-content h2 {
  font-size: 17px;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 1px;
}

.section-content p {
  font-size: 16px;
  line-height: 1.8rem;
  color: #777;
}

.section-content {
  display: none;
  animation: FadeinUp 0.7s ease 1 forwards;
  transform: translateY(15px);
  opacity: 0;
}

.section-content.active {
  display: block;
  opacity: 1;
}
.progress-wrapper {
  margin: auto;
  max-width: 1080px;
}
#progress-bar-container {
  position: relative;
  width: 90%;
  margin: auto;
  height: 100%;
  margin-top: 0;
}
#progress-bar-container ul {
  padding-top: 15px;
  z-index: 999;
  position: absolute;
  width: 100%;
  margin-top: -40px;
}
#progress-bar-container ul li::before {
  content: " ";
  display: block;
  margin: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #aaa;
  transition: all ease 0.3s;
}

#progress-bar-container ul li.active::before,
#progress-bar-container ul li:hover::before {
  border: 2px solid #fff;
  background-color: #56b9e5;
}
#progress-bar-container ul li {
  list-style: none;
  float: left;
  width: 25%;
  text-align: center;
  color: #aaa;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer !important;
  font-weight: 700;
  transition: all ease 0.2s;
  vertical-align: bottom;
  height: 60px;
  position: relative;
}
@keyframes FadeInUp {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#obtain_discount {
  margin: 0 0 20px 0;
}
#obtain_discount > * {
  display: block !important;
}
#discount_question {
  cursor: pointer !important;
}
#discount_question:hover {
  text-decoration: underline;
}
#discount_form {
  display: flex;
  justify-content: center;
  align-content: stretch;
  flex-direction: column;
  gap: 0;
}
#discount_form > div {
  width: 100%;
}
#discount_form > div > * {
  display: inline-block;
}
#discount_code {
  font-size: 18px !important;
  padding: 10px 15px !important;
  min-width: 300px !important;
  width: 300px;
  height: auto;
}
#obtain_discount h6 {
  margin: 2rem 0 0 0;
  font-weight: bold;
}
.btn-right {
  border-radius: 0 1rem 1rem 0 !important;
  padding: 11px 20px !important;
  margin: 0 !important;
}
/* Loading animation */
#loading-discount {
  width: 100%;
  margin: 0 auto 10px auto;
  text-align: center;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #e8e7ea;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #56b9e5 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*

body {
    font: 20px Montserrat, sans-serif;
    line-height: 1.8;
    color: #f5f6f7;
}

p {font-size: 16px;}
.margin {margin-bottom: 45px;}
.bg-1 {
//background-color: #1abc9c; !* Green *!
    color: #ffffff;
    background-image: url('../img/banner-home-2.jpg');
}
.bg-2 {
    background-color: #474e5d; !* Dark Blue *!
    color: #ffffff;
}
.bg-3 {
    background-color: #ffffff; !* White *!
    color: #555555;
}
.bg-4 {
    background-color: black; !* Black Gray *!
    color: #fff;
}
.container-fluid {
    padding-top: 30px;
    padding-bottom: 70px;
}
.container-fluid-2 {
    padding-top: 140px;
    padding-bottom: 140px;
}
.navbar {
    padding-top: 20px;
    padding-bottom: 30px;
    border: none;
//border-color:transparent;
    border-radius: 0;
    margin-bottom: 0;
    font-size: 12px;
    letter-spacing: 5px;
}
.navbar-footer{
    background-color: black;
}

.nav > li > a:hover{
    background-color:black;
}

.navbar-nav  li a:hover {
    color: #1abc9c !important;
    background-color:black;
}
.navbar-nav{
    padding-top: 5px;
}
.navbar-brand{
    padding-top:0px;
}
.navbar-btn{
    background-color:#0099cc;color: whitesmoke;border-radius: 16px;
}

.vertical-menu {
    width: auto;
    height:150px;
    padding-right:15px;
//border-right:1px solid whitesmoke;!* Set a width if you like *!
}

@media screen and (min-width:800px){
    .vertical-menu {
        border-right:1px solid whitesmoke;!* Borde solo en desktop *!
    }
}

.vertical-menu a {
    display: block; !* Make the links appear below each other *!
    padding: 3px; !* Add some padding *!
    text-decoration: none;
    font-size: 15px;!* Remove underline from links *!
}
.form {
    border: 2px solid black;
    border-radius: 16px;

}



.input[type=radio] {
    padding:15px;
}
hr {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
}
.btn{
    background-color:#0099cc;
}

.label { float: left; }

.form-group{
    text-align: left;
    padding:10px;
}




!*
.col-xs-6{
    padding-left:100px;
    padding-right:100px;
}*!
*/
div.stars {
  width: 270px;
  display: inline-block;
}

input.star {
  display: none;
}

label.star {
  float: right;
  padding: 10px;
  font-size: 36px;
  color: #444;
  transition: all 0.2s;
}

input.star:checked ~ label.star:before {
  content: "\f005";
  color: #fd4;
  transition: all 0.25s;
}

input.star-5:checked ~ label.star:before {
  color: #fe7;
  text-shadow: 0 0 20px #952;
}

input.star-1:checked ~ label.star:before {
  color: #f62;
}

label.star:hover {
  transform: rotate(-15deg) scale(1.3);
}

label.star:before {
  content: "\f006";
  font-family: FontAwesome;
}

/* HubSpot subscribe form */

.hs-form-iframe {
  display: block !important;
  margin: 0 auto !important;
  position: relative !important;
  width: 100% !important;
  max-width: 600px !important;
  background: #cae9f7 !important;
  padding: 15px !important;
  box-shadow: 0 0 15px #0e1428;
  border-radius: 15px;
}

#footerNewsletter .hs-form-iframe {
  background: transparent !important;
}

#footerNewsletter .hs-form-iframe {
  /*
    display: block !important;
    margin: 0 !important;
    position: relative !important;
    width: 100% !important;
    max-width: 600px !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: 0 0 0 transparent !important;
    border-radius: 0;
    */
}

/* Callouts */

.bs-callout {
  padding: 20px;
  border: 1px solid #eee;
  border-left-width: 5px;
  border-radius: 3px;
  background: white;
  margin: 0 0 2rem 0;
}
.bs-callout h4 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.bs-callout p:last-child {
  margin-bottom: 0;
}
.bs-callout code {
  border-radius: 3px;
}
.bs-callout + .bs-callout {
  margin-top: -5px;
}
.bs-callout-default {
  border-left-color: #777;
}
.bs-callout-default h4 {
  color: #777;
}
.bs-callout-primary {
  border-left-color: #428bca;
}
.bs-callout-primary h4 {
  color: #428bca;
}
.bs-callout-success {
  border-left-color: #5cb85c;
}
.bs-callout-success h4 {
  color: #5cb85c;
}
.bs-callout-danger {
  border-left-color: #d9534f;
}
.bs-callout-danger h4 {
  color: #d9534f;
}
.bs-callout-warning {
  border-left-color: #f0ad4e;
}
.bs-callout-warning h4 {
  color: #f0ad4e;
}
.bs-callout-info {
  border-left-color: #ff9933;
}
.bs-callout-info h4 {
  color: #ff9933;
}
s

/* Hotfixes external services */

.floatw {
  display: none !important;
}

/* CSS Pro Animations */

/*
body {
    background: linear-gradient(240deg, #ddf5ff, #ffffff, #fff0e5);
    background-size: 600% 600%;
    -webkit-animation: innovaBg 10s ease infinite;
    -moz-animation: innovaBg 10s ease infinite;
    -o-animation: innovaBg 10s ease infinite;
    animation: innovaBg 10s ease infinite;
}*/

@-webkit-keyframes innovaBg {
  0% {
    background-position: 0% 77%;
  }
  50% {
    background-position: 100% 24%;
  }
  100% {
    background-position: 0% 77%;
  }
}
@-moz-keyframes innovaBg {
  0% {
    background-position: 0% 77%;
  }
  50% {
    background-position: 100% 24%;
  }
  100% {
    background-position: 0% 77%;
  }
}
@-o-keyframes innovaBg {
  0% {
    background-position: 0% 77%;
  }
  50% {
    background-position: 100% 24%;
  }
  100% {
    background-position: 0% 77%;
  }
}
@keyframes innovaBg {
  0% {
    background-position: 0% 77%;
  }
  50% {
    background-position: 100% 24%;
  }
  100% {
    background-position: 0% 77%;
  }
}

/* Responsive */
@media screen and (max-width: 1200px) {
  #myNavbar .navbar-nav > li > a {
    font-size: 12px;
  }
}

@media screen and (max-width: 1001px) {
  .navbar .container {
    width: 100%;
    padding: 0;
  }

  .banner {
    padding: 50px !important;
  }

  #progress-bar-container ul li::before {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  .vertical-menu {
    border-right: 1px solid whitesmoke;
  }
}

@media (max-width: 768px) {
  #main-content {
    padding: 70px 0 0 0;
  }

  .hide-mobile {
    display: none;
  }

  /* Global Text Styles */

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }

  h1 {
    font-size: 36px !important;
    line-height: 42px !important;
  }
  h2 {
    font-size: 32px !important;
    line-height: 38px !important;
  }
  h3 {
    font-size: 28px !important;
    line-height: 34px !important;
  }
  h4 {
    font-size: 24px !important;
    line-height: 30px !important;
  }
  h5 {
    font-size: 20px !important;
    line-height: 26px !important;
  }
  h6 {
    font-size: 18px !important;
    line-height: 24px !important;
  }

  /* Structure */

  .row-flex {
    padding: 20px;
  }

  /* Encabezado */
  .navbar {
    background-color: rgba(255, 255, 255, 1) !important;
  }

  .navbar-header {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }

  .navbar-header div {
    flex-grow: 1;
    padding: 10px 30px;
  }

  .navbar-header .logo {
    text-align: left;
  }

  a.navbar-brand {
    padding: 0;
    margin: 0;
    float: none !important;
  }

  .navbar-brand > img {
    margin: 0;
  }

  /* Boton Mobile Menu */

  button.navbar-toggle {
    margin: 0 !important;
    border: 0px solid transparent !important;
  }

  button.navbar-toggle,
  button.navbar-toggle.collapsed {
    background: #56b9e5 !important;
  }

  button.navbar-toggle:hover,
  button.navbar-toggle.collapsed:hover {
    background: #f47920 !important;
  }

  .navbar-toggle .icon-bar {
    width: 30px !important;
    height: 3px !important;
    margin: 0 0 5px 0 !important;
    background: white !important;
  }

  .navbar-toggle .icon-bar:last-child {
    margin: 0 !important;
  }

  /* Elementos Menu */

  #myNavbar {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 !important;
    background: white;
  }

  #myNavbar ul.nav.navbar-nav {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  #myNavbar .navbar-nav > li > a {
    display: block;
    padding: 10px !important;
    width: 100%;
    line-height: 20px !important;
    font-size: 16px !important;
  }

  ul.nav.navbar-nav li {
    padding: 0;
  }

  .navbar-nav > li > a {
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid #bebebe;
  }

  ul.nav.navbar-nav {
    padding: 0 10px !important;
    margin: 0 !important;
  }

  /* Submenu */

  .navbar-nav .open .dropdown-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: 1px solid rgba(86, 185, 229, 0.5) !important;
    padding: 0;
    margin: 10px 0 0 0 !important;
    flex-wrap: wrap;
  }

  .navbar-nav .open .dropdown-menu > li {
    flex-grow: 1;
    border: 1px solid rgba(86, 185, 229, 0.5);
    margin: 0 !important;
    padding: 0 !important;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    padding: 10px 15px !important;
    font-size: 14px !important;
    text-align: center;
    background: rgba(86, 185, 229, 0.1);
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li:last-child > a {
    border-bottom: 0px solid transparent;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
    background: white !important;
  }

  .dropdown-menu > li > a i {
    font-size: 16px;
  }

  /* Home */

  .initialBanner .img {
    display: none;
  }

  .initialBanner h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .initialBanner h2,
  .initialBanner p {
    font-size: 16px;
    line-height: 20px;
  }

  .initialBanner .row-flex {
    padding: 50px 20px !important;
  }

  /* Planes */

  .panel {
    margin: 10px;
  }

  .plans {
    width: min(90%, 400px) !important;
  }

  /* Suscripcion */

  .section-content .modal-app-btn {
    display: block;
    margin: 20px 0 0 0;
    width: 100%;
    max-width: 100%;
  }

  #progress-bar-container ul li .step-inner {
    padding: 0 10px;
    font-size: 12px;
  }

  /* Equipo */

  .equipo .col-md-3 {
    margin: 0 10vw 100px 10vw;
  }

  /* Mi perfil de usuario */

  .flex-mobile {
    display: flex;
    gap: 20px;
  }

  /* Panel Login */

  .login-box .col-md-8 > div:first-child:not(.panel) {
    margin: 0 10px 2rem 10px;
  }

  /* Empresas y Servicios */

  .banner-header {
    font-size: 3rem;
  }

  .btn.buyplan.buyplanlarge {
    font-size: 2rem !important;
  }

  /* NEW UI/UX */

  .app-breadcrumbs {
    padding: 40px 0 0 0;
    font-size: 14px;
  }

  .app-breadcrumbs .col-md-6:first-child {
    display: none;
  }

  .panel-heading a h4.panel-title {
    font-size: 16px !important;
  }

  .app-less-padding {
    padding: 5px;
  }

  .app-container table .panel-heading {
    font-size: 16px;
  }

  #box5 .polaroid {
    width: 100% !important;
  }

  .dataTable th,
  .dataTable td {
    padding: 5px !important;
    min-width: 100px;
  }
}

.app-test div.myclass {
  text-align: start;
}

.app-test2 form {
  max-height: 40vh;
  overflow: auto;
  border-radius: 0;
}

.app-test2 fieldset.form-group {
  margin: 0 0 30px 0;
}

.app-test2 legend {
  font-size: 16px;
  font-weight: 600;
  border: 0;
  margin: 0 0 10px 0;
}

.app-test2 .form-group > div label {
  font-weight: 400;
}

.app-test2 div.form-group {
  margin: 0;
  text-align: center;
}
.app-test2 div.myclass {
  text-align: start;
}

.containerInfo {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 20px;
}
.containerInfoSegment {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.itemInfoSegmentacion {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
}
.subtitleSegment {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}
.textDinamic {
  height: 40px;
  display: flex;
  margin-bottom: 0px;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  padding: 0 15px 0 15px;
  border: 2px solid #a3a3a3;
  border-radius: 16px;
  width: 100%;
}

.tasadoUsers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.buttonDinamic {
  height: 40px;
  display: flex;
  margin-bottom: 0px;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  padding: 0 15px 0 15px;
  border: 2px solid #0099cc;
  border-radius: 16px;
  width: 100%;
}
#mi-estilo {
  margin-bottom: 15px;
  text-align: start;
}

#mi-estilo-p05 {
  text-align: start;
  display: flex;
  flex-direction: column;
}

.slider-input {
  width: 100%;
}

.cardSegment {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 2px solid rgb(218, 218, 218);
  border-radius: 10px;
  padding: 5px;
  align-items: center;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.19);
}
.cardSegment h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px !important;
  font-weight: 700;
  margin: 10px 0px 10px 0px;
  color: rgb(137, 137, 137);
}

.cardListSegment {
  display: flex;
  width: 80%;
  border: 2px solid #0099cc;
  border-radius: 15px;
  justify-content: center;
  font-size: 16px;
  padding: 8px 0 8px 0;
  color: #0099cc;
  text-decoration: none;
  cursor: pointer;
  margin: 0 auto;
}

.cardListSegment:hover {
  border: 2px solid #0080aa;
  background-color: #0080aa;
  color: white;
  text-decoration: none;
}

.cardListRed {
  display: flex;
  width: 80%;
  border: 2px solid #c90000;
  border-radius: 15px;
  justify-content: center;
  font-size: 16px;
  padding: 8px 0 8px 0;
  color: #c90000;
  text-decoration: none;
  cursor: pointer;
  margin: 0 auto;
}

.cardListRed:hover {
  border: 2px solid #c90000;
  background-color: #c90000;
  color: white;
  text-decoration: none;
}

.cardListGreen {
  display: flex;
  width: 80%;
  border: 2px solid #3caa00;
  border-radius: 15px;
  justify-content: center;
  font-size: 16px;
  padding: 8px 0 8px 0;
  color: #3caa00;
  text-decoration: none;
  cursor: pointer;
  margin: 0 auto;
}

.cardListGreen:hover {
  border: 2px solid #3caa00;
  background-color: #3caa00;
  color: white;
  text-decoration: none;
}
.usersSegment {
  display: flex;
  flex-direction: column;
}
.cardDefine {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-direction: column;
}
@media (min-width: 720px) {
  .containerInfo {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    gap: 20px;
  }
  .tasadoUsers {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 0px;
  }
  .containerInfoSegment {
    flex-direction: column;
    gap: 40px;
  }
  .subtitleSegment {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
  }
  .textDinamic {
    height: 30%;
    color: #7a7a7a;
  }

  .buttonDinamic {
    height: 30%;
  }
  .containerheight {
    height: 150px;
  }
  .cardSegment {
    display: flex;
    flex-direction: column;
    width: 50%;
  }
  .cardSegment h3 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 700;
    margin: 10px 0px 10px 0px;
    color: rgb(137, 137, 137);
    font-size: 20px !important;
  }
  .cardDefine {
    flex-direction: row;
  }
}
