*:focus {
    outline: none;
} 
a {
  text-decoration: none;
}
.text-tts-danger {
  color: red !important;
}
/*
.w30 {
    width: 30px!important;
}
.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;    
}
@media (min-width: 768px) {
    .truncate {
        width: 200px;
    }
}
*/
body {
  padding-top: 5rem;
  font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;	
}


  .grid a {
    color: #212529;
  }
  .grid a:hover {
    text-decoration: none;
  }
  .grid img {
    margin-bottom: 5px;
    max-width: 100%;
    width: 100%;
  }
  .grid > * {
    margin-bottom: 20px;
    line-height: normal;
  }
  
.navbar-brand img {
  height: 25px;
}
@media (min-width: 576px) {
  .navbar-brand img {
    height: 35px;
  }
}

.app-navbar .container {
  max-width: 1180px;
}

.app-navbar .navbar-brand {
  min-width: 0;
}

.app-navbar-logo img {
  display: block;
  max-width: 190px;
  max-height: 42px;
  height: auto;
}

.app-navbar .nav-link {
  white-space: nowrap;
}

.app-navbar .nav-item.active > .nav-link {
  font-weight: 700;
  color: #fff;
}

.app-navbar-brand {
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-navbar-user {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .app-navbar-logo img {
    max-width: 150px;
    max-height: 36px;
  }

  .app-navbar-brand,
  .app-navbar-user {
    max-width: 180px;
  }
}
    
  main h1 {
      padding-bottom: 24px;
      margin-bottom: 40px;
      border-bottom: 1px solid #ddd;
  }
  main h2 {
      font-size: 1.25rem;
      padding-bottom: 24px;
      margin-bottom: 32px;
      border-bottom: 1px solid #ddd;
  }
  main h3 {
      font-size: 1.125rem;
      margin-bottom: 16px;
  }
  
.form-actions:before {
  position:absolute;
      top: 0;
	  content: '';
	  left: 50px;
	  width: 50px;
	  height: 50px;
	  border: 1px solid;
}
label.error {
    color: red;
    margin-bottom: 0;
    margin-top: 5px;
}
.btn {
	border-radius: 6px;
}

footer {
  margin-top: 24px;
  padding-top: 26px;
  font-size: 1rem;
  font-weight: normal;
}
footer a {
  color: #212529;
}
footer a:hover {
  color: #212529;
  text-decoration: none;
}
footer h1 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 27px;
}

/* login */
@media (max-width: 575px) {
    body.login {
        padding-top: 3rem;
    }
}
body.login .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

body.login #formContent {
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  max-width: 450px;
  position: relative;
  padding: 30px 0;
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

body.login .col {
  padding-left: 30px; 
  padding-right: 30px
}

body.login hr {
  width: 85%;
}

body.login h1 {
    font-size: 1.3rem;
    margin-top: 10px;
}

body.login input[type=button], body.login input[type=submit], body.login input[type=reset]  {
  background-color: #56baed;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 20px 20px 5px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body.login input[type=button]:hover, body.login input[type=submit]:hover, body.login input[type=reset]:hover  {
  background-color: #39ace7;
}

body.login input[type=button]:active, body.login input[type=submit]:active, body.login input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

body.login input[type=text], body.login input[type=password] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

body.login input[type=text]:focus, body.login input[type=password]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

body.login input[type=text]:placeholder, body.login input[type=password]:placeholder {
  color: #cccccc;
}

body.login img {
  margin-top: 20px;
  margin-bottom: 40px;
  width: 280px;
}

/* distributor/auth legacy pages share the login template structure */
@media (max-width: 575px) {
    body.distributorLogin,
    body.verify {
        padding-top: 3rem;
    }
}
body.distributorLogin .wrapper,
body.verify .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

body.distributorLogin #formContent,
body.verify #formContent {
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  max-width: 450px;
  position: relative;
  padding: 30px 0;
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

body.distributorLogin .col,
body.verify .col {
  padding-left: 30px;
  padding-right: 30px;
}

