/*! HTML5 Boilerplate v7.3.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  scroll-behavior: smooth !important;
  list-style: none;
  overflow-x: hidden;
  position: relative;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* #region  Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700;900&display=swap');
/* #endregion */



:root {
  --fuentePrincipal: 'Nunito Sans', sans-serif;
  --colorPrincipal: rgb(0, 45, 114);
  --colorSecundario: rgb(0, 156, 222);
  --colorTerciario: rgb(252, 76, 2);
}

/* #region   Header */
.hero {
  background-image: url("../img/hero1.jpg");
  background-repeat: no-repeat;
  width: 100%;
  height: 50vh;
}



body {
  background-color: white;
  overflow-x: hidden;
  position: relative;
}


main {
  margin-bottom: 200%
}

.flecha i {
  color: var(--colorTerciario);
  font-size: 4rem;
  margin-left: 2rem;

  animation-duration: 0.6s;
  animation-name: flecha;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@media only screen and (min-width: 992px) {
  .flecha i {
    font-size: 4.5rem;
  }
}

@keyframes flecha {
  from {
    margin-top: -1rem;
  }

  to {
    margin-top: 0rem;
  }
}


/* #region  Menu mobile */

#floating-menu {
  cursor: pointer;
}

#floating-icon {
  overflow: hidden;
  position: fixed;
  z-index: 99999;
  bottom: 15px;
  right: 15px;
  background-color: var(--colorTerciario);
  width: 40px;
  height: 40px;
  border-radius: 25px;
}

#floating-icon span {
  display: block;
  width: 5px;
  height: 5px;
  background-color: #fff;
  margin: 0 auto;
  margin-bottom: 5px;
  border-radius: 50px;
}

#floating-ligar,
#floating-whatsapp,
#floating-emergencia {
  display: none;
  overflow: hidden;
  position: fixed;
  z-index: 99998;
  width: 40px;
  height: 40px;
  border-radius: 25px;
  color: #fff;
  font-size: 20px;
}

#floating-ligar {
  right: 20px;
  bottom: 20px;
  background-color: var(--colorTerciario);
  -webkit-animation: slide-ligar .75s forwards;
  -webkit-animation-delay: .75s;
  animation: slide-ligar .75s forwards;
  animation-delay: .75s;
}

#floating-icon,
#floating-ligar,
#floating-whatsapp,
#floating-emergencia {
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
}

@-webkit-keyframes slide-ligar {
  0% {
    right: 20px;
    bottom: 20px;
  }

  100% {
    right: 20px;
    bottom: 100px;
  }
}

@keyframes slide-ligar {
  0% {
    right: 20px;
    bottom: 20px;
  }

  100% {
    right: 20px;
    bottom: 100px;
  }
}

#floating-whatsapp {
  right: 20px;
  bottom: 20px;
  background-color: var(--colorTerciario);
  -webkit-animation: slide-whatsapp .75s forwards;
  -webkit-animation-delay: .75s;
  animation: slide-whatsapp .75s forwards;
  animation-delay: .75s;
}

@-webkit-keyframes slide-whatsapp {
  0% {
    right: 20px;
    bottom: 20px;
  }

  100% {
    right: 70px;
    bottom: 70px;
  }
}

@keyframes slide-whatsapp {
  0% {
    right: 20px;
    bottom: 20px;
  }

  100% {
    right: 70px;
    bottom: 70px;
  }
}

#floating-emergencia {
  right: 20px;
  bottom: 20px;
  background-color: var(--colorTerciario);
  -webkit-animation: slide-emergencia .75s forwards;
  -webkit-animation-delay: .75s;
  animation: slide-emergencia .75s forwards;
  animation-delay: .75s;
}

@-webkit-keyframes slide-emergencia {
  0% {
    right: 20px;
    bottom: 20px;
  }

  100% {
    right: 100px;
    bottom: 20px;
  }
}

