/*Gonzalo - loading inicial*/
.container__loading-item,
.container__loading-notificaciones,
.container__loading-video {
	/*Contenedor general*/
	display: flex;
	width: 100%;
	flex-flow: row wrap;
	justify-content: center;
}
.container__loading-notificaciones {
	/*Contenedor Especial para la grid de "detalles notificaciones"*/
	grid-area: loading;
}
.container__loading-video {
	position: absolute;
	align-items: center;
	top: 0;
	z-index: 1000;
	height: 100%;
}
/* ITEM */
.loading-item {
	position: relative;
	font-weight: 600;
	line-height: 4;
	padding: 0 2em;
	margin: 1.5em;
}
.loading-item:before {
	position: absolute;
	content: '';
	display: block;
	width: 0;
	left: 50%;
	height: 3px;
	bottom: 0;
	transition: all 300ms;
	-webkit-animation-name: iteration-loading;
	animation-name: iteration-loading;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}
/* Colores Item de carga*/
.loading-naranja {
	color: orangered;
}
.loading-naranja:before {
	background: orangered;
}
.loading-blanco {
	color: #fff;
}
.loading-blanco:before {
	background: #fff;
}
@-webkit-keyframes iteration-loading {
	0% {
		left: 50%;
		width: 0%;
	}
	50% {
		left: 0%;
		width: 100%;
	}
	100% {
		left: 50%;
		width: 0%;
	}
}
@keyframes iteration-loading {
	0% {
		left: 50%;
		width: 0%;
	}
	50% {
		left: 0%;
		width: 100%;
	}
	100% {
		left: 50%;
		width: 0%;
	}
}

/*Gonzalo - loading inicial*/
/*Gonzalo - Animaciones agregadas, Left: viene de izq a der*/
.menuAnimadoG {
	-webkit-animation-name: Animate-StartOpacityScale;
	animation-name: Animate-StartOpacityScale;
	-webkit-animation-duration: 200ms;
	animation-duration: 200ms;
	-webkit-animation-iteration-count: initial;
	animation-iteration-count: initial;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

@-webkit-keyframes Animate-StartOpacityScale {
	0% {
		opacity: 0;
		transform: scale(2);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes Animate-StartOpacityScale {
	0% {
		opacity: 0;
		transform: scale(2);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@-webkit-keyframes Animate-StartOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes Animate-StartOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.modal__editar-usuario .modal-body {
	background: #3f424b;
}

.rotate-in-hor {
	-webkit-animation: rotate-in-hor 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	animation: rotate-in-hor 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.transition-300ms-all {
	transition: 300ms all;
}
.fade-in {
	-webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
	animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.lds-spinner {
	color: official;
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}
.lds-spinner div {
	transform-origin: 40px 40px;
	animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
	content: ' ';
	display: block;
	position: absolute;
	top: 3px;
	left: 37px;
	width: 6px;
	height: 18px;
	border-radius: 20%;
	background: #cef;
}
.lds-spinner div:nth-child(1) {
	transform: rotate(0deg);
	animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
	transform: rotate(30deg);
	animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
	transform: rotate(60deg);
	animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
	transform: rotate(90deg);
	animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
	transform: rotate(120deg);
	animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
	transform: rotate(150deg);
	animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
	transform: rotate(180deg);
	animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
	transform: rotate(210deg);
	animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
	transform: rotate(240deg);
	animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
	transform: rotate(270deg);
	animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
	transform: rotate(300deg);
	animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
	transform: rotate(330deg);
	animation-delay: 0s;
}
@keyframes lds-spinner {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.lds-dual-ring {
	display: inline-block;
	width: 40px;
	height: 40px;
}
.lds-dual-ring:after {
	content: ' ';
	display: block;
	width: 32px;
	height: 32px;
	margin: 8px;
	border-radius: 50%;
	border: 6px solid #fff;
	border-color: #fff transparent #fff transparent;
	animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.btn-tickets {
	background: #ff7300;
	color: white;
	font-weight: bold;
	padding: 6px 24px;
	border-radius: 12px;
	margin-right: 12px;
	outline: none;
	border: none;
}
