/* @font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
} */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primario: #171695;
    --light-primario: #3737ee;
    --green: #008000;
    --light-green: #319a00;
    --morado: #7b2cbf;
    --light-morado: #943ae1;
    --orange: #ef6c00;
    --light-orange: #fe8522;
    --red: #e01e37;
    --light-red: #f12a44;
    --boton-redondeado: #171695;
    --boton-redondeado-hover: #3737ee;
}

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: #5d5d5d;
}

a {
    color: var(--primario);
    font-size: 14px;
    text-decoration: none;
}

.validation-error {
    margin-top: 2px;
    font-size: 14px;
    color: var(--red);
}

.alerta {
    padding: 10px 15px;
}

.alerta-error {
    border: 1px solid var(--red);
    color: var(--red);
    background-color: #ffdede;
}

.alerta-success {
    border: 1px solid var(--green);
    color: var(--green);
    background-color: #e3fae3;
}

.alerta-naranja {
    border: 1px solid var(--orange);
    background-color:#fff5e6;
    color: var(--orange);
}

.alerta-info {
    border: 1px solid var(--primario);
    color: var(--primario);
    background-color: #eaf0fd;
}

.boton-redondeado-outline {
    color: var(--primario);
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 15.5px;
    letter-spacing: 0.8px;
    border:1px solid var(--primario);
}

.boton-redondeado-outline:hover {
    color: var(--boton-redondeado);
    border:1px solid var(--boton-redondeado);
}

.boton-redondeado {
    background: var(--boton-redondeado);
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 15.5px;
    letter-spacing: 0.8px;
    border: 0;
    text-decoration: none !important;
}

.boton-redondeado:hover {
    background: var(--boton-redondeado-hover);
    color: #fff;
}

.boton-redondeado-lg {
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: var(--boton-redondeado);
    border: 0px;
}

.boton-redondeado-lg:hover {
    background: var(--boton-redondeado-hover);
    color: #fff;
}

.boton-ingresar {
    padding: 4px 20px;
    border-radius: 18px !important;
}

.boton-ingresar-menu:hover {
    text-decoration: none !important;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--primario);
  }
  
  .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primario);
    bottom: 0;
    left: calc(50% - 20px);
  }

.boton {
    outline: none !important;
    border: 0;
    padding: 7px 18px !important;
    letter-spacing: 1px;
    font-weight: 600px;
    transition: all 0.2s ease;
    font-size: 14.5px;
    border-radius: 50px !important;
}

.bg-light-blue {
    background: #f1f7fd;
}

.boton-lg {
    font-size: 16px;
    border-radius: 20px;
}

.boton-sm {
    font-size: 13px;
    padding: 5px 20px !important;
}

.boton-xs {
    font-size: 12px !important;
    border-radius: 15px;
    padding: 5px 15px !important;
}

.boton:hover {
    text-decoration: none;
    transition: all 0.2s ease;
}

.boton-primario {
    background-color: var(--primario);
    color: white;
}

.boton-primario:hover {
    background-color: var(--light-primario);
    color: white;
}

.boton-transparente {
    color:#6a6a6a;
    background-color: white;
}

.boton-transparente:hover {
    background-color: #efefef;
}

.boton-outline-primario {
    border: 1px solid var(--primario);
    background-color: transparent;
    color: var(--primario);
}

.boton-outline-primario:hover {
    background-color: #f3f3f3;
}

.boton-outline-naranja {
    border: 1px solid var(--orange);
    color: var(--orange);
    background-color: transparent;
}

.boton-outline-naranja:hover {
    background-color:#fff5e6;
}

.boton-outline-rojo {
    border: 1px solid var(--red);
    color: var(--red);
    background-color: transparent;
}

.boton-outline-rojo:hover {
    background-color: #fdf3f4;
    border: 1px solid var(--light-red);
    color: var(--light-red);
}

.boton-verde {
    background-color: var(--green);
    color: white;
}

.boton-verde:hover {
    background-color: var(--light-green);
}

.boton-morado {
    background-color: var(--morado);
    color: white;
}

.boton-morado:hover {
    background-color: var(--light-morado);
    color: white;
}

.boton-naranja {
    background-color: var(--orange);
    color: white;
}