@keyframes slide-emergencia {
  0% {
    right: 20px;
    bottom: 20px;
  }

  100% {
    right: 100px;
    bottom: 20px;
  }
}

#floating-menu i {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 auto;
  margin-right: 0.7rem;
  margin-top: 9px;
  font-size: 1.4rem;
}

#floating-emergencia .fa-handshake {
  margin-right: 0.8rem;
}

#floating-ligar .fa-address-book {
  margin-right: 0.55rem;
  margin-top: 9px;
}

#floating-menu a {
  color: #fff;
}


@media only screen and (min-width: 968px) {
  .nav-flotante {
    display: none;
  }
}

/* #endregion */

.logo {
  display: none;
}

.navegacion-principal nav {
  display: none;
}

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

  #rc-imageselect,
  .g-recaptcha {
    transform: scale(0.71);
    -webkit-transform: scale(0.71);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}


.navbar-brand {
  background-color: white;
  padding: 0.85rem;
}

.barra {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(90deg, rgba(0, 45, 114, 0.9248074229691877) 0%, rgba(0, 45, 114, 0.9248074229691877) 7%, rgba(0, 45, 114, 0.9248074229691877) 7%);
  background: -webkit-linear-gradient(90deg, rgba(0, 45, 114, 0.9248074229691877) 0%, rgba(0, 45, 114, 0.9248074229691877) 7%, rgba(0, 45, 114, 0.9248074229691877) 7%);
  background: linear-gradient(90deg, rgba(0, 45, 114, 0.9248074229691877) 0%, rgba(0, 45, 114, 0.9248074229691877) 7%, rgba(0, 45, 114, 0.9248074229691877) 7%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#002d72", GradientType=1);

  padding: 0 !important;
}



.barra .collapse ul li a {
  text-decoration: none;
  color: white;
  font-family: var(--fuentePrincipal);
  font-size: 1.2rem;
}

.barra .collapse {
  margin-left: 2rem;
}

.datos-enviar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn-envio {
  width: 100%;
}



.texto {
  vertical-align: middle;
  text-align: center;
  flex: 0 0 calc(45% - 2rem);
  margin-left: -4.5rem;
  padding-top: 2rem;
}

.texto h1,
.texto h2 {
  font-family: var(--fuentePrincipal);
  margin-left: 5rem;
  color: white;
}

.texto h1 {
  font-weight: 800;
  letter-spacing: 1.8px;
  font-size: 2rem;
}

.flex-hero .texto h2 {
  font-size: 1.5rem;
  padding-top: 2rem;
}

.servicios h2 {
  font-weight: 700;
  color: rgb(71, 71, 68);
}

.card .card-body hr {
  margin: 1rem auto;
  height: 1px;
  color: rgba(252, 77, 2, 0.5);
  background-color: rgba(252, 77, 2, 0.5);
  border: none;
  width: 50%;
}

.card .card-body:hover hr {

  animation-name: carta;
  animation-duration: 2s;
  animation-fill-mode: forwards;

}

@keyframes carta {
  33% {
    width: 50%;
  }

  66% {
    width: 100%;
  }

  100% {
    width: 50%;
  }
}

.card img {
  width: 286px;
  height: 191px;
}


@media only screen and (min-width: 992px) {

  .datos-enviar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }

  .btn-envio {
    width: 50%;
  }


  .texto {
    padding-top: 7rem;
    min-width: 100%;
  }

  .texto h1 {
    font-size: 3.5rem;
  }

  .flex-hero .texto h2 {
    font-size: 2.4rem;
  }



  .navegacion-principal nav {
    padding-top: 1.5rem;
    width: 47%;
    display: flex;
    justify-content: space-around;
  }

  .flex-hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }


  .texto {
    margin-left: -7rem;
  }

  .logo {
    flex: 0 0 calc(54% - 8rem);
  }
}

