.table {
    border: none;
}


.table td {
    vertical-align: middle;
}

.page-item > * {
    border: none;
}

.custom-checkbox {
  min-height: 1rem;
  padding-left: 0;
  margin-right: 0;
  cursor: pointer; 
}
  .custom-checkbox .custom-control-indicator {
    content: "";
    display: inline-block;
    position: relative;
    width: 30px;
    height: 10px;
    background-color: #008BB8;
    border-radius: 15px;
    margin-right: 10px;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
    vertical-align: middle;
    margin: 0 16px;
    box-shadow: none; 
  }
    .custom-checkbox .custom-control-indicator:after {
      content: "";
      position: absolute;
      display: inline-block;
      width: 18px;
      height: 18px;
      background-color: #008BB8;
      border-radius: 21px;
      box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
      left: -2px;
      top: -4px;
      -webkit-transition: left .3s ease, background .3s ease, box-shadow .1s ease;
      transition: left .3s ease, background .3s ease, box-shadow .1s ease; 
    }
  .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
    background-color: #3ec4b9;
    background-image: none;
    box-shadow: none !important; 
  }
    .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator:after {
      background-color: #84c7c1;
      left: 15px; 
    }
  .custom-checkbox .custom-control-input:focus ~ .custom-control-indicator {
    box-shadow: none !important; 
  }

  .custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  }
  
  .custom-toggler.navbar-toggler {
    border-color: rgb(0, 0, 0);
  }
  /* LOGIN*/
  @import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
  .login-content {
    max-width: 450px;
      width: 100%;
      height: 550px;
      z-index: 1;
      position: absolute;
    margin: auto;
    margin-left: 25%;
    margin-top: 5%;
    border-radius: 8px;
  }
  @media (max-width: 991px) {
    .login-content {
      margin-left: 10%;
    margin-top: 5%;
    }
  }
  @media (max-width: 400px) {
    .login-content { 
      margin-left: -10px;
    margin-top: 20%;
    }
  }
  
  .logo {
    width: 128px;
    height: 128px;
    margin: 5px;
  }
  
  .text-logo {
    text-align: center;
    font-weight: bold;
    font-size: 32px;
  }
  
  .form-control {
   
    position: relative;
    border-radius: 5px;
  }
  
  .btns {
    font-size: 22px;
    background-color: #0278ae;
    border: none;
    width: 18rem;
    height: 3rem;
    border-radius: 5px;
  }
  
  .btns:hover {
    background-color: blue;
  }
  
  .nomember {
    background-color: #e4dede;
    padding: 10px;
    padding-top: 20px;
    border-radius: 0px 0px 5px 5px;
  }
  
  .nomember a{
    text-decoration: none;
  }
  
  .forgot {
    position: relative;
  }
  
  .forgot a {
    text-decoration: none;
    font-size: 16px;
    color: #b99f8a;
  }
  
  .copyright {
    color: white;
    padding: 15px;
  }
  
  /*support google chrome*/
  .form-control::-webkit-input-placeholder{
    color: #00000036;
  }
  
  /*support mozilla*/
  .form-control:-moz-input-placeholder{
    color: red;
  }
  
  /*support internet explorer*/
  .form-control:-ms-input-placeholder{
    color: red;
  }

 /**/
  /* BOTON SALIR*/
  .Btnsalir {
    --black: #000000;
    --ch-black: #141414;
    --eer-black: #1b1b1b;
    --night-rider: #2e2e2e;
    --white: #ffffff;
    --af-white: #f3f3f3;
    --ch-white: #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: var(--night-rider);
  }
  
  /* plus sign */
  .signsalir {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .signsalir svg {
    width: 17px;
  }
  
  .signsalir svg path {
    fill: var(--af-white);
  }
  /* text */
  .textsalir {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: var(--af-white);
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: .3s;
  }
  /* hover effect on button width */
  .Btnsalir:hover {
    width: 125px;
    border-radius: 5px;
    transition-duration: .3s;
  }
  
  .Btnsalir:hover .signsalir {
    width: 30%;
    transition-duration: .3s;
    padding-left: 20px;
  }
  /* hover effect button's text */
  .Btnsalir:hover .textsalir {
    opacity: 1;
    width: 70%;
    transition-duration: .3s;
    padding-right: 10px;
  }
  /* button click effect*/
  .Btnsalir:active {
    transform: translate(2px ,2px);
  }

  /*toogle nav bar*/
  .pen .navbar-toggle {
    border: none;
    background: transparent !important;
  }
  
  .pen .navbar-toggle:hover {
    background: transparent !important;
  }
  
  .pen .navbar-toggle .icon-bar {
    width: 22px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  /* ANIMATED X */
.navbar-toggle.x .icon-bar:nth-of-type(1) {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transform-origin: 10% 10%;
	-ms-transform-origin: 10% 10%;
	transform-origin: 10% 10%;
}

.navbar-toggle.x .icon-bar:nth-of-type(2) {
	opacity: 0;
	filter: alpha(opacity=0);
}

.navbar-toggle.x .icon-bar:nth-of-type(3) {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 10% 90%;
	-ms-transform-origin: 10% 90%;
	transform-origin: 10% 90%;
}

/* ANIMATED X COLLAPSED */
.navbar-toggle.x.collapsed .icon-bar:nth-of-type(1) {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}

.navbar-toggle.x.collapsed .icon-bar:nth-of-type(2) {
	opacity: 1;
	filter: alpha(opacity=100);
}

.navbar-toggle.x.collapsed .icon-bar:nth-of-type(3) {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}
/* END ANIMATED X */
/*BOTON SAVE PARA TODAS LAS INTERACCIONES*/
.buttonSA {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: white;
  background-color: #171717;
  padding: 1em 2em;
  border: none;
  border-radius: .6rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.buttonSA span:not(:nth-child(6)) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  width: 30px;
  background-color: #0c66ed;
  border-radius: 50%;
  transition: .6s ease;
}

.buttonSA span:nth-child(6) {
  position: relative;
}

.buttonSA span:nth-child(1) {
  transform: translate(-3.3em, -4em);
}

.buttonSA span:nth-child(2) {
  transform: translate(-6em, 1.3em);
}

.buttonSA span:nth-child(3) {
  transform: translate(-.2em, 1.8em);
}

.buttonSA span:nth-child(4) {
  transform: translate(3.5em, 1.4em);
}

.buttonSA span:nth-child(5) {
  transform: translate(3.5em, -3.8em);
}

.buttonSA:hover span:not(:nth-child(6)) {
  transform: translate(-50%, -50%) scale(4);
  transition: 1.5s ease;
}
  
/* END BOTON SAVE*/
/*CLASES*/
summary{padding:20px;width:400px;font-size:19px;z-index:1;border-bottom:1px solid silver;cursor:pointer}
/* */
/*boton arrow*/
.buttonAR {
  width: 40px;
  height: 40px;
  bottom: 10px;
  right: 0px;
  background-color: #004dff;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 25px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  border: #004dff;
  transition: 0.5s;
}

.buttonAR:hover {
  transform: scale(1.1);
}

.buttonAR:active {
  background-color: #020cd1;
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  margin-left: auto;
  margin-right: auto;
  margin-top: 38%;
  margin-bottom: 60%;
  border-bottom: 15px solid white;
  transform: rotate(90deg);
}
a:link, a:visited, a:active {
  text-decoration:none;
}

/*BOTON DE VER*/
.buttonVER {
	position: relative;
	font-family: inherit;
	transition: all 0.1s ease-in;
	display: flex;
	gap: 1.65rem;
	cursor: pointer;
	border-radius: 3rem;
	padding: 0.5rem 2rem;
	background-color: #3a393b;
	color: #fff;
	border: none;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 600;
	min-width: 1rem;
	justify-content: center;
}

.buttonVER:hover {
	background-color: #2e77f2;
}

.buttonVER:has(input:checked) {
	background-color: #2e77f2;
}

.buttonVER:active {
	transform: translateY(0.2rem);
}

.arrowVER {
	position: relative;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
	width: 0;
	height: 0;
	border-top: 0.8rem solid transparent;
	border-bottom: 0.8rem solid transparent;
	border-left: 1rem solid #fff;
}

.arrowVER::after {
	transition: transform 0.4s ease-in-out;
	content: "";
	position: absolute;
	background-color: transparent;
	width: 1.5rem;
	height: 2rem;
	top: -1rem;
}

.arrowVER::before {
	transition: all 0.3s ease-out;
	content: "";
	position: absolute;
	background-color: transparent;
	width: 1rem;
	height: 1.6rem;
	top: -0.8rem;
}






/*Congrats user*/
.contain{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: linear-gradient(90deg,#CEBDB0,#B7A19B);
background-image: linear-gradient(to bottom right,#CEBDB0,#B7A19B);	
}

.done{
	width:100px;
	height:100px;
	position:relative;
	left: 0;
	right: 0;
	top:-20px;
	margin:auto;
}
.contain h1{
	font-family: 'Julius Sans One', sans-serif;
	font-size:1.4em;
	color: #CEBDB0;
}

.congrats{
	position:relative;
	left:50%;
	top:50%;
	max-width:800px;	transform:translate(-50%,-50%);
	width:80%;
	min-height:300px;
	max-height:900px;
	border:2px solid white;
	border-radius:5px;
	    box-shadow: 12px 15px 20px 0 rgba(46,61,73,.3);
    background-image: linear-gradient(to bottom right,#CEBDB0,#B7A19B);
	background:#fff;
	text-align:center;
	font-size:2em;
	color: #CEBDB0;
}

.text{
	position:relative;
	font-weight:normal;
	left:0;
	right:0;
	margin:auto;
	width:80%;
	max-width:800px;

	font-family: 'Lato', sans-serif;
	font-size:0.6em;

}


.circ{
    opacity: 0;
    stroke-dasharray: 130;
    stroke-dashoffset: 130;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}
.tick{
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    -webkit-transition: stroke-dashoffset 1s 0.5s ease-out;
    -moz-transition: stroke-dashoffset 1s 0.5s ease-out;
    -ms-transition: stroke-dashoffset 1s 0.5s ease-out;
    -o-transition: stroke-dashoffset 1s 0.5s ease-out;
    transition: stroke-dashoffset 1s 0.5s ease-out;
}
.drawn svg .path{
    opacity: 1;
    stroke-dashoffset: 0;
}

.regards{
	font-size:.7em;
}


@media (max-width:600px){
	.congrats h1{
		font-size:1.2em;
	}
	
	.done{
		top:-10px;
		width:80px;
		height:80px;
	}
	.text{
		font-size:0.5em;
	}
	.regards{
		font-size:0.6em;
	}
}

@media (max-width:500px){
	.congrats h1{
		font-size:1em;
	}
	
	.done{
		top:-10px;
		width:70px;
		height:70px;
	}
	
}

@media (max-width:410px){
	.congrats h1{
		font-size:1em;
	}
	
	.congrats .hide{
		display:none;
	}
	
	.congrats{
		width:100%;
	}
	
	.done{
		top:-10px;
		width:50px;
		height:50px;
	}
	.regards{
		font-size:0.55em;
	}
	
}
/* input radio*/
.radio-input input {
  display: none;
}

.radio-input {
  --container_width: 100%; /* Aumenta el ancho para acomodar 5 opciones */
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 9999px;
  background-color: #fff;
  color: #000000;
  width: var(--container_width);
  overflow: hidden;
  border: 1px solid rgba(53, 52, 52, 0.226);
}

.radio-input label {
  width: 20%; /* Divide el ancho por 5 opciones */
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 14px;
  background-color: #fff; /* Fondo blanco predeterminado */
}

.selection {
  display: none;
  position: absolute;
  height: 100%;
  width: calc(var(--container_width) / 5); /* Acomoda el ancho del indicador para 5 opciones */
  z-index: 0;
  left: 0;
  top: 0;
  transition: .15s ease;
}

/* Establece los estilos para el fondo del label cuando la opción está seleccionada */
.radio-input input:checked + label {
  background-color: #CEBDB0; /* Cambia el fondo a azul cuando está seleccionado */
  color: #fff; /* Cambia el color del texto a blanco */
}

/* Calcula la posición del indicador para cada opción */
.radio-input label:nth-child(1) input:checked ~ .selection {
  transform: translateX(calc(var(--container_width) * 0/5));
}

.radio-input label:nth-child(2) input:checked ~ .selection {
  transform: translateX(calc(var(--container_width) * 1/5));
}

.radio-input label:nth-child(3) input:checked ~ .selection {
  transform: translateX(calc(var(--container_width) * 2/5));
}

.radio-input label:nth-child(4) input:checked ~ .selection {
  transform: translateX(calc(var(--container_width) * 3/5));
}

.radio-input label:nth-child(5) input:checked ~ .selection {
  transform: translateX(calc(var(--container_width) * 4/5));
}

.elbotong {
  background-color: #CEBDB0; /* Cambia el fondo a azul cuando está seleccionado */
  color: #fff; /* Cambia el color del texto a blanco */
}
.elbotong:hover {
  background-color: #a0826b; /* Cambia el fondo a otro color cuando el cursor está sobre el botón */
  color: #ffffff; /* Cambia el color del texto a otro color */
}
