/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  color: #444444;
}

a {
  color: #0088CE;
  text-decoration: none;
}

a:hover {
  color: #86db9f;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica Neue LT Pro", sans-serif;
}

/*--------------------------------------------------------------
# Back to top btn
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0088CE;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0280b2;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
--------------------------------------------------------------
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.8);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Helvetica Neue LT Pro", sans-serif;
}

#header .logo a {
  color: #0088CE;
}

#header .logo img {
  max-height: 45px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Nav 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #37423b;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #0088CE;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #0088CE;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }

  .fa-chevron-down {
    margin-right:0.5rem!important;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #37423b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(32, 38, 34, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #37423b;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #0088CE;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #0088CE;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


/* ==========================================================================
1. INDEX > fondo body 
========================================================================== */
    
  .page-holder {
      min-height: 85vh;
  }

  .bg-cover {
     width: 100%;
     background-color: rgba(0,136,206);
     background-size: cover!important;
  }

  .bgcontainer {
     width: 100%;
     padding: 0px 0px 0px 0px;
     margin-top:0rem;
     color: #ffffff;
     text-align:center;
     font-size:1.3em; 
  }

  .presentacion{
    padding-top:5rem;
  }

  h1.txt-bienvenida {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    padding-top:7rem;
    text-align: center;
  }

  .logo-blanco {
    width:400px;
  }
 
  .txt-presentacion {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    padding:2rem 10rem 0 10rem;
    text-align: center;
  }

  @media (max-width: 767.98px) {

    .bg-cover {
     width: 100%;
     background-color: rgba(0,136,206);
     background-size: cover!important;
     padding: 0;
    }

    h1.txt-bienvenida {
      font-family: "Helvetica Neue LT Pro", sans-serif;
      font-size: 1.15rem;
      font-weight: 500;
      color: #ffffff;
      padding-top:3rem;
      text-align: center;

    }

    .logo-blanco {
      width:270px;
    }

    .txt-presentacion {
      font-family: "Helvetica Neue LT Pro", sans-serif;
      font-size: 1.15rem;
      font-weight: 500;
      color: #ffffff;
      padding:2rem 2rem 0 2rem;
      text-align: center;
    }

    .boton-tarjeta a {
      font-size: 1.10rem!important;
    }
  }

/* ==========================================================================
   HOME > BOTÓN GENERAR TARJETA
========================================================================== */

  .boton-tarjeta {
     text-align: center;
     padding-top: 2rem;
     padding-bottom: 2.5rem;
  }  

  .btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 2.0px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1.2rem;                   /* --> tamaño tipografía button */
    line-height: 1.5;
    border-radius: 0rem;
    transition: color 0.20s ease-in-out, background-color 0.20s ease-in-out, border-color 0.20s ease-in-out, box-shadow 0.20s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }


  .btn-tarjeta {           /* indica ancho borde outline botón Generar Tarjeta */
     padding-right:2.5rem;
     padding-left:2.5rem; 
  }

  .boton-azul {
     color:#ffffff!important;
     background-color: #0088ce!important;
     background-image: none!important;
     border-color:#ffffff!important;
     margin: 0 auto;
  }

   /* HOVER botón azul "Generar Tarjeta" */

  .boton-azul:hover {
    color: #0088ce!important;
    background-color: #ffffff!important;
    background-image: none!important;
    border-color: #ffffff!important;
  }
  
  .btn-azul:visited, .btn-azul:active {
    color: #0088ce!important;
    background-color: #ffffff!important;
    background-image: none!important;
    border-color: #ffffff!important;
    outline: 0!important;
  }

  .boton-azul:focus, .boton-azul.focus {
    color:#ffffff;
    box-shadow: none!important;                  /*cambiar tono focus*/
  }

  .boton-azul.disabled, .boton-azul:disabled {
    color: #0088ce!important;
    background-color: transparent!important;
  }

  .boton-azul:not(:disabled):not(.disabled):active, .boton-azul:not(:disabled):not(.disabled).active,
  .show > .boton-azul.dropdown-toggle {
     color:#0088ce!important;
     background-color:#ffffff!important;
     border-color: #0088ce!important;
     outline: 0!important;
  }

  .boton-azul:not(:disabled):not(.disabled):active:focus, .boton-azul:not(:disabled):not(.disabled).active:focus,
  .show > .boton-azul.dropdown-toggle:focus {
     box-shadow: 0 0 0 0.1rem rgba(41, 170, 225, 0.5)!important;
     -ms-box-shadow:0 0 0 0.2rem rgba(41, 170, 225, 0.5)!important;
     -o-box-shadow:0 0 0 0.2rem rgba(41, 170, 225, 0.5)!important;
     -webkit-box-shadow:0 0 0 0.2rem rgba(41, 170, 225, 0.5)!important;
     -moz-box-shadow:0 0 0 0.2rem rgba(41, 170, 225, 0.5)!important;
  }


/* ==========================================================================
1. BREADCRUMB
========================================================================== */

/* Pág Generar Tarjetas */
.row {
  margin: 0;
}

.breadcrumb_area {
   min-height: 17vh;
   background-color: rgba(0,136,206);  
}

.titulo1 {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff;
    padding-top:6.2rem;
    text-align: center;
}

/*--------------------------------------------------------------*/

.section-breadcrumb {
  text-align:left!important;
  margin-top:-0.9rem;
  padding-left: 1.7rem; 
}

h2.title-breadcrumb {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size:1.2rem;
  font-weight: 500;
  color:#ffffff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #0088ce;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  padding-top: 0.5rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
}

