body {
  font-family: 'Wix Madefor Text', sans-serif;
  background-color: #f8f9fa !important;
}

/* Colores */ 
:root {
    --primary-color: #d10000ff;
    --dark-blue: #7f0000ff;
    --text-white: #ffffff;
    --dark-color: #303e46;    
    }

/* Top bar */
.top-bar {
    background-color: var(--dark-blue);
    font-size: 0.85rem;
}

/* Hero */
.hero {
    background: url('../images/shape-noise.svg') repeat;
    background-color: var(--primary-color);
    /*ckground-size: 100% 100%;*/
    background-size: cover;
  background-repeat: no-repeat;
}

.crimes a{
    text-decoration: none;
    color: var(--primary-color);
}

.crimes a:hover{
    text-decoration: underline;
    color: var(--dark-blue);
}

.explanation{
background: #575753;
background: linear-gradient(0deg,#575753 20%, #ededeb 80%);
background: -webkit-linear-gradient(0deg,#575753 20%, #ededeb 80%);
background: -moz-linear-gradient(0deg,#575753 20%, #ededeb 80%);

background: url('../images/stacked-steps.svg');
  background-size: cover;
  background-repeat: no-repeat;
}

/* Sección videos */
/*.videos {
    background: url('video.webm') repeat;
}*/

/* Footer */
.footer {
    background-color: var(--dark-blue);
    padding-top: 1.5rem;
}

.footer-dark {
    background-color: var(--dark-blue);
    padding: 15px 0;
    border-top:   2px solid #ccc;
}

.footer-links li{
  margin: 10px 0;;
}


.text-primary{
    color: var(--dark-blue) !important;
}

.btn-danger {
    color: #fff !important;
    background-color: var(--dark-blue);
    border-color:var(--dark-blue);
}

.btn-danger:hover {
  text-decoration: none ! important;  
}

/***
step by step
*/


.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 1rem auto;  
  position: relative;  
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.step-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background-color: #fff;
  color: #888;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.step-text {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  white-space: nowrap;
}

/* Estilos para el paso activo */
.step.active .step-button {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  color: #fff;
}

.step.active .step-text {
  color:var(--dark-blue);
  font-weight: bold;
}

/* Línea que conecta los pasos */
.steps-container::before {
  content: '';
  position: absolute;
  top: 20px; /* A la mitad del botón */
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ccc;
  z-index: 0;
}

/* Línea de progreso (activa) */
.steps-container::after {
  content: '';
  position: absolute;
  top: 20px; /* A la mitad del botón */
  left: 0;
  height: 2px;
  background-color: var(--primary-color);
  width: 0%; /* Se ajusta con JavaScript o clase */
  transition: width 0.3s ease;
  z-index: 0;
}

/* Estilo de la línea de progreso para el primer paso activo */
.step:first-child.active + .step::before {
  background-color: var(--primary-color);
}

/* Estilos responsive para pantallas más pequeñas */
@media (max-width: 768px) {
  .steps-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step {
    flex-basis: 50%; /* 2 pasos por fila en móvil */
    margin-bottom: 1.5rem;
  }

  .steps-container::before,
  .steps-container::after {
    display: none; /* Ocultar las líneas en móvil */
  }

  #login{
    visibility: hidden;
  }

  #hero_text{
    text-align: center;
  }
  
}

/**
*/
.btn-link{
    border: none; /* Elimina el borde */
    font-weight: bold;
    color: var(--primary-color);
    text-align: center; /* Centra el texto */
    background-color: #fff; /* Fondo blanco */
    width: 100%; /* El ancho del botón será el del contenedor */
    padding: 10px; /* Un poco de espacio interno para que el texto no esté pegado a los bordes */
    cursor: pointer; /* Cambia el cursor a una mano al pasar por encima */
    text-decoration: none; /* Asegura que no tenga subrayado inicial */
    transition: text-decoration 0.3s ease;
}

.btn-link:hover {
  color: var(--primary-color);
  text-decoration: underline; /* Agrega subrayado al pasar el ratón */
}

/**
tooltip
*/
/*
.tooltip-container {
  position: relative; / * Es clave para que el tooltip se posicione en relación al botón * /
  display: inline-block;
}

.tooltip-text {
  visibility: hidden; / * Oculta el tooltip por defecto * /
  width: 320px;
  font-weight: normal;
  background-color: #fff;
  color: var(--primary-color);  
  border: 2px solid var(--primary-color);
  text-align: center;
  border-radius: 6px;
  padding: 5px 5px;
  position: absolute;
  z-index: 1; /* Asegura que el tooltip se muestre por encima de otros elementos * /
  bottom: 125%; /* Coloca el tooltip arriba del botón * /
  left: 50%;
  margin-left: -60px; /* Centra el tooltip * /
  opacity: 0; /* Opacidad para el efecto de transición * /
  transition: opacity 0.3s;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible; /* Hace visible el tooltip al pasar el ratón * /
  opacity: 1;
}
*/