body.distributorLogin hr,
body.verify hr {
  width: 85%;
}

body.distributorLogin input[type=button],
body.distributorLogin input[type=submit],
body.distributorLogin input[type=reset],
body.verify input[type=button],
body.verify input[type=submit],
body.verify input[type=reset] {
  background-color: #56baed;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 20px 20px 5px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body.distributorLogin input[type=button]:hover,
body.distributorLogin input[type=submit]:hover,
body.distributorLogin input[type=reset]:hover,
body.verify input[type=button]:hover,
body.verify input[type=submit]:hover,
body.verify input[type=reset]:hover {
  background-color: #39ace7;
}

body.distributorLogin input[type=button]:active,
body.distributorLogin input[type=submit]:active,
body.distributorLogin input[type=reset]:active,
body.verify input[type=button]:active,
body.verify input[type=submit]:active,
body.verify input[type=reset]:active {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

body.distributorLogin input[type=text],
body.distributorLogin input[type=password],
body.verify input[type=text],
body.verify input[type=password] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

body.distributorLogin input[type=text]:focus,
body.distributorLogin input[type=password]:focus,
body.verify input[type=text]:focus,
body.verify input[type=password]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

body.distributorLogin input[type=text]:placeholder,
body.distributorLogin input[type=password]:placeholder,
body.verify input[type=text]:placeholder,
body.verify input[type=password]:placeholder {
  color: #cccccc;
}

body.distributorLogin img,
body.verify img {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
  margin: 20px auto 40px;
}

/* page not found */
@media (min-width: 768px) {
    body.pagenotfound {
      margin-top: 150px;
    }
}
body.pagenotfound .error-main{
  background-color: #fff;
}
body.pagenotfound .error-main h1{
  font-weight: bold;
  color: #444444;
  font-size: 100px;
  text-shadow: 2px 4px 5px #6E6E6E;
}
body.pagenotfound .error-main h6{
  color: #42494F;
}
body.pagenotfound .error-main p{
  color: #9897A0;
  font-size: 14px; 
}

/* home */
body.home {
	background-color: #27adc1;
	color: white;
	font-size: 26px;
	font-weight: 500;
	background-image: url("/img/FAVICON - MASTER WHITE - QUARTER BOTTOM LEFT - 400x400x300ppp_t.png");
	background-repeat: no-repeat;
	background-position: right top;
  background-size: 30%;
  padding-top: 0;
}
body.home .logo {
	width: 70%;
}
body.home .intro {
	margin-top: 100px;
}
body.home main h1 {
	font-size: 30px;
	color: #126d7b;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
body.home main h2 {
	font-size: 26px;
	padding-bottom: 15px;
	border-bottom: 1px solid #126d7b;;
}
body.home .tiendas p {
	color: #126d7b;
}
body.home .usuario a {
	color: white;
	text-decoration: none;
}

/* summary */
body.summary {
  .print {
    display: none;
  }
}
@media print {
  /* All your print styles go here */
  .print {
    display: block;
  }
  body.summary {
    .logo {
      height: 45px;
      display: block;
    }

    padding-top: 0;
  
    nav,
    footer,
    .actions {
      display: none !important;
    }
  }    
}
@page {
  size: A4;
  margin-top: 1in;
  margin-bottom: 1in;
}

body.hearing-list main img {
  border-radius: 6px;
}

/* public */
body.public {
  color: #031F40;
}
body.public main {
  font-size: 20px;
  line-height: 24px;
}
body.public .btn {
	padding: 10px 40px;
	font-size: 20px;
}
body.public .btn-primary {
	background-color: #436da7;
	border-color: #436da7;
}
body.public .btn-primary:hover {
	background-color: #031f40;
	border-color: #031f40;
}
body.public .btn-primary:not(:disabled):not(.disabled).active, body.public .btn-primary:not(:disabled):not(.disabled):active, body.public .show>.btn-primary.dropdown-toggle {
	background-color: #031f40;
	border-color: #031f40;
}
body.public .btn-primary.disabled, body.public .btn-primary:disabled {
	background-color: grey;
	border-color: grey;
}

body.public a.cta {
	background-color: #031f40; 
	color: white; 
	border-color: #031f40; 
	font-size: 20px; 
}
body.public .cta.btn-primary.focus, body.public .cta.btn-primary:focus {
	box-shadow: none; 
}
body.public .cta.btn-primary:not(:disabled):not(.disabled).active, body.public .cta.btn-primary:not(:disabled):not(.disabled):active, body.public .show>.cta.btn-primary.dropdown-toggle {
    background-color: #031f40;
    border-color: #031f40;
}
body.public .input-group-append .btn {
	border-radius: 0.25rem;
	padding: .375rem .75rem;
}
body.public .form-control {
	font-size: 20px;
}
body.public .video-background-holder .cta-wrapper {
	bottom: 120px;
}
body.public main h1 {
	font-size: 44px;
	line-height: 42px;
	font-weight: 700;
  margin-top: 20px;
}
body.public main h2 {
	font-size: 38px;
	line-height: 46px;
	font-weight: 500;
}
body.public main h3 {
	font-size: 26px;
	line-height: 31px;
	font-weight: 500;
}


.progress {
    height: 0.2rem;
}

/* login box */
.login-box .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

.login-box #formContent {
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  max-width: 450px;
  position: relative;
  padding: 30px 0;
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

.login-box h1 {
    font-size: 1.3rem;
    margin-top: 10px;
}

.login-box input[type=button], .login-box input[type=submit], .login-box input[type=reset]  {
  background-color: #56baed;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 20px 20px 5px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.login-box input[type=button]:hover, .login-box input[type=submit]:hover, .login-box input[type=reset]:hover  {
  background-color: #39ace7;
}

.login-box input[type=button]:active, .login-box input[type=submit]:active, .login-box input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.login-box input[type=text], .login-box input[type=password] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

.login-box input[type=text]:focus, .login-box input[type=password]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

.login-box input[type=text]:placeholder, .login-box input[type=password]:placeholder {
  color: #cccccc;
}

/* auth */
body.auth {
  padding-top: 62px;
}

body.auth main {
	position: relative;
}
body.auth .wrapper {
	justify-content: flex-start;
	top: 35px;	
}
@media (max-width: 575px) {
	body.auth .wrapper {
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;		
	}
}
body.auth main h1 {
	border-bottom: none;
	margin-top: 0;
	margin-bottom: 0;
	color: red;
}
body.auth main .col {
	padding-left: 30px;
	padding-right: 30px;
}
body.auth main {
	min-height: 500px;
}
.myphr {
    font-size: 30px;
    font-weight: bold;

}
.app-navbar.bg-dark,
.distributor-navbar {
    background-color: #031f40 !important;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.app-navbar.navbar-dark .navbar-brand,
.app-navbar.navbar-dark .navbar-text {
	color: rgba(255,255,255,.88);
}
.app-navbar.navbar-dark .navbar-nav .nav-link {
	color: rgba(255,255,255,.82);
	border-radius: 6px;
}
.app-navbar.navbar-dark .navbar-nav .nav-link:focus,
.app-navbar.navbar-dark .navbar-nav .nav-link:hover {
	color: #fff;
	background-color: rgba(255,255,255,.10);
}
.app-navbar.navbar-dark .navbar-nav .nav-item.active > .nav-link {
	color: #fff;
	background-color: #436da7;
}
.app-navbar.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255,255,255,.38);
}
.app-navbar.navbar-dark .navbar-toggler {
	border-color: rgba(255,255,255,.35);
}
.app-navbar.navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, .86%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.iceCardGeneratorStep2 main label {
	font-weight: bold;
}
.iceCardGeneratorStep2 main p.text-muted {
	font-size: 80%;
}

.gj-datepicker.input-group {
	width: 180px;
}

.iceCardGeneratorStep2 #form-ice-generator-card-step2-blood_type, 
.iceCardGeneratorStep2 #form-ice-generator-card-step2-rh_factor {
	width: 160px;
}

.iceCardGenerator main h1,
.iceCardGeneratorStep2 main h1,
.iceCardGeneratorStep3 main h1 {
	margin-bottom: 24px;
}

.video-background-holder {
  position: relative;
  background-color: black;
  /*height: calc(100vh - 72px);*/
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.video-background-holder video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.video-background-holder > img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
  position: relative;
  z-index: 2;
}

.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0;
  z-index: 1;
}

