/* COLORS GLOBALS ------ */
:root {
  --blue: #264e9c;
  --orange: #eb661a;
  --orange-200: #fab086;  
  --black-100: #242422;
}
html,body {
  margin: 0 !important;
  padding: 0 !important;
}

/* Z-INDEX -------------*/
.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 1;
}
.z-5 {
  z-index: 5;
}
.z-15 {
  z-index: 15;
}

/* BACKGROUNDS -------- */
.bg-transparent {
  background-color: rgba(255, 255, 255, 0);
}
.bg_blue {
  background-color: var(--blue);
}

/* TEXTS -------------- */
.text-blue {
  color: var(--blue);
}
.text-black-100{
  color: var(--black-100);
}
/* -------------------- */

/*BUTTONS ------------- */
.wp-block-button__link{
  border-radius: 12px !important;
}
.btn-orange , .btn-blue{
  border-radius: 10px;
  font-weight: 600;
  border-width: 1px;
  border-style: solid;
}
.btn-orange {
  background-color: transparent;
  border-color: var(--orange);
  color: var(--orange) !important;
}
.btn-blue {
  background-color: var(--blue);
  border-color: var(--blue);
  color: white !important;
}
/* BUTTONS HOVER ---- */
.btn-orange:hover {
  background-color: var(--orange);
  color: white !important;
}
.btn-blue:hover {
  background-color:#13377d
}

/* POSITIONS */
.absolute {
  position: absolute;
}
.modal-header .close{
  background-color: transparent;
  color: #264E9C;
  border: 0px;
  box-shadow: none;
  font-family: 'rubik-regular',sans-serif;
  font-size: 1.8rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  outline: none;
}
.btn_send_modal{
  background: var(--orange);;
  font-family: 'nunito-semi-bold';
  border: 0px;
  color: white;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.14), 0px 3px 1px rgba(0, 0, 0, 0.12), 0px 1px 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 0.3rem 1rem;
  width: 100%;
  margin-top: 1.8rem;
}
.title_modal{
  font-family: 'rubik-bold';
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  display: flex;
  align-items: center;
  line-height: 1.2;
  text-align: center;
  color: var(--orange);;
  padding: 1rem 0rem;
}
.modal-header, .modal-footer, .modal-body {
  border: 0px !important;
  padding: 0rem !important;
}
.modal-body{
  color: #242422;
  text-align: center;
}
.modal-body strong{
  font-family: 'nunito-bold';
}
.modal-footer{
  margin-top: 0.8rem;
}
.remember{
  color: #264E9C;
}
.modal-content{
  padding: 1.8rem;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.isotipo{
  padding-top: 1.5rem;
}
@media (min-width: 700px){
  .modal-dialog {
      max-width: 630px !important;
      margin: 1.75rem auto;
  }
}
@media screen and (max-width:992px) {
  .remember{
      padding: 0.5rem 0rem 0rem; 
  }
  .bg-register{
      height:60px
  }
  .btn-register{
      width:100%
  }
}
.resend_email{
  color: var(--orange);
  text-decoration: underline;
  cursor: pointer;
  width: fit-content;
  padding: 0.5rem;
  justify-content: center;
}
.modal-content{
  border: 0px !important;
  min-height: 47vh !important;
}
.response_resend{
  display: flex;
  justify-content: center;
  align-items: center;
}
.answer{
  color: var(--blue);
  font-size: 1rem;
  text-align: center;
  justify-content: center;
  padding: 0.5rem 0rem;
}
.search-box{
  position: relative;
}
.cancel-cupon{
  background: transparent;
  outline: none!important;
  border: 0;
  color: var(--blue);
  font-family: 'nunito-bold';
  height: 70%;
  top: 0.2rem;
  font-size: 1.4rem;
  margin: auto;
  padding: 0rem 0.5rem;
  position: absolute;
  border-radius: 3px;
  right: 0.35rem;
}
.form-control {
  font-size: 1rem !important;
  font-family: 'nunito-semi-bold';
}