@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Palanquin:wght@100;200;300;400;500;600;700&display=swap');

html,
body {
    font-family: 'Palanquin', sans-serif !important;
    padding: 0%;
    margin: 0%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* background-color: #FFF; */
    background-color: #F0F0F2;
    color: #0A0A0A !important;
}

h1{
  font-family: 'Antonio', sans-serif !important;
  font-size: 2rem;
  font-weight: 500;
  /* background-color: rgba(232, 114, 0, 0.05); */
  border-radius: 10px;
  color: #001391 !important;
}
h3{
  margin-bottom: 0;
}

h2 , h3, h4, h5{
  font-family: 'Antonio', sans-serif !important;
  color: #001391 !important;
}
/* contiene ordenado el layout */
.contenedor-layout{
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

/* menu responsive*/
.nav {
  background-color: #0044B5;
}

.nav_container{
  width: min(90%, auto);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;

  --icon-toggle-menu: url("../img/menu-open.svg");
  --transform-menu-show: translate(-100%);
}

.nav_container:has(.nav_input:checked){
  --icon-toggle-menu: url("../img/menu-close.svg");
  --transform-menu-show: translate(0);

}

.nav_toggle{
  width: 30px;
  height: 30px;
  background-image: var(--icon-toggle-menu);
  background-size: cover;
  cursor: pointer;
  transition: background-image .5s;
}

.nav_figure, .nav_toggle{
z-index: 10;
}

.nav_figure{
 display: flex;
 align-items: center;
 margin-top: 1rem;
}

.nav_input{
  display: none;
}

.nav_list{
  transform: var(--transform-menu-show);
  position: fixed;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.5rem 5%;
  background-color: #0044B5;
  list-style: none;
  transition: .5s;
  left: -20;
  z-index: 1;
}

.nav_link, .dropdown-toggle{
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
  padding: 2px 6px;
}

.nav_link:hover{
  background-color: #FFF;
  color: #001391;
  border-radius: 6px;
  padding: 2px 6px;
}

.dropdown-toggle:hover{
  background-color: #FFF;
  color: #001391;
  border-radius: 6px;
}

@media (width > 764px){
  .nav_container{
      --transform-menu-show: translate(0);
  }
  .nav_toggle{
    display: none;
  }
  .nav_list{
    position: static;
    grid-auto-flow: column;
    place-content: unset;
    padding: 0;
    transition: unset;
  }
}
/* fin de menu responsive*/


/*Utilizando las clases de MetroUI, solo cambiando a los colores oficiales INICIO*/

.button{
  border-radius: 10px;
}
.button.primary{
  /* background-color: #0044B5; */
  background-color: #001391;
  border-style: none;
  color: #FFF;
  border-radius: 10px;
}
.button.primary:hover{
  background-color: #0044B5;
}

.button.secondary{
  background-color: #9E9E9E; 
  border-style: none;
  color: #FFF;
  border-radius: 10px;
}
.button.secondary:hover{
  background-color: #646567;
  color: #FFF;
}

.button.warning{
  background-color: #FAD42F;
  border-style: none;
  color: #001391;
  border-radius: 10px;
}
.button.warning:hover{
  background-color: #FFBA00;
}

.button.alert{
  background-color: #D12626;
  border-style: none;
  color: #FFF;
  border-radius: 10px;
}
.button.alert:hover{
  background-color: #FD372C;
  color: #FFF;
}
.success{
 background-color: #156B4C !important;
 border-radius: 10px !important;
}
.button.success{
  background-color: #156B4C !important;
  border-style: none;
  color: #FFF;
  border-radius: 10px;
}
.button.success:hover{
  background-color: #009464;
  color: #FFF;
}

.button.icons{
  background-color: #FFF;
  border-style: none;
  color: #001391;
  border-radius: 5px;
  padding: 2px 3px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.button.icons:hover{
  background-color: #001391;
  color: #FFF;
}

.button.icons_secondary{
  background-color: #FFF;
  border-style: none;
  color: #646567;
  border-radius: 5px;
  padding: 0px 3px 0px 3px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.button.icons_secondary:hover{
  background-color: #646567;
  color: #FFF;
}

.button.icons_alert{
  background-color: #FFF;
  border-style: none;
  color: red;
  border-radius: 5px;
  padding: 2px 4px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.button.icons_alert:hover{
  background-color: red;
  color: #FFF;
}

.button.btn_download{
  background-color: #FFF;
  border: 1px solid #156B4C;
  color: #156B4C;
  border-radius: 10px;
  padding: 3px 5px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.button.btn_download:hover{
  background-color: #156B4C;
  color: #FFF;
}

.un-shadow{
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.un-shadow-hover:hover{
 box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
 background-color: #FAFAFA;
 color: #001391;
 transition-duration: 0.5s;
}

/* tipografia dash */
.font_family{
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 2.5em;
}
.font_family_2{
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.5em;
}

/* Nuevo estilo border */
.border{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.panel{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* redondear los input generales */
.input-rounded{
  border-radius: 8px;
  padding: 0px 5px 0px 5px;
}

.remark.info {
    background-color: #D7E5F9!important;
    color: #001391;
    font-size: 0.8em;
    border-style: none;
    border-radius: 8px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;        
}

.remark.info::before {
    position: absolute;
    top: 0;
    left: -4px;
    width: 4px;
    height: unset;
    content: "";
}

.remark.alert {
    background-color: #F8D7DA!important;
    color: #58151C;
    font-size: 0.8em;
    border-style: none;
    border-radius: 8px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;  
}

.remark.alert::before {
    position: absolute;
    top: 0;
    left: -4px;
    width: 4px;
    height: unset;
    content: " ";
}

.remark.warning {
    background-color: #FFF3CD!important;
    color: #664D03;
    font-size: 0.8em;
    border-style: none;
    border-radius: 8px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;  
}

.remark.warning::before {
    position: absolute;
    top: 0;
    left: -4px;
    width: 4px;
    height: unset;
    content: " ";
    background-color: #664D03;
}

.remark.success {
    background-color: #D1E7DD!important;
    color: #0A3622;
    font-size: 0.8em;
    border-style: none;
    border-radius: 8px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;  
}

.remark.success::before {
    position: absolute;
    top: 0;
    left: -4px;
    width: 4px;
    height: unset;
    content: " ";
}

.dialog{
  border-radius: 10px !important;
}



/* colores propios de United Way Colombia 2025*/
.fg-21296B{
  color: #21296B;
}
.fg-0044B5{
  color: #0044B5;
}
.fg-FD372C{
  color: #FD372C;
}
.fg-F47925{
  color: #F47925;
}
.fg-5082F0{
  color: #5082F0;
}


.bg-009464{
  background-color: #009464;
  color: #FFF;
}
.bg-FF806C{
  background-color: #FF806C;
  color: #FFF;
}
.bg-21296B{
  background-color: #21296B;
  color: #FFF;
}
.bg-4e4aa6{
  background-color: #4e4aa6;
  color: #FFF;
}
.bg-0044B5{
  background-color: #0044B5;
  color: #FFF;
}
.bg-FD372C{
  background-color: #FD372C;
  color: #FFF;
}
.bg-A7D2FF{
  background-color: #A7D2FF;
}
.bg-F47925{
  background-color: #F47925;
}
.bg-FFBA00{
  background-color: #FFBA00;
}
.bg-FAD42F{
  background-color: #FAD42F;
}
.bg-D1E7DD{
  background-color: #D1E7DD;
}


/* variaciones con las clases propias de MetroUI y colores propios FIN */






/* funcionando en el home */
.btn-act {
  appearance: none;
  backface-visibility: hidden;
  background-color: #FFBA00;
  border-radius: 7px;
  border-style: none;
  box-sizing: border-box;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-size: 11px;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 8px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.btn-act:hover {
  background-color: #F47925;
  color:#FFF;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.btn-act:active {
  transform: translateY(2px);
  transition-duration: .35s;
}

/*style switch usados*/
.mySwitch .check::after {
    background: #002F87!important;
    border-color: #002F87!important;
}
.mySwitch input[type="checkbox"]:checked ~ .check {
    background: rgba(121,163,220, 0.6)!important;
}
.mySwitch input[type="checkbox"]:checked ~ .check::after {
    border-color: #002F87!important;
    background: #002F87!important;
    border-width: 0.7em;
}

.mySwitch2 .check::after {
    background: #BEBEBE!important;
    border-color: #BEBEBE!important;
}
.mySwitch2 input[type="checkbox"]:checked ~ .check {
    background: rgba(0,138,0, 0.4)!important;
}
.mySwitch2 input[type="checkbox"]:checked ~ .check::after {
    border-color: #009464!important;
    background: #009464!important;
    border-width: 0.7em;
}

/*media query*/
container {width: 100%;}

@media (min-width: 300px) and (max-width: 899px) {
    .container {
        max-width: 100%;
    }
    .hide{
       display: none;
    }
}

@media (min-width: 900px) and (max-width: 1660px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 1661px) and (max-width: 1820px) {
    .container {
        max-width: 85%;
    }
}

@media (min-width: 1821)  {
    .container {
        max-width: 60%;
    }
}


/* 
.un-21296B{
  color: #21296B;
}

.bg-21296B{
  background-color: #21296B;
}

.bg-5082F0{
  background-color: #5082F0;
}


.un-shadow-1{
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.border-title{
    color: #002F87;
    border-radius: 6px;
    font-family: "Roboto", sans-serif !important;  
    font-size: 20px;
    padding: 7px 7px 2px 7px;
    margin-left: 5px;
    background-color: #008A0030;
}
.remark-alert{
    line-height: 1.6;
    padding: 0.50rem;
    text-align: justify;
    border-left: 4px solid #CE352C;
    border-radius: 4px;
    color: #595959;
    font-family: "Roboto", sans-serif !important;  
    font-size: 13px;
    background-color: #CE352C20;
}
.remark-good{
    line-height: 1.6;
    padding: 0.50rem;
    text-align: justify;
    border-left: 4px solid #008A00;
    border-radius: 4px;
    color: #595959;
    font-family: "Roboto", sans-serif !important;  
    font-size: 13px;
    background-color: #008A0020; 
}
.remark-info{
    line-height: 1.6;
    padding: 0.50rem;
    text-align: justify;
    border-left: 4px solid #007BFF;
    border-radius: 4px;
    color: #595959;
    font-family: "Roboto", sans-serif !important;  
    font-size: 13px;
    background-color: #007BFF20; 
}
.remark-warning{
    line-height: 1.6;
    padding: 0.50rem;
    text-align: justify;
    border-left: 4px solid #fd7e14;
    border-radius: 4px;
    color: #595959;
    font-family: "Roboto", sans-serif !important;  
    font-size: 13px;
    background-color: #fd7e1430; 
}

.btn {
  appearance: none;
  backface-visibility: hidden;
  background-color: #fff;
  border-radius: 10px;
  border: solid #c6daf5 0.5px;
  box-shadow: rgba(0, 47, 135, .1) 1px 2px 4px;
  box-sizing: border-box;
  color: #595959;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif !important;  
  font-size: 15px;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 6px 10px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.btn:hover {
  background-color: #0044B5;
  color: #FFF;
  opacity: 1;
  transform: translateY(0.2);
  transition-duration: .35s;
}

.btn:active {
  transform: translateY(1px);
  transition-duration: .35s;
}



.btn-one {
  appearance: none;
  backface-visibility: hidden;
  background-color: #002F87;
  border-radius: 7px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif !important;  
  font-size: 15px;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 8px 17px 8px 17px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.btn-one:hover {
  background-color: #2655ad;
  color: #fff;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.btn-one:active {
  transform: translateY(2px);
  transition-duration: .35s;
}
 
.btn-two {
  appearance: none;
  backface-visibility: hidden;
  background-color: #FFF;
  border-radius: 7px;
  border-style: none;
  box-shadow: #c5c5c5 0 3px 5px;
  box-sizing: border-box;
  color: #002F87;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif !important;  
  font-size: 14px;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 8px 17px 8px 17px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.btn-two:hover {
  background-color: #002F8790;
  color: #FFF;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.btn-two:active {
  transform: translateY(2px);
  transition-duration: .35s;
}

.btn-two:hover {
  box-shadow: #c5c5c5 0 6px 12px;
}

.btn-three {
  appearance: none;
  backface-visibility: hidden;
  background-color: #CE352C30;
  border-radius: 7px;
  border-style: none;
  box-sizing: border-box;
  color: #CE352C;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif !important;   
  font-size: 14px;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 8px 17px 8px 17px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.btn-three:hover {
  background-color: #CE352C;
  color:  #FFF;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.btn-three:active {
  transform: translateY(2px);
  transition-duration: .35s;
} 

.btn-four {
  appearance: none;
  backface-visibility: hidden;
  background-color: #FFF;
  border-radius: 7px;
  border-style: none;
  box-sizing: border-box;
  color: #595959;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif !important;   
  font-size: 14px;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 8px 17px 8px 17px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.btn-four:hover {
  background-color: #59595970;
  color: #FFF;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.btn-four:active {
  transform: translateY(2px);
  transition-duration: .35s;
}

.btn-five {
  appearance: none;
  backface-visibility: hidden;
  background-color: #59595920;
  border-radius: 7px;
  border-style: none;
  box-sizing: border-box;
  color: #595959;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif !important;   
  font-size: 14px;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 8px 17px 8px 17px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.btn-five:hover {
  background-color: #59595970;
  color: #FFF;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.btn-five:active {
  transform: translateY(2px);
  transition-duration: .35s;
}




.btn-six {
  appearance: none;
  backface-visibility: hidden;
  background-color: #008A0030;
  border-radius: 7px;
  border-style: none;
  box-sizing: border-box;
  color: #008A00;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif !important;  
  font-size: 14px;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 8px 17px 8px 17px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.btn-six:hover {
  background-color: #008A00;
  color: #fff;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.btn-six:active {
  transform: translateY(2px);
  transition-duration: .35s;
}


.btn-seven {
  appearance: none;
  backface-visibility: hidden;
  background-color: #F5B33530;
  border-radius: 7px;
  border-style: none;
  box-shadow: #c5c5c5 0 3px 5px;
  box-sizing: border-box;
  color: #F5B335;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif !important;  
  font-size: 14px;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 6px 6px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.btn-seven:hover {
  background-color: #F5B335;
  color: #FFF;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.btn-seven:active {
  transform: translateY(2px);
  transition-duration: .35s;
}
*/


/*iconos
estilo srip
https://www.flaticon.es/autores/srip/lineal/2?author_id=271&type=standard
color: #F79A18;
emociones
https://www.flaticon.es/packs/emotion-3

Imagenes 
https://www.freepik.com/author/stories/2#uuid=14ace0c9-68b2-4477-9c34-c1d658cc6dd5
*/