/* ------------------------------------------------------------------------------------------ */
/* IMPORTS */
/* ------------------------------------------------------------------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Changa:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Changa:wght@300&family=Roboto+Slab:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&family=Kanit:ital,wght@1,900&family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&family=Kanit:ital,wght@1,900&family=Mulish:wght@700;800&family=VT323&display=swap');
/* ------------------------------------------------------------------------------------------ */
/* SETUP */
/* ------------------------------------------------------------------------------------------ */

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  user-select: none;
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer */
  -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
  -webkit-user-select: none; /* Chrome, Safari, and Opera */
  -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}

body {
  font-family: 'Fira Sans', sans-serif;
  background: rgb(241 241 241);
  /*background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(29,40,116,1) 0%, rgba(52,64,179,1) 67%);*/
}

h1 {
  font-family: 'Mulish', sans-serif;
  font-weight:300;
  letter-spacing: 2px;
  font-size:2.7em;
  text-transform: uppercase;
}

h2{
  font-family: 'Mulish', sans-serif;
  letter-spacing: 2px;
  font-size:2em;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
}

h3{
  font-family: 'Mulish', serif;
  letter-spacing: 2px;
  font-size:1em;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
}

a{
  text-decoration: none;
}

ul,ol, li{
  list-style: none;
}

p {
  font-family: 'Fira Sans', sans-serif;
  letter-spacing: 1px;
  font-size:14px;
  color: #333333;
}

section{
  width: 100%;
}

input::placeholder {
  font-size: 1.2em;
  font-style: italic;
}

/* ------------------------------------------------------------------------------------------ */
/* Elements */
/* ------------------------------------------------------------------------------------------ */

.rowCustom{
  background: white;
  border-radius: 30px;
  box-shadow: 12px 12px 12px rgb(7, 7, 7);
}

