/*--------------------------------------------------------------
# generales
--------------------------------------------------------------*/
body,h1,h2,h3,h4,h5,h6,.w3-wide {
  font-family: "Montserrat", sans-serif !important;
}
.bodyKorebox{
  background: #0575E6;
  background: -webkit-linear-gradient(to right, #021B79, #0575E6);
  background: linear-gradient(to right, #021B79, #065db5);
}

/*--------------------------------------------------------------
# animaciones
--------------------------------------------------------------*/
.appearRight{
  opacity: 0; /* El texto estará inicialmente oculto */
  transform: translateX(-50px); /* El texto estará desplazado hacia la izquierda */
  animation: aparecer 1s forwards; /* La animación durará 1 segundo y se mantendrá en su estado final */
}
@keyframes aparecer {
  to {
    opacity: 1; /* El texto se desvanecerá gradualmente para aparecer */
    transform: translateX(0); /* El texto se desplazará a su posición original */
  }
}

.appearLeft {
  opacity: 0;
  transform: translateX(100%);
  animation: slideInRight 2s ease-in-out forwards;
}
@keyframes slideInRight {
  from {
      opacity: 0;
      transform: translateX(100%);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.appearBottom {
  position: relative;
  animation: slideUp 2s ease-in-out;
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(100%);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.appearCenter {
  opacity: 0;
  transform: scale(0);
  animation: appearFromFront 2s ease-in-out forwards;
}

@keyframes appearFromFront {
  from {
      opacity: 0;
      transform: scale(0);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}
 



/*
  container KoreboxONE
*/
.container_KoreboxOne{
  height: 500px;
  background-color: #02155559;
  box-shadow: 1px 3px 11px 1px rgb(0 0 0 / 31%);
}
.img_KoreboxOne{
  max-width: 1200px;
  margin: 0px auto;
  background: url(https://www.korebox.cl/publiCode/img/headKorebox.png) center no-repeat;
  background-size: cover;
  max-height: 400px;
  border-radius: 10px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 42%), 3px 3px 9px 3px rgb(0 0 0 / 18%);
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  min-height: 400px;
}
.body_KoreboxOne{
  height: 500px;
  width: 100%;
  position: absolute;
}
.btnCentrado_sessionBottom{
  position: absolute;
    bottom: 18%;
    left: 45%;
}
.yellowBtn {
  color: #213b52;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid #fdc134;
  display: inline-block;
  background: #fdc134;
}
/* vertical iphone 11*/ 
@media (max-width: 767px) {
  .container_KoreboxOne {
    height: 599px;
    background-color: #02155559;
    box-shadow: 1px 3px 11px 1px rgb(0 0 0 / 31%);
  }
  .body_KoreboxOne {
    
  } 
  .img_KoreboxOne{
    background: url(https://www.korebox.cl/publiCode/img/headKoreboxMovil.png) center no-repeat;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 42%), 3px 3px 9px 3px rgb(0 0 0 / 18%);
    background-position: center;
    height: 60vh;
    position: absolute;
    top: 100px;
  }
  .btnCentrado_sessionBottom {
    position: absolute;
    width: 100%;
    top: 400px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/*
navbar
*/
.navbarKorebox {
  display: none;
  color: #000000 !important;
    background-color: rgb(2 45 124 / 0%) !important;
    top: 100px;
    /*width: 400px;*/
    position: absolute !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 22px;
    z-index: 11; 
}
.boxUsuario_navbarKorebox {
  display: flex;
  align-items: center;
  background-color: #041351e6;
  border-radius: 0px 15px 15px 0px;
  padding: 0px 15px;
  height: 70px;
  border: 1px solid #0374e4;
  box-shadow: 3px 1px 5px 0 rgb(1 46 125), 3px 3px 9px 3px rgb(2 45 123 / 67%);
}
.logo_navbarKorebox {
  background-color: #ffcf54;
  font-size: 23px;
  width: 30px;
  height: 30px;
  text-align: center;
  margin-right: 10px;
  border-radius: 12px;
  color: #ba650b;
  padding: 0px 0px 0px 1px;
}
.session_navbarKorebox {
  display: flex;
  flex-direction: column;
  color: white;
  padding: 0 15px;
  font-size: 18px;
}
.opcion_navbarKorebox {
  margin: 0px 0px 0px auto;
  display: flex;
  flex-direction: row;
}
.btnOption_navbarKorebox {
  border: 0px;
  background-color: #ffffff00;
  color: white;
  margin: 0px 7px;
  font-size: 18px;
}
.boxInicio_navbarKorebox{
  color: white;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-evenly;
  font-size: 24px;
}
.btnLogin__navbarKorebox{
  font-size: 20px;
    padding: 2px 13px;
}


/*
  headerKorebox
*/
.headerKorebox{
  position: absolute;
  z-index: 10;
  background-color: #03134b82;
  height: 100px;
  width: 100%;
  top: 4px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 42%), 3px 3px 9px 3px rgb(0 0 0 / 18%);
}

.container_headerKorebox{
  max-width: 1200px;
  margin: 13px auto 0;
  display: flex;
  flex-wrap: nowrap;
}
.menu_headerKorebox{
  display: flex;
  align-items: center;
  width: 300px;
  justify-content: space-around;
}
.btnNavbar_menuHeaderKorebox{
  background-color: #47baea00;
  border: 0px;
  font-size: 32px;
  color: #47baea;
  padding: 9px 0px 0px 0px;
}
.title_menuHeaderKorebox{
  color: white;
  font-family: 'Montserrat', sans-serif;
}
.logo_menuHeaderKorebox{
  max-width: 50px;
}


.session_headerKorebox{
  margin-left: auto;
  padding: 0px 10px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  background-color: #020a2263;
  border-radius: 9px;
}
@media (max-width: 414px) {
  .session_headerKorebox{
    display:none;
  }
}
.logo_sessionHeaderKorebox{
  background-color: #ffcf54;
  font-size: 23px;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 12px;
  color: #ba650b;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user_sessionHeaderKorebox{
  color: white;
  display: flex;
  flex-direction: column;
  margin: 0px 15px;
}
.btn_sessionHeaderKorebox{

}
.btnWhite_sessionHeaderKorebox{
  border: 0px;
  background-color: #ffffff00;
  color: white;
  font-size: 18px;
}


 
/*
Acceso Rápido
*/
.container_koreboxAccess{
  max-width: 1200px;
  margin: 40px auto;
  padding: 5px 15px;
  height: 300px;
}
@media (max-width: 767px) {
  .container_koreboxAccess{
    max-width: 1200px;
    margin: 84px auto;
    padding: 5px 15px;
    height: 400px;
  }
}
.title_koreboxAccess{
  color: white;
  font-family: 'Montserrat', sans-serif !important;
  margin: 0px auto 20px;
}
.boxAccess_koreboxAccess{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  max-width: 900px;
  margin: 10px auto;
  height: 170px;
  border-radius: 21px;
  box-shadow: inset 0 2px 20px 0 rgb(255 255 255 / 16%), 3px 3px 9px 3px rgb(255 255 255 / 12%);
  border: 1px solid #ffffff42;
  overflow-x: auto;
  align-items: center;
}
@media (max-width: 767px) {
  .boxAccess_koreboxAccess{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 480px;
    margin: 10px auto;
    height: 320px;
    border-radius: 21px;
    box-shadow: inset 0 2px 20px 0 rgb(255 255 255 / 16%), 3px 3px 9px 3px rgb(255 255 255 / 12%);
    border: 1px solid #ffffff42;
    overflow-x: auto;
    align-items: center;
  }
}
.btnAccess_koreboxAccess{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 104px;
  min-width: 100px;
  height: 115px;
  justify-content: space-evenly;
  border: 0;
  border-radius: 21px;
  background-color: white;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 42%), 3px 3px 9px 3px rgb(0 0 0 / 18%);
  margin: 0px 8px;
}
.btnAccess_koreboxAccess img{
  width: 59px;
}
.btnAccess_koreboxAccess span{
  font-size: 15px;
}

/*
  Footer
*/
.container_footerKorebox{
  width: 100%;
  height: 250px;
  background-color: #02155580;
  box-shadow: 1px -2px 8px 5px rgb(0 0 0 / 31%);
}
.title_footerKorebox{
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
.boxfooter_footerKorebox{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
}
.boxIcon_footerKorebox{

}
.redesIcon_footerKorebox{
  font-size: 30px;
    margin: 0px 7px;
}
.boxBtnUpIndex_footerKorebox{
  position: absolute;
    z-index: 10000;
    bottom: 7%;
    right: 23px;
}
@media (max-width: 767px) {
  .boxBtnUpIndex_footerKorebox{
    position: static;
        margin: 0px 0px 0px -14px;
        width: 100%;
        display: flex;
        justify-content: flex-end;
  }
}
.btnUpIndex_footerKorebox{
  font-size: 30px;
  background-color: #337ab7;
  color: #031968;
  padding: 2px 15px;
  border-radius: 15px;
}





/*
Modales general Korebox
*/
.body_modalInicioSession{
  max-width: 500px;
  margin: 60px auto;
  border-radius: 30px !important;
  background: linear-gradient(to right, rgba(39, 70, 133, 0.8) 0%, rgba(61, 179, 197, 0.8) 100%), url(https://www.korebox.cl/eirl/licenciaKorebox/public/img/hero-bg.jpg);
  border: 1px solid white !important;
}
.logo_modalInicioSession{
  max-width: 259px;
  margin: 10px auto 0px auto;
}
.input_modalInicioSession{
  width: 70%;
  margin: 10px auto 10px auto;
  text-align: center;
}
.bottom_modalInicioSession{
  width: 100%;
  padding: 7px 25px 20px;
  text-align: center;
}
.cerrarBtnModal{
  color: #cbf3ff;
  font-size: 40px;
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 1;
  background-color: #ff000000;
  border: 0;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 767px){
  .cerrarBtnModal{
    color: #0a5db5;
    font-size: 40px;
    position: absolute;
    top: 15px;
    right: 20px;
    opacity: 1;
    background-color: #ff000000;
    border: 0;
    font-weight: 600;
    cursor: pointer;
  }
}

/*
AJAX ALERT - BTN 
*/
.boxAlertRespuesta{
  margin: 30px auto;
  max-width: 400px;
  text-align: center;
  position: relative;
}
.btnBoxInicioSession{
  position: absolute;
  top: 0px;
  right: 0;
  border: 0;
  background-color: #f0f8ff00;
  font-size: 20px;
}	

/*--------------------------------------------------------------
# modal_fastInicioSession
--------------------------------------------------------------*/
.modal_fastInicioSession{
  background: #0575E6;
  background: -webkit-linear-gradient(to right, #021B79, #0575E6);
  background: linear-gradient(to right, #021B79, #065db5);
  padding: 20px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  /* border: 1px solid white; 
  width: 500px;*/
  margin: auto;
  box-shadow: inset 0 2px 20px 12px rgb(0 0 0 / 16%), 3px 3px 5px 2px rgb(0 0 0 / 12%);
  border: 1px solid black;
}
.panelBody_InicioSession{
  width: 100%;
  max-width: 350px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: hsl(0deg 0% 100%);
  border-radius: 7px;
  padding: 35px 15px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 3px 3px 9px3px rgb(0 0 0 / 12%);
  /* height: 532px; */
  justify-content: space-evenly;
}
.logo_inicioSession {
  width: 150px;
}
.boxInput_inicioSession{
  width: 100%;
  height: 90px;
  padding: 0px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.boxBtnAccess_inicioSession{
  width: 100%;
  /* height: 120px; */
  padding: 0px 10px;
}
.boxBtnAccess_inicioSession{
  width: 100%;
  padding: 7px 10px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.btnPanel_inicioSession {
  width: 90%;
  display: block;
  padding: 5px 0;
  margin: 0 auto;
  border-radius: 7px;
  margin-top: 10px;
  background-color: transparent;
  border: 1px solid #0574e5bf;
} 


/*--------------------------------------------------------------
	# Páginas Patrocinadas
--------------------------------------------------------------*/
.boxInfoPagePatrocinadas{
  display: flex;
  justify-content: center;
  position: relative;
  bottom: 50%;
}
.infoPagePatrocinadas{
  color: white;
  background-color: black;
  padding: 5px 20px;
  box-shadow: 0px 0px 11px 10px rgb(0 5 24 / 65%), 1px 0px 9px 9px rgb(2 13 50);
  border-radius: 3px;
}