@media only screen and (min-width: 968px) {

  .navegacion-principal nav span {
    margin: 10px -85px 1px -85px;
    border-left: 1px solid white;
    height: 1.6rem;
    vertical-align: middle;
    filter: opacity(0.75);
  }


  .navegacion-principal {
    display: block;
  }


  .navegacion-principal nav a {
    text-decoration: none;
    color: white;
    font-family: var(--fuentePrincipal);
    margin-top: 0.5rem;
    font-size: 1.5vw;
    display: block;
    text-align: center;
  }



  .navegacion-principal nav a:nth-child(1):hover::after {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    max-width: 5.62%;
    background-color: var(--colorTerciario);
    animation-duration: 4s;
    animation-name: slidein;
    animation-fill-mode: forwards;
  }

  .navegacion-principal nav a:nth-child(3):hover::after {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    max-width: 8.62%;
    background-color: var(--colorTerciario);
    animation-duration: 4s;
    animation-name: slidein;
    animation-fill-mode: forwards;
  }

  .navegacion-principal nav a:nth-child(5):hover::after {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    max-width: 5.18%;
    background-color: var(--colorTerciario);
    animation-duration: 4s;
    animation-name: slidein;
    animation-fill-mode: forwards;
  }

  @keyframes slidein {
    from {
      width: 0%;
    }

    to {
      width: 100%;
    }
  }

  .menu-flotante {
    visibility: hidden !important;
  }


  .hero {
    background-image: url("../img/hero1.jpg");
    background-repeat: no-repeat;
    background-size: 50% 100%;
    height: 75vh;
    max-height: 89vh;
  }

  .logo-exterior {
    display: none;
  }

  .logo {
    display: block;
    max-width: 36%;
  }


}

.logo-interior {
  display: none;
}

@media only screen and (min-width: 1000px) {
  .hero {
    width: 100%;
    height: 80vh;
  }

  .texto {
    padding-top: 7rem;
    min-width: 50%;
  }

}


@media only screen and (min-width: 1200px) {
  .hero {
    width: 100%;
    height: 100vh;
  }

}


@media only screen and (min-width: 1600px) {
  .hero {
    width: 100%;
    height: 100vh;

  }

}

@media only screen and (min-width: 2000px) {
  .hero {
    width: 100%;
    max-height: 80vh;
    height: 100vh;
  }

}







@media only screen and (min-width: 968px) {
  .texto h1 {
    font-weight: 800;
    letter-spacing: 1.8px;
    font-size: 3vw;
  }

  .flex-hero .texto h2 {
    margin-top: 4rem;
    font-size: 2.5vw;
  }

}


.servicios {
  margin-top: 1.2rem;
  text-align: center;
}


/* #region  Asesor Herbalife */

.logo-herbalife img {
  max-width: 55%;
  margin-left: -1.8rem;
}


/* #endregion */



.tooltip-inner {
  background-color: var(--colorPrincipal);
  color: white;
}

li p .tooltip-lista {
  outline: none;
  border: none;
  background-color: white;
}

.servicios h2 {
  padding: 1rem;
  text-align: center;
  font-family: var(--fuentePrincipal);
}


.soporte {
  padding: 2rem;
  color: white;
  font-size: 1.14rem;
  background: rgb(0, 45, 114);
  background: linear-gradient(90deg, rgba(0, 45, 114, 1) 0%, rgba(0, 45, 114, 1) 47%, rgba(0, 156, 222, 1) 100%);
}

.soporte .form-group label {
  padding-top: 0.8rem;
}

.soporte span {
  color: var(--colorTerciario);
}

.form-control:focus,
.custom-select:focus {
  box-shadow: 0 0 2px 2px rgba(252, 77, 2, 0.849) !important;
}

.form-check input[type=checkbox] {
  transform: scale(1.5);
}

.habeas {
  white-space: nowrap;
  margin-left: 0.5rem;
  color: white !important;
  font-family: var(--fuentePrincipal);
}

#companies a {
  color: #000;
}

.companies li {
  list-style-type: none;
}

.companies li i {
  color: var(--colorTerciario);
  font-size: 1.2rem;
}

