/* 
 * Fonts
 */












/*
 * Body
 */
body {
  font-family: Locator, sans-serif;
  color: #212529;
}
a,
a:hover,
a:active,
a:visited {
  color: inherit;
  text-decoration: unset;
  white-space: nowrap;
}
img {
  image-rendering: -moz-crisp-edges;         /* Firefox */
  image-rendering:   -o-crisp-edges;         /* Opera */
  image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
}

/*
 * Colores
 */
.text-lrp-blue {
  color: #009fe3;
}
.text-black {
  color: #212529;
}
.text-black-dim {
  color: #5b5b5b;
}
.bg-lrp-blue {
  background-color: #009fe3;
}
.bg-gray {
  background-color: #ebebeb;
}

/*
 * Fuentes
 */
.fw-300 {
  font-weight: 300;
}
.fs-7 {
  font-size: 0.85rem;
}
.fs-8 {
  font-size: 0.65rem;
}

/*
 * Layout
 */
.my-2_5rem {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}


/*
 * Navbar
 */
.logo-header img {
  width: 250px !important;
}
.nav-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nav-link {
  position: relative;
  padding: 0 !important;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 auto;
  width: fit-content;
}
.nav-link.active {
  font-weight: 400;
}
.nav-link:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 0.5px;
  left: 50%;
  position: absolute;
  background: #212529;
  transition: width 0.4s ease 0s, left 0.4s ease 0s;
  width: 0;
}
.nav-link.active:after,
.nav-link:hover:after {
  width: 100%;
  left: 0;
}
/*
 * Toggler
 */
.custom-toggler {
  border: none !important;
  color: transparent !important;
}
.custom-toggler .navbar-toggler-icon {
  border: none !important;
  color: transparent !important;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 159, 227, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/*
 * Pasos
 */
@media (min-width: 768px) {
  #pasos .list-group-item.fw-bolder::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ebebeb;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}

/*
 * Form
 */
 .form-control {
   height: 3.75rem;
   border-radius: 0;
   border: 0;
   font-weight: 300;
 }
.form-label,
.form-check-label {
  font-weight: 300;
}
.form-check-label a,  
.form-label span.text-danger {
  font-weight: bold;
}
.form-check-input[type=checkbox] {
  width: 1.875rem;
  height: 1.875rem;
  margin-top: 0;
  margin-right: 1rem;
  margin-left: 0;
  border: 0;
  border-radius: 0;
  float: unset;
  transition: all ease .4s;
}
.form-check-input[type=checkbox]:checked {
  background-color: #009fe3;
  border-color: #009fe3;
}
.form-check-input[type=checkbox] + .form-check-label {
  line-height: 1.875rem;
  display: inline;
}
.btn-lrp-blue {
  color: white !important;
  background-color: #009fe3 !important;
  transition: all ease .4s;
  border-radius: 0;
  padding: 12px 45px;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  border: none;
}
.btn-lrp-blue:hover {
  color: #009fe3 !important;
  background-color: white !important;
  transition: all ease .4s;
}
.btn-lrp-white {
  background-color: white !important;
  border-radius: 0;
  color: #009fe3 !important;
  padding: 18px 45px;
  font-size: 1.3em;
  font-weight: bold;
  transition: all ease .4s;
  cursor: pointer;
  border: none;
}
.btn-lrp-white:hover {
  background-color: #009fe3 !important;
  color: white !important;
  transition: all ease .4s;
}

/*
 * Footer
 */
footer {
  padding-top: 30px;
  color: #fff;
  background-color: #009de0;
  text-align: center;
  padding-bottom: 30px;
}
.social-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  color: #009de0;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  text-align: center;
  line-height: 45px;
  border-radius: 50px;
  margin: 0px 10px;
  font-size: 1.5rem;
  transition: all ease .4s;
}
.social-icon:hover {
  transition: all ease .4s;
  color: #ffffff;
  background-color: #009de0;
}
.logo-footer img {
    width: 200px;
}

/*
 * Modal
 */
.modal-content {
  border-radius: 10px;
}
.modal-close {
  position: absolute;
  right: 1rem;
  top: 0.4rem;
  z-index: 1;
  cursor: pointer;
}
.modal-body::-webkit-scrollbar{
  width: 8px;
  height: 8px;
}
.modal-body::-webkit-scrollbar-thumb  {
  background: #009de0;
  border-radius: 4px;
}
.modal-body::-webkit-scrollbar-thumb:active {
  background-color: #009de0;
}
.modal-body::-webkit-scrollbar-thumb:hover {
  background: #009de0;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
.modal-body::-webkit-scrollbar-track{
  background: #fafafa;
  border-radius: 4px;
}
.modal-body::-webkit-scrollbar-track:hover, 
.modal-body::-webkit-scrollbar-track:active {
  background: #fafafa;
}