/* select2 */
.select2-container--default .select2-selection--single, .select2-container .select2-selection--single {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;	
	height: 38px;
}
body.public .select2-container--default .select2-selection--single, body.public .select2-container .select2-selection--single {
	height: 44px;
}
.select2-container {
	width: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 7px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #436da7;
}

#infoModalBody p:last-child {
    margin-bottom: 0;
}

.form-control-plaintext {
  padding: 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

/* laboratory-analysis */
.visual-score img {
  position: absolute;
}
.visual-score > div {
  position: relative;
}
.visual-score img:first-child {
  left: calc(9px + calc(300px * (var(--value)/100)));
  top: -7px;
  z-index: 1;
  height: 15px;
  width: 2px;;
}
.visual-score img:last-child {
  left: 9px;
  top: -7px;
}

/* sortable */
table.sortable thead th {
  cursor: pointer;
  background-position: right;
  background-repeat: no-repeat;
}
table.sortable thead th.nosort {
  cursor: initial;
}
table.sortable thead th.both {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAkElEQVQoz7X QMQ5AQBCF4dWQSJxC5wwax1Cq1e7BAdxD5SL+Tq/QCM1oNiJidwox0355mXnG/DrEtIQ6azioNZQxI0ykPhTQIwhCR+BmBYtlK7kLJYwWCcJA9M4qdrZrd8pPjZWPtOqdRQy320YSV17OatFC4euts6z39GYMKRPCTKY9UnPQ6P+GtMRfGtPnBCiqhAeJPmkqAAAAAElFTkSuQmCC");
}
table.sortable thead th.desc {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZUlEQVQ4y2NgGAWjYBSggaqGu5FA/BOIv2PBIPFEUgxjB+IdQPwfC94HxLykus4GiD+hGfQOiB3J8SojEE9EM2wuSJzcsFMG4ttQgx4DsRalkZENxL+AuJQaMcsGxBOAmGvopk8AVz1sLZgg0bsAAAAASUVORK5CYII=");
}
table.sortable thead th.asc {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZ0lEQVQ4y2NgGLKgquEuFxBPAGI2ahhWCsS/gDibUoO0gPgxEP8H4ttArEyuQYxAPBdqEAxPBImTY5gjEL9DM+wTENuQahAvEO9DMwiGdwAxOymGJQLxTyD+jgWDxCMZRsEoGAVoAADeemwtPcZI2wAAAABJRU5ErkJggg==");
}

h1.section, h2.section, h3.section {
  font-size: 18px; 
  font-weight: bold; 
  line-height: 27px; 
  color: white;   
}
h1.section {
  background-color: black; 
  padding: 6px 11px; 
  margin-bottom: 24px;
}
h2.section {
  background-color: black; 
  padding: 0; 
  margin-bottom: 24px;
}
h2.section img {
  margin-right: 10px;
}
h3.section {
  background-color: #666666; 
  padding: 0; 
  margin-bottom: 0;
}
h3.section img {
  margin-right: 10px;
}

.chart-container {
  height: 180px;
}
@media (min-width: 768px) {
  .chart-container {
    height: 222px;
  }
}
a.btn.disabled {
  color: white;
}
.btn-secondary.disabled {
  background-color: grey;
  border-color: grey;
}
sup {
	margin-left: -0.25rem;
}
ol.references {
	font-size: 80%;
}
