footer{
	background: var(--blanco);
	box-shadow: 0px 0px 15px 10px #fafafa;
}
#banner{
	width: 100%;
	margin-top: 12vh;
	margin-bottom: -1vh;
}
#banner>img{
	width: 100%;
}
#banner>img:last-of-type{
	display: none;
}
#general{
	width: 100%;
	height: 100%;
	display: flex;
	background: var(--blanco);
}
#filtros{
	background: #f2f4f9;
	width: 20%;
	padding: 10vh 5%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	z-index: 10;
}
#filtros>div{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
#filtros>div>div{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 4vh;
}
#filtros>div>div>span{
	background: #45b8f3;
	color: #45b8f3;
	padding: 0 2px;
}
#filtros>div>div>p{
	font-size: 1.2em;
	color: var(--negro-cursos);
	font-weight: 700;
	margin-left: 1vh;
}
#filtros>div>div>img{
	display: none;
}
#filtros>div>form{
	width: 90%;
    justify-content: space-between;
    background: var(--blanco);
    display: flex;
    align-items: center;
    padding: 2vh 4vh;
    border-radius: 50px;
    z-index: 2;
}
#filtros>div>form>input{
	border: none;
	outline: none;
    text-align: left;
    font-size: 0.9em;
    font-weight: 500;
    width: 90%;
    height: 150%;
}
#filtros>div>form>input::placeholder{
	color: #c1c4cb;
}
#filtros>div>form>input[type="submit"]{
	width: 8%;
    background-image: url(../iconos/buscador-search.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
    border-radius: 30px;
    background-color: var(--blanco);
}
#filtros>#modal{
	width: 100%;
	display: flex;
	flex-direction: column;
}
#filtros>#modal>.botones-modal{
	display: none;
}
#filtros>#modal>p{
	font-size: 0.9em;
	color: var(--blanco);
	font-weight: 500;
	background: #546fc8;
	padding: 1vh 5vh;
	border-radius: 50px;
	margin-top: 3vh;
}
#filtros>#modal>p:last-of-type{
	background: #7369ce;
}
#filtros>#modal>div{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 2vh;
}
#filtros>#modal>div>.checkbox{
	width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 0px;
}
#filtros>#modal>div>.checkbox>input{
	display: none;
}
#filtros>#modal>div>.checkbox>label{
	color: #333;
    font-size: .75em;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#filtros>#modal>div>.checkbox>label>span{
	width: 10px;
    height: 10px;
    margin: 0 4px 0 0;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    color: #2391c9;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #c1c4cb;
}
#filtros>#modal>div>.checkbox>label>span>i{
	width: 6px;
    height: 6px;
    border-radius: 7px;
    background: #fff;
    transition: all 0.2s ease;
}
#filtros>#modal>div>.checkbox > input[type="checkbox"]:checked + label > span > i {
    background: var(--negro-claro);
}
#filtros>#modal>div>a{
	width: 115%;
	text-decoration: none;
	font-size: 0.9em;
	color: #3684e5;
	font-weight: 500;
	padding: 1vh 0;
	border-bottom: 1.5px solid #e2e5ed;
}
#filtros>#modal>div>a:hover{
	font-weight: 700;
}
#filtros>#modal>div>a:last-of-type{
	border-bottom: none;
}
#cursos-div{
	margin: 10vh 0 0 10vh;
	width: 65%;
	display: flex;
	flex-direction: column;
}
#cursos-div>p{
	font-size: 1.5em;
	color: var(--negro-cursos);
	font-weight: 700;
}
#cursos-div>div{
	 width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 5vh;
}
#cursos-div>div>span{
	font-size: 1em;
	color: var(--negro-cursos);
	font-weight: 500;
	width: 15%;
}
#cursos-div>div>#activados{
	align-self: flex-start;
    margin-bottom: 3%;
    display: inline;
    width: 65%;
    height: auto;
}
#cursos-div>div>#activados>p{
	margin-left: 1%;
	font-size: 0.9em;
    border-radius: 30px;
    color: #546fc8;
    background: #f2f4f9;
    display: inline-block;
    position: relative;
    padding: 1vh 5vh 1vh 2vh;
    margin-bottom: 1vh;
    cursor: pointer;
}
#cursos-div>div>#activados>p>span{
	cursor: pointer;
    position: absolute;
    right: 1vw;
    background: url(../iconos/buscador-close.svg);
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: center;
    top: 30%;
    width: 2vh;
    height: 2vh;
}
#cursos-div>div>#activados>.limpiar{
	background: #546fc8;
    color: var(--blanco);
    cursor: pointer;
    border-radius: 30px;
    font-size: 0.9em;
    display: inline-block;
    padding: 1vh 5vh;
    margin-left: 1%;
}
#cursos-div>a{
	width: 80%;
    display: flex;
    flex-direction: row;
    text-decoration: none;
    justify-content: space-between;
    height: auto;
    padding: 3vh 0;
    border-bottom: 2px solid #f1f1f1;
}
#cursos-div>.last-a{
	padding-bottom: 9vh;
	border-bottom: none;
}
#cursos-div>a>div{
	width: 40%;
    display: flex;
    height: auto;
    position: relative;
    justify-content: center;
}
#cursos-div>a>div:first-of-type>img{
	width: 100%;
    border-radius: 20px;
    aspect-ratio: 2/1;
}
#cursos-div>a>div:first-of-type>span{
	position: absolute;
    bottom: 5%;
    padding: 1vh 5vh;
    color: var(--blanco);
    font-size: 0.9em;
    border-radius: 30px;
    font-weight: 500;
    width: 30%;
    text-align: center;
}
#cursos-div>a>div>.tipo-Abierto{
	background: #5f8cff;
}
#cursos-div>a>div>.tipo-InCompany{
	background: #3843b1;
}
#cursos-div>a>div>.tipo-Servicio{
	background: #7369ce;
}
#cursos-div>a>div:last-of-type{
	width: 55%;
	display: flex;
	flex-direction: column;
}
#cursos-div>a>div>p{
	font-weight: 700;
    font-size: 1em;
    text-align: left;
    width: 98%;
    margin-bottom: 2vh;
    transition: all 0.2s ease;
    color: var(--negro-cursos);
    line-height: 18px;
}
#cursos-div>a>div>span,
#cursos-div>a>.Abierto>div>span{
	color: #8d8d8d;
    font-weight: 500;
    font-size: .8em;
    text-align: left;
    width: 90%;
    line-height: 18px;
}
#cursos-div>a>.Abierto>div{
	width: 100%;
	display: flex;
	flex-direction: column;
}
#cursos-div>a>.Abierto>div>div{
	display: flex;
    flex-direction: row;
    width: 100%;
    align-items: flex-end;
    margin-top: 1vh;
    justify-content: space-between;
}
#cursos-div>a>.Abierto>div>div>div{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
}
#cursos-div>a>.Abierto>div>div>div>object{
	width: 5vh;
	height: 5vh;
}
#cursos-div>a>.Abierto>div>div>div:nth-of-type(1)>object{
	background: url(../iconos/icon-inicia.svg);
	background-repeat: no-repeat;
	background-size: 80%;
	background-position: center;
}
#cursos-div>a>.Abierto>div>div>div:nth-of-type(2)>object{
	background: url(../iconos/icon-dia.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#cursos-div>a>.Abierto>div>div>div:nth-of-type(3)>object{
	background: url(../iconos/icon-evo.svg);
	background-repeat: no-repeat;
	background-size: 90%;
	background-position: center;
}
#cursos-div>a>.Abierto>div>div>div>p{
	font-size: 0.8em;
	color: var(--negro-cursos);
	font-weight: 500;
	white-space: nowrap;
    margin-left: 1vh;
}

