/** vídeo youtube iframe **/

.ytbvideo {
    position: relative;
}

.ytbvideo .fondo_negro {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    display: none;
}

.ytbvideo:hover .fondo_negro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ytbvideo .fondo_negro div {
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    font-family: "SpaceGrotesk";
}

.cont_video {
    position: fixed;
    top: 0px;
	left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 99;
	display: none;
	transition: all 0.5s;
}

.cont_video iframe {
    display: block;
    margin: auto;
}

.cerrarvideo {
    font-size: 40px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 5%;
    right: 10%;
    cursor: pointer;
}

@media (max-width: 500px) {
	.cont_video {
		flex-direction: row;
		flex-wrap: wrap;
		align-content: center;
		justify-content: center;
		align-items: center;
	}
	
	.cont_video iframe {
		height: 300px;
		margin-top: auto !important;
	}
	
	.cerrarvideoyt {
		top: 20%;
		right: 5%;
	}
}

@media (max-width: 375px) {	
	.cerrarvideoyt {
		top: 15%;
		right: 5%;
	}
}

/** Slider simple **/

.slider-simple-imagenes.vertical-center .swiper-wrapper {
	align-items: center;
}

.slider-simple-imagenes.vertical-flex-start .swiper-wrapper {
	align-items: flex-start;
}

.slider-simple-imagenes.vertical-flex-end .swiper-wrapper {
	align-items: flex-end;
}

.slider-simple-imagenes.horizontal-center .swiper-wrapper .swiper-slide {
	text-align: center;
}

.slider-simple-imagenes.horizontal-left .swiper-wrapper .swiper-slide {
	text-align: left;
}

.slider-simple-imagenes.horizontal-right .swiper-wrapper .swiper-slide {
	text-align: right;
}