.img{
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.title{
  margin: 2rem 0rem;
  text-align:center;
  color:rgb(0, 0, 0);
  font-size: 2rem;
}

.logo {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}

.button {
  border: 0;
  outline: none;
  border-radius: 10px;
  padding: 15px 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #FFBA00;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.48);
  color: #000000;
  margin: auto;
  transition: all 0.5s ease;
  appearance: none;
  -webkit-appearance: none;
}
.button:hover, .button:focus {
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, #FFBA00 0%, #ffd256 67%);
}

.btnSection{
  height:80px;
  cursor: pointer;
  text-align: center;
  border: 0;
  outline: none;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #FFBA00;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.48);
  color: #000000;
  margin: 0.1em;
  transition: all 0.5s ease;
  appearance: none;
  -webkit-appearance: none;
}

.btnSection:hover {
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, #ffd665 0%, #fae4a6 67%);
}


/*Flexbox for containers*/
.flex { 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}




/*Logo */

.logo-div{
  text-align:center;
  margin-top: 5rem;
}

.logo-header img, .logo-footer img {
height: auto;
width: 100%;
max-width: 240px;
}


/* ------------------------------------------------------------------------------------------ */
/* Nav Bar  */
/* ------------------------------------------------------------------------------------------ */

.custom-toggler.navbar-toggler {
  border: none;
  width: 2em;
}

navbar-toggler-icon{
  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='rgb(0,0,0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}


.navlink{
    position: relative;
    display: block;
    padding: 4px 0;
    font-family: Lato, sans-serif;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    font-size: 1.2rem;
}
.navlink::after {
      position: absolute;
      content: "";
      top: 100%;
      left: 0;
      width: 70%;
      height: 3px;
      background: rgb(0, 0, 0);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.5s;
      font-size: 1.2rem;
}

.navlink:hover {
    color: rgb(255, 255, 255);
}

.navlink:hover::after {
      transform: scaleX(1);
      transform-origin: left;
}

.btnNav{
  border: none;
  background: transparent;
}




/*
 * MENU BUTTON
 */
 @import url("https://fonts.googleapis.com/css?family=K2D");
 .menu__toggler {
   position: absolute;
   top: 20px;
   left: 20px;
   z-index: 999;
   height: 28px;
   width: 28px;
   outline: none;
   cursor: pointer;
   display: flex;
   align-items: center;
 }
 .menu__toggler span,
 .menu__toggler span::before,
 .menu__toggler span::after {
   position: absolute;
   content: "";
   width: 28px;
   height: 2.5px;
   background: #000000;
   border-radius: 20px;
   transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
 }
 .menu__toggler span::before {
   top: -8px;
 }
 .menu__toggler span::after {
   top: 8px;
 }
 .menu__toggler.active > span {
   background: transparent;
 }
 .menu__toggler.active > span::before, .menu__toggler.active > span::after {
   background: #ffffff;
   top: 0px;
 }
 .menu__toggler.active > span::before {
   transform: rotate(-225deg);
 }
 .menu__toggler.active > span::after {
   transform: rotate(225deg);
 }
 
 /*
  * SLIDING MENU PANEL
  */
 .menu {
   position: absolute;
   left: -35%;
   top: -3px;
   z-index: 998;
   color: #005c9c;
   background: #ffbb00ec;
   -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
           clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
   width: 30%;
   height: 130vh;
   padding: 100px 10px 100px 10px;
   flex-direction: column;
   justify-content: center;
   transition: 300ms left cubic-bezier(0.77, 0, 0.175, 1);
 }

 .menu_user{
   margin: 2em;
 }

 @media only screen and (max-width: 600px) {
   .menu {
     width: 280px;
     left: -300px;
     padding: 80px 10px 50px 0px;
     height: 180vh;
   }
 }
 .menu.active {
   left: -12px;
 }
 .menu p {
   font-size: 1.4rem;
   margin-bottom: 1rem;
 }





/* ------------------------------------------------------------------------------------------ */
/* Form Styles  */
/* ------------------------------------------------------------------------------------------ */

.form__login{
  margin: 2em;
  padding: 1rem;
  background: rgb(224, 224, 224);
  border-radius: 20px;
  justify-content: center;
} 

.form__solicitud, .pago{
    margin: 2em;
    padding: 1rem;
    background: rgb(224, 224, 224);
    border-radius: 20px;
    text-align: left;
    min-height: 500px;
}

.pago {
  text-align: center;
  box-shadow: 12px 12px  12px rgb(7, 7, 7);
}

.pago__title {
  margin: 3rem 0rem 3rem 0rem;
  font-size: 1.4em;
  color: rgb(53, 53, 53);
  line-height: 2em;
}

#codigo_permiso{
  color: black;
}

.registro{
  font-family: 'Mulish', sans-serif;
  letter-spacing: 2px;
  font-size:1em;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  margin: 1rem 0rem;
}

.form__title{
  margin: 3rem 0rem 1rem 0rem;
}

.form-label{
  color: rgb(0, 0, 0);
}

.form-control{
  margin-top: 3px;
  margin-bottom: 5px;
  padding: 1.375rem 1.75rem;
}

.form-check{
  padding-left: 2em;
  margin: 10em 0 1em 0;
}

.form-check-label{
  color: rgb(0, 0, 0);
}

.form-check-input {
  margin: 0;
}

#administrative_area_level_1-input{
  margin-right: 4px;
}

.btn1{
  border: none;
  outline: none;
  height: 50px;
  background-color: black;
  color: white;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
}

.btn1:hover{
  background: white;
  border: 1px solid;
  color: black;
}


/* ------------------------------------------------------------------------------------------ */
/* Google Maps */
/* ------------------------------------------------------------------------------------------ */

.sb-title {
  position: relative;
  font-weight: 500;
}

.sb-title-icon {
  position: relative;
  top: -5px;
}

.card-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.half-input-container {
  display: flex;
  justify-content: space-between;
}

.half-input {
  max-width: 120px;
}

.map {
  height: 250px;
  min-width: 300px;
  width: 100%;
  margin: 1rem;
}


.button-cta {
height: 40px;
width: 40%;
background: #3367d6;
color: white;
font-size: 15px;
text-transform: uppercase;
font-family: Roboto, sans-serif;
border: 0;
border-radius: 3px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.48);
cursor: pointer;
}


/* ------------------------------------------------------------------------------------------ */
/* Manejo de formularios*/
/* ------------------------------------------------------------------------------------------ */
#div_pago{
  display: none;
}

#div_solicitudRechazada{
  display: none;
}

.customInput {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .375rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.errormsg {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: .875em;
  color: #dc3545;
}

.validmsg {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: .875em;
  color: #198754;
}

.correo-container {
  position: relative;
  top: -16px;
}

.input-container {
  position: relative;
  top: 25px;
}

.autorizacion-container {
  position: relative;
  top: 60px;
}

#invalid-pass {
  transform: translateY(75px);
}

#passMatch {
  transform: translateY(80px);
}