@media screen and (max-width: 768px){
	#banner{
		margin-bottom: 0;
	}
	#banner>img:first-of-type{
		display: none;
	}
	#banner>img:last-of-type{
		display: flex;
		height: 50vh;
	}
	#general{
		flex-direction: column;
	}
	#filtros{
		width: 100%;
		padding: 10vh 0 4vh;
		background: var(--blanco);
		align-items: center;
	}
	#filtros>div{
		align-items: center;
		width: 80%;
		border-bottom: 2px solid #c3c3c3;
	}
	#filtros>div>div{
		width: 70%;
		justify-content: center;
	}
	#filtros>div>div>span{
		padding: 4px 2px;
	}
	#filtros>div>div>p{
		font-size: 1.5em;
		margin-right: 4vh;
	}
	#filtros>div>div>img{
		display: flex;
	}
	#filtros>div>form{
		width: 60%;
		position: absolute;
		top: 50vh;
	}
	#filtros>div>form>input{
		font-size: 1em;
	}
	#filtros>div>form>input[type="submit"]{
		width: 2vh;
		height: 2vh;
	}
	#filtros>#modal{
		width: 95%;
	    display: none;
	    flex-direction: column;
	    position: absolute;
	    z-index: 10;
	    margin-top: 8vh;
	    background: #f2f4f9;
	    border-radius: 30px;
	    box-shadow: 0px 0px 25px 0px rgba(191,191,191,1);
	}
	#filtros>#modal>.botones-modal{
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		margin-top: 8vh;
		margin-bottom: 3vh;
	}
	#filtros>#modal>.botones-modal>span{
		font-size: 1em;
	    color: var(--blanco);
	    font-weight: 500;
	    padding: 1vh 0vh;
	    display: flex;
	    justify-content: center;
	    width: 45%;
	    align-items: center;
	    border-radius: 50px;
	}
	#filtros>#modal>.botones-modal>.btn-areas{
		background: #546fc8;
		font-weight: 600;
	}
	#filtros>#modal>.botones-modal>.btn-servicios{
		background: #7369ce;
		font-weight: 600;
	}
	#filtros>#modal>.botones-modal>.btn-desactivado{
		background: #c3c3c3;
		font-weight: 500;
	}
	#filtros>#modal>.botones-modal>i{
		width: 2vh;
	    height: 2vh;
	    background: url(../iconos/buscador-close.svg);
	    position: absolute;
	    top: 2vh;
	    right: 2vh;
	}
	#filtros>#modal>p{
		display: none;
	}
	#filtros>#modal>div{
		width: 90%;
		align-items: center;
	}
	#filtros>#modal>div>.checkbox{
		justify-content: center;
	}
	#filtros>#modal>div>.checkbox>label{
		font-size: 0.9em;
		font-weight: 600;
	}
	#filtros>#modal>div>.checkbox>label>span{
		display: none;
	}
	#filtros>#modal>.servicios{
		display: none;
		width: 80%;
	}
	#filtros>#modal>div>a{
		border-bottom: none;
		text-align: center;
		color: var(--negro-cursos);
	}
	#cursos-div{
		margin: 0;
	    width: 100%;
	    align-items: center;
	}
	#cursos-div>div{
		flex-direction: column;
    	align-items: center;
	}
	#cursos-div>div>span{
		width: auto;
	}
	#cursos-div>div>#activados{
		width: 80%;
    	align-self: center;
	}
	#cursos-div>div>#activados>p>span{
		right: 4vw;
	}
	#cursos-div>a{
		flex-direction: column;
    	align-items: center;
	}
	#cursos-div>a>div{
		width: 90%;
		margin-top: 2vh;
	}
	#cursos-div>a>div:last-of-type{
		width: 90%;
	}
	#cursos-div>a>div>span, #cursos-div>a>.Abierto>div>span{
		width: 100%;
	}
	#cursos-div>a>.Abierto>div>div>div>object{
		width: 3vh;
		height: 3vh;
	}
	#cursos-div>a>.Abierto>div>div>div>p{
		font-size: 0.7em;
		margin-left: 0.5vh;
	}
}