.form {
    padding: 20px;
    border-radius: 20px;
    background-color: #FFF;
    /* box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-blue-1);
    box-sizing: border-box;
    margin: 2%; */
}

/* FLEX */
.forms_carrusel_list{
	list-style: none;
}
.forms_carrusel_list ul, .forms_carrusel ul{
	list-style: none;
	width: 100%;

}
.forms_carrusel_list li{
	width: 100%;
}

/* login_form */
.login_form{
	padding: 30px 50px;
}
.login_form h2{
	color: #000;
	text-align: center;
	font-size: 15pt;
	margin: 10px 0;
}
.login_form img{
	margin: 10px 25%;
	width: 50%;
}

/* MODALS */
.modal_container
{
	position: fixed;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000000;
}
.modal_form
{
	width: 60%;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 30px;

	max-height: 90%;
	overflow-y: auto;
	border-radius: 15px;
	height: auto !important;
}
.modal_form > h2{
	text-align: left;
}
.modal_form_small{
	width: 30%;
	max-width: 400px;
}
.modal_form_middle{
	width: 50%;
	max-width: 800px;
	margin: auto;
}
.modal_form_big{
	width: 75%;
	max-width: 1000px;
	margin: auto;
}
.modal_form_full{
	width: 90% !important;
	max-width: 1400px;
	height: 90% !important;
}


/* status_creation */
.status_creation{
	width: 40%;
	list-style: none;
	display: flex;
	margin: 20px auto;
}
.form_selected{
	filter: grayscale(0) !important;
}
.status_creation li{
	width: 100%;
}
.status_creation img{
	filter: grayscale(1);
	transition: 0.4 all;
	width: 100%;
}
/*euicab 2022 chips*/
	/*otra manera*/
	.list-tag {
		list-style: none;
		margin: 0px;
		padding: 0px;
		display: inline-block;
	}
	.list-tag li {
	  display: inline-block;
      background: #555;
      color: white;
      padding: 3px 5px 3px 10px;
      border-radius: 15px;
      margin-right: 5px;
      margin-bottom: 5px;
	}
	.list-tag li a {
		color: white;
        text-decoration: none;
        margin-left: 5px;
        font-size: 10px;
        background: #333;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        display: inline-flex;
        text-align: center;
        align-items: center;
        justify-content: center;
	}
  /*euicab 2022 chips*/