/***
codigo unico
*/
.codex{
 border-radius: 49px 49px 49px 49px;
-webkit-border-radius: 49px 49px 49px 49px;
-moz-border-radius: 49px 49px 49px 49px;
background: #ffffff;
border: 2px solid var(--primary-color);  
padding: 5px;
}

.codex .code{
  font-weight: bold;
  margin: 3px 0;
}

.list-unstyled li a{
  text-decoration: none;
  color: #fff;
}

.list-unstyled li a:hover{
  text-decoration: underline;  
}

.input-d{
  padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    padding-left: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
    border: 1px solid var(--dark-blue);  
     border-radius: 12px 12px 12px 12px;
-webkit-border-radius: 12px 12px 12px 12px;
-moz-border-radius: 12px 12px 12px 12px;
background: #f5f5f5;
}

.war-text{
  font-weight: normal;
  /*font-style: italic;*/
  font-size: 10px;
}

.btn-quote {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--dark-blue);
}

.btn-quote:hover {
    background-color: var(--dark-blue);    
    color: #fff;
}

/**
* blockquote
*/
blockquote {
  font-family: 'Special Elite', cursive;
	font-weight: 100;
	font-size: 2rem;
	/*max-width: 600px;*/
	line-height: 1.4;
	position: relative;
	margin: 25px 100px 0 100px;
	padding: .5rem;
}

blockquote:before,
blockquote:after {
	position: absolute;
	color: var(--primary-color);
	font-size: 8rem;
	width: 4rem;
	height: 4rem;
}

blockquote:before {
	content: '“';
	left: -5rem;
	top: -2rem;
}

blockquote:after {
	content: '”';
	right: -5rem;
	bottom: 1rem;
}

blockquote span{
 font-family: 'Special Elite', cursive;
	font-weight: 100;
	font-size: 1rem; 
}

@media (max-width: 768px) {
  blockquote {  
    font-size: 1rem;	
    line-height: 1.4;
    position: relative;    
    padding: .5rem;
    margin: 25px 50px 0 50px;
  }

  blockquote:before,
blockquote:after {	
	font-size: 4rem;
	width: 2rem;
	height: 2rem;
}

blockquote span{ 	
	font-size: 0.6rem; 
}

blockquote:before {	
	left: -2rem;
	top: -2rem;
}

blockquote:after {	
	right: -2rem;
	bottom: 1rem;
}

}


/**
* form step-2
*/
.hidden-div {
  display: none;
}

/**
* checbox step-2
*/
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .checkbox-wrapper-14 input[type=checkbox] {
      --active: var(--primary-color); 
      --active-inner: #fff;
      --focus: 2px rgba(39, 94, 254, .3);
      --border: #BBC1E1;
      --border-hover: #275EFE;
      --background: #fff;
      --disabled: #F6F8FF;
      --disabled-inner: #E1E6F9;
      -webkit-appearance: none;
      -moz-appearance: none;
      height: 21px;
      outline: none;
      display: inline-block;
      vertical-align: top;
      position: relative;
      margin: 0;
      cursor: pointer;
      border: 1px solid var(--bc, var(--border));
      background: var(--b, var(--background));
      transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }
    .checkbox-wrapper-14 input[type=checkbox]:after {
      content: "";
      display: block;
      left: 0;
      top: 0;
      position: absolute;
      transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }
    .checkbox-wrapper-14 input[type=checkbox]:checked {
      --b: var(--active);
      --bc: var(--active);
      --d-o: .3s;
      --d-t: .6s;
      --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }
    .checkbox-wrapper-14 input[type=checkbox]:disabled {
      --b: var(--disabled);
      cursor: not-allowed;
      opacity: 0.9;
    }
    .checkbox-wrapper-14 input[type=checkbox]:disabled:checked {
      --b: var(--disabled-inner);
      --bc: var(--border);
    }
    .checkbox-wrapper-14 input[type=checkbox]:disabled + label {
      cursor: not-allowed;
    }
    .checkbox-wrapper-14 input[type=checkbox]:hover:not(:checked):not(:disabled) {
      --bc: var(--border-hover);
    }
    .checkbox-wrapper-14 input[type=checkbox]:focus {
      box-shadow: 0 0 0 var(--focus);
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch) {
      width: 21px;
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch):after {
      opacity: var(--o, 0);
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch):checked {
      --o: 1;
    }
    .checkbox-wrapper-14 input[type=checkbox] + label {
      display: inline-block;
      vertical-align: middle;
      cursor: pointer;
      margin-left: 4px;
    }

    .checkbox-wrapper-14 input[type=checkbox]:not(.switch) {
      border-radius: 7px;
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch):after {
      width: 5px;
      height: 9px;
      border: 2px solid var(--active-inner);
      border-top: 0;
      border-left: 0;
      left: 7px;
      top: 4px;
      transform: rotate(var(--r, 20deg));
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch):checked {
      --r: 43deg;
    }
    .checkbox-wrapper-14 input[type=checkbox].switch {
      width: 38px;
      border-radius: 11px;
    }
    .checkbox-wrapper-14 input[type=checkbox].switch:after {
      left: 2px;
      top: 2px;
      border-radius: 50%;
      width: 17px;
      height: 17px;
      background: var(--ab, var(--border));
      transform: translateX(var(--x, 0));
    }
    .checkbox-wrapper-14 input[type=checkbox].switch:checked {
      --ab: var(--active-inner);
      --x: 17px;
    }
    .checkbox-wrapper-14 input[type=checkbox].switch:disabled:not(:checked):after {
      opacity: 0.6;
    }
  }

  .checkbox-wrapper-14 * {
    box-sizing: inherit;
  }
  .checkbox-wrapper-14 *:before,
  .checkbox-wrapper-14 *:after {
    box-sizing: inherit;
  }


  /**
  * form upload
  */  
  /* Estilo del contenedor principal de Dropzone */
