/* Variables globales */

.btn {
	opacity: 1;
	transition: all 400ms ease;
}

.btn:hover {
	opacity: 0.8;
}

.btn:focus {
	box-shadow: unset;
}

.btn:disabled {
	opacity: 0.4;
}

.alert-error {
	margin: 0;
    font-size: 14px;
    text-align: center;
    line-height: 14pt;
    max-width: 300px;
}

.handle-form, .alert-error {
    margin: 6px 0;
    width: 100%;
    color: #747474;
}

.handle-form label {
	color: #5E5E5E;
	margin-bottom: 4px;
	cursor: pointer;
}

.handle-form .input-login {
	color: #555555 !important;
    width: 100%;
    border: solid 1px #747474;
    border-radius: 8px;
    background: #fff;
    padding: 8px 14px;
	outline: none;
}

.handle-form input:disabled {
	opacity: 0.7;
}

.handle-form .input-addon {
	position: relative;
}

.handle-form .input-addon .input-login {
	padding-right: 40px;
}

.handle-form .input-addon button {
	outline: none;
    border: none;
    background: none;
}

.handle-form .input-addon .addon {
	position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 12px;
	display: flex;
    justify-content: center;
    align-items: center;
    color: #747474;
}

.loading {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading i {
	font-size: 50px;
    color: #fff;
}

/* Header */

.navegation {
	box-shadow: 0 0.125rem 1rem 1px rgba(29, 58, 83, 0.15) !important;
}

.navegation .elements {
	width: 100%;
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 40px;
}

.navegation .elements .logo img {
	max-height: 62px;
}

.navegation .elements .buttons {
	display: flex;
	justify-content: center;
	align-items: center;
    max-width: 60%;
    flex-wrap: wrap;
}

.navegation .elements .buttons .button {
	text-decoration: none;
    color: #323232;
    font-size: 18px;
    padding: 6px 16px;
    font-weight: normal;
    margin: 2px 4px;
    border-bottom: solid 3px transparent;
    transition: all 400ms ease;
}

.navegation .elements .login-system {
	display: flex;
    flex-direction: column;
    padding: 0 24px;
}

.navegation .elements .logout-system {
	display: flex;
    flex-direction: column;
    padding: 0 10px;
    text-align: center;
    max-width: 30%;
    align-items: center;
}

.navegation .elements .logout-system p {
	margin: 0;
}

.navegation .elements .logout-system p:nth-child(1) {
	font-weight: bold;
}

.navegation .elements .login-system .btn-login {
	padding: 2px 18px;
    margin: 4px 0;
    font-size: 14px;
    border-radius: 20px;
	display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    white-space: nowrap;
}

.navegation .elements .login-system .btn-login img {
	margin-right: 8px;
    height: 17px;
}

.modal .btn-close {
	position: absolute;
    right: 1rem;
    top: 1rem;
}

.autenticacion-externa {
	max-width: 30%;
}

.modal-login .modal-body,
.modal-login .login,
.modal-login .login .modal-form {
	display: flex;
    justify-content: center;
    align-items: center;
}

.modal-login .login {
	flex-direction: column;
	background: #fff;
    border-radius: 12px;
    padding: 28px 36px;
}

.modal-login .login .logo-login img {
	max-height: unset;
    height: 80px;
}

.modal-login .login .modal-form {
	display: flex;
    flex-direction: column;
    margin-top: 26px;
}

.modal-login .login .modal-form .recovery {
    color: #747474;
    padding: 0;
    background: none;
    border: none;
    text-decoration: underline;
}

.modal-login .login .btn-back-login,
.modal-double-factor .btn-back-login {
	background: #747474;
	color: #fff;
}

.modal-login .login .nav {
	flex-wrap: nowrap;
}

.modal-login .login .nav-tabs .nav-link {
	color: #495057;
}

.modal-login .login .nav-tabs .nav-link.active {
	color: #495057;
	font-weight: 600;
}

.modal-login .login .nav-tabs .nav-link:hover {
	color: unset;
}

.modal-login .login .tab-content {
	width: 100%;
}

.modal-double-factor .modal-content {
	border: unset;
	border-radius: 12px;
}

.modal-double-factor .modal-content .modal-header {
	display: flex;
    justify-content: center;
}

.modal-double-factor .modal-content .modal-header .modal-title {
	text-align: center;
    color: #525252;
}

.modal-double-factor .email-to {
	font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin: 12px 0;
}

.modal-double-factor .input-login {
	text-align: center;
    letter-spacing: 4pt;
    font-size: 22px;
}

@media (min-width: 1600px) {
	.navegation .elements .logo img {
		max-height: 80px;
	}
	
	.navegation .elements .button {
		font-size: 20px;
	}
  
	.navegation .elements .login-system .btn-login {
		font-size: 16px;
	}
}

@media (max-width: 1200px) {
	.navegation .elements {
		flex-direction: column;
	}
	
	.navegation .elements .buttons {
		max-width: 100%;
		order: 3;
	}
	
	.navegation .elements .login-system {
		flex-direction: row;
		margin: 10px 0;
	}
	
	.navegation .elements .logout-system {
	    max-width: unset;
		margin: 10px 0;
	}
	
	.navegation .elements .login-system .btn-login {
		margin: 4px 8px;
	}
}

@media (max-width: 800px) {
	.navegation {
		padding: 10px 22px;
	}
	
	.navegation .elements .logo img {
		max-height: 68px;
	}
	
	.navegation .elements .buttons .button {
	    font-size: 16px;
	    padding: 4px 12px;
	}
	
	.navegation .elements .login-system {
		padding: 0 16px;
		flex-direction: column;
	}
	
	.navegation .elements .login-system .btn-login {
		margin: 4px 0;
	}
}

/* Contenido */

.carousel-separator {
	margin: 0;
    padding: 1px;
    opacity: 0.4;
}

.content {
	margin: 3% 5%;
}

.banner {
	position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    height: 50%;
    pointer-events: none;
}

.content .owl-carousel {
	padding: 12px 80px;
}

.content .owl-carousel .owl-nav {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.content .owl-carousel .owl-nav .owl-prev,
.content .owl-carousel .owl-nav .owl-next {
	pointer-events: auto;
	font-size: 70px;
	color: #fff;
	font-family: 'Calibri Light', Calibri;
	background: #323232;
    border-radius: 50%;
    padding: 30px !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
	transition: all 400ms ease;
}

.content .owl-carousel .owl-nav .owl-prev span,
.content .owl-carousel .owl-nav .owl-next span {
	position: absolute;
	margin-top: -12px;
}

.content .owl-carousel .owl-nav .owl-prev:hover,
.content .owl-carousel .owl-nav .owl-next:hover {
	opacity: 0.8;
}

.content .owl-carousel .owl-nav .owl-prev.disabled,
.content .owl-carousel .owl-nav .owl-next.disabled,
.content .owl-carousel .owl-nav .owl-prev.disabled:hover,
.content .owl-carousel .owl-nav .owl-next.disabled:hover {
	opacity: 0.4;
}

.content .owl-carousel .owl-dots {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 12px 0;
}

.content .owl-carousel .owl-dots .owl-dot span {
	margin: 5px;
	transition: all 400ms ease;
	background: #323232;
	opacity: 0.6;
}

.content .owl-carousel .owl-dots .owl-dot.active span {
	background: #323232;
	opacity: 1;
}

.content .card {
	margin: 14px 10px;
	border-radius: 0.75rem;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	transition: box-shadow 400ms ease;
}

.content .card:hover {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.25);
}

.content .card .card-banner {
	position: relative;
	height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
	border-top-left-radius: calc(0.75rem - 1px);
    border-top-right-radius: calc(0.75rem - 1px);
}

.content .card .card-banner .card-img-top {
	border-radius: unset;
	height: 100%;
    object-fit: cover;
}

.content .card .card-banner .card-tags {
	position: absolute;
    top: 0;
    left: 0;
    height: 100%;
	max-width: 85%;
}

.content .card .card-banner .card-tags .card-tag {
	margin-top: 20px;
    background: #646464;
    color: #fff;
    padding: 8px 17px;
    border-radius: 0 4px 4px 0;
    line-height: 14pt;
    font-size: 14px;
}

.content .card .card-body .card-title {
	font-size: 18px;
}

.content .card .card-body .card-text {
	font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.content .card .card-body .card-end {
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.content .card .card-body .card-end .card-end-info * {
	font-size: 12px;
	margin: 0;
}

.content .card .card-body .card-end button {
	padding: 4px 14px;
    border-radius: 20px;
	white-space: nowrap;
}

@media (max-width: 1200px) {
	.content {
	    margin: 3%;
	}
	
	.content .owl-carousel {
		padding: 12px 70px;
	}
	
	.content .owl-carousel .owl-nav .owl-prev,
	.content .owl-carousel .owl-nav .owl-next {
		font-size: 50px;
	    padding: 24px !important;
	}
	
	.content .owl-carousel .owl-nav .owl-prev span,
	.content .owl-carousel .owl-nav .owl-next span {
		margin-top: -8px;
	}
}

@media (max-width: 450px) {
	.content .owl-carousel {
		padding: 12px 10px;
	}
	
	.content .owl-carousel .owl-nav {
		display: none;
	}
}

/* Footer */

.social-networks {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 26px;
}

.social-networks > p {
	font-size: 22px;
	text-align: center;
    margin: 0;
}

.social-networks .social {
	display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
}

.social-networks .social hr {
	padding: 1px;
    height: 34px;
    background: #141414;
    margin: 0;
}

.social-networks .social .networks,
.social-networks .social .apps {
	display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.social-networks .social .networks a,
.social-networks .social .apps a {
	text-decoration: none;
    color: #fff;
    background: #323232;
    font-size: 20px;
    display: flex;
    position: relative;
    padding: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 18px;
	opacity: 1;
	transition: all 400ms ease;
}

.social-networks .social .networks a:hover,
.social-networks .social .apps a:hover {
	opacity: 0.8;
}

.social-networks .social .networks a i,
.social-networks .social .apps a i {
	position: absolute;
}

.footer-line {
	display: flex;
	flex-wrap: nowrap;
}

.footer-line hr {
	padding: 1px;
    width: 100%;
    opacity: 1;
    margin: 0;
}

.footer-line hr:nth-child(1) {
	background: #65CAFE;
}

.footer-line hr:nth-child(2) {
	background: #FFC94F;
}

.footer-line hr:nth-child(3) {
	background: #FE4A57;
}

.powered-by {
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    padding: 24px 10%;
}

.powered-by img {
	height: 30px;
}

.go-up {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 10;
	opacity: 0.8;
}

.go-up button {
	outline: none;
	border: none;
	background: #323232;
	border-radius: 8px;
	padding: 20px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.go-up button i {
	position: absolute;
	font-size: 20px;
	margin-top: 2px;
	animation-duration: 1s;
	animation-delay: 300ms;
	animation-iteration-count: infinite;
	animation-name: jump;
	color: #FFF;
}

@keyframes jump {
	0% {
		margin-top: 2px;
	}
	25% {
		margin-top: 0;
		margin-bottom: 4px;
	}
	50% {
		margin-top: 2px;
	}
	75% {
		margin-top: 0;
		margin-bottom: 2px;
	}
	100% {
		margin-top: 2px;
	}
}


@media (max-width: 1300px) {
	.social-networks .social .networks a,
	.social-networks .social .apps a {
		margin: 0 12px;
	}
	
	.social-networks > p {
		font-size: 20px;
	}
	
	.social-networks .social hr {
		height: 30px;
	}
	
	.social-networks .social .networks a,
	.social-networks .social .apps a {
		font-size: 18px;
		padding: 18px;
	}
}

@media (max-width: 1100px) {
	.social-networks {
		flex-direction: column;
	}
	
	.social-networks > p {
		margin-bottom: 12px;
	}
	
	.social-networks .social hr {
		height: 28px;
	}
	
	.powered-by {
    	justify-content: center;
	}
}

@media (max-width: 750px) {
	.social-networks {
		padding: 20px 10px;
	}
	
	.social-networks .social {
		flex-direction: column;
	}
	
	.social-networks > p {
		font-size: 18px;
	}
	
	.social-networks .social hr {
		display: none;
	}
	
	.social-networks .social .networks,
	.social-networks .social .apps {
		margin: 8px 0;
	}
	
	.social-networks .social .networks a,
	.social-networks .social .apps a {
		margin: 0 8px;
		font-size: 16px;
    	padding: 16px;
	}
	
	.powered-by img {
		height: 28px;
	}
}
