video {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	transform: translateX(-50%) translateY(-50%);
	background: url('img/1stframe.png') no-repeat;
	background-size: cover;
	transition: 1s opacity;
}
#filter {
	background: rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
	overflow:hidden;
	/*Permite que el filtro quede por debajo de todo el contenido*/
	z-index:1;
}
a.hover_this {
	display: block;
	position: relative;
	-moz-transition: transform 0.1s ease-in-out;
	-o-transition: transform 0.1s ease-in-out;
	-webkit-transition: transform 0.1s ease-in-out;
	transition: transform 0.1s ease-in-out;
}
a.hover_this > .initial,
a.hover_this > .onhover {
	-moz-transition:  opacity 0.1s ease-in-out;
	-o-transition:    opacity 0.1s ease-in-out;
	-webkit-transition:  opacity 0.1s;
	transition:   opacity 0.1s ease-in-out;
}
a.hover_this > .onhover {
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
a.hover_this:hover,
a.hover_this:active,
a.hover_this:focus {
	transform: scale(1.05);
}
/*a.hover_this:hover > .initial {
	opacity: 0.75;
}*/
a.hover_this:hover > .onhover {
	opacity: 0.25;
}
img.corona {
	width: 50px;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 5em);
    overflow: hidden;
}
.modal-dialog-centered .modal-content {
    position: relative;
    background-color: transparent;
    border: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
}
.modal-dialog-centered .modal-body {
    position: relative;
    padding: 0;
}
.modal-dialog-centered .modal-header {
    padding: 0;
    border-bottom: none;
}
.modal-dialog-centered .modal-header .close {
    margin-top: -2px;
    background: #fcd412;
    height: 25px;
    width: 25px;
    opacity: 1;
    border-radius: 6px 6px 0px 0px;
}