.dropzone {
    /* Fondo con un degradado para un aspecto moderno */
    background: linear-gradient(135deg, #f0f4f8, #e7ebee);
    /* Borde punteado para indicar un área de arrastre */
    border: 2px dashed var(--primary-color);   
    /* Esquinas redondeadas */
    border-radius: 12px;        
    padding: 40px;        
    min-height: 200px;
    width: 100%;        
    cursor: pointer;
    
    /* Transición suave para los cambios de estado */
    transition: all 0.3s ease-in-out;
}

/* Efecto al pasar el mouse por encima */
.dropzone:hover {
    background: linear-gradient(135deg, #e7ebee, #d8dbe2);
    border-color: #6c757d;
}

/* Estilo para el área cuando se arrastra un archivo encima */
.dropzone.dz-drag-hover {
    border-color: #007bff;
    background-color: #f8f9fa;
}

/* Oculta la imagen de la nube predeterminada de Dropzone */
.dropzone .dz-message:before {
    display: none;
}

/* Estilo para el mensaje de texto */
.dropzone .dz-message {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #495057;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Opcional: Estilo para el texto dentro del mensaje */
.dropzone .dz-message span {
    font-weight: normal;
    color: #6c757d;
    display: block;
    margin-top: 5px;
    font-size: 1rem;
}



/**
* acordeon
*/

:root {
  /*--primary-color: #d9534f;*/
  --border-color: #ddd;
  --text-color: #303e46;
  --bg-color: #f4f4f4;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-header {
  padding: 10px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-submit {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--dark-blue);
  font-weight: bold;
  font-size: 16px;
  flex-grow: 1;
  /*text-align: left;*/
  text-align: center;
}

.accordion-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion-toggle svg {
  color: #555;
  transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .accordion-toggle svg {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 15px;
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  text-align: left;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
  max-height: 400px;
  padding: 15px;
}


.error-message{
   color: red;
    font-size: 0.9em;
    display: block;
    margin-top: 5px;
}


/**
* trix editor
*/  
    .trix-button--icon-attach {
        display: none !important;
    }   
    
    .trix-button--icon-link {
        display: none !important;
    }

    .trix-button--icon-quote {
        display: none !important;
    }    

.trix-container {    
    min-height: 500px;
    max-height: 500px; 
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
}

.trix-container trix-editor {        
    min-height: 500px;
    overflow-y: auto;
}

  /**
* steps 
*/

.step-number{
  display: inline-block;
    background-color: var(--dark-blue);
    color:var(--text-white);    
    padding:0 10px;
    border-radius: 50%;
    white-space: nowrap;
}

.rrss{
    font-size: 32px;
    margin: 0 5px;
}

/**
* video
*/
.video-modal-popup {    
    padding: 0 !important; 
}
.video-modal-popup .swal2-html-container {
    padding: 0; 
}
.video-modal-popup iframe {    
    display: block;
    margin: 0;
}

@media (max-width: 768px) {
    .video-modal-popup {
        width: 95% !important;
    }
}


@media (max-width: 768px) {
#form-no-data{
  text-align: center;
}
#verify_card{
  text-align: center;
}
}

.video-trigger{
  cursor: pointer;
}