.boton-naranja:hover {
    background-color: var(--light-orange);
    color: white;
}

.boton-rojo {
    background-color: var(--red);
    color: white;
}

.boton-rojo:hover {
    background-color: var(--light-red);
    color: white;
}

.boton-gris {
    background-color: gray;
    color: white;
}

.boton-gris-ligero {
    background-color: ebeced;
    color: #1f1f1f;
}

.boton-gris:hover {
    background-color: #9b9b9b;
    color: white;
}

.btn {
    border-radius: 0px;
}

.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.box-shadow {
    box-shadow: rgb(0 0 0 / 25%) 0px 3px 11px 0px;
}

.box-shadow-2 {
    box-shadow: 0 -2px 7px 0 rgb(22 22 22 / 1%), 0 2px 10px 0 rgb(80 80 80 / 10%);
}

.box-shadow-3 {
    box-shadow: 0 13px 27px -5px hsla(240, 30.1%, 28%, 0.25),0 8px 16px -8px hsla(0, 0%, 0%, 0.3),0 -6px 16px -6px hsla(0, 0%, 0%, 0.03);
}

.box-shadow-4 {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(41, 48, 59, .55);
}

.text-shadow-white {
    text-shadow: 0 1px 1px rgb(255, 255, 255);
}

.bg-primario {
    background-color: var(--primario);
}

.bg-verde {
    background-color: var(--green);
}

.bg-rojo {
    background-color: var(--red);
}

.bg-morado {
    background-color: var(--morado);
}

.bg-naranja {
    background-color: var(--orange);
}

.bg-gris {
    background-color: rgba(0,0,0,.03);
}

.cursor-pointer {
    cursor: pointer;
}

.degradado {
	background: rgb(2,59,89);
}

.flex-1 {
    flex: 1;
}

.form-label {
    color: var(--primario);
    text-transform: uppercase;
    margin-bottom: 10px !important;
}

.form-control-custom {
    margin-top: -15px !important;
    border-radius: 0 !important;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    padding-left: 0px !important;
    padding-bottom: 3px;
}

.form-control-custom:focus, .form-select-custom:focus {
    outline: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid var(--primario);
    border-left: 0px;
    border-top: 0px;
}

label {
    font-size: 14px;
}

.mensaje-producto {
	margin-top: 25px;
	padding: 15px;
	border-radius: 5px;
	font-size: 14px;
	text-align: center;
}

.mensaje-producto-amarillo {
	background-color: #fec019;
	color:#202428;
}

.mensaje-producto-rojo {
	background-color: var(--red);
	color: #fff;
}

.mensaje-producto-verde {
	background-color: var(--green);
	color: #fff;
}

.mensaje-producto-azul {
	background-color: var(--primario);
	color: #fff;
}

.mensaje-producto-naranja {
	background-color: var(--orange);
	color: #fff;
}

.modal-header {
    background-color: var(--primario);
    color: white;
}

.modal-header .btn-close {
    color: white;
}

.min-width-100 {
    min-width: 100px;
}

.min-width-80 {
    min-width: 80px;
}

.min-width-70 {
    min-width: 70px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}


/* Paginación de bootstrap */

.pagination a {
    font-size: 16px;
    color: var(--primario);
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primario);
    border-color: var(--primario);
}

.rounded-50 {
    border-radius: 50px;
}

.text-right {
    text-align: right;
}

.texto-ligth-primario {
    color: var(--light-primario);
}

.texto-primario {
    color: var(--primario);
}

.texto-naranja {
    color: var(--orange);
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.form-control::placeholder {
    color: #9b9b9b;
}

.form-control, .form-select {
    border-radius: 0px;
}

.form-control:focus, .form-select:focus {
    /* border: 1px solid var(--primario); */
    outline: none !important;
    box-shadow: none;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(58,81,253, 0.2);
  border-right: 1.1em solid rgba(58,81,253, 0.2);
  border-bottom: 1.1em solid rgba(58,81,253, 0.2);
  border-left: 1.1em solid #3a51fd;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.btn-new {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 35px;
    margin-top: 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: var(--primario);
}

.btn-new:hover {
    background: var(--light-primario);
    color: #fff;
}