.breadcrumbs ol a {
  color: #fff;
  font-weight: 300;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

.breadcrumb2 {
  font-weight: 500;
}

@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 58px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs h2 {
    font-size: 1.25rem;
    padding-top: 0.9rem;
  }
  .breadcrumbs ol {
    display: block;
    font-size: 0.80rem;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}


/* ==========================================================================
1. PÁG GENERAR TARJETAS
========================================================================== */
  
  .colcont {
    padding:0 0 2rem 0;
  }
  
  .titulo2 {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #0088ce;
    padding-top:3.0rem;
    text-align: center;
  }

  hr.divisor {
    border-top: 2.0px solid #0088ce;
    margin-top:-0.7rem;
    margin-right:0%;
  }

  .img-tarjeta {
    padding: 0.7rem 4rem 0.4rem 4rem;
    width:100%;
    filter: drop-shadow(2px 2px 7px #555);
    -webkit-filter:drop-shadow(2px 2px 7px #555)!important;
    -moz-filter:drop-shadow(2px 2px 7px #555)!important;
    -ms-filter:drop-shadow(2px 2px 7px #555)!important;
    -o-filter:drop-shadow(2px 2px 7px #555)!important;
    /*-webkit-transition: 0.9s;
    -moz-transition: 0.9s;
    -o-transition: 0.9s;
    -ms-transition: 0.9s;
     transition: 0.9s;
     cursor:pointer*/
  }

  /*.img-tarjeta:hover {
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
    -ms-transition: 1s;
     transition: 1s;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }*/

  @media (max-width: 767.98px) {

    .titulo1 {
      font-size: 1.3rem;
    }

    .titulo2 {
      font-size: 1.2rem;
    }

  }


  /* Botón 2 > Generar Tarjeta */

  .btn-generartarjeta {           
    padding-right:2.5rem;
    padding-left:2.5rem; 
  }

  .boton-azul2 {
     color:#ffffff!important;
     background-color: #0088ce!important;
     border-color:#ffffff!important;
     margin: 0 auto;
  }

   /* HOVER botón azul2 "Generar Tarjeta" */

  .boton-azul2:hover {
    color: #0088ce!important;
    background-color: #ffffff!important;
    border-color: #0088ce!important;
  }

  .boton-azul2:focus, .boton-azul2.focus {
    box-shadow: 0 0 0 0.1rem rgba(255, 255, 255, 0.5)!important;                  /*cambiar tono focus*/
  }

  .boton-azul2.disabled, .boton-azul2:disabled {
    color: #ffffff!important;
    background-color: #0088ce!important;
  }

  .boton-azul2:not(:disabled):not(.disabled):active, .boton-azul2:not(:disabled):not(.disabled).active,  /*pressed*/
  .show > .boton-azul2.dropdown-toggle {
     color: #0088ce!important;
     background-color:#ffffff!important;
     border-color: #0088ce!important;
     outline: none!important;
  }

  .boton-azul2:not(:disabled):not(.disabled):active:focus, .boton-azul2:not(:disabled):not(.disabled).active:focus,
  .show > .boton-azul2.dropdown-toggle:focus {
     box-shadow: 0 0 0 0.2rem rgba(41, 170, 225, 0.5)!important;

  }


/*--------------------------------------------------------------
# FORMULARIO DE ALTA
--------------------------------------------------------------*/
.maintitle1, .maintitle2 {
  background-image: linear-gradient(90deg, rgba(0,136,206,1), rgba(129,203,213,1));
  padding:0.5em 0.5em 0.5em 0.5em!important;
  text-align: center;
  color: #ffffff;
  font-size: 1.3rem; 
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-weight: 400;
  margin-top: 2rem;
}

.maintitle2 {
  background-image: linear-gradient(90deg, rgba(0,136,206,1), rgba(238,140,183,1));
}

.contenedor-form-gt {
    width:100%;
    color:#fff;
    text-align: center!important;
    padding-top:0em;
    margin-bottom:0em;
    margin-right:0rem!important;
    margin-left:0rem!important;
  }

  .campo-obligatorio {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    text-align: left;
    font-size: 0.9rem;
    font-weight:300;
    margin-top:1.0rem;
    margin-bottom:0.5rem; 
    color:#000;
  }

  .card-header1, .card-header2, .card-header3 {
    border-top-left-radius:0rem;
    border-top-right-radius:0rem;
    background-color:#0090d2;
    border-color:#0090d2;
    text-align:left;
    color:#ffffff;
    font-size:1.3em;
    font-weight:500;
  } 

  .card-header1, .card-header2, .card-header3 {
    margin-right:0rem!important;
    margin-left:0rem!important;
    padding-top:0.50rem!important;
    padding-bottom:0.50rem!important;
    padding-right:0rem!important;
    padding-left:0.7em!important;
    margin-bottom: 0rem;
  }

  .card-header2 {
    margin-top: 0rem;
  }
  
  .cardbody {
    border: 1px solid rgba(0, 136, 206);
    border-top-color: transparent;
    border-bottom-left-radius:0rem;
    border-bottom-right-radius:0rem;
    padding-bottom:0rem;
    font-size:1.14em;
    font-weight:400;
    color: #fff;
  }

  .card-body {
    padding:0.8em 1em 1.3em 1em!important;
  }

  .form-control, .form-select, .input-group-text {
    margin-bottom: 0rem;
    border-radius: 0!important;
    color:#6c757d;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }
   
  .formulario-gt {
     margin-top: 2rem;
  }

  .smalltxt {
    margin-top:-1rem!important;
    font-size: 0.8rem;
  }

  .mbform1 {
    margin-bottom: 0.5rem;
  }

  .mbform2 {
    margin-bottom: -0.2rem;
  }

  @media (max-width: 767.98px) {

    .maintitle1, .maintitle2 {
      font-size: 1.15rem;
    }
  
    .selprov .spacecel {
      margin-top: 1.8rem!important;
    }

    .mbform2 {
      margin-bottom: 1.5rem;
    }
  }
  
.btn-tipoBusqueda {
	width: 200px;
	margin: 0;
	font-size: 16px;
	color: #0088ce !important;
	background-color: #FFF !important;
	border: 2px solid #c3c6d1 !important;
	transition: all 0.3s ease 0s;
	padding-left: 0;
	padding-right: 0;
	width: 139px;
}

.btn-tipoBusqueda:hover {
	box-shadow: 0px 5px 10px rgba(0, 144, 210, 0.4);
}

.btn-tipoBusqueda.btn-activo {
	border: 2px solid #0090d2!important;
}

.col-btn {
	display: flex;
	justify-content: left;
	padding-left: 100px;
}
@media (max-width: 766px) {
	.col-btn {
		justify-content: center;
		padding-left: 0;
	}
}

.btn-buscarMed {
	padding: 10px 20px;
	border-radius: 40px;
	border: none;
	color: #000;
	background: #FFF;
	height: 50px;
	transition: all 0.3s ease 0s;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 2px;
}
.btn-buscarMed:hover {
	background: rgb(1,144,210);
	background: linear-gradient(90deg, rgba(1,144,210,1) 0%, rgba(129,203,213,1) 100%);
	color: #FFF;
	box-shadow: 0px 5px 10px rgba(0, 144, 210, 0.4);
	transform: translateY(-7px);
}
.parrafo-indicacion {
	background-color: #c8ecf1;
	color: #000;
	padding: 10px 20px;
	border-radius: 20px;
	font-size: 16px;
	margin-top: 1rem;
}
.parrafo-indicacion button {
	border: none;
	background: none;
	text-decoration: underline;
	font-weight: bolder;
}
.modal__formulario-label {
	display: block;
	padding: 10px;
}
.modal__formulario-input {
	border-radius: 3px !important;
	height: 45px;
	line-height: 45px;
	padding: 0 10px;
}
.modal__formulario-error {
	font-size: 14px;
	margin-bottom: 0;
	color: #BB2929;
	margin-top: 3px;
}
.formulario-gt > .activo {
	display: block!important;
}
.formulario-gt > .panel {
	display: none;
}

.medico-activo label {
	color: green!important;
}
.medico-activo img {
	display: inline-block;
	width: 13px;
	margin-left: 10px;
	margin-bottom: 6px;
}

.botones {
	text-align: left; 
	gap: 10px; 
	padding-left: 12px;
}
@media (max-width: 766px){
	.botones {
		padding-left: 0;
		justify-content: center;
	}
}
/*---------------------------------------------------------------
# BUSCAR FARMACIA ADHERIDA
----------------------------------------------------------------*/
 .container-buscarfarma {
    width:100%;
    color:#0088ce;
    text-align: left!important;
    padding-top:0em;
    margin-bottom:0em;
    margin-right:0rem!important;
    margin-left:0rem!important;
  }

.cardbody2 {
  border: 1px solid rgba(0, 136, 206);
  border-top-left-radius:0rem;
  border-top-right-radius:0rem;
  border-bottom-left-radius:0rem;
  border-bottom-right-radius:0rem;
  padding-top:2rem!important;
  padding-bottom:2rem!important;
  font-size:1.14em;
  font-weight:400;
  color: #000000;
  margin-top: 3.5rem; 
}

.labelbf {
  padding-bottom:0.5rem!important;
}

.btn-buscar {
   width:100%;
   margin-top:0.2rem!important;
}

.boton-buscar {
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0rem;
} 

.titulo3 {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #0088ce;
    padding-top:3.0rem;
    text-align: left;
  }


@media (max-width: 767.98px) {

  .cardbody2 {
     font-size:0.95em; 
  }

  .boton-azul2 {
    font-size: 0.95rem;
  }
    
}

.btn-location {
	background-color: #ce4500;
  color: #fff;
  padding: 0.35rem 1rem;
  border: none;
  top: 0;
  left: 55%;
  /*transform: translateX(-50%);*/
  transition: all 0.3s;
}

.btn-location:hover {
	background-color: #b53800;
}

.btn-gotolist {
	top: 0;
  right: 55%;
  border: none;
  background-color: #0088ce;
  color: white;
  padding: 0.35rem 1rem;
  transition: all 0.3s;
}

.btn-gotoloist:hover {
	background-color: #0077b4;
}

@media (max-width: 980px) {
	.btn-location {
		top: 100px;
		left: 12px;
		right: inherit;
	}
	.btn-gotolist {
		top: 55px;
		left: 12px;
		right: inherit;
	}
}

.btn-map {
	background-color: #b3e5fa;
	color: #005898;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s;
}

.btn-map:hover {
	color:#fff;
	background-color: #0089ce;
}

.iw_layout {
	position: relative;
    width: 600px;
    height: 400px;
    background: linear-gradient(to right, #1c98d3, #6bb6e4);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.iw-wave {
	position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: #0085ca;
    clip-path: ellipse(70% 100% at 50% 100%);
	left: 0;
	z-index: -1;
}

.gm-style .gm-style-iw-c {
	background: linear-gradient(to right, #1c98d3, #6bb6e4);
	  border-radius: 20px;
	  overflow: hidden;
	  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.btn--swal {
	display: inline-block;
	background-color: #0088ce;
	color: #fff;
	border: 1px solid #0088ce;
	padding: 0.5rem 1rem;
	transition: all 0.3s;
}

.btn--swal:hover {
	color: #0088ce;
	background-color: #fff;
}

/*------ TABLA RESULTADO DE BÚSQUEDA ---------*/

.contenedor-tabla{
  margin-right:0rem!important;
  margin-left:0rem!important;
  margin-bottom:3rem!important;
}

.titulo-tabla {
  font-size:1rem ;
  font-weight:500;
  color:#fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
  margin-top: -1.5rem;
}

.round_table {                   
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #0088ce;
  border-radius: 0rem;
  -moz-border-radius: 0rem;
  -webkit-border-radius: 0rem;
  padding: 0px;
 }
  
.thead0 {
  color:#ffffff!important;
  font-size:1.2rem!important;       /*estilos tipografía thead*/
  font-weight:500!important;
}

.thead1 {
  border-top-left-radius:0rem;
}

.thead2 {
  border-top-right-radius:0rem;
}   

table {                   
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #0088ce;        
  padding: 0px;
  background-color: #fff;
}

table td{        
  padding: 0.3rem!important;
}  

thead {
  background-color: #0088ce;
  color:#ffffff!important;
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  border-left:none;
  border-top:none;
}

th {
  color:#000000;
  border-left:none;
  border-top:none;
  background-color: #ffffff;
  border-top: transparent;
}    


@media (max-width: 767.98px) {

  .titulo3 {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 1.1rem;
  }

  .titulo-tabla {
    font-size:0.8rem;
  }

  .round_table {
    font-size:0.80rem;
  }

  .contenedor-tabla{
    margin-right:0rem!important;
    margin-left:0rem!important;
  }

  thead {
    font-size: 0.95rem!important;
  }

  .thead0 {
    font-size:0.95rem!important;       /*estilos tipografía thead*/
  }

  .form-select {
    font-size:0.90rem!important;
  }

  .form-control {
    font-size:0.90rem!important;
    padding:0.25rem 0.5rem;
  }

  table td{        
    padding: 0.2rem!important;
  }  

}

/*--------------------------------------------------------------
# ADHIERA SU FARMACIA
--------------------------------------------------------------*/ 

.txt-adhierafarma1, .txt-adhierafarma2, .txt-adhierafarma3 {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size:1.1rem;
  font-weight:400;
  color:#494949;
  text-align: left;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.txt-adhierafarma2 {
  font-weight:400;
}

.celeste {
  font-weight:500;
  color:#0088ce;
}

.link-web {
  font-weight:500;
  color:#0088ce;
}

.link-web:hover {
  text-decoration: underline;
  color:#0280b2;
}

.txt-adhierafarma3 {
  text-align: left;
  margin-right:0rem!important;
  margin-left:0rem!important;
}

ul#lista-adhierafarma {
  margin-top:0rem;
  color:#494949!important;
  font-weight:400;
  list-style: none;
  margin-left:-1rem;
}
  
ul#lista-adhierafarma li {
  font-size:1.1rem; 
  text-align: left;
  padding-left:0rem;
  padding-right:1rem;
}

.icon-arrowright, .icon-arrowdown {
      top:0.3rem;
      font-size:0.85em;
      text-align:left;
      margin-left:-1rem;
      color: #0088ce;
}

@media (max-width: 767.98px) {
   .txt-adhierafarma1, .txt-adhierafarma2, .txt-adhierafarma3 {
    font-size:1.0rem!important;
  }

  ul#lista-adhierafarma li {
     font-size:1.0rem!important; 
  }
  
  .card-header4 {
    font-size:1.1rem!important;
  }   

  .txt-download {
    font-size: 1.08rem!important;
  }

  .icon-arrowdown {
    font-size: 0.85rem!important;
  }

}

/**************************************************************/

.colcont {
    padding:0 0 0rem 0;
}
  
.txt-download {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #494949;
    padding-bottom:0.5rem;
    text-align: center;
}

.card-header4 {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color:#ffffff;
    background-color:#0090d2;
    padding:0.5rem 0rem 0.5rem 0rem;
    text-align:center;
    margin-top:2.5rem; 
  } 

.cardbody3 {
    border: 1px solid rgba(0, 136, 206);
    border-top-left-radius:0rem;
    border-top-right-radius:0rem;
    border-bottom-left-radius:0rem;
    border-bottom-right-radius:0rem;
    padding-bottom:0rem;
    font-size:1.14em;
    font-weight:400;
    color: #fff;
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;  
}

.carddownload {
    margin-bottom: 3.5rem;
}

.btn-download {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}  

.icon-arrowdown {
    top:0.3rem;
    font-size:0.80em;
    text-align:left;
    margin-left:0rem;
    color: #ffffff;
}

.boton-azul3 {
    color:#ffffff!important;
    background-color: #0088ce!important;
    border:none;
    margin: 0 auto;
}

   /* HOVER botón azul2 "Generar Tarjeta" */

.boton-azul3:hover {
    color: #ffffff!important;
    background-color: #0280b2!important;
}

@media (max-width: 767.98px) {
  .btndescargar1 {
     margin-bottom: 0.5rem;
  }
}

/*---------------------------------------------------------------
  PREGUNTAS FRECUENTES
----------------------------------------------------------------*/

.accordion-flush .accordion-item .accordion-button {
  background-color:#0088ce;
  margin-top:0.5rem;
  padding:0.8rem;
  color:#ffffff;
}

.accordion-body{
  margin-bottom:0rem;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.pregfreq {
  padding-top:1em!important;
  margin-top:2em;
  margin-bottom:3.5em;
  width:100%;
}

.backgbox {
  padding:1.15rem;
  background-color: #fff;
  border: 1px solid #0088ce;            
  border-radius:0px;
}  

@media only screen and (max-width: 767.98px) {    

  .pregfreq {
    width:100%;
    margin-top:1em;
    margin-bottom:2.5em; 
  }
}

/*--------------------------------------------------------------
  CONTACTO
--------------------------------------------------------------*/
.contact {
  margin-top:2rem;
}

.icon-email, .icon-question {
    top:0px;
    font-size:2em;
    text-align: center;
    padding-bottom: 0em;
    color: #fff;
}

.icon-email{
  font-size:2.5em;
  margin-top:5rem!important;
}

.card-header5 {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color:#ffffff;
    background-color:#0090d2;
    padding:0.2rem 0rem 0.2rem 0rem;
    text-align:center; 
  }

.card-header6 {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color:#ffffff;
    background-color:#0090d2;
    padding:0.55rem 0rem 0rem 0rem!important;
    text-align:center;
    height:70px; 
  }  

  .cardbody-contact {
    border: 1px solid rgba(0, 136, 206);
    border-top-color: transparent;
    border-bottom-left-radius:0rem;
    border-bottom-right-radius:0rem;
    margin-bottom:1.5rem;
    font-size:1.14em;
    font-weight:400;
    color: #fff;
  }

  .titulo-contacto, .titulo-contacto2 {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color:#000000;
    text-align:center;
    margin:0rem 0rem 1.2rem 0rem;
  }

  .titulo-contacto2 {
    margin:0rem 0rem 0rem 0rem;
  }

  .boton-contacto {
     text-align: center;
     padding-top: 0.5rem;
     padding-bottom: 0.2rem;
  }

  a.txt-mail {
      font-size: 1.8em;
      font-weight: 600;
      color:#0088ce;
      text-decoration: none!important;
      text-align:center;
      padding-top: 0.7rem;
      margin-bottom:-1.5rem!important;
  }

  a.txt-mail:hover {
      color:#0280b2;
      text-decoration: underline;
      text-align:center;
  }

  .contactcardb {
      margin-bottom:2.5rem!important;
  }

  .card-header6 {
        padding:0rem 0rem 0rem 0rem;
  }

  @media (max-width: 767.98px) {
      a.txt-mail {
          font-size: 1.10em!important;
      }

      .titulo-contacto, .titulo-contacto2 {
         font-size: 1.0rem;
      }

      .cardbody-contact {
        padding:0.7rem!important;
        margin-bottom: 0!important;
      }

      .icon-email{
        font-size:1.9em;
      }

      .card-header5 {
        height:50px!important;
        font-size: 1.1rem;
        padding-top:0rem;
      }

      .card-header6 {
        height:50px!important;
        padding-top:0.2rem;
      }

      .contactcardb {
        margin-bottom: 2rem!important;
      }
  }

/*--------------------------------------------------------------
  Aviso tarjeta generada
--------------------------------------------------------------*/  
.card-header-aviso {
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color:#ffffff;
    background-color:#0090d2;
    padding:0.5rem 0rem 0.5rem 0rem;
    text-align:center;
    margin-top:1.5rem; 
  } 


.txt-aviso {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size:1.05rem;
  font-weight:400;
  color:#494949;
  text-align: left;
  margin-bottom: 0.5rem;
  margin-top: 1.7rem;
  line-height:1.55rem!important;
}

.aviso2 {
   margin-top:-0.05rem!important;
}

.page-holder {
   min-height: 65vh;
}

@media (max-width: 767.98px) {

  .card-header-aviso {
    font-size: 1.05rem;
    margin-top:1.0rem;
  }

  .txt-aviso {
    font-size:1.0rem;
    line-height:1.3rem!important;
  }

}

/*------------------------------------------
  Banner Acompañarte
--------------------------------------------*/
.space-banner {
   margin-bottom:1.5rem;
}

.bannerimg {
  background-image: url('../../assets/img/banner/banner-1.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 800px;
  height: 600px;
  margin: 0 auto;
  padding: 0;
}

.logo-banner {
  width:400px;
  margin: 0 auto;
  margin-top:2rem!important;
}

.txt-banner {
  width:700px;
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size:1.2rem;
  font-weight:400;
  color:#ffffff;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height:1.7rem!important;
  margin: 0 auto;
}

.banner2 {
   margin-top:2rem!important;
}

.datos2 {
  margin-left:0rem!important;
  margin-top:0rem!important;
}

.bannertel, .bannerqr {
  margin-top:3rem!important;
}

.tel0800 a {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size:2.7rem;
  font-weight:600;
  color:#f29ec6!important;
  transition: 0.3s;
}

.tel0800 a:hover {
  color:#f4bed8!important;
  transition: 0.3s;
}

.linkqr a {
  font-family: "Helvetica Neue LT Std", sans-serif;
  font-size:1.05rem;
  font-weight:normal;
  color:#ffffff!important;
  transition: 0.3s;
}

.linkqr a:hover {
  color:#f4bed8!important;
  transition: 0.3s;
}

.qr {
  width:130px;
  text-align:left;
}

@media (min-width: 992px) and (max-width: 1099px) {
  
  .datos2 {
    margin-top:-0.5rem!important;
  }

}

@media (min-width: 767.98px) and (max-width: 990.98px) {
 .bannerimg {
    background-image: url('../../assets/img/banner/banner-2.jpg');
 } 
 
 .banner2 {
    margin-top:1rem!important;
  }

  .datos2 {
    margin-top:-1rem!important;
  }

}

@media (max-width: 767.98px) {

  .bannerimg {
    background-image: url('../../assets/img/banner/banner-3.jpg');
  }

  .logo-banner {
     width:330px;
  }

  .banner2 {
    margin-top:0.7rem!important;
  }

  .txt-banner {
    width:400px;
    font-size:0.95rem;
  }

  .bannerqr {
    text-align:center!important;
  }

  .qr {
    width:100px;
  }

  .datos2 {
    margin-top:0rem!important;
  }

  .bannertel, .bannerqr {
    margin-top:0rem!important;
  }

  .bannertel {
    margin-left:-1rem!important;
  }

  .tel0800 a {
    font-size:2.0rem;
  }

  .dias {
    font-size:0.98rem!important;
  }

  .linkqr a {
    font-size:0.90rem!important;
  }

}

@media (max-width: 480px) {

  .bannerimg {
    background-image: url('../../assets/img/banner/banner-4.jpg');
  }

  .logo-banner {
     width:230px;
  }

  .tel0800 a {
    font-size:1.8rem;
  }

  .txt-banner {
    width:380px;
    line-height:1.7rem!important;
    font-size:0.85rem;
  }

  .tel0800 a {
    font-size:1.5rem;
  }

  .dias {
    font-size:0.90rem!important;
  }

  .linkqr a {
    font-size:0.70rem!important;
  }

  .bannertel {
    margin-left:-1rem!important;
    margin-top:1rem!important;
  }

}

@media (max-width: 360px) {

  .logo-banner {
     width:200px;
  }

  .txt-banner {
    font-size:0.70rem;
  }

  .tel0800 a {
    font-size:1.5rem;
  }

  .dias {
    font-size:0.70rem!important;
  }

  .linkqr a {
    font-size:0.25rem!important;
  }

  .bannertel {
    margin-left:-2rem!important;
  }

}

/*------------------------------------------
  Banner FERRING TE CUIDA
--------------------------------------------*/

 .bannerimg-1 {
  background-image: url('../../assets/img/banner-2/backg1.png');
  background-repeat: no-repeat;
  background-position: top center;
  width: 900px;
  height: 610px;
  margin: 0 auto;
  padding: 0;
  box-shadow: -1px 1px 7px 4px rgba(0, 0, 0, 0.1);
}

.logo-banner-1 {
  width:400px;
  margin: 0 auto;
  margin-top:3rem!important;
  margin-bottom:1rem!important;
}

.txt-banner-2 {
  width:700px;
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size:1.2rem;
  font-weight:400;
  color:#a7a9ac;
  text-align: center;
  margin-bottom: 0rem;
  margin-top: 2rem!important;
  line-height:1.7rem!important;
  margin: 0 auto;
}

.banner3 {
   margin-top:0rem!important;
}

.datos3 {
  margin-left:0rem!important;
  margin-top:-2rem!important;
}

.bannertel-2 {
  margin-top:3rem!important;
  text-align: center;
}

.tel2-0800 a {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size:4.0rem;
  font-weight:500!important;
  color:#7dba42!important;
  letter-spacing: 0.5rem;
  transition: 0.3s;
}

.tel2-0800 a:hover {
  color:#649332!important;
  transition: 0.3s;
}

.dias-2 {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size:1.5rem;
  letter-spacing: 0.1rem;
  color:#009de1!important;
  margin-top:-1rem!important;
}

.img-logo-1, .img-logo-2  {
    width: 100%;
    background: transparent!important;
    display: block;
    text-align:left;
    margin-left: 2rem;
    padding:0em;
    margin-bottom: 0px;
}

.img-logo-2  {
    text-align: right;
    margin-left: -2rem;
    
}

@media (min-width: 768px) and (max-width: 990.98px) {
  .bannerimg-1 {
      background-image: url('../../assets/img/banner-2/backg3.png');
  } 
  
  .img-logo-1, .img-logo-2  {
      margin-top: 1rem;
  }

}

@media (max-width: 767.98px) {

  .bannerimg-1 {
      background-image: url('../../assets/img/banner-2/backg3.png');
  } 

  .txt-banner-2 {
    font-size:1.0rem;
  }

  .tel2-0800 a {
    font-size:2.0rem;
    letter-spacing: 0.2rem;
  }

  .dias-2 {
    font-size:1.0rem;
    margin-top:0.1rem!important;
  }

  .bannertel-2 {
    margin-top:3rem!important;
    margin-left:-1rem;
  }

  .img-logo-1, .img-logo-2  {
      text-align:center!important;
      margin-top: 1rem;
      margin: 0 auto;
  }

}


@media (max-width: 531px) {
   .bannerimg-1 {
      background-image: url('../../assets/img/banner-2/backg3.png');
  } 

  .txt-banner-2 {
    font-size:0.85rem;
    line-height:0.90rem;
  }

  .tel2-0800 a {
    font-size:2.0rem;
    letter-spacing: 0.1rem;
    margin:0 auto!important;
  }

  .dias-2 {
    font-size:0.9rem;
    margin:0 auto!important;
  }

 .bannertel-2 {
    margin:0 auto;
    margin-top:2rem;
    margin-left:-0.65rem;
  }


}

@media (max-width: 360px) {
  .bannerimg-1 {
      background-image: url('../../assets/img/banner-2/backg6.png');
      background-repeat: no-repeat;
      background-position: top center;
      width: 360px;
      height: 710px;
  } 

  .tel2-0800 a {
    font-size:1.7rem;
    letter-spacing: 0.05rem;
    margin:0 auto!important;
  }

  .dias-2 {
    font-size:0.75rem;
    letter-spacing: 0rem;
    margin:0 auto!important;
  }
}

@media (min-width: 360px) and (max-width: 844px) {
  .bannerimg-1 {
      background-image: url('../../assets/img/banner-2/backg6.png');
      width: 360px;
      height: 720px
  } 
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .bannerimg-1 {
      background-image: url('../../assets/img/banner-2/backg2.png');
      width: 820px;
      height: 600px
  } 
}

@media (min-width: 992px) and (max-width: 1024px) {
  .bannerimg-1 {
      background-image: url('../../assets/img/banner-2/backg3a.png');
      width: 768px;
      height: 600px
  } 
}

@media (min-width: 768px) and (max-width: 844px) {
  .bannerimg-1 {
      background-image: url('../../assets/img/banner-2/backg3.png');
      width: 768px;
      height: 600px
  }

  .txt-banner-2 {
    font-size:1.0rem;
  }

  .tel2-0800 a {
    font-size:3.0rem;
    letter-spacing: 0.2rem;
  }

  .dias-2 {
    font-size:1.0rem;
    margin-top:0.1rem!important;
  }

  .bannertel-2 {
    margin-top:3rem!important;
    margin-left:-1rem;
  }

  .img-logo-1, .img-logo-2  {
      text-align:center!important;
      margin-top: 0.3rem;
      margin: 0 auto;
  } 
}






/*--------------------------------------------------------------
  Footer
--------------------------------------------------------------*/
footer {
  width: 100%;
  position: relative;
  min-height: 100%;
  left:0px;
  bottom: 0px;
  padding:1.5rem 0 1.5rem 0;
  background-color: #eef0ef;
}

#footer {
  color: #37423b;
  font-size: 14px;
}

/**************************************************/
.logo-ferring {
    width: 90%;
    display: block;
    background: transparent;
    text-align:center!important;
    padding:1em;
    margin-bottom: 0px;
  }

.img-legal {
    width: 100%;
    background: transparent!important;
    display: block;
    text-align:left;
    padding:0em;
    margin-bottom: 0px;
}

.card-footer {
    padding-top: 1rem;

}


/* Ajustes Footer modo responsive 
  ----------------------------------------*/

@media (max-width: 767.98px) {

   .img-legal {
      width: 80%;
      text-align: center;
      padding-top: 1.5rem;
      padding-left: 5rem;
      margin-bottom:0rem!important;
  }

  .footer-text {
      padding-top:1rem!important;
      padding-bottom:1rem!important;
  }

  .footer-text p {
      margin:0rem!important;
  }

  .logo-ferring {
      width: 85%;
      text-align: center;
      padding-top:0rem;
      padding-left: 5rem;
      padding-bottom:0.5rem ;
     
  }
}

@media only screen and (min-width:768px) and (max-width:1199px) {

  .img-legal {
      text-align: center;
      width: 100%;
      padding-top: 1.5rem;
      padding-bottom:1rem!important;
  }

.logo-ferring {
      width: 100%;
      text-align: center;
      padding-top:1rem;

  }

}

/*//////////////////////////////////////*/

.card {
  border:none;
  background-color:transparent;
}

.btn-link {
  color: #1d1d1b !important;
  font-size: 0.83rem; 
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-weight: 400;
  padding: 0 0em!important;
  border:none;
  text-decoration:underline;
  cursor: pointer;
  background-color:transparent;
}

.btn-link a {
    color: #1d1d1b !important;
    font-weight: 400;
    padding: 0em; 
    border:none;
    background-color:transparent;
}

.btn-link a:hover {
    color: #1d1d1b !important;
    text-decoration:underline;
    border:none;
    background-color:transparent;
  }

.avanter {
  text-decoration:none;
}

.texto-modal-legal {
     font-family: "Helvetica Neue LT Pro", sans-serif;
     font-weight: 400;
     font-size: 0.93rem;
}

.texto-modal {
    font-size: 0.93rem;
}


.texto-modal-politica {
    font-size: 0.8rem;
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-weight: 400;
}

.modal-lg { 
    max-width: 80% !important;          /* establece ancho caja del modal */
} 


/*---------------------------------------
  PÁGINA ERROR 404
----------------------------------------*/

.bg-error-cover {
  width: 100%;
  background-color: white;
  background-size: cover!important;
}

.bg-error-container {
  width: 100%;
  padding: 5rem;
  margin-top:4rem;
  color: #ffffff;
  text-align:center;
}

.bg-error-container .content{
  text-align: center;
}

.cardbody-error {
  border: 2px solid rgba(0, 136, 206);
  background-color: white;;
  border-bottom-left-radius:0rem;
  border-bottom-right-radius:0rem;
  padding: 3rem;
  margin-bottom:0rem;
} 

.content h2.error{
  font-size: 8vw;
  line-height: 1em;
  font-weight: 700;
  position: relative;
  margin-top: 1.5rem!important;
}

.content h2.header{
  font-size: 14vw;
  line-height: 1em;
  font-weight: 700;
  position: relative;
  margin-top: -2rem!important;
  margin-bottom:2rem!important;
}

.content h2.header:after{
  position: absolute;
  content: attr(data-text);
  top: 0;
  left: 0;
  right: 0;
  background: -webkit-repeating-linear-gradient(-45deg, #008FD2, #81CBD5, #EDB9D3, #EF8DB9, #81CBD5, #008FD2, #008FD2);
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.25);
  animation: animate 10s ease-in-out infinite;
}

.content h2.error:after{
  position: absolute;
  content: attr(data-text);
  top: 0rem!important;
  left: 0;
  right: 0;
  background: -webkit-repeating-linear-gradient(-45deg, #008FD2, #81CBD5, #EDB9D3, #EF8DB9, #81CBD5, #008FD2, #008FD2);
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.25);
  animation: animate 10s ease-in-out infinite;
}

@keyframes animate {
  0%{
    background-position: 0 0;
  }
  25%{
    background-position: 100% 0;
  }
  50%{
    background-position: 100% 100%;
  }
  75%{
    background-position: 0% 100%;
  }
  100%{
    background-position: 0% 0%;
  }
}
.content h4{
  font-size: 1.55em;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #37423b;
  position: relative;
}
.content h4:after{
  position: absolute;
  content: attr(data-text);
  top: 0;
  left: 0;
  right: 0;
  text-shadow: 1px 1px 2px rgba(255,255,255,0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content p{
  font-size: 1.2em;
  color: #0d0d0d;
}
.content .btns{
  margin: 25px 0;
  display: inline-flex;
}
.content .btns a{
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  border: 2px solid #008FD2;
  color: #ffffff;
  background: #008FD2;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 0px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.content .btns a:hover{
  background: #ffffff;
  color: #008FD2;
}

@media only screen and (min-width:768px) and (max-width:1199px) {
  .content h4{
    font-size: 1.3em;
  }

  .content h2.error{
    line-height: 1.3em;
  }

}

@media (max-width: 767.98px) {
  
  .content h4{
    font-size: 1.1em;
  }

  .content h2.header{
    font-size: 6.5rem;
  }

  .bg-error-container {
    width: 100%;
    padding: 3rem 2rem 2.5rem 2rem!important;
    margin-top:4rem;
    color: #ffffff;
    text-align:center;
  }

  .bg-error-container .content{
    text-align: center;
  }

  .cardbody-error {
    padding:3rem;
    margin-bottom:0rem;
  } 

  .content h2.error{
   font-size: 10vw;
   line-height: 2em;
   font-weight: 700;
   position: relative;
   margin-top: 1.5rem!important;
  }

 .content h2.header{
   font-size: 19vw;
   line-height: 1em;
   font-weight: 700;
   position: relative;
   margin-top: -2rem!important;
   margin-bottom:2rem!important;
  }

  .content p{
     font-size: 1.0em;
  }

  .content .btns a{
   margin: 0 10px;
   font-weight: 500;
   padding: 5px 20px;
   font-size: 0.9em;
  }

}

/*------------------------------------------
  PÁGINA EN MANTENIMIENTO
--------------------------------------------*/

.bg-repair-cover {
  width: 100%;
  background-color: #ffffff;
  background-size: cover!important;
}

.bg-repair-container {
  width: 100%;
  padding: 5rem;
  margin-top:4rem;
  color: #ffffff;
  text-align:center;
}

.bg-repair-container .content{
  text-align: center;
}

.logo img {
  max-height: 45px;
}

.cardbody-repair {
  border: 2px solid rgba(0, 136, 206);
  background-color: white;
  border-top-color: ;
  border-bottom-left-radius:0rem;
  border-bottom-right-radius:0rem;
  padding: 4 0 0rem 0rem!important;
  margin-bottom:0rem;
} 

.content h2.repair {
  font-size: 10vw;
  line-height: 1em;
  font-weight: 700;
  position: relative;
  margin-top: 1.5rem!important;
}

.txt-repair {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size:1.6rem;
  font-weight:500;
  color:#008FD2;
  text-align: center;
  margin-bottom: 1rem;
  margin-top:1rem;
  line-height:2.4rem!important;
}

p.txt-repair-1 {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size:1.5rem;
  font-weight:500;
  color:#ffffff;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  line-height:2.4rem!important;
}

.divisor {
    border-top: 2.5px solid #0088ce;
    margin-top:3rem;
    margin-right:0%;
}

.cardbody-repair-2 {
  border: 2px solid rgba(0, 136, 206);
  background-color: #0088ce;
  border-top-color: ;
  border-bottom-left-radius:0rem;
  border-bottom-right-radius:0rem;
  padding: 0 0 0rem 0rem!important;
  margin-bottom:0rem;
  margin-top:2rem;
} 


@media (max-width: 767.98px) {

  .bg-repair-container {
     width:100%!important;
     padding: 1rem;
     margin-top:6rem;
     color: #ffffff;
     text-align:center;

  }
  
  .logo-b img {
     width:80%!important;
  }

  .txt-repair {
    font-size:1.2rem;
    line-height:1.8rem!important;
  }

  p.txt-repair-1 {
    font-size:1.1rem;
    line-height:1.8rem!important;
  }

}

/* GEARS */

.cont-gear {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; 
}

.machine {
  width: 40vmin;
  fill: #0088ce; 
}

.small-shadow, .medium-shadow, .large-shadow {
  fill: rgba(0, 0, 0, 0.05); 
}

.small {
  -webkit-animation: counter-rotation 2.5s infinite linear;
     -moz-animation: counter-rotation 2.5s infinite linear;
       -o-animation: counter-rotation 2.5s infinite linear;
          animation: counter-rotation 2.5s infinite linear;
  -webkit-transform-origin: 100.136px 225.345px;
      -ms-transform-origin: 100.136px 225.345px;
          transform-origin: 100.136px 225.345px; 
}

.small-shadow {
  -webkit-animation: counter-rotation 2.5s infinite linear;
     -moz-animation: counter-rotation 2.5s infinite linear;
       -o-animation: counter-rotation 2.5s infinite linear;
          animation: counter-rotation 2.5s infinite linear;
  -webkit-transform-origin: 110.136px 235.345px;
      -ms-transform-origin: 110.136px 235.345px;
          transform-origin: 110.136px 235.345px; 
}

.medium {
  -webkit-animation: rotation 3.75s infinite linear;
     -moz-animation: rotation 3.75s infinite linear;
       -o-animation: rotation 3.75s infinite linear;
          animation: rotation 3.75s infinite linear;
  -webkit-transform-origin: 254.675px 379.447px;
      -ms-transform-origin: 254.675px 379.447px;
          transform-origin: 254.675px 379.447px; 
}

.medium-shadow {
  -webkit-animation: rotation 3.75s infinite linear;
     -moz-animation: rotation 3.75s infinite linear;
       -o-animation: rotation 3.75s infinite linear;
          animation: rotation 3.75s infinite linear;
  -webkit-transform-origin: 264.675px 389.447px;
      -ms-transform-origin: 264.675px 389.447px;
          transform-origin: 264.675px 389.447px; 
}

.large {
  -webkit-animation: counter-rotation 5s infinite linear;
     -moz-animation: counter-rotation 5s infinite linear;
       -o-animation: counter-rotation 5s infinite linear;
          animation: counter-rotation 5s infinite linear;
  -webkit-transform-origin: 461.37px 173.694px;
      -ms-transform-origin: 461.37px 173.694px;
          transform-origin: 461.37px 173.694px; 
}

.large-shadow {  
  -webkit-animation: counter-rotation 5s infinite linear;
     -moz-animation: counter-rotation 5s infinite linear;
       -o-animation: counter-rotation 5s infinite linear;
          animation: counter-rotation 5s infinite linear;
  -webkit-transform-origin: 471.37px 183.694px;
      -ms-transform-origin: 471.37px 183.694px;
          transform-origin: 471.37px 183.694px; 
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);
    }
    to   {-webkit-transform: rotate(359deg);
    }
}
@-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);
    }
    to   {-moz-transform: rotate(359deg);
    }
}
@-o-keyframes rotation {
    from {-o-transform: rotate(0deg);
    }
    to   {-o-transform: rotate(359deg);
    }
}
@keyframes rotation {
    from {transform: rotate(0deg);
    }
    to   {transform: rotate(359deg);
    }
}

@-webkit-keyframes counter-rotation {
    from {-webkit-transform: rotate(359deg);
    }
    to   {-webkit-transform: rotate(0deg);
    }
}
@-moz-keyframes counter-rotation {
    from {-moz-transform: rotate(359deg);
    }
    to   {-moz-transform: rotate(0deg);
    }
}
@-o-keyframes counter-rotation {
    from {-o-transform: rotate(359deg);
    }
    to   {-o-transform: rotate(0deg);
    }
}
@keyframes counter-rotation {
    from {transform: rotate(359deg);
    }
    to   {transform: rotate(0deg);
    }
}