.aviso-cookies {
	display: none;
	background: #fff;
	padding: 20px;
	width: calc(100% - 40px);
	max-width: 300px;
	line-height: 150%;
	border-radius: 10px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
	padding-top: 60px;
	box-shadow: 0px 2px 20px 10px rgba(222,222,222,.25);
	text-align: center;
}

.aviso-cookies.activo {
	display: block;
}

.aviso-cookies .galleta {
	max-width: 100px;
	position: absolute;
	top: -50px;
	left: calc(50% - 50px);
}

.aviso-cookies .titulo-coo,
.aviso-cookies .parrafo {
	margin-bottom: 15px;
    color: #000;
}

.aviso-cookies .boton {
	width: 100%;
	background: #595959;
	border: none;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	text-align: center;
	padding: 15px 20px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s ease all;
	border-radius: 5px;
	margin-bottom: 15px;
	font-size: 14px;
}

.aviso-cookies .boton:hover {
	background: #000;
}

.aviso-cookies .enlace {
	color: #4DBFFF;
	text-decoration: none;
	font-size: 14px;
}

.aviso-cookies .enlace:hover {
	text-decoration: underline;
}

.fondo-aviso-cookies {
	display: none;
	background: rgba(0,0,0,.20);
	position: fixed;
	z-index: 99;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}

.fondo-aviso-cookies.activo {
	display: block;
}

/** MODAL VIDEO REPRODUCTOR **/

.modal-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background-color: rgb(37 34 32 / 29%);
	backdrop-filter: blur(2px);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s;
}

.video-container{
	width: 90%;
	max-width: 660px;
	background: #000;
	transform: scale(0);
	box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
	border-radius: 8px;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
}

.video-container .titulomodal {
	background: #fff;
	width: 100%;
	height: 39px;
	border-radius: 8px 8px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#titulo-modal {
	margin-left: 10px;
}

.video-container .close {
	font-size: 32px;
	cursor: pointer;
	color: #000;
	margin-right: 10px;
}

.video-container .close:hover {
	color: red;
}

.video-container .iframe {
	width: 100%;
	max-width: 660px;
	height: 380px;
	box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
	outline: none;
	transition: all 0.3s;
	border-radius: 0px 0px 8px 8px;
}

.video-container iframe {
	width: 100%;
	height: 100%;
	border-radius: 0px 0px 8px 8px;
}

.modal-video.show {
	pointer-events: all;
	opacity: 1;
}

.modal-video.show .video-container {
	transform: scale(1);
}

#botonSalirNodalVideo {
	position: absolute;
	width: 50px;
	height: 50px;
	box-shadow: 0px 0px 0px 4px rgba(69, 69, 76, 0.3);
	border: none;
	cursor: pointer;
	background-color: #0000008c;
	border-radius: 50%;
	color: #fff;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s ease-in;
	top: 60px;
	right: 40px;
}

#botonSalirNodalVideo div {
	font-size: 45px;
	background: linear-gradient(90deg, #c135ed, #5d9beb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

#botonSalirNodalVideo:hover{
	box-shadow: 0px 0px 0px 6px rgba(69, 69, 76, 0.3);
	background-color: #000;
}

/** MODAL VIDEO REPRODUCTOR **/

.video-container-tab {
	position: relative;
    padding-bottom: 54.25%;
    height: 0;
    overflow: hidden;
    max-width: 95%;
    background-color: #000;
    margin-left: auto;
    margin-right: auto;
}

.video-container-tab iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}