.companies li a {
  font-size: 1.15rem;
  color: #000000;
}

.company {
  transition: 0.3s;
}

.company:hover {
  background-color: rgb(156, 213, 238);
}


.form-check .habeas-data a {
  text-decoration: underline;
  color: white !important;
  font-family: var(--fuentePrincipal);
}

.privacy::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bolder;
  content: "\f105";
  color: var(--colorTerciario);
  position: absolute;
  left: 7px;
  animation: arrowAnim 2s infinite;
  -moz-animation: arrowAnim 2s infinite;
  -webkit-animation: arrowAnim 2s infinite;
}

@keyframes arrowAnim {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0.75em, 0);
  }

  100% {
    transform: translate(0, 0);
  }
}

.modal-title {
  color: rgb(56, 56, 56);
}

.fa-exclamation-circle {
  display: inline-block;
  font-size: 1.4rem;
  margin-right: 0.2rem;
  color: var(--colorTerciario);
}

.modal-body {
  color: rgb(56, 56, 56);
}

.form-input {
  order: 1;
}

@media only screen and (min-width: 575px) {
  .form-input {
    order: -1;
  }
}


.requeridos {
  color: rgb(216, 216, 216);
  font-size: 1rem;
}

.informacion-form::after {
  content: '';
  display: inline-block;
  width: 50%;
  height: 2px;
  background-color: white;
  transition: all 0.5s ease-in-out;
}

.btn-envio button {
  font-size: 1.1rem;
}

.descripcion textarea {
  font-size: 1.1rem;
  color: rgb(48, 48, 48) !important;
  outline-color: var(--colorTerciario) !important;
}

.informacion-form:hover::after {
  width: 80%;
  background-color: var(--colorTerciario);
}

.cartas {
  display: flex;
  justify-content: space-evenly;
}

.card {
  width: 18rem;
  -webkit-box-shadow: 10px 10px 19px -6px rgba(0, 0, 0, 0.50);
  -moz-box-shadow: 10px 10px 19px -6px rgba(0, 0, 0, 0.50);
  box-shadow: 10px 10px 19px -6px rgba(0, 0, 0, 0.50);
  margin-bottom: 2rem;
}

p {
  margin: 0;
}

.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nutricion .fa-info-circle {
  float: right;
}



.card .card-body li p {
  margin-bottom: 2px;
  text-align: left;
  padding-bottom: 0.3rem;
  font-size: 0.92rem;
}

.card-body li p i {
  font-size: 1.25rem;
  vertical-align: middle;
  text-align: center;
  color: var(--colorPrincipal);
}

.logo-footer img {
  width: 10rem;
  background-color: white;
}

.logo-footer {
  padding-bottom: 2rem;
}

.respuesta-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}


.contenedor-footer {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 39%, rgba(0, 45, 114, 0.9248074229691877) 39%);
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 39%, rgba(0, 45, 114, 0.9248074229691877) 39%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 39%, rgba(0, 45, 114, 0.9248074229691877) 39%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#002d72", GradientType=1);

}

@media only screen and (min-width: 765px) {
  .contenedor-footer {
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(0, 45, 114, 0.9248074229691877) 0%);
    background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(0, 45, 114, 0.9248074229691877) 0%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(0, 45, 114, 0.9248074229691877) 0%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#002d72", GradientType=1);
  }
}


.info-footer {
  display: block;
  text-align: center;
}

.atencion p {
  margin-top: -0.7rem;
}


.lineas-atencion i {
  color: white;
  font-size: 2rem;
}

.atencion p a {
  text-decoration: underline;
  text-decoration-color: white;
  color: white;
}