/* ------------------------------------------------------------------------------------------ */
/* Permisos  */
/* ------------------------------------------------------------------------------------------ */
#permisos_wrapper{
  margin: 3em;
}

#seguridad_permisos_wrapper{
  margin: 3em;
}

#seguridad_permisos {
  display: none;
}

.icon_success{
  font-size: 3em;
  transform: translateY(15px);
}

.icon_success_ingreso{
  font-size: 20em;
  transform: translateY(15px);
}


/* ------------------------------------------------------------------------------------------ */
/* Media Querys */
/* ------------------------------------------------------------------------------------------ */

@media only screen and (min-width: 1024px) {
  .form__solicitud{
    width: 70%;
  }
}

/* ------------------------------------------------------------------------------------------ */
/* Special Icons */
/* ------------------------------------------------------------------------------------------ */

#refresh{
  cursor:pointer;
}

.main-wrapper {
  border-radius: 4px;
  background-color: white;
  padding: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  position: relative;
}

i.material-icons {
  font-size: 1.5rem;
  color: white;
  position: relative;
  border-radius: 50%;
  padding: 10px;
  margin: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.3s ease;
}

i.material-icons:after {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 2px;
  transform: scale(0.8);
  position: absolute;
  top: -2px;
  left: -2px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

i.material-icons:hover:after {
  transform: scale(1);
  box-shadow: 10px 0 20px rgba(0, 0, 0, 0.19), 6px 0 6px rgba(0, 0, 0, 0.23);
}

i.material-icons:nth-of-type(4) {
  background-color: #88b999;
}

i.material-icons:nth-of-type(4):hover {
  color: #88b999;
}

i.material-icons:nth-of-type(4):after {
  border-color: #88b999;
}

i.material-icons:nth-of-type(5) {
  background-color: #88b2b9;
}

i.material-icons:nth-of-type(5):hover {
  color: #88b2b9;
}

i.material-icons:nth-of-type(5):after {
  border-color: #88b2b9;
}

i.material-icons:nth-of-type(6) {
  background-color: #8897b9;
}

i.material-icons:nth-of-type(6):hover {
  color: #8897b9;
}

i.material-icons:nth-of-type(6):after {
  border-color: #8897b9;
}

i.material-icons:nth-of-type(7) {
  background-color: #af88b9;
}

i.material-icons:nth-of-type(7):hover {
  color: #af88b9;
}

i.material-icons:nth-of-type(7):after {
  border-color: #af88b9;
}

i.material-icons:nth-of-type(8) {
  background-color: #d59acb;
}

i.material-icons:nth-of-type(8):hover {
  color: #d59acb;
}

i.material-icons:nth-of-type(8):after {
  border-color: #d59acb;
}

i.material-icons:nth-of-type(1) {
  background-color: #cd8484;
}

i.material-icons:nth-of-type(1):hover {
  color: #cd8484;
}

i.material-icons:nth-of-type(1):after {
  border-color: #cd8484;
}

i.material-icons:nth-of-type(2) {
  background-color: #ec9f83;
}

i.material-icons:nth-of-type(2):hover {
  color: #ec9f83;
}

i.material-icons:nth-of-type(2):after {
  border-color: #ec9f83;
}

i.material-icons:nth-of-type(3) {
  background-color: #cdb274;
}

i.material-icons:nth-of-type(3):hover {
  color: #cdb274;
}

i.material-icons:nth-of-type(3):after {
  border-color: #cdb274;
}

i.material-icons:hover {
  background-color: transparent;
  transform: rotate(90deg);
  cursor: pointer;
  box-shadow: none;
}

@media (min-width:601px) {
i.material-icons {
  padding:10px;
  margin:5px;
  font-size:1.5rem;
}
}


i.material-icons:after {
  border-width:3px;
  top:-3px;
  left:-3px;
}

/*PRELOADER*/

.preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  background-color: #0000003b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s ease;
  opacity: 0;
  visibility: hidden;
}

.fade-in-animation {
  opacity: 1;
  visibility: visible;
}

/*PASSWORD EYE*/

.password-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.passw {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  bottom: 8px;
  padding: 2rem 1.75rem;
}

.pass-repeat {
  transform: translateY(65px);
}

.eye-icon {
  position: absolute;
  height: 60%;
  top: 100%;
  right: 40px;
  transform: translateY(-10%);
  opacity: 0.5;
  cursor: pointer;
}

.eye-icon:hover {
  opacity: 1;
}
