/* 
===================================
Uso del template

Aqui necesitamos crear las variables de neustro proyecto en especifico, colores, botones, backgrounds, tamaños de fuentes, que cambian muy a menudo
en todos nuestros proyectos

Importar fuentes
Crear Variables
Crear Helpers de Colores y Backgrounds
Crear Componentes con variables creadas
====================================== */
/* ===================================
    Google font
====================================== */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700&family=Work+Sans:wght@400;500;600;700&display=swap");

/* ===================================
    Variables
====================================== */
:root,
.dark-mode {
  --gradient-light-blue: linear-gradient(90deg, #308AF8 1.67%, #61B7E4 100%);
  --gradient-dark-blue: linear-gradient(89.83deg, #252C5F 0.15%, #264589 99.9%);
  --gradient-light-green: linear-gradient(90deg, #9F4EEF 0%, #149BDF 100%);
  --dark-blue: #1A202A;
  --dark-blue-alt: #1A202A;
  --light-blue: #61B7E4;
  --light-green: #9F4EEF;
  --golden: #61B7E4;
  --white: #FFFFFF;
  --white-alt: white;
  --light-grey: #F3F3F3;
  --controls-grey: #B6B6B6;
  --dark-grey: #2B3341;
  --dark-grey-alt: #2B3341;
  --error: #FF5B82;
  --ok: #48C172;
  --main-font: "Roboto Slab", serif;
  --alt-font: "Work Sans", sans-serif;
}

.light-mode {
  --gradient-light-blue: linear-gradient(90deg, #308AF8 1.67%, #61B7E4 100%);
  --gradient-dark-blue: linear-gradient(89.83deg, #252C5F 0.15%, #264589 99.9%);
  --gradient-light-green: linear-gradient(90deg, #9F4EEF 0%, #149BDF 100%);
  --dark-blue: white;
  --dark-blue-alt: #1A202A;
  --light-blue: #61B7E4;
  --light-green: #9F4EEF;
  --golden: #61B7E4;
  --white: #16183C;
  --white-alt: white;
  --light-grey: #16183C;
  --controls-grey: #B6B6B6;
  --dark-grey: #F3F3F3;
  --dark-grey-alt: #2B3341;
  --error: #FF5B82;
  --ok: #48C172;
  --main-font: "Roboto Slab", serif;
  --alt-font: "Work Sans", sans-serif;
}


/* ===================================
    Fonts
 ======================================  */
.main-font {
  font-family: var(--main-font)
}

.alt-font {
  font-family: var(--alt-font)
}

.standard-font-main {
  font-size: 18px;
  font-family: var(--main-font);
  line-height: 24px;
  font-weight: 400;
}

.standard-font-alt {
  font-size: 18px;
  font-family: var(--alt-font);
  line-height: 24px;
  font-weight: 400;
}

/* ===================================
    Textos Colores
====================================== */

.golden-marker {
  color: var(--golden) !important;
}



/* ===================================
    Backgrounds
====================================== */
.bg-dark-blue {
  background: var(--dark-blue);
}

.bg-dark-grey {
  background: var(--dark-grey);
}

.bg-gradient-light {
  background: var(--gradient-light-green);
}

.light-mode .bg-alternative-white {
  background: var(--white-alt) !important;
}

/* ===================================
    Borders
====================================== */
.border-bottom-gray-blue {
  border-bottom: 1px solid #3A4557 !important;
}

.border-tb-gray {
  border-top: 1px solid #374254;
  border-bottom: 1px solid #374254;
}

/* ======================================================================================================================================
    Componentes


/* ===================================
    Botones
====================================== */



.btn-blue-light {
  font-family: var(--alt-font) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  color: var(--white-alt) !important;
  padding: 14px 0 !important;
  background: var(--gradient-light-green) !important;
  border-radius: 8px !important;
  border: none !important;
  line-height: 21px;
  transition: all .5s;
  font-size: 18px;
}


.btn-blue-dark {
  font-family: var(--alt-font) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  padding: 14px 0 !important;
  background: var(--gradient-dark-blue) !important;
  border-radius: 8px !important;
  border: none !important;
  line-height: 21px;
  opacity: 1;
  transition: all .5s;
  font-size: 18px;
}

.btn-blue-lateral {
  font-family: var(--alt-font) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  color: var(--light-blue);
  padding: 14px 0 !important;
  background: var(--dark-blue);
  border-radius: 8px !important;
  border: 1px solid var(--light-green);
  border-top: none !important;
  line-height: 21px;
  opacity: 1;
  transition: all .5s;
  font-size: 18px;

}

.btn-blue-transparent {
  font-family: var(--alt-font) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  color: var(--light-blue) !important;
  padding: 14px 0 !important;
  background: transparent !important;
  border-radius: 8px !important;
  border: 1px solid var(--light-green) !important;
  line-height: 21px;
  opacity: 1;
  transition: all .5s;
  font-size: 18px;
}

.gradient-text {
  background: var(--gradient-light-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-header .sub-options a.active {
  background: var(--gradient-light-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-blue-transparent-white {
  font-family: var(--alt-font) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  padding: 14px 0 !important;
  background: transparent !important;
  border-radius: 8px !important;
  border: 1px solid var(--white) !important;
  line-height: 21px;
  opacity: 1;
  transition: all .5s;
  font-size: 18px;
}

.btn-blue-dark {
  font-family: var(--alt-font) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  color: var(--white-alt) !important;
  padding: 14px 0 !important;
  background: var(--dark-blue-alt) !important;
  border-radius: 8px !important;
  border: 1px solid var(--dark-blue-alt) !important;
  line-height: 21px;
  opacity: 1;
  transition: all .5s;
  font-size: 18px;
}


.tab-card {
  border: 1px solid var(--light-blue);
  border-radius: 4px;
  color: var(--light-blue);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--alt-font);
  line-height: 120%;
  width: fit-content;
  text-align: center;
  text-transform: uppercase;
  padding: 2px 9px;
}

/* Hover */

.btn-blue-transparent-white:hover {
  background-color: var(--white) !important;
  color: var(--light-blue) !important;
}

.btn-blue-light:hover {
  transition: all .8s;
  box-shadow: inset -16.5em 0 0 0 var(--light-blue) !important;
}

.btn-blue-dark:hover {
  opacity: .9;
  transition: all .5s;
}

.gradient-text:hover {
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all .8s;
}

.btn-blue-transparent:hover {
  border: 1px solid var(--white) !important;
  transition: all .5s;
}

.btn-blue-lateral:hover {
  border: 1px solid var(--white);
  transition: all .5s;
}

.btn-large {
  min-width: 280px;
  width: auto;
}

.btn-small {
  max-width: 126px;
  min-width: 116px;
  width: auto;
}

.btn-medium {
  min-width: 186px;
  width: auto;
}

.btn-lateral {
  padding: 10px 0px !important;
  transform: rotate(90deg);
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.btn-container-lateral {
  position: fixed;
  top: 60vh;
  right: -75px;
  z-index: 9999;
}

.btn-lateral.btn-small {
  position: relative;
  top: -130px;
  right: -34px;
}



/* ===================================
    Inputs
====================================== */

.main-input {
  border: 1px solid var(--controls-grey) !important;
  border-radius: 4px !important;
  background-color: var(--dark-blue) !important;
  font-size: 18px !important;
  min-width: 280px;
  width: auto;
  height: 48px;
  padding: 14px !important;
  color: var(--light-grey) !important;
}

/* Error Status */
.main-input.error {
  border: 1px solid var(--error) !important;
}

.main-input.error+p {
  color: var(--error) !important;
}

.input-group-text {
  background-color: var(--dark-blue);
  color: var(--white);
  font-size: 18px !important;
}

/* Success Status */

.main-input.ok {
  border: 1px solid var(--ok) !important;
}

.main-input.ok~.valid-input {
  display: flex !important;
}

.valid-input {
  display: none !important;
  position: absolute !important;
  width: auto !important;
  right: 14px !important;
  top: 38px !important;
  border: 2px solid var(--ok) !important;
  border-radius: 50% !important;
  width: 20px !important;
  height: 20px !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0;
}

.valid-input .fa-check {
  color: var(--ok) !important;
  font-size: 10px !important;
  margin: 1.5px;
}


.main-input::placeholder {
  font-family: var(--alt-font) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 125% !important;
  color: var(--light-grey) !important;
}

.main-input:focus {
  border: 1px solid var(--light-blue) !important;
  color: var(--white) !important;
  background-color: var(--dark-grey) !important;
  box-shadow: none !important;
}

.main-input-label {
  font-family: var(--alt-font) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 114% !important;
  color: var(--light-grey) !important;
  margin: 0 !important;
  padding-bottom: 8px;
}

.main-input-subtitle {
  font-family: var(--alt-font) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  line-height: 133% !important;
  color: var(--light-grey) !important;
  padding: 7px 0 !important;
}

/* ===================================
    Select
====================================== */

.main-select {
  border: 1px solid var(--controls-grey) !important;
  border-radius: 4px !important;
  background-color: var(--dark-blue) !important;
  color: var(--light-grey) !important;
  min-width: 280px;
  width: auto;
  height: 48px;
  background-image: url('../assets/icons/select-down-arrow.svg') !important;
  background-size: 12px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.light-mode .main-select {
  background-image: url('../assets/icons/select-down-arrow-color.svg') !important;
}

.select2,
.select2-container--default .select2-selection--single {
  border: 1px solid var(--controls-grey) !important;
  border-radius: 4px !important;
  background-color: var(--dark-blue) !important;
  color: var(--light-grey) !important;
  min-width: 280px;
  width: auto;
  height: 48px;
  background-size: 12px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: url('../assets/icons/select-down-arrow.svg') !important;
  background-repeat: no-repeat;
  border-color: none !important;
  border-style: none !important;
  margin-left: -14px !important;
  width: 14px !important;
  height: 10px !important;

}

.select2-container--default .select2-selection--single {
  height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--white) !important;
  height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 12px !important;
  padding-top: 7px !important;
}

.main-select-custom,
.select2,
.select2-container--default .select2-selection--single {
  width: 100px;
}


/* Aux */

.wpcf7-response-output {
  border: none !important;
  color: var(--light-blue) !important;
  text-align: center !important;
  font-family: "Work Sans", sans-serif !important;
  font-size: 18px;
  background: var(--dark-blue);
  border-radius: 5px;
  padding: 15px 23px !important;
  width: fit-content !important;
  font-weight: bold;
  margin: 10px auto 0 auto !important;
}

.custom-rut {
  width: 280px;
}