@media only screen and (min-width: 768px) {
  .info-footer {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .texto h1 {
    font-size: 4rem;
  }

  .flex-hero .texto h2 {
    font-size: 2.5rem;
  }



  .logo-footer,
  .lineas-atencion,
  .info-footer {
    padding-bottom: 0rem;
  }
}


.fa-instagram,
.fa-facebook-square {
  padding-top: 2rem;
}

@media only screen and (min-width: 992px) {

  .fa-instagram,
  .fa-facebook-square {
    padding-top: 0rem;
  }

  .texto {
    margin-bottom: 2rem;
  }




  .atencion .fa-whatsapp {
    padding-bottom: 0.365rem;
  }
}

.info-footer h3,
.info-footer p {
  color: white;
  font-family: var(--fuentePrincipal);
}

.lineas-atencion p,
.correo p {
  margin: 0em;
  font-size: 1.4rem;
  text-align: center;
}

.linea a{
  color: white;
  text-decoration: underline;
}

.lineas-atencion p i {
  font-size: 1.5rem;
  vertical-align: middle;
  margin-top: 0rem;
}

.linea::before {
  display: none;
}


.efecto:hover .linea::before {
  background-color: var(--colorTerciario);
}



.lineas-atencion i,
.correo i {
  margin-right: 1rem;
  margin-bottom: 1.3rem;
}

.efecto h3 {
  margin-bottom: 1.2rem;
  margin-bottom: 1rem;
}

.info-footer .efecto .email {
  margin: 0;
}


.correo p {
  padding-bottom: 1.5rem;
  font-size: 1.5rem;
}


@media only screen and (max-width:768px) {
  .correo p {
    padding-bottom: 2.95rem;
  }

  .correo {
    margin-top: 1rem;
  }
}

@media only screen and (min-width: 992px) {
  .linea::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.5s ease-in-out;
  }

  .lineas-atencion i,
  .correo i {
    margin-right: 1rem;
    margin-bottom: 0rem;
  }

  .efecto h3 {
    margin: 0;
  }


}


.mensaje-exitoso .btn-regresar {
  margin-top: 3rem;
}

.mensaje-exitoso {
  padding-top: 2rem;
  display: flex;
  text-align: center;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}




.contenedor-aliados {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.aliado {
  padding: 2.1rem;
  max-width: 100%;

}


.contenedor-aliados .aliado img {
  max-width: 65%;
}

.separador-deco{
  max-width: 30vw;
}


@media only screen and (min-width: 768px) {
  .contenedor-aliados {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
  }

  .separador-deco{
    max-width: 7.3vw;
  }


  .texto h1 {
    font-size: 2.4rem;

  }

  .flex-hero .texto h2 {
    font-size: 2rem;
  }

  .aliado {
    flex: 1 1 calc(20% - 1rem);
  }

  .aliados .contenedor-aliados .sura {
    max-height: 10vh;
    max-width: 19vw;
  }

  .aliados .contenedor-aliados .emi {
    max-width: 15vw;
  }

  .aliados .contenedor-aliados .sbs {
    max-height: 8vh;
    max-width: 15vw;
  }

  .aliados .contenedor-aliados .bolivar {
    max-height: 12vh;
    max-width: 18.5vw;
  }

  .aliados .contenedor-aliados .skandia {
    max-height: 10vh;
    max-width: 18vw;
  }

  .contenedor-aliados .aliado .allianz {
    max-width: 12rem;
  }

  .contenedor-aliados .aliado .equidad {
    max-height: 2vh;
  }

  @media only screen and (min-width: 992px) {
    .contenedor-aliados .aliado .equidad {
      max-height: 18vh;
    }

  }



}

.aliados {
  margin: 1rem;
}


.contenedor-aliados {
  text-align: center;
  margin: 0 auto;
}


.aliados h2 {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--fuentePrincipal);
  font-weight: 700;
  color: rgb(71, 71, 68);
}

.modal-body {
  font-size: 0.9rem;
}

.soporte .row .ml-4 {
  margin-left: 0 !important;
}


/** ======================================================================= **/



/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {

  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " ("attr(href) ")";
  }

  abbr[title]:after {
    content: " ("attr(title) ")";
  }

  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}



main {
  margin-bottom: 200%
}