@charset "utf-8"; /* // Unicode */
/*@charset 'iso-8859-15'; // Latin-9 (idiomas de Europa Occidental, con símbolo de euro)*/ 

/* --- Fuentes --- */

/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,900&display=swap');

/* FONT LOCAL */
@font-face {
    font-family: 'Lato';
    src: url(../fonts/Lato/Lato-Regular.ttf);
}

/* --- Variables --- */

:root {
    --sidebar-width: 4em;
	--main-padding: 0px;

    /* colors */	
    --color-body: #222222;
    /*--bg-color-body: #F8F8F8;*/
	--bg-color-body: #f4f4f4;

	--color-mark: #000000;
	--bg-mark: #ff0;
	
	/* COLOR OK */
	--color-scroll-track: #dddee0;
	--color-scroll-thumb: rgba(0, 0, 0, 0.5);
	/* COLOR SOLICITADO */
	/*--color-scroll-track: #dddee0;*/
	/*--color-scroll-thumb: #bcbdc0;*/

	/* colors */
	--primary-500: #d9107d;
	--secondary-500: #bcbdc0;
	--success-500: #10DA28;
	--warning-500: #DAD010;
	--danger-500: #DA2810;
	--info-500: #107FDA;

	--primary-400: #ec88be;
	--secondary-400: #dddee0;
	--success-400: #88ed94;
	--warning-400: #ede888;
	--danger-400: #ed9488;
	--info-400: #88bfed;

	--text-input: #5F5F5F;
	--text-placeholder1: #bcbdc0;
	--text-placeholder: #707070;
	--text-muted: #6c757d;
	--text-dark: #222222;
	--text-white: #ffffff;

	--bg-black-100:rgba(53, 53, 53, .9);
	--bg-ficha: #444242;

	--cl-primary: #ffffff;
	--cl-secondary: #222222;
	--cl-success: #ffffff;
	--cl-warning: #222222;
	--cl-danger: #ffffff;
	--cl-info: #ffffff;

}

/* --- COLORES --- */

.bg-primary { background-color: var(--primary-500) !important; }
.bg-secondary { background-color: var(--secondary-500) !important; }
.bg-success { background-color: var(--success-500) !important; }
.bg-warning { background-color: var(--warning-500) !important; }
.bg-danger { background-color: var(--danger-500) !important; }
.bg-info { background-color: var(--info-500) !important; }

.bg-primary-400 { background-color: var(--primary-400) !important; }
.bg-secondary-400 { background-color: var(--secondary-400) !important; }
.bg-success-400 { background-color: var(--success-400) !important; }
.bg-warning-400 { background-color: var(--warning-400) !important; }
.bg-danger-400 { background-color: var(--danger-400) !important; }
.bg-info-400 { background-color: var(--info-400) !important; }

.bg-primary, .bg-primary > a, .bg-primary-400 > a { color: var(--cl-primary) !important; }
.bg-secondary, .bg-secondary > a, .bg-secondary-400 > a { color: var(--cl-secondary) !important; }
.bg-success, .bg-success > a, .bg-success-400 > a { color: var(--cl-success) !important; }
.bg-warning, .bg-warning > a, .bg-warning-400 > a { color: var(--cl-warning) !important; }
.bg-danger, .bg-danger > a, .bg-danger-400 > a { color: var(--cl-danger) !important; }
.bg-info, .bg-info > a, .bg-info-400 > a { color: var(--cl-info) !important; }

.text-primary { color: var(--primary-500) !important;}
.text-secondary { color: var(--secondary-500) !important;}
.text-success { color: var(--success-500) !important;}
.text-warning { color: var(--warning-500) !important;}
.text-danger { color: var(--danger-500) !important;}
.text-info { color: var(--info-500) !important;}

.text-dark { color: var(--text-dark) !important; }
.text-muted { color: var(--text-muted) !important;}

/* --- HELPERS --- */
.hidden { display: none; }
.sticky { position: sticky; }
.fixed { position: fixed !important; }

.float-right { float: right !important; }
.float-left { float: left !important; }

.inline-block *{ display: inline-block !important;}
.flex { display: flex !important;}

.font-200 {font-weight: 200 !important; }
.font-300 {font-weight: 300 !important; }
.font-400 {font-weight: 400 !important; }
.font-600 {font-weight: 600 !important; }
.font-800 {font-weight: 800 !important; }

.text-right { text-align: right !important; }
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-justify { text-align: justify !important; }

.mb-0 { margin-bottom: 0px !important; }
.mt-0 { margin-top: 0px !important; }
.ml-0 { margin-left: 0px !important; }
.mr-0 { margin-right: 0px !important; }
.mx-0 { margin-right: 0px !important; margin-left: 0px !important; }
.my-0 { margin-top: 0px !important; margin-bottom: 0px !important; }

.mb-1 { margin-bottom: 10px !important; }
.mt-1 { margin-top: 10px !important; }
.ml-1 { margin-left: 10px !important; }
.mr-1 { margin-right: 10px !important; }
.mx-1 { margin-right: 10px !important; margin-left: 10px !important; }
.my-1 { margin-top: 10px !important; margin-bottom: 10px !important; }

.mb-2 { margin-bottom: 20px !important; }
.mt-2 { margin-top: 20px !important; }
.ml-2 { margin-left: 20px !important; }
.mr-2 { margin-right: 20px !important; }
.mx-2 { margin-right: 20px !important; margin-left: 20px !important; }
.my-2 { margin-top: 20px !important; margin-bottom: 20px !important; }

.mb-3 { margin-bottom: 30px !important; }
.mt-3 { margin-top: 30px !important; }
.ml-3 { margin-left: 30px !important; }
.mr-3 { margin-right: 30px !important; }
.mx-3 { margin-right: 30px !important; margin-left: 30px !important; }
.my-3 { margin-top: 30px !important; margin-bottom: 30px !important; }

.mb-5 { margin-bottom: 50px !important; }
.mt-5 { margin-top: 50px !important; }

.pr-5 { padding-right: 50px !important; }

.pb-0 { padding-bottom: 0px !important; }
.pt-0 { padding-top: 0px !important; }
.pl-0 { padding-left: 0px !important; }
.pr-0 { padding-right: 0px !important; }
.px-0 { padding-right: 0px !important; padding-left: 0px !important; }
.py-0 { padding-top: 0px !important; padding-bottom: 0px !important; }

.pb-1 { padding-bottom: 10px !important; }
.pt-1 { padding-top: 10px !important; }
.pl-1 { padding-left: 10px !important; }
.pr-1 { padding-right: 10px !important; }
.px-1 { padding-right: 10px !important; padding-left: 10px !important; }
.py-1 { padding-top: 10px !important; padding-bottom: 10px !important; }

.pb-2 { padding-bottom: 20px !important; }
.pt-2 { padding-top: 20px !important; }
.pl-2 { padding-left: 20px !important; }
.pr-2 { padding-right: 20px !important; }
.px-2 { padding-right: 20px !important; padding-left: 20px !important; }
.py-2 { padding-top: 20px !important; padding-bottom: 20px !important; }


/* - - - MEASURES - - - */
.w50 { width: 50% !important; }
.w100 { width: 100% !important; }

.h50 { height: 50% !important; }
.h100 { height: 100% !important; }

/* --- CORE --- */
*, *:before, *:after {
    outline: none;
	box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	-webkit-box-sizing:border-box;
	
	/* Scroll FireFox */
    scrollbar-width: thin;
    /*scrollbar-color: rgba(0, 0, 0, 0.5) rgb(0, 0, 0, 0.1);*/
	/* COLOR OK */
	scrollbar-color: #dddee0 rgba(0, 0, 0, 0.5);
	/* COLOR SOLICITADO */
	/*scrollbar-color: #dddee0 #bcbdc0;*/
}

/* - Scroll Edge, Chrome, Safari */
::-webkit-scrollbar
{
  width: 7px;  /* for vertical scrollbars */
  height: 7px; /* for horizontal scrollbars */
}
::-webkit-scrollbar-track{ background: var(--color-scroll-track); }
::-webkit-scrollbar-thumb{ background: var(--color-scroll-thumb); }

body {
    margin: 0;
    padding: 0;
	font-family: 'Lato';
	font-weight:normal; 
	font-style:normal;

	background-color: var(--bg-color-body);	
	color: var(--color-body); 
	
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box; 
	/*position: relative; ??*/
}

dt, dd, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, legend, input, textarea, p, blockquote, th, td {margin:0; padding:0}

ol, ul, dl {
	margin-top: 0 !important;
	margin-bottom: 1rem !important;
	font-size: 0.8rem;
	text-align: justify;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {display: block}
audio, canvas, progress, video {display: inline-block; vertical-align:baseline}
audio:not([controls]) {display:none; height:0}

[hidden], template {display:none}

b, strong {font-weight:bold}

/* --- */mark {background: var(--bg-mark); color: var(--color-mark)}
/* --- li {list-style:none} */

small {font-size:80%}
sub, sup {font-size:75%; line-height:0; position:relative; vertical-align:baseline}
sup { top:-0.5em}
sub { bottom:-0.25em}
fieldset, img {border:0}

/* --- */svg:not(:root) { overflow:hidden}

figure {margin:0}
table, tr, td {margin:0; padding:0}
/* --- */table {border-collapse:collapse; border-spacing:0}
pre { overflow: auto}
code, kbd, pre, samp {font-family: 'Lato'; font-size:1em}

/* --- Elementos del formulario --- */
button, input, optgroup, select, textarea { color:inherit; font:inherit; margin:0; outline:none}
button {overflow:visible}
button, select {text-transform:none}
button, html input[type="button"], input[type="reset"], input[type="submit"] {-webkit-appearance:button; cursor:pointer}
button[disabled], html input[disabled] {cursor:default}
button::-moz-focus-inner, input::-moz-focus-inner {border:0; padding:0}

input {line-height:normal}
input[type="checkbox"], input[type="radio"] { box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; padding:0}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {height:auto}
/*input[type="search"] { -webkit-appearance:textfield; -moz-box-sizing:content-box; -webkit-box-sizing:content-box; box-sizing:content-box}*/
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {-webkit-appearance:none}

::-webkit-input-placeholder {color: var(--text-placeholder); opacity:1 !important}
:-moz-placeholder {color: var(--text-placeholder); opacity:1 !important}
::-moz-placeholder {color: var(--text-placeholder); opacity:1 !important;}
:-ms-input-placeholder {color: var(--text-placeholder); opacity:1 !important;}

.form-control.regular::-webkit-input-placeholder {color: var(--text-placeholder1); opacity:1 !important}
.form-control.regular:-moz-placeholder {color: var(--text-placeholder1); opacity:1 !important}
.form-control.regular::-moz-placeholder {color: var(--text-placeholder1); opacity:1 !important;}
.form-control.regular:-ms-input-placeholder {color: var(--text-placeholder1); opacity:1 !important;}

input:disabled { background: #bcbdc0; }
/*.form-control.regular:disabled { background: #ccc; }*/

/* input group */
.input-group {
	display: flex;
	align-content: stretch;
}
.input-group > input { flex: 1 0 auto; }
/* para etiquetas o elementos antes del input */
.input-group-addon {
	background: #eee;
	border: 1px solid #ccc;
	padding: 0.5em 1em;
}
.input-group .btn{ margin: 0px; height: 27px; }

/* --- Etiquetas --- */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Lato';
	font-weight: normal;
	line-height: 1.3
}
h1 { font-size: 2rem; }
h2 { font-size: 1.714rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.286rem; }
h5 { font-size: 1.07rem; }
h6 { font-size: 1rem; }
p {
    color: var(--text-dark);
    font-size: 0.8rem;
    text-align: justify;
}
a {
	color: inherit; 
	outline:none; 
	text-decoration:none; 
	line-height:inherit;
}
a:hover { 
	text-decoration:none;
	cursor:pointer;
}

a.link { color: var(--text-dark);  background-color: var(--primary-400); padding: 0px 5px; }
a.link:hover { color: var(--cl-primary); background-color: var(--primary-500); }

blockquote{
	color: var(--text-dark);
	font-size: 0.8rem;
	text-align: justify;
	font-style: italic;
}
code {
	padding: 2px 4px;
	padding-right: 4px;
	padding-left: 4px;
	font-size: 90%;
	color: #c7254e;
	background-color: #f1f1f1;
	border-radius: 4px;
}

/* --- Divider --- */
hr.divider {
    margin-bottom: 10px;
    padding: 0;
    overflow: visible;
    border: none;
	border-top-color: currentcolor;
	border-top-style: none;
	border-top-width: medium;
    border-top: 1px solid #e0e0e0;
    color: #6e6d7a;
    text-align: center;
}
hr.divider::after {
    content: 'O';
    display: inline-block;
    position: relative;
    top: -12px;
    padding: 0 16px;
    background: #fff;
    font: normal 14px/14px "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
hr.titulo {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	   border-top-color: currentcolor;
	   border-top-style: none;
	   border-top-width: 0px;
	border-top: 1px solid rgba(255,255,255,.5);
}
hr.help{
	margin-top: .5rem;
	margin-bottom: 1rem;
	border: 0;
	   border-top-color: currentcolor;
	   border-top-style: none;
	   border-top-width: 0px;
	border-top: 1px solid var(--secondary-400);
}
/* --- Principal --- */
.main {
    margin-left: auto;
    margin-right: auto;
    padding: var(--main-padding);
}
/* Media Query Responsive main */
@media (min-width: 572px) {
    .main {
      margin-left: var(--sidebar-width);
    }
}
  
@media (min-width: 992px) {
    .main {
      padding: var(--main-padding);
    }
}
  
/* --- SideBar --- */
.sidebar{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 240px;
	background: #ffffff;
	transition: all 0.5s ease;
	box-shadow: 1px 0px 10px rgba(0,0,0,.1);
	z-index: 2;
}
.sidebar.close{
	width: 0px;
	display: none;
}
.sidebar .logo-details{
	height: 60px;
	width: 100%;
	display: flex;
	align-items: center;
}
.sidebar .logo-details .logo_img{
	color: #fff;
	width: 30px;
	margin-left: 25px;
}
.sidebar .logo-details .logo_name{
	width: 130px;
	margin-left: 30px;
	margin-top: 5px;
	transition: 0.3s ease;
	transition-delay: 0.1s;
}
.sidebar.close .logo-details .logo_name{
	transition-delay: 0s;
	opacity: 0;
	pointer-events: none;
}
.sidebar .nav-links{
	height: 100%;
	padding: 30px 0 150px 0;
	overflow: auto;
}
.sidebar.close .nav-links{
overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar{
display: none;
}
.sidebar .nav-links li{
position: relative;
list-style: none;
padding: 7px 0px;
}
.sidebar .nav-links li:hover .link_name{
	padding-left: 10px;
	font-weight: 600;
}
.sidebar .nav-links li .iocn-link{
display: flex;
align-items: center;
justify-content: space-between;
transition: all 0.4s ease;
}
.sidebar.close .nav-links li .iocn-link{
display: block
}
.sidebar .nav-links li a svg{
height: 20px;
min-width: 78px;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
}
.sidebar .nav-links .sub-menu li a svg{
	height: 20px;
	min-width: 30px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	}
.sidebar .nav-links li.showMenu .arrow{
	transform: rotateX(180deg);
}
.sidebar .nav-links li .arrow{
	width: 100%;
	text-align: right;
	position: absolute;
}
.sidebar .nav-links li .arrow svg{
	height: 8px;
	margin-right: 15px;
}
.sidebar.close .nav-links .arrow{
	display: none;
}
.sidebar .nav-links li a{
display: flex;
align-items: center;
text-decoration: none;
}
.sidebar .nav-links li a .link_name{
font-size: 18px;
font-weight: 400;
color: #000;
transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name{
opacity: 0;
pointer-events: none;
}
.sidebar .nav-links li .sub-menu{
	padding: 6px 6px 14px 20px;
	margin-top: 10px;
	background: var(--primary-500);
	display: none;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.sidebar .nav-links li.showMenu .sub-menu{
display: block;
}
.sidebar .nav-links li .sub-menu a{
color: #fff;
font-size: 15px;
padding: 4px 20px;
white-space: nowrap;
opacity: .8;
transition: all 0.5s ease;
}
.sidebar .nav-links li .sub-menu a:hover{
	opacity: 1;
	font-weight: 600;
	margin-left: 10px;
}
.sidebar.close .nav-links li .sub-menu{
	position: absolute;
	left: 100%;
	top: -10px;
	margin-top: 0;
	padding: 10px 20px;
	/*border-radius: 0 6px 6px 0;*/
	opacity: 0;
	display: block;
	pointer-events: none;
	transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu{
	top: 0;
	opacity: 1;
	pointer-events: auto;
	transition: all 0.4s ease;
	margin-left: 10px;
}
.sidebar .nav-links li .sub-menu .link_name{
display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name{
font-size: 15px;
opacity: 1;
display: block;
}
.sidebar .nav-links li .sub-menu.blank{
	opacity: 1;
	pointer-events: auto;
	padding: 0px 20px 0px 15px;
	opacity: 0;
	pointer-events: none;
	margin-left: 10px;
}
.sidebar .nav-links li:hover .sub-menu.blank{
top: 50%;
transform: translateY(-50%);
}
.sidebar .profile-details{
position: fixed;
bottom: 0;
width: 240px;
display: flex;
align-items: center;
justify-content: space-between;
background: #cecece;
padding: 12px 0;
transition: all 0.5s ease;
}
.sidebar.close .profile-details{
background: none;
}
.sidebar.close .profile-details{
	width: 78px;
}
.sidebar .profile-details .profile-content{
display: flex;
align-items: center;
}
.sidebar .profile-details img{
height: 52px;
width: 52px;
object-fit: fill;
border-radius: 16px;
margin-left: 13px;
background: #ffffff;
transition: all 0.5s ease;
}
.sidebar.close .profile-details img{
	padding: 10px;
	border: 1px solid #000;
}
.sidebar .profile-details .user-name,
.sidebar .profile-details .rol{
color: #222222;
font-size: 12px;
font-weight: 600;
white-space: nowrap;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .user-name,
.sidebar.close .profile-details .rol{
	display: none;
}
.sidebar .profile-details .rol{
	font-size: 10px;
	font-weight: 300;
}
.sidebar .profile-details svg{
	margin-right: 15px;
	transition: 0.4s;
	color: #777777;
}
.sidebar .profile-details svg:hover{
	color: #e92727;
}
.navbar{
	position: relative;
	/*background: var(--bg-color-body);*/

	left: 240px;
	width: calc(100% - 240px);
	transition: all 0.5s ease;

	padding: 10px 0px 10px 15px;
	z-index: 2;
}
.sidebar.close ~ .navbar{
	left: 0px;
	width: 100%;
}
.nav-content a.menu{
	position: relative;
	top: 9px;
}
.navbar .dropdown-menu-container{
	position: absolute;
	right: 0 !important;
	left: unset !important;
}
.navbar .user-dropdown .dropdown-menu{
	right: 20px !important;
	top: 10px !important;
	position: relative;
}

/* Home page */

.nav-home{
	position: absolute;
	z-index: 1;
}
.top-nav {
	width: 100%;
	height: 60px;
	/*position: fixed;*/
	position: relative;
	padding: 5px 10%;
	overflow: hidden;
	background-color: var(--bg-color-body);
	top: 0;
}
.top-nav a { 
	float: left; 
}
.top-nav a.nav-icon{
	display: flex;
	align-items: center;
	justify-content: center;
}
.top-nav-right {
	float: right;
	display: flex;
	height: 50px;
	margin: 0 10px;
}
.top-nav.collections { background-color: transparent; padding: 5px 5%; }

.nav-buttons{ display: flex; margin: auto 0; }
.nav-buttons label { margin-right: 10px; }

/* Logo */
.nav-icon { margin: 0px 10px; }
.nav-icon img.logo-big { 
	/*width: 200px;*/
	height: 50px;
	/*margin-left: 5px;*/
	padding: 2px;
}
.nav-icon img.logo-small{
	height: 50px;
	display: none;
}
.nav-icon img.logo-sponsors{
	height: 50px;
	margin-left: 15px;
	padding: 2px;
	opacity: 1;
}
.top-nav a img.logo-sponsors.small{
	display: none;
}
a.login-small{ display: none; }
a.login-big{ display: flex; }
@media only screen and (max-width:567px) {
	.top-nav{
		height: 100px !important;
	}

	.nav-icon img.logo-small{
		display: block;
	}
	.nav-icon img.logo-big{
		display: none;
	}
	.nav-icon img.logo-sponsors.big{
		display: none;
	}
	.top-nav a.sponsors{
		float: none !important;
	}
	.top-nav a img.logo-sponsors.small{
		display: block;
		height: 35px;
		width: 100%;
		margin-bottom: 10px;
	}
	.user-info{
		display: none;
	}
	a.login-big{ display: none; }
	a.login-small{ display: flex; }
	.top-nav{
		padding: 5px 10% !important;
	}
}

/* ---- User ---- */

.user-dropdown .user {
	display: -webkit-box;
	display: flex;
	margin-top: auto;
}
.user-dropdown .user img {
	border-radius: 50%;
	width: 45px;
	height: 45px;
	box-shadow: 1px 2px 10px #ec88be;
	/*
	border: 1px solid rgba(241, 137, 23, .3);
	box-shadow: 1px 2px 10px rgb(236, 136, 190);
	*/
}
.user-dropdown .user .user-info {
	/*width: 90px;*/
	text-align: right;
	margin: 0 10px;
}
.user-dropdown .user .user-info h5 {
	margin: 4px 0 0 0;
	color: #383838;
	font-weight: bold;
}
.user-dropdown .user .user-info small {
	color: #777777;
}
.user-dropdown .menu{
	margin: 0 10px;
	color: #222222;
	cursor: pointer;
	z-index: 1;
}

@media (max-width: 420px) {
	.sidebar.close .nav-links li .sub-menu{
		display: none;
	}
}

/* --- Principal --- */
.main {
margin-left: auto;
margin-right: auto;
padding: var(--main-padding);
}
/* Media Query Responsive main */
@media (min-width: 572px) {
	.main {
		margin-left: 5em;
	}
	/* -- sidebar */
	.sidebar.close{
		width: 78px;
		display: block;
	}
	.sidebar.close ~ .navbar{
		left: 78px;
		width: calc(100% - 78px);
	}
}

@media (min-width: 992px) {
	.main {
		padding: 0px;
	}
	/* -- sidebar */
	.sidebar.close{
		width: 78px;
	}
	.sidebar.close ~ .navbar{
		left: 78px;
		width: calc(100% - 78px);
	}
}
  
/* --- Header --- */
.top-container {
	/*background-color: #f1f1f1;*/
	text-align: center;
	padding: 10px;
	width: 100%;
	display: table;
}
.top-container p { text-align: center; }

.header {
	width: 100%;
	/*top: 0;*/
	top: 0px;
	padding: 10px 16px;
	
	background: rgb(244,244,244);
	/*background: linear-gradient(0deg, rgba(244,244,244,0.5) 0%, rgba(244,244,244,1) 100%); */
	z-index: 1;
}

/* --- GRID --- */
/* --------- Grid System Css Start --------- */
.container { 
	/*max-width:1190px;*/
	width:100%;
	margin:0 auto;
	/**/padding: 0px 10px;

	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkicol-sm-box-sizing:border-box
}

.row {
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkicol-sm-box-sizing:border-box; 
}
.row > div {
	/* separación entre col*/
	margin: 5px 0px;
	padding: 2px 10px;
}
.row::after, .row::before { 
	content:''; 
	display:table; 
}
.row:after {
	clear: both;
}

[class*="col-md-"],[class*="col-sm-"],[class*="col-xs-"] {
	float:left;
	padding: 0 10px;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkicol-sm-box-sizing:border-box;
	/* background:#FF7F50; */
	background-color: transparent;
}
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { 
	padding:15px 10px;
}
/*Large Desktop Screen*/
.col-lg-1 {width:8.3333%} 
.col-lg-2 {width:16.6667%}
.col-lg-3 {width:25%}
.col-lg-4 {width:33.3333%}
.col-lg-5 {width:41.6667%}
.col-lg-6 {width:50%}
.col-lg-7 {width:58.3333%}
.col-lg-8 {width:66.6667%}
.col-lg-9 {width:75%}
.col-lg-10 {width:83.3333%}
.col-lg-11 {width:91.6667%}
.col-lg-12 {width:100%}
/*Desktop Screen*/
.col-md-1 {width:8.3333%} 
.col-md-2 {width:16.6667%}
.col-md-3 {width:25%}
.col-md-4 {width:33.3333%}
.col-md-5 {width:41.6667%}
.col-md-6 {width:50%}
.col-md-7 {width:58.3333%}
.col-md-8 {width:66.6667%}
.col-md-9 {width:75%}
.col-md-10 {width:83.3333%}
.col-md-11 {width:91.6667%}
.col-md-12 {width:100%}
/* Mobile and Tablet Screen */
/*.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { width:100%;}*/
.col-xs-1 {width:8.3333%}
.col-xs-2 {width:16.6667%}
.col-xs-3 {width:25%}
.col-xs-4 {width:33.3333%}
.col-xs-5 {width:41.6667%}
.col-xs-6 {width:50%}
.col-xs-7 {width:58.3333%}
.col-xs-8 {width:66.6667%}
.col-xs-9 {width:75%}
.col-xs-10 {width:83.3333%}
.col-xs-11 {width:91.6667%}
.col-xs-12 {width:100%}

/* --- Media Query Responsive Grid  --- */
/*Mobile Version*/
@media only screen and (min-width:567px) {

}

/*Tablet Verion*/
@media only screen and (min-width:767px) {	
.col-sm-1 {width:8.3333%}
.col-sm-2 {width:16.6667%}
.col-sm-3 {width:25%}
.col-sm-4 {width:33.3333%}
.col-sm-5 {width:41.6667%}
.col-sm-6 {width:50%}
.col-sm-7 {width:58.3333%}
.col-sm-8 {width:66.6667%}
.col-sm-9 {width:75%}
.col-sm-10 {width:83.3333%}
.col-sm-11 {width:91.6667%}
.col-sm-12 {width:100%}
}

/*Desktop Version */
@media only screen and (min-width:1023px) {
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { padding:15px;}
.col-md-1 {width:8.3333%} 
.col-md-2 {width:16.6667%}
.col-md-3 {width:25%}
.col-md-4 {width:33.3333%}
.col-md-5 {width:41.6667%}
.col-md-6 {width:50%}
.col-md-7 {width:58.3333%}
.col-md-8 {width:66.6667%}
.col-md-9 {width:75%}
.col-md-10 {width:83.3333%}
.col-md-11 {width:91.6667%}
.col-md-12 {width:100%}	
}
/*Extra Desktop*/
@media only screen and (min-width:1170px) {
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {padding:20px;}
.col-lg-1 {width:8.3333%} 
.col-lg-2 {width:16.6667%}
.col-lg-3 {width:25%}
.col-lg-4 {width:33.3333%}
.col-lg-5 {width:41.6667%}
.col-lg-6 {width:50%}
.col-lg-7 {width:58.3333%}
.col-lg-8 {width:66.6667%}
.col-lg-9 {width:75%}
.col-lg-10 {width:83.3333%}
.col-lg-11 {width:91.6667%}
.col-lg-12 {width:100%}	
}

/* --- CARD ---*/
.card{
	border: none;
	/*
	border-radius: 0.5rem;
	-webkit-box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
	*/
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	/*position: relative;*/
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #FFFFFF;
	background-clip: border-box;
	color: var(--color-body);
}

.card-body {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-moz-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1.5rem;
}

/* - - - */

.small-box {
    margin-bottom: 20px;
    position: relative;
	min-height: 150px;
}
.small-box .inner {
    margin: auto 20px;
}
.small-box .icon {
	color: rgba(0,0,0,.15);
	z-index: 0;
	position: absolute;
	right: 10px;
	top: 10px;
}
.small-box .icon svg{width: 80px;height: 80px;}


/* - - - */

.crud { padding-right: 5% !important; padding-left: 5% !important; }
.crud-15 { padding-right: 15% !important; padding-left: 15% !important; }

/* --- FORM ---*/
.form-group {
	margin-bottom: 1.5rem;
}
label {
	color: #464646;
	font-size: 0.85rem;
	margin-bottom: 0;
	padding-left: 0.2rem;
	padding-bottom: .2rem;
	display: flex;
	font-weight: bold;
}
/* SELECT */
.form-control {
	display: block;
	width: 100%;
	height: 20px;
	padding: 0.8rem;
	font-size: 0.99rem;
	font-weight: 400;
	border: 1px solid #ec88be;
	color: #5F5F5F;
	background-color: #FFFFFF;
	background-clip: padding-box;
	-webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	-o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	-moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
textarea.form-control { height: 80px;}
.form-control.regular{ border: 1px solid var(--secondary-500); color: var(--text-input); }
.form-control.info{ border: 1px solid var(--info-500); color: var(--text-input); }
.form-control.warning{ border: 1px solid var(--warning-500); color: var(--text-input); }
.form-control.danger{ border: 1px solid var(--danger-500); color: var(--text-input); }
.form-control.regular.success{ border: 1px solid var(--success-500); background-color: var(--success-400); color: var(--text-input); }
.form-control.regular.error{ border: 1px solid var(--danger-500); background-color: var(--danger-400); color: var(--text-input); }

.form-control.regular.big{ height: 30px; }

.form-control:focus{
	border: 1px solid var(--primary-500);
}


.custom-select {
	display: inline-block;
	width: 100%;
	height: 28px;
	/*height: calc(1.6em + 0.75rem + 2px);*/
	padding: 0 10px;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.6;
	color: #495057;
	vertical-align: middle;
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
	background-color: #fff;
	border: 1px solid var(--secondary-500);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.custom-select:focus{
	border: 1px solid var(--primary-500);
}
/* Help */
label.help{
	font-weight: bold;
	font-size: 0.85rem;
	margin-bottom: 0;
	padding-left: 0.2rem;
	/*display: flex;*/
	margin-bottom: 0.5rem;
}
label.help.required { color: var(--danger-500) !important; }
label.help.primary { color: var(--primary-500) !important; }
label.help.secondary { color: var(--secondary-500) !important; }

/* CHECKBOX */
.md-checkbox {
	position: relative;
	margin: 0.5em;
	text-align: left;
}
.md-checkbox label {
	cursor: pointer;
	display: inline;
	line-height: 1.25em;
	vertical-align: top;
	clear: both;
	padding-left: 1px;
}
.md-checkbox label:not(:empty) {
	padding-left: 0.75em;
}
.md-checkbox label:before, .md-checkbox label:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
}
.md-checkbox label:before {
	width: 1.25em;
	height: 1.25em;
	background: #fff;
	border: 2px solid var(--secondary-500);
	cursor: pointer;
	transition: background 0.3s;
}
.md-checkbox input[type=checkbox] {
	outline: 0;
	visibility: hidden;
	width: 1.25em;
	margin: 0;
	display: block;
	float: left;
	font-size: inherit;
}
.md-checkbox input[type=checkbox]:checked + label:before {
	background: var(--primary-500);
	border: none;
}
.md-checkbox input[type=checkbox]:checked + label:after {
	transform: translate(0.25em, 0.3365384615em) rotate(-45deg);
	width: 0.75em;
	height: 0.375em;
	border: 0.125em solid #fff;
	border-top-style: none;
	border-right-style: none;
}
/* disabled */
.md-checkbox input[type=checkbox]:disabled:checked + label:before {
	border: 2px solid var(--primary-400);
	background: var(--primary-400);
}
.md-checkbox input[type=checkbox]:disabled + label:before,
.md-checkbox.primary input[type=checkbox]:disabled + label:before,
.md-checkbox.info input[type=checkbox]:disabled + label:before,
.md-checkbox.success input[type=checkbox]:disabled + label:before,
.md-checkbox.warning input[type=checkbox]:disabled + label:before,
.md-checkbox.danger input[type=checkbox]:disabled + label:before,
.md-checkbox.secondary input[type=checkbox]:disabled + label:before {
	border: 2px solid var(--secondary-500);
	background: var(--secondary-500);
}

/* TOGGLE CHECKBOX */
div.ck input[type=checkbox] {
height: 0;
width: 0;
visibility: hidden;
display: none;
}

div.ck label {
cursor: pointer;
text-indent: -9999px;
width: 60px;
height: 30px;
background: grey;
display: block;
border-radius: 30px;
position: relative;
}

div.ck label:after {
content: '';
position: absolute;
top: 3px;
left: 3px;
width: 24px;
height: 24px;
background: #fff;
border-radius: 24px;
transition: 0.3s;
}

div.ck input:checked + label {
background: #3ea868;
}

div.ck input:checked + label:after {
left: calc(100% - 3px);
transform: translateX(-100%);
}

div.ck label:active:after {
width: 35px;
}

/* Radiobutton Colors */
.md-checkbox.primary input[type=checkbox] + label:before { border: 2px solid var(--primary-500); }
.md-checkbox.primary input[type=checkbox]:checked + label:before { border: 2px solid var(--primary-500); background: var(--primary-500); }
.md-checkbox.primary input[type=checkbox]:disabled:checked + label:before { border: 2px solid var(--primary-400); background: var(--primary-400); }
.md-checkbox.info input[type=checkbox] + label:before { border: 2px solid var(--info-500); }
.md-checkbox.info input[type=checkbox]:checked + label:before { border: 2px solid var(--info-500); background: var(--info-500); }
.md-checkbox.info input[type=checkbox]:disabled:checked + label:before { border: 2px solid var(--info-400); background: var(--info-400); }
.md-checkbox.success input[type=checkbox] + label:before { border: 2px solid var(--success-500); }
.md-checkbox.success input[type=checkbox]:checked + label:before { border: 2px solid var(--success-500); background: var(--success-500); }
.md-checkbox.success input[type=checkbox]:disabled:checked + label:before { border: 2px solid var(--success-400); background: var(--success-400); }
.md-checkbox.warning input[type=checkbox] + label:before { border: 2px solid var(--warning-500); }
.md-checkbox.warning input[type=checkbox]:checked + label:before { border: 2px solid var(--warning-500); background: var(--warning-500); }
.md-checkbox.warning input[type=checkbox]:disabled:checked + label:before { border: 2px solid var(--warning-400); background: var(--warning-400); }
.md-checkbox.danger input[type=checkbox] + label:before { border: 2px solid var(--danger-500); }
.md-checkbox.danger input[type=checkbox]:checked + label:before { border: 2px solid var(--danger-500); background: var(--danger-500); }
.md-checkbox.danger input[type=checkbox]:disabled:checked + label:before { border: 2px solid var(--danger-400); background: var(--danger-400); }
.md-checkbox.secondary input[type=checkbox] + label:before { border: 2px solid var(--secondary-500); }
.md-checkbox.secondary input[type=checkbox]:checked + label:before { border: 2px solid var(--secondary-500); background: var(--secondary-500); }
.md-checkbox.secondary input[type=checkbox]:disabled:checked + label:before { border: 2px solid var(--secondary-400); background: var(--secondary-400); }

/* RADIO-BUTTON */
label.btn-radio {
	margin: .5rem;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}
input.radio-inline {
	height: 1px;
	width: 1px;
	opacity: 0;
}
.outside {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	background: none;
}
.inside {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	display: inline-block;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	left: 3px;
	top: 3px;
	-webkit-transform: scale(0, 0);
			transform: scale(0, 0);
}
input.radio-inline + .outside { 
	border: 2px solid var(--secondary-500); 
}
input.radio-inline:checked + .outside { 
	border: 2px solid var(--primary-500); 
}
input.radio-inline:checked + .outside .inside { 
	background: var(--primary-500); 
}
/* disabled */
input.radio-inline:disabled + .outside,
input.radio-inline.primary:disabled + .outside,
input.radio-inline.info:disabled + .outside,
input.radio-inline.success:disabled + .outside,
input.radio-inline.warning:disabled + .outside,
input.radio-inline.danger:disabled + .outside,
input.radio-inline.secondary:disabled + .outside { 
	border: 2px solid var(--secondary-500);
	background: var(--secondary-500); 
}
input.radio-inline:checked:disabled + .outside { border: 2px solid var(--primary-400); background: transparent; }
input.radio-inline:checked:disabled + .outside .inside { background: var(--primary-400); }
/* colors */
input.radio-inline.primary + .outside { border: 2px solid var(--primary-500); }
input.radio-inline.primary:checked + .outside { border: 2px solid var(--primary-500); }
input.radio-inline.primary:checked + .outside .inside { background: var(--primary-500); }
input.radio-inline.primary:checked:disabled + .outside { border: 2px solid var(--primary-400); background: transparent; }
input.radio-inline.primary:checked:disabled + .outside .inside { background: var(--primary-400); }
input.radio-inline.info + .outside { border: 2px solid var(--info-500); }
input.radio-inline.info:checked + .outside { border: 2px solid var(--info-500); }
input.radio-inline.info:checked + .outside .inside { background: var(--info-500); }
input.radio-inline.info:checked:disabled + .outside { border: 2px solid var(--info-400); background: transparent; }
input.radio-inline.info:checked:disabled + .outside .inside { background: var(--info-400); }
input.radio-inline.success + .outside { border: 2px solid var(--success-500); }
input.radio-inline.success:checked + .outside { border: 2px solid var(--success-500); }
input.radio-inline.success:checked + .outside .inside { background: var(--success-500); }
input.radio-inline.success:checked:disabled + .outside { border: 2px solid var(--success-400); background: transparent; }
input.radio-inline.success:checked:disabled + .outside .inside { background: var(--success-400); }
input.radio-inline.warning + .outside { border: 2px solid var(--warning-500); }
input.radio-inline.warning:checked + .outside { border: 2px solid var(--warning-500); }
input.radio-inline.warning:checked + .outside .inside { background: var(--warning-500); }
input.radio-inline.warning:checked:disabled + .outside { border: 2px solid var(--warning-400); background: transparent; }
input.radio-inline.warning:checked:disabled + .outside .inside { background: var(--warning-400); }
input.radio-inline.danger + .outside { border: 2px solid var(--danger-500); }
input.radio-inline.danger:checked + .outside { border: 2px solid var(--danger-500); }
input.radio-inline.danger:checked + .outside .inside { background: var(--danger-500); }
input.radio-inline.danger:checked:disabled + .outside { border: 2px solid var(--danger-400); background: transparent; }
input.radio-inline.danger:checked:disabled + .outside .inside { background: var(--danger-400); }
input.radio-inline.secondary + .outside { border: 2px solid var(--secondary-500); }
input.radio-inline.secondary:checked + .outside { border: 2px solid var(--secondary-500); }
input.radio-inline.secondary:checked + .outside .inside { background: var(--secondary-500); }
input.radio-inline.secondary:checked:disabled + .outside { border: 2px solid var(--secondary-400); background: transparent; }
input.radio-inline.secondary:checked:disabled + .outside .inside { background: var(--secondary-400); }

.no-transforms .inside {
	left: auto;
	top: auto;
	width: 0;
	height: 0;
}
input.radio-inline:checked + .outside .inside {
	-webkit-animation: radio-select 0.1s linear;
			animation: radio-select 0.1s linear;
	-webkit-transform: scale(1, 1);
			transform: scale(1, 1);
}
.no-transforms input.radio-inline:checked + .outside .inside {
	width: 10px;
	height: 10px;
}

/* FLOAT LABEL INPUT */
.form-input {
	width: 100%;
	height: -webkit-calc(.25em + 1.4rem + 1px);
	height: -moz-calc(.25em + 1.4rem + 1px);
	height: calc(.25em + 1.4rem + 1px);

	padding: 0rem 1rem;
	margin: 0 0 0.625rem 0;
	
	font-size: 0.96rem;
	font-weight: 400;
	line-height: 1.25;
	border: 1px solid var(--secondary-500);
	color: #5F5F5F;

	background-color: #FFFFFF;
	background-clip: padding-box;
	
	-webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	-o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	-moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	/* When the input field (.form-input) is in focus, 
	   transform the .form-label and change colors*/
	/* ALSO, if the input field's placeholder is NOT shown (when the input field has content),
	   transform the .form-label and change colors. */
	/* THIS PART IS IMPORTANT!! */
	/* The block below hides the placeholder entirely. */
	/* For all intents and purposes, the placeholder no longer exists. */
	/* What shows on the input field is only the label*. */
	/* HOWEVER, the input fields still recognizes that the placeholder exists!*/
	/* The placeholder is just invisible. We need the placeholder to exist for
	   some weird CSS stuff. If we skip this, we can't make it CSS-only. */
	/* When the placeholder is NOT shown,
	   style the top border. */
	/* This makes the top border fade-out when the placeholder disappears. */
}


  @media (min-width: 768px) {
	.form-input {
	  width: 100%;
	}
  }
  .form-input:focus {
	border: 1px solid var(--primary-500);
  }

  .form-input:focus + .form-label, .form-input:not(:placeholder-shown) + .form-label {
	margin-bottom: 0;
    padding-left: 0.2rem;
    padding-bottom: 0.2rem;
	display: flex;
	text-align: left;
	font-weight: bold;
    /*font-size: 0.85rem;*/
    color: #464646;
	transform: translateY(-3.7rem) scale(1);
  }
  .form-input::placeholder {
	display: none;
	color: transparent;
	-webkit-user-select: none;
	/* Safari */
	-ms-user-select: none;
	/* IE 10 and IE 11 */
	user-select: none;
	/* Standard syntax */
  }
  .form-label {
	font-size: 0.96rem;
	font-weight: 400;
	color: #5f5f5f;
	display: flex;
	text-align: left;
	/* Moves the label on TOP of the placeholder */
	/* You'll need to change this as needed */
	transform: translate(.7rem, -2.1rem);
	transform-origin: 0 0;
	/* Used later for transitions */
	transition: all 500ms;
	-webkit-user-select: none;
	/* Safari */
	-ms-user-select: none;
	/* IE 10 and IE 11 */
	user-select: none;
	/* Standard syntax */
	/* THIS PART IS IMPORTANT! */
	/* This line prevents the label from being selected.*/
	/* This is crucial because if this line doesn't exist, users can
	   click on the label, instead of the input field. That's bad UX! */
	pointer-events: none;
  }

/* BADGE */
.badge {
	display: inline-block;
	padding: 0.35em 0.4em;
	font-size: 80%;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: #FFFFFF;
	font-weight: 400;
}
.badge-pill {
	padding-right: 0.6em;
	padding-left: 0.6em;
}

.badge-primary { color: var(--cl-primary); background-color: var(--primary-500); }
.badge-info { color: var(--cl-info); background-color: var(--info-500); }
.badge-success { color: var(--cl-success); background-color: var(--success-500); }
.badge-warning { color: var(--cl-warning); background-color: var(--warning-500); }
.badge-danger { color: var(--cl-danger); background-color: var(--danger-500); }
.badge-secondary { color: var(--cl-secondary); background-color: var(--secondary-500); }
.badge-primary-400 { color: var(--cl-primary); background-color: var(--primary-400); }
.badge-info-400 { color: var(--cl-info); background-color: var(--info-400); }
.badge-success-400 { color: var(--cl-success); background-color: var(--success-400); }
.badge-warning-400 { color: var(--cl-warning); background-color: var(--warning-400); }
.badge-danger-400 { color: var(--cl-danger); background-color: var(--danger-400); }
.badge-secondary-400 { color: var(--cl-secondary); background-color: var(--secondary-400); }

/* --- BUTTONS --- */
.btn {
	display: inline-block;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 0 solid transparent;
	padding: 1px 10px;
	margin: 2px 1px;
	height: 25px;
	min-width: 120px;
	font-size: 1rem !important;
	-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	-o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	-moz-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.btn:disabled {
	cursor: default;
	opacity: 0.20;
}
.btn.btn-icon {
	padding: 4px 0;
	width: auto;
	height: auto;
	min-width: 33px;
}
.btn.btn-categorys {
	padding: 2px 0;
	width: auto;
	height: auto;
	min-width: 30px;
}
.btn.btn-clear {
	padding: 0.4rem 0.9rem;
	width: auto;
	height: auto;
	margin: 10px 15px;
	color: var(--cl-danger); background-color: var(--danger-500);
}
.btn.btn-ficha { 
	width: 10px !important;
	height: 30px !important;
	padding: 3px 3px !important;
	min-width: 30px;
 }
 
/* btn-normal */
.btn-primary { color: var(--cl-primary); background-color: var(--primary-500); border-color: var(--primary-500); }
.btn-primary:hover { color: var(--cl-primary) !important; }
.btn-primary:disabled { color: #000000 !important; }
.btn-secondary { color: var(--cl-secondary); background-color: var(--secondary-400); border-color: var(--secondary-500); }
.btn-secondary:hover { color: var(--cl-secondary) !important; }
.btn-success { color: var(--cl-success); background-color: var(--success-500); border-color: var(--success-500); }
.btn-success:hover { color: var(--cl-success) !important; }
.btn-warning { color: var(--cl-warning); background-color: var(--warning-500); border-color: var(--warning-500); }
.btn-warning:hover { color: var(--cl-warning) !important; }
.btn-danger { color: var(--cl-danger); background-color: var(--danger-500); border-color: var(--danger-500); }
.btn-danger:hover { color: var(--cl-danger) !important; }
.btn-info { color: var(--cl-info); background-color: var(--info-500); border-color: var(--info-500); }
.btn-info:hover { color: var(--cl-info) !important; }
/* btn-outline */
.btn-outline-primary { border: 1px solid var(--primary-500); background-color: transparent; color: var(--primary-500); }
.btn-outline-primary:hover { color: var(--cl-primary); border: 1px solid var(--primary-500); background-color: var(--primary-500); }
.btn-outline-secondary { border: 1px solid var(--secondary-500); background-color: transparent; color: var(--secondary-500); }
.btn-outline-secondary:hover { color: var(--cl-secondary); border: 1px solid var(--secondary-500); background-color: var(--secondary-500); }
.btn-outline-success { border: 1px solid var(--success-500); background-color: transparent; color: var(--secondary-500); }
.btn-outline-success:hover { color: var(--cl-success); border: 1px solid var(--success-500); background-color: var(--success-500); }
.btn-outline-warning { border: 1px solid var(--warning-500); background-color: transparent; color: var(--secondary-500); }
.btn-outline-warning:hover { color: var(--cl-warning); border: 1px solid var(--warning-500); background-color: var(--warning-500); }
.btn-outline-danger { border: 1px solid var(--danger-500); background-color: transparent; color: var(--secondary-500); }
.btn-outline-danger:hover { color: var(--cl-danger); border: 1px solid var(--danger-500); background-color: var(--danger-500); }
.btn-outline-info { border: 1px solid var(--info-500); background-color: transparent; color: var(--info-500); }
.btn-outline-info:hover { color: var(--cl-info); border: 1px solid var(--info-500); background-color: var(--info-500); }

.btn-overlay { color: var(--cl-primary); background-color: var(--bg-ficha); border-color: var(--bg-ficha); }
.btn-overlay:hover { color: var(--cl-primary) !important; }

.btn-flat-share {
	background-color: transparent;
	color: var(--text-dark);
}
.btn-flat-share:hover {
	background-color: #F0F5FF;
	
}
.btn-flat-wysiwyg {
	background-color: transparent;
	color: #333333;
}
.btn-flat-wysiwyg:hover{
	color: #333333;
	background-color: rgba(184, 194, 204, .1);
}

.btn-flat-primary { background-color: transparent; color: var(--primary-500); }
.btn-flat-primary:hover { color: var(--text-white); background-color: var(--primary-500); }

.btn-flat-danger { background-color: transparent; color: var(--danger-500); }
.btn-flat-danger:hover { color: var(--text-white); background-color: var(--danger-500); }

.btn-flat-warning { background-color: transparent; color: var(--text-dark); }
.btn-flat-warning:hover { color: var(--text-white); background-color: var(--warning-500); }

.btn-flat-info { background-color: transparent; color: var(--info-500); }
.btn-flat-info:hover { color: var(--text-white); background-color: var(--info-500); }

.btn-flat-success { background-color: transparent; color: var(--success-500); }
.btn-flat-success:hover { color: var(--text-white); background-color: var(--success-500); }


.btn-full{ width: 100% !important;}

/* -Social btn- */
.btn-social{
	padding-left: 2.5rem;
	margin: 10px 5px;
	cursor: pointer;
	text-align: center;
	font-weight: bold;
}
.btn-social.facebook{
	background:#1877F2 url('../img/media/social/facebook0.svg') no-repeat scroll 10px 0px / 20px 24px padding-box border-box;
	border: 1px solid #1877F2;
	color: #FFFFFF;
}
.btn-social.twitter{
	background:#00acee url('../img/media/social/twitterw.svg') no-repeat scroll 10px 0px / 20px 24px padding-box border-box;
	border: 1px solid #00acee;
	color: #FFFFFF;
}
.btn-social.whatsapp{
	background:#25D366 url('../img/media/social/whatsapp.svg') no-repeat scroll 10px 0px / 20px 24px padding-box border-box;
	border: 1px solid #25D366;
	color: #FFFFFF;
}
.btn-social.google {
	background: rgb(255, 255, 255) url('../img/media/social/google.svg') no-repeat scroll 10px 0px / 19px 24px padding-box border-box;
	border: 1px solid #cccccc;
	color: #757575;
}
.btn-social.apple {
	background: #0e0e0e url('../img/media/social/apple.svg') no-repeat scroll 10px 1px / 18px 37px padding-box border-box;
	border: 1px solid #111111;
}
.btn-social.facebook:hover {background-color: #176ddd;}
.btn-social.google:hover {border-color: #757575;}
.btn-social.apple:hover {border-color: #000000;}
.btn-social.twitter:hover {background-color: #02a0df;}
.btn-social.whatsapp:hover {background-color: #26ca62;}

/* btn back to top */

#topbutton {
	display: inline-block;
	background-color: var(--primary-500);
	width: 30px;
	height: 30px;
	text-align: center;
	position: fixed;
	bottom: 8px;
	right: 14px;
	transition: background-color .3s, 
	  opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}
#topbutton svg {
	width: 20px;
	height: 20px;
	margin: 5px;
	color: #fff;
}
#topbutton:hover {
	cursor: pointer;
	background-color: var(--primary-500);
}
#topbutton.show {
	opacity: 1;
	visibility: visible;
}

/* --- Progress Bar --- */
#progoverlay{
	position:fixed;
	z-index:99999;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background: rgba(0, 0, 0, 0.7);
	transition: 1s 0.4s;
}
#progress{
	height: 0.2rem;
	border: 0.01rem solid var(--primary-500);
	background: var(--primary-400);
	position:absolute;
	width:0;
	top:50%;
}
#progstat{
	font-size:1em;
	letter-spacing: 3px;
	position:absolute;
	top:50%;
	margin-top:-80px;
	width:100%;
	text-align:center;
	font-weight: 700;
	color:#fff;
}


/* ===================== RADIOBTN + INFO (Radio Categorias) ===================== */
input[type=radio].cat{
    display:none;
}

/**/
.cantidad{
    height: 60px;
    width: 100px;
    /*border: 2px solid #bdbdbd; */
    padding: 15px 0px;
    font-size: 17px;
    font-weight: bold;
    color: #666666;
    border-radius: 3px;
    background-color: #fff;
    border: 2px solid #fff;
    cursor: pointer;   
}
.cantidad small{
    font-size: 10px;
}
.RadioBtnPayment input[type=radio].cat:checked + label .cantidad {
    border: solid 2px #000;
    background-color: #ffffff;
}
/**/

.imageBox{
    height: 100%;
    width: 100%;
    /*border: 2px solid #bdbdbd; */
    /*padding: 15px;*/
    color: #666666;
    border-radius: 4px;
    background-color: #fff;
    border: 4px solid #eee;
    cursor: pointer;
    transition: all 1s;
}
.RadioBtnPayment .styleLabel{
    position:relative;
    text-align: center;
}

.method{
    overflow: auto;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.RadioBtnPayment input[type=radio].cat:checked + .styleLabel:before{
    content: "\f00c";
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    border: 1px solid #000;
    position: absolute;
    top: -12px;
    z-index: 1;
    padding-top: 6px;
    line-height: 1;
    right: -6px;
    width: 24px;
    height: 24px;
    font-size: 11px;
    font-family: 'FontAwesome';
}
.RadioBtnPayment input[type=radio].cat:checked + label .imageBox {
    border: solid 4px #000;
    box-shadow: 0 5px 5px 7px rgba(40,199,111, 0.2);
    background-color: #df7f03;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    transition: all 1s;
}
.metodo-textarea{
    width: 100%;
    padding: 5px 10px;
    border: solid 1px #c7c7c7;
}
.offer-title {
    font-weight: 600;
    font-size: 20px;
}
.offer-text{
    font-weight: 300;
    font-size: 12px;
}
.imageBox#productTangible:before {
    content: url("");
}

/* --- */
.grid {
	position: relative;
	margin: 0 auto;
	/*padding: 1em 0 4em;*/
	max-width: 300px;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 0;
	min-width: 235px;
	max-width: 235px;
	max-height: 235px;
	width: 48%;
	background: #000000;
	text-align: left;
	cursor: pointer;
}


.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.18);
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h3 {
	word-spacing: -0.15em;
	font-weight: normal;
    text-align: center;
}

.grid figure h3 span {
    color: #ffffff;
	text-transform: uppercase;
    padding-left: 5px;
	font-weight: 800;
    font-size: 30px;
}
.grid:hover figure h3 span {color: #F18917}

.grid figure h3,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

/*  tema */
figure.effect-bubba {
	background: #000;
}

figure.effect-bubba img {
	opacity: 1;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-bubba:hover img {
	opacity: 0;
}

.RadioBtnPayment input[type=radio].cat:checked > figure.effect-bubba img {
	opacity: 1;
}

figure.effect-bubba h3 {
    color: #fff;
	padding-top: 50%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
}

figure.effect-bubba p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,5px,0);
	transform: translate3d(0,5px,0);
}
figure.effect-bubba p.ocupacion {font-weight: bold; padding-bottom:10px;}
figure.effect-bubba p.ocupacion img {display:inline; width: 20px; opacity: 1;}
figure.effect-bubba p.titulo {font-weight: bold; color: #F18917}
figure.effect-bubba p.descripcion {}

figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-bubba:hover h3{
	opacity: 1;
    text-align: left;
	-webkit-transform: translateX(0,0,0);
	transform: translateX(0,0,0);
    -webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
    padding-top: 10px;
}
figure.effect-bubba:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
/* --- */

/* ===================== FILE UPLOAD ===================== */
.file-area {
	width: 100%;
	height: 100%;
	position: relative;
	padding: 2%;
	animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	}
	.file-area input[type=file] {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 1;
	}
	.file-area .icon {
		opacity:0.3;
		pointer-events: none;
	}
	.file-area:hover .icon {
		opacity:0.5;
		pointer-events: none;
	}
	.file-area .file-dummy {
		width: 100%;
		height: 100%;
		padding: 30px;
		background: rgba(255, 255, 255, 0.2);
		border: 2px dashed #ccc;
		text-align: center;
		font-size: 15px;
		transition: all 1s;

		display: flex;
		justify-content: center;
		align-items: center;
	}
	.file-area .file-dummy .success {
	display: none;
	}
	.file-area:hover .file-dummy {
	background: rgba(220, 220, 220, 0.2);
	}
	.file-area input[type=file]:valid + .file-dummy {
	border-color: rgba(173, 118, 166, 0.4);
	background-color: rgba(255, 0, 221, 0.1);
	}
	.file-area input[type=file]:valid + .file-dummy .success {
	display: inline-block;
	}
	.file-area input[type=file]:valid + .file-dummy .default {
	display: none;
	}

	.success-img{display: block;}
    .success-img img{
        object-fit: cover;
        width: 100%;
        height: 40%;
		top: 0;
		left: 0;
		position: absolute;
		padding: 3%;
    }

	.infoload_cartel{ position: relative; }
    .pulse-primary {
        animation: pulse-animation-primary 2s infinite;
    }
	.pulse-success {
		animation: pulse-animation-success 2s infinite;
	}
	.file-area .file-dummy .success {
		display: inline-block;
	}
	.file-area .file-dummy .default {
		display: none;
	}

	/* - - - */

	.avatar-img img{
		object-fit: fill;
		width: 200px;
		height: 200px;
		top: 6px;
		left: 6px;
		position: absolute;
		padding: 10px;
	}
	.file-area .avatar-edit {
		position: absolute;
		left: 185px;
		z-index: 1;
		top: 10px;
	}
	.file-area .avatar-edit label {
		display: inline-block;
		width: 34px;
		height: 34px;
		margin: 5px;
		padding: 6px;
		border-radius: 100%;
		background: #FFFFFF;
		color:var(--primary-500);
		border: 1px solid;
		border-color: var(--primary-500);
		cursor: pointer;
		transition: all 0.2s ease-in-out;
	}
	.file-area:hover .avatar-edit label {
		color:var(--cl-primary);
		background-color: var(--primary-500);
	}
	.file-area .file-dummy.avatar { 
		width: 200px !important;
		height: 200px !important;
		border-radius: 100%;
		background-color: #FFFFFF;
	}
	.file-area .file-dummy.avatar svg{
		transition: all 1s !important;
		width: 120px;
		height: 120px;
		fill: #FFF !important;
	}
	.file-area:hover .file-dummy.avatar svg{
		z-index: 1;
		position: relative;
		pointer-events: none;
	}
	.file-area:hover .file-dummy.avatar{
		border: 2px dashed var(--primary-400);
		background: var(--primary-400);
	}

/* --- IMAGEN --- */
.rounded-lg {
	border-radius: 0rem !important;
}
.img-fluid {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border-style: none;
}
.img-rounded{
	border-radius: 50%;
	width: 45px;
	height: 45px;
	box-shadow: 1px 2px 10px #ccc;
}
/* --- ToolTip General --- */
.tooltip {
	position: relative;
	display: inline-block;
}

.tooltip-container::after {
content: "";
position: absolute;
border-width: 5px;
border-style: solid;
}

/* Tooltip arrow */
.tooltip-container.on-left {
top: -5px;
bottom: auto;
right: 128%;
}
.tooltip-container.on-left::after {
top: 50%;
left: 100%;
margin-top: -5px;
border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

.tooltip-container.on-right {
top: -5px;
bottom: auto;
left: 128%;
}
.tooltip-container.on-right::after {
top: 50%;
right: 100%;
margin-top: -5px;
border-color: transparent rgba(0, 0, 0, 0.7) transparent transparent;
}

.tooltip-container.on-down {
top: 45px;
left: 50%;
margin-left: -60px;
}
.tooltip-container.on-down::after {
bottom: 100%;
left: 50%;
margin-left: -5px;
border-color: transparent  transparent rgba(0, 0, 0, 0.7) transparent;
}

.tooltip-container.on-top {
bottom: 125%;
left: 50%;
margin-left: -60px;
}
.tooltip-container.on-top::after {
top: 100%;
left: 50%;
margin-left: -5px;
border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
}

/* Tooltip text */
.tooltip-container {
visibility: hidden;
width: 120px;
background-color: rgba(0, 0, 0, 0.7);
color: #fff;
text-align: center;
padding: 9px 0;
/* Position the tooltip text */
position: absolute;
z-index: 1;

/* Fade in tooltip */
opacity: 0;
transition: opacity 0.3s;
}

.tooltip-label {
color: #fff;
}

.tooltip:hover .tooltip-container {
	visibility: visible;
	opacity: 1;
}

/* --- Tooltip Help --- */
.nav-links .profile-details .tooltipHelp {
	position: absolute;
	width: 10rem;
	height: 8rem;
	opacity: 0;
	pointer-events: none;
	bottom: 70px;
	left: 2.5rem;
	transition: 0.3s ease;
	transform: scale(0);
	transform-origin: bottom left;
}
.nav-links .profile-details .tooltipHelp .content {
	position: relative;
	width: 100%;
	height: calc(100% - 20px);
	box-shadow: 0px 0px 40px rgba(0,0,0,0.3);
	background-color: var(--bg-black-100);
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
	border-bottom-right-radius: 1rem;
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-direction: column;
}
.nav-links .profile-details .tooltipHelp svg
{
	color: #ffffff;
	font-size: 80px;
	width: 80px;
	height: 80px;
}
.nav-links .profile-details .tooltipHelp p
{
	color: #ffffff;
	font-size: 15px;
}
.nav-links .profile-details .tooltipHelp .content::before
{
	content: '';
	position: absolute;
	bottom: -20px;
	left: -2px;
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-right: 15px solid var(--bg-black-100);
	transform: rotate(45deg);
}
.nav-links .profile-details:hover .tooltipHelp
{
	pointer-events: all;
	opacity: 1;
	transform: scale(1);
}



/* --- DATA TABLE FILTER & SEARCH --- */
.input_search {
	position:relative;
	width: 100%;
}
.input_search .search {
	position:absolute;
	bottom: 38px;
	right: 11px;
	width: 17px;
	height: 17px;
	color: var(--text-placeholder);
}
.form-input:focus + label:first-of-type + svg{
	color: var(--primary-500);
}
.table-responsive{
	overflow-x: scroll;
	overflow-y: hidden;
	margin: 0 auto;
	width: 100%;
}
.table-responsive table{
	width: 100%;
}

/* --- TABLE SORT & SEARCH --- */                               

.dataTable{
	margin 		: 0 auto;
	width  		: 100%;
	text-align 	: center; 
	display: grid;
}
.dataTable .dtable{
	border-collapse: separate !important;
	border-spacing: 0 .1rem;
	padding: 0;
	color: #626262;
	text-align: left;
}
.dataTable thead tr{
	background-color: transparent;
	border: 0;
	box-shadow: none;
}
.dataTable thead tr:hover{
	background-color: transparent;
	border: 0;
	box-shadow: none;
	transform: none;
}
.dataTable thead tr th{
	cursor: pointer;
	padding: 10px 5px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.dataTable tr:nth-child(odd) td{
    background-color: var(--bg-color-body);
	padding: 10px 10px;
}
.dataTable tr:nth-child(even) td{
    background-color: #FFFFFF;
	padding: 10px 10px;
}
.dataTable tr{
	background-color: #FFFFFF;
	/*
	-webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 4px 20px 0;
	box-shadow: rgba(0, 0, 0, 0.05) 0 4px 20px 0;
	*/
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	height: 50px;
}
.dataTable tr:hover{
	transform: scale(1.01);
	font-weight: 700;
	box-shadow: var(--primary-500) 0px 1px 0px 0px;
}
.dataTable .filter{
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 5% center/8px 10px;
	background-size: 11px 11px;
}



.dataTable tbody tr.showRowResult{
	display : table-row !important;
}
.dataTable tbody tr.showRowResult .addBgCell{
	background : #f4364c;
}
.dataTable tbody tr.results:not(.showRowResult){
	display: none;
}


/* --- Ayuda grafica --- */
.ghelp-title{
	color: var(--text-muted) !important;
	font-weight: 700;
	margin-right: 20px;
}
.ghelp{
	display: grid;
	color: var(--text-muted) !important;
	margin-bottom: 5px;
}
.ghelp span{
	padding: 2px 20px;
}
.ghelp span svg{
	margin-right: 2px;
	width: 15px;
	height: 15px;
}
@media (min-width: 768px) {
	.ghelp{
		display: flex;
	}
}

/* -----------------------   WYSIWYG EDITOR 2   ----------------------- */
/* WYSIWYG Editor */
.wysiwyg-editor {
	width: 100%;
	min-height: 13rem;
	margin: 0;
	padding: 0;
}    
.wysiwyg-editor .toolbar .editor-btn {
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: 0.2s ease all;
}
.wysiwyg-editor .toolbar .editor-btn:hover, .wysiwyg-editor .toolbar .editor-btn.active {
	background-color: #e1e1e1;
	cursor: pointer;
}
.wysiwyg-editor .toolbar .editor-btn.icon img {
	width: 17px;
	height: 17px;
	padding: 9px;
	box-sizing: content-box;
}
.wysiwyg-editor .toolbar .editor-btn.icon.smaller img {
	width: 17px;
	height: 17px;
}
.wysiwyg-editor .content-area .visuell-view {
	outline: none;
	min-height: 8rem;
	border: 1px solid #ccc;
	padding: 5px 15px;
	margin-top: 5px;
	font-size: 17px;
}
.wysiwyg-editor .content-area .visuell-view p {
	font-size: 17px;
}
.wysiwyg-editor .content-area .html-view {
	outline: none;
	display: none;
	width: 100%;
	height: 8rem;
	border: none;
	resize: none;
}

/* ---
	✅ Sistema de grillas
	✅ Menu sticky
	⚠️ Progress Bar (Pasar a Vanilla JS)
	✅ Imagenes/Media
	✅ CARDS

	✅ Inputs
	✅ Buttons
	✅ Modal
	✅ Tooltips
	✅ Help Tooltip
	✅ Profile
	✅ Multi Step
	✅ Table Search & sort (dataTable)

	✅ WYSIWYG Editor

	✅ Alert
	✅ DropDown
	✅ DropDown User

	✅ login
		
	✅ Buscador avanzado
		**************************************************
		✅ Barra de busqueda con boton para buscar y boton para filtrar
		✅ Al hacer clic en el boton filtro se muestra un elemento con los filtros de busqueda debajo de la barra
		**************************************************

	✅ lightbox imagen
	
	✅ AUTH
		+ Img login
		+ img register
		+ img profiles
			- Admin
			- Catalogador
			- User
		+ Img Banner

	* Carousel
	* Slider
	* Buscador
	* Registro guiado
	* Loanding

	* Mail
	* CRUDS
	* Iconos
	* Metadatos

	* Color de la interfaz (DK/LT)

	✅ Colecciones
	✅ Paginador
	✅ Breadcum
	✅ Favicon
	✅ Actios
		+ Maximize
		+ minimice
		+ Close
	✅ Share icons
	✅Fuentes

--- */

/* ====================== CARDS BACKUPS ======================= */

.backup-file{
	position: sticky;
}
.icon-doc.file.f-html, .icon-doc.file.f-rtf, .icon-doc.file.f-xml, .icon-doc.file.f-xhtml {
	box-shadow: 1.74em -2.1em 0 0 #03689b inset;
}
.icon-doc.file {
	width: 2.5em;
	height: 3em;
	line-height: 3em;
	text-align: center;
	color: #FFF;
	display: inline-block;
	margin: 0.9em 1em 0.8em 0em;
	position: relative;
	overflow: hidden;
	box-shadow: 1.74em -2.1em 0 0 #A4A7AC inset;
}
.icon-doc {
	font-size: 21px;
}
.icon-doc.file.f-html::after, .icon-doc.file.f-rtf::after, .icon-doc.file.f-xml::after, .icon-doc.file.f-xhtml::after {
	border-bottom-color: #2980b9;
}
.icon-doc.file::after {
	content: '';
	position: absolute;
	z-index: -1;
	border-width: 0;
		border-right-width: 0px;
		border-bottom-width: 0px;
	border-bottom: 2.6em solid #DADDE1;
		border-bottom-color: rgb(218, 221, 225);
	border-right: 2.22em solid rgba(0, 0, 0, 0);
	top: -34.5px;
	right: -4px;
}
.backup-info{
	float: right;
	margin: auto 0px;
	width: 55%;
}
.backup-info .name{   
	font-size: 15px;
	font-weight: 700;
	line-height: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.backup-info .fecha{
	color: #888888;
	font-size: 13px;
	font-weight: 700;
	width: 55px;
	height: 10px;
	white-space: nowrap;
	
}
.backup-info .options{
	color: #2a2a2a;
	font-size: 13px;
	font-weight: 400;
	width: 50px;
	height: 10px;
	white-space: nowrap;
	
}

/* ====================== SCROLL CATEGORIAS ======================= */

.scroll-toggle {
	align-items: center;
	display: flex;
	justify-content: center;
	width: 100%;
	position: relative;
	top: -28px;
	margin: 0 auto;
}
.scroll-toggle__button {
	-webkit-appearance: none;
		-moz-appearance: none;
			appearance: none;
	flex: 0 0 50px;
	margin: 0px;
	padding: 0px;
	position: relative;
	transition: all 0.1s ease;
	background-color: transparent;
	border: 1px solid var(--primary-500);
	color: var(--primary-500);
}
.scroll-toggle__button:active, .scroll-toggle__button:hover {
	background-color: var(--primary-500);
	color: #FFF;
}
/*
.scroll-toggle__button:focus {
	outline: 2px solid var(--primary-500);
}
*/
.scroll-toggle__list {
	display: flex;
	flex: 1 1 auto;
	overflow-x: scroll;
	padding: 5px;
	/*
	-webkit-overflow-scrolling: touch;
	-ms-scroll-snap-type: x;
	scroll-snap-type: x mandatory;
	*/
}
.scroll-toggle__list-item {
	flex: 0 0 auto;
	padding: 1px 15px;
	background: var(--secondary-400);
	margin: 0 5px;
	/*scroll-snap-align: start;*/
}
.scroll-toggle__list-item:hover {
	background-color: var(--primary-500);
	color: #fff;
}

/* ====================== COLLECTIONS ======================= */

.no-collections{
	width: 100%;
	height: 200px;
	text-align: center;
	border: 2px dashed var(--secondary-500);
	margin: 30px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container_collection{
	display: table;
	width: 100vw;
}
.collection_left{
	width: 27%;
	height: 100vh;
	position: fixed;
	background-color: #d9107d;
	overflow-y: scroll;
	overflow-x: auto;
	
	padding: 5% 0%;
	background-color: #FFFFFF;
}

.collection_right{
	padding: 0 !important;
	width: 73%;
	height: 100vh;
	position: absolute;
	       
}

.collection-card {
	display: flex;
	flex-direction: row;
	background: #fff;
	overflow: hidden;
	min-height: 245px;
	width: 100%;
	margin: 10px 0;
}

.collection-type {
display: inline-block;
text-transform: uppercase;
font-size: 0.75rem;
font-weight: 700;
line-height: 1;
letter-spacing: 0.0625rem;
margin: 0 0 0.75rem 0;
padding: 0 0 0.25rem 0;
border-bottom: 0.125rem solid #ebebeb;
}

.collection-title {
	transition: color 0.3s ease;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #121212;
	font-weight: 700;
	margin: 0;
}

.collection-info {
	font-size: 0.8rem;
	line-height: 1;
	padding: 0.2rem 0 .5rem 0;
	border-bottom: 0.0625rem solid #ebebeb;
	display: flex;
	color: #6c757d;
}

.collection-description{
	text-align: justify;
	overflow-y: scroll;
	margin: 1rem 0;
	padding: 0 0.8rem;
	height: 50px;
}

.card-details{
	margin: 20px;
}

@media (max-width: 40rem) {
.collection-card {
	flex-wrap: wrap;
}
}
@supports (display: grid) {

.collection-card {
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-template-rows: 1fr;
}

@media (max-width: 40rem) {
	.collection-card {
		grid-template-columns: auto;
		grid-template-rows: 12rem 1fr;
	}
}
}
.collection-links{
	display: flex;
	justify-content: center;
	align-items: center;
}

.cartel-card-asd{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
.cartel-card-asd img{        

	position: absolute;
	
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 1s;
	
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.cartel-date{
	float: right;
	font-size: 0.8rem;
	line-height: 1;
	padding: 0.2rem 0 .5rem 0;
	display: grid;
	color: #6c757d;

}
.cartel-code{
	font-size: 25px;
	font-weight: 700;
	color: var(--primary-500);
}

.cartel-title {
	transition: color 0.3s ease;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #121212;
	overflow-y: scroll;
	margin: 0.5rem 0;
	padding: 0 0.8rem;
	height: 120px;
}

/* ====================== TABS ======================= */

/*
    *:focus, input:focus + label {
    outline: none;
    box-shadow: inset 0 0 0 5px lightBlue;
    }
    */

    .tabs {
        display: flex;
        flex-wrap: wrap;
    }
	.tabs.mg5{ margin: 0 5%; }
	.tabs.mg10{ margin: 0 10%; }
	.tabs.mg15{ margin: 0 15%; }

    .radiotab {
        position: absolute;
        opacity: 0;
    }

    .label {
        width: 100%;
		height: 30px;
        padding: 5px;
        cursor: pointer;
        font-size: 15px;
        transition: background .3s, color .3s;
        border: none;
        border-radius: 0;
        text-align: center;
    }

    .label:hover {
        border-bottom: solid 1px #d9107d;
    }

    .label:active {
        background: #ccc;
    }

    .radiotab:checked + .label {
        background: #d9107d;
        color: white;
        border-bottom: none;
    }

    .panel {
        display: none;
        padding: 0px;
        width: 100%;
    }

    .radiotab:checked + .label + .panel {
    display: block;
    }

    @media (min-width: 600px) {
    .panel {
        order: 99;
    }

    .label {
        width: 33.33%;
		height: 30px;
        border-bottom: solid 1px #ccc;
    }

    }


/* ====================== MULTI SLIDER AUTOPLAY =================== */

/* NO SLIDER - 1 IMG RANDOM <*/
.cartel-colecciones {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: none;
	margin: 0 auto;
	padding: 0px;
}
.cartel-colecciones img{
	width: 100%;
	height: 220px;
	object-fit: cover;
}
.elnacecartel{
	text-align: left;
	color: #333333;
	padding: 0px 0px;
	font-weight: 400 !important;
	height: 20px;
}
.cartel-coleccion:hover .elnacecartel svg{
	color: var(--primary-500);
}


/* SLIDER AUTOPLAY CSS */
.slider-colecciones {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: none;
	margin: 0 auto;
	padding: 15px 0px 25px 0px;
	/*background-color: #EEE;*/
}
.slider-colecciones:hover {
	transform: scale(1.1);
	background-color: #ccc;
}

.mslide {
	width: 350px;
	height: 250px;
	float: left;
	position: relative;
	
	display: flex;
	align-items: center;
	justify-content: center;

	/* THIS creates the animation! */
	transition: transform 1s;
}

.mslide img {
	/*object-fit: cover;
	max-width: 100%;*/
	object-fit: contain;
	max-width: 177px;
	max-height: 100%;
	border: 3px solid #FFF;
}

.slide-holder {
	width: 7000px;
	position: relative;
	left: 0;
	-webkit-animation: scroller 90s infinite;
			animation: scroller 90s infinite;
}

@-webkit-keyframes scroller {
	0% {transform: translateX(0);}
	5% {transform: translateX(-350px);}
	10% {transform: translateX(-700px);}
	15% {transform: translateX(-1050px);}
	20% {transform: translateX(-1400px);}
	25% {transform: translateX(-1750px);}
	30% {transform: translateX(-2100px);}
	35% {transform: translateX(-2450px);}
	40% {transform: translateX(-2800px);}
	45% {transform: translateX(-3150px);}
	50% {transform: translateX(-3500px);}
	55% {transform: translateX(-3850px);}
	60% {transform: translateX(-4200px);}
	65% {transform: translateX(-4550px);}
	70% {transform: translateX(-4900px);}
	75% {transform: translateX(-5250px);}
	80% {transform: translateX(-5600px);}
	85% {transform: translateX(-5950px);}
	90% {transform: translateX(-6300px);}
	95% {transform: translateX(-6650px);}
	100% {transform: translateX(0);}
}

@-moz-keyframes scroller {
	0% {transform: translateX(0);}
	5% {transform: translateX(-350px);}
	10% {transform: translateX(-700px);}
	15% {transform: translateX(-1050px);}
	20% {transform: translateX(-1400px);}
	25% {transform: translateX(-1750px);}
	30% {transform: translateX(-2100px);}
	35% {transform: translateX(-2450px);}
	40% {transform: translateX(-2800px);}
	45% {transform: translateX(-3150px);}
	50% {transform: translateX(-3500px);}
	55% {transform: translateX(-3850px);}
	60% {transform: translateX(-4200px);}
	65% {transform: translateX(-4550px);}
	70% {transform: translateX(-4900px);}
	75% {transform: translateX(-5250px);}
	80% {transform: translateX(-5600px);}
	85% {transform: translateX(-5950px);}
	90% {transform: translateX(-6300px);}
	95% {transform: translateX(-6650px);}
	100% {transform: translateX(0);}
}

@keyframes scroller {
	0% {transform: translateX(0);}
	5% {transform: translateX(-350px);}
	10% {transform: translateX(-700px);}
	15% {transform: translateX(-1050px);}
	20% {transform: translateX(-1400px);}
	25% {transform: translateX(-1750px);}
	30% {transform: translateX(-2100px);}
	35% {transform: translateX(-2450px);}
	40% {transform: translateX(-2800px);}
	45% {transform: translateX(-3150px);}
	50% {transform: translateX(-3500px);}
	55% {transform: translateX(-3850px);}
	60% {transform: translateX(-4200px);}
	65% {transform: translateX(-4550px);}
	70% {transform: translateX(-4900px);}
	75% {transform: translateX(-5250px);}
	80% {transform: translateX(-5600px);}
	85% {transform: translateX(-5950px);}
	90% {transform: translateX(-6300px);}
	95% {transform: translateX(-6650px);}
	100% {transform: translateX(0);}
}

/* Overlay slide sugerido */
.enlace-coleccio:hover .slider-colecciones{
	transform: scale(1.1);
	background-color: #ccc;
}
.enlace-coleccio:hover .elnaceslider{
	background-color: var(--primary-500);
	color: #FFFFFF;
	padding: 0px 0px;
	font-weight: 500;
	animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.elnaceslider{
	position: relative;
	text-align: center;
	margin: 0 auto;
	font-size: 15px;
	font-weight: 800 !important;
	color: var(--primary-500);
	padding: 0px 0px;
	font-weight: 500;
}

.parent:hover .slide-holder{ -moz-animation-play-state: paused; -webkit-animation-play-state: paused; }
.parent:hover .child { opacity: 1; }

.parent .child:hover { opacity: 1; }
.parent .child:hover .slide-holder{ -webkit-animation: scroller 90s infinite; animation: scroller 90s infinite; }
.parent .child:hover .slider-colecciones{ background-color: var(--secondary-400); }
.parent .child:hover .slider-colecciones .mslide img { border: 3px solid var(--secondary-500); }

/* Overlay paracontenido sugerido */
.enlace-sugerencia{
	transition: all 1s;
}
.enlace-sugerencia:hover img{
	opacity: .8;
}
.enlace-sugerencia p{
	font-weight: bold !important;
}

.middle {
	transition: .5s ease;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.enlace-sugerencia:hover .middle {
	opacity: 1;
}

.middle .text {
	background-color: #d9107d;
	color: white;
	font-size: 16px;
	font-weight: bold;
	padding: 5px 10px;
}

/* ====================== SLIDER SCROLL SNAP ======================*/
/* SLIDER DONTS, ARROWS, SLIDE, JAVASCRIPTS */
.slider {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	position: relative;
	/* IN THE END */
	overflow: hidden;
}

.slide {
	position: absolute;
	
	max-width: 100%;
	max-height: 100%;
	
	display: flex;
	align-items: center;
	justify-content: center;

	/* THIS creates the animation! */
	transition: transform 1s;
}

.slide img {
	/* Only for images that have different size than slide */
	width: 100%;
	height: 100vh;
	object-fit: contain;
}
.slide img.cover { object-fit: cover; }

.slider__btn {
	position: absolute;
	top: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.5);
	font-family: inherit;
	color: #000;
	height: 2rem;
	width: 2rem;
	font-size: 18px;
	cursor: pointer;
	transition: 0.6s ease;
}
.slider__btn:hover {
	background: #d9107d;
	color: white;
}

.collection-card .slider__btn {
	top: 15px !important;
	position: relative !important;
}

.slider__btn--left {
	left: 6%;
	transform: translate(-50%, -50%);
}

.slider__btn--right {
	right: 6%;
	transform: translate(50%, -50%);
}

.dots {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
}

.dots__dot {
	border: none;
	background-color: #b9b9b9;
	opacity: 0.7;
	height: .5rem;
	width: .5rem;
	border-radius: 50%;
	margin-right: .5rem;
	cursor: pointer;
	transition: all 0.5s;

	/* Only necessary when overlying images */
	/* box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.7); */
}

.dots__dot:last-child {
	margin: 0;
}

.dots__dot--active {
	/* background-color: #fff; */
	background-color: #d9107d;
	opacity: 1;
}

.slideshow-container {
	max-width: 500px;
	position: relative;
	margin: auto;
}

.content-news{
	margin: auto;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ccc;
	font-weight: 600;
	letter-spacing: 5px;
	width: 20vw;
}

/* ====================== MODAL ====================== */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, .9);
    align-items: center;
    justify-content: center;
  }
  .modal.dn { display: none;}
  .modal:target {
	display: flex;
    opacity: 1;
    pointer-events: auto;
	z-index: 2;
	margin: 0;
	padding: 0;
  }
  .modal:target .modal__inner{
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	/*animation: scale-up-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;*/
	/*animation: scale-up-ver-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;*/
  }
  
  .modal:target>.closeoverlay {
    display: block;
  }

  .modal.light { background: rgba(255,255,255, .9); }

  .closeoverlay {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    display: block;
    z-index: -1;
    position: fixed;
    cursor: pointer;
  }
  .modal>.modal-content {
    width: 100%;
    max-width: 100vw;
    max-height: 100vh;
    text-align: center;
    position: relative;
    z-index: 1;

    overflow-y:auto;
  }

  .modal__inner {
    height: 80%;
    width: 80%;
    /*position: absolute;*/
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    text-align: left;
    overflow-x: hidden;
    overflow-y: auto;
    transition: bottom .4s linear;
  }
  .modal__inner.xl { height: 80%; width: 90%; }
  .modal__inner.lg { height: 80%; width: 80%; }
  .modal__inner.md { height: 80%; width: 60%; }
  .modal__inner.sm { height: 80%; width: 40%; }
  .modal__inner.xs { height: 80%; width: 20%; }
  .modal__inner.confirm { height: 150px; width: 40%; }
  .modal__inner.share { height: 55%; width: 20%; }
  .modal__inner.relative{ position: relative; }

  .modal__inner.login {
    display: flex;
    align-items: center;
    overflow-x: unset;
    overflow-y: unset;
    max-width: 900px;
    height: unset !important;
    position: relative !important;
    margin: 100px auto !important;	
  }

  .modal__inner.visor {    
    display: flex;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100% !important;
    max-height: 100% !important;
    /*position: relative !important;*/
  }
  .modal__inner .visor-cartel{
    width: 50%;
    display: block !important;
    margin: 0 auto;
    font-weight: bold;
    color: #FFF;
    text-shadow: 0.1px 0.1px 2px #000;
  }
  .modal__inner .visor-content {
    width: 50%;
    height: 100%;
    padding: 4% 15% 0px 0px;
    position: relative;
    display: flex;
  }

  .modal__inner .visor-content .visor-ficha {
    overflow-y: scroll;
	overflow-x: hidden;
  }
  .modal__inner .visor-content .visor-ficha * { color: var(--primary-400); text-align: left; }
  .modal__inner .visor-content .visor-ficha h5 span {
    font-weight: 400;
    margin-left: 10px;
    color: #FFFFFF;
  }

  .sugerencias {
    max-width: 500px;
    margin: 0 auto;
  }
  .sugerencias section.carteles {
    padding: 1rem 0;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  }
  .sugerencias section.carteles h5 {
    margin-bottom: 1rem;
  }
  .sugerencias section.carteles .images-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    -ms-scroll-snap-type: x;
      scroll-snap-type: x;
  }
  .sugerencias section.carteles .images-list img {
    scroll-snap-align: start;
    flex: 0 0 90px;
    width: 110px;
    height: 150px;
    opacity: 0.2;
    transition: all 0.3s;
    object-fit: scale-down;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px;
  }
  .sugerencias section.carteles .images-list img:hover {
    opacity: 1;
    cursor: pointer;
  }

  @media screen and (max-width: 768px) {
    .modal__inner.visor { display: block; top: 50px; width: 100%;}
    .modal__inner .visor-cartel { width: 100% !important; }
    .modal__inner .visor-cartel #cartel { width: 250px !important; height: 350px !important; margin: 50px auto; }
    .modal__inner .visor-content { width: 100% !important; padding: 4% 16%;}
    .modal__inner .visor-content .visor-ficha { overflow: unset; width: 100%;}
  }

  .modal__inner.dark { background-color: #dedee0; }
  .modal__inner.light { background-color: #ffffff; }

  .modal_header{
    width: 100%;
    height: 55px;
    background-color: #bcbdc0;
  }
  .modal_header.share{ background-color: #FFFFFF !important; }
  .modal_header h1{
    font-weight: 300;
    color: #ffffff;
    padding-left: 20px;
    padding-top: 6px;
  }
  .modal_header h1{ color: var(--text-dark);}
  .modal_body {
    padding: 25px;
    min-height: 100%;
    text-align: justify;
  }
  .modal_footer{
    width: 100%;
    height: 83px;
    position: relative;
    bottom: 0;
    text-align: right;
  }
  .modal__inner.light .modal_footer { border-top: 1px solid #222; }
  .modal__inner.dark .modal_footer { border-top: 1px solid #fff; }
  .footer-content { position: absolute; bottom: 30%; right: 20px; }
  .modal__inner .login-description{
    width: 50%;
    display: block !important;
    margin: 20px;
    font-weight: bold;
    color: #FFF;
    text-shadow: 0.1px 0.1px 2px #000;
  }
  .modal__inner .login-content{
    width: 50%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.5);
    position: relative;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    box-shadow: 0 .25rem .5rem rgba(0,0,0,.5);
    outline: 0;
  }
  .captcha-terms{
    margin-top: 20px;
              max-width: 300px;
              color: #9e9ea7;
              font: normal 11px/16px "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
              text-align: left;
  }
  .modal__x.black {
  	top: 1.4em;
  }
  .modal__x {
    position: absolute;
    width: 40px;
    right: .5em;
    top: 1em;
    /*width: 1.1em;
    height: 1.1em;*/
    cursor: pointer;
    z-index: 2;	
  }
  .modal__x svg{ fill: #d9107d;}
  .modal__close { cursor: pointer; }
  .modal__zo{
    position: absolute;
    width: 45px;
    right: 6em;
    top: 1.2em;
    cursor: pointer;
    z-index: 2;
    background-color: unset;
    border: none;
  }
  .modal__r{
    position: fixed;
    width: 45px;
    right: 9.2rem;
    top: 1.9em;
    cursor: pointer;
    z-index: 2;
  }
  .modal__zi{
    position: absolute;
    width: 45px;
    right: 16em;
    top: 1.2em;
    cursor: pointer;
    z-index: 2;
    background-color: unset;
    border: none;
  }
  .modal__max, .modal__min{
    position: absolute;
    width: 45px;
    right: 3em;
    top: 1.2em;
    cursor: pointer;
    z-index: 2;
    background-color: unset;
    border: none;
  }
  .modal__s{
    position: absolute;
    width: 45px;
    right: 22em;
    top: 1.2em;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 16px !important;
    cursor: pointer;
    z-index: 2;
  }
  .modal__c{
    position: absolute;
    width: 45px;
    right: 19em;
    top: 1.2em;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 16px !important;
    cursor: pointer;
    z-index: 2;
  }
  .modal__x.black, .modal__zo.black, .modal__zi.black, .modal__max.black, .modal__min.black, .modal__s.black, .modal__c.black { fill: #FFFFFF; color: #FFFFFF; position: fixed;}



  @media screen and (max-width: 768px) {
    .modal__inner, .modal__inner.xl, .modal__inner.lg, .modal__inner.md, .modal__inner.sm, .modal__inner.xs, .modal__inner.login, .modal__inner.confirm, .modal__inner.share {
      width: 80%;
      height: 90%;
      box-sizing: border-box;
      display: block;
      margin: 20px auto !important;
    }
    .modal__inner.confirm{
      width: 90%;
      height: 25%;
      box-sizing: border-box;
      display: block;
      margin: 50% auto !important;
    }
    .modal__inner.share {
      width: 90%;
      height: 70%;
      box-sizing: border-box;
      display: block;      
      margin: 20% auto !important;
    }
    
    .collection-left{ display: none; }
    .collection-right{ width: 100%; }

    .modal__inner .login-description { width: 90% !important; }
    .modal__inner .login-content { width: 90% !important; }

  }
  /* Control Left Right */
  .control > button{
    width: 16.7%;
    height: 100vh;
    opacity: 1;
    color:#212121;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 35px;
    margin: 0;
    z-index: 1;
    position: relative;
    transition: all 300ms linear;
  }

  .control > button .arrow {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    width: 45px;
    height: 45px;
    border-radius: 100%;
	transition: all 1s ease;
  }
  .control > button:hover .arrow { background-color: rgba(255, 255, 255, 0.5); }

  button#previous{ float: left; }
  button#previous:hover{ 
    background: linear-gradient( to left, rgba(255,255,255,0), rgba(0,0,0,.2));
    padding-right: 15px;
  }

  button#next{ 
    float: right;
  }
  button#next:hover{ 
    background: linear-gradient( to right, rgba(255,255,255,0), rgba(0,0,0,.2)); 
    padding-left: 15px;
  }

/* ====================== CAROUSEL SNAP/CONTROLS/SCROLL/TOUCH ====================== */

.inicio-content{
	position: relative;
	/*top: 120px;*/
	margin: 0px 10%;
}
.carousel {
	position: relative;
	width: 100%;
	padding: 10px 15px;
}
.carousel_scroller {
	/* snap mandatory en horizontal  */
	scroll-snap-type: x mandatory;

	overflow-x: scroll;
	overflow-y: hidden;

	display: flex;
	align-items: center;

	height: 100%;
	
	/* Safari touch scrolling snap */
	-webkit-overflow-scrolling: touch;
}

/* Touch ready */
.active { scroll-snap-type: unset; }

.carousel_scroller div.carousel_card {
	scroll-snap-align: center;
	position: relative;
	min-width: 300px;
	min-height: 300px;
	margin: 10px 0px 15px 0px;
}

.carousel_scroller div.carousel_card a img{
	width: 300px;
	height: 300px;
	object-fit: cover;
}
.carousel_scroller div.carousel_card:hover a p{
	font-weight: bold;
}

.carousel div.note {
	position: absolute;

	/* vertically align center */
	top:  50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;

	background: rgba(0,0,0, 0.6);
	padding: 20px;
	position: absolute;

	font-size: 4em;
	color: white;
}


.carousel .btn-carousel {
	width: 40px;
	height: 40px;
	top: 50%;
	position: absolute;
	
	transform: translateY(-50%);
	background-position: 50% 50%;
	background-repeat: no-repeat;        

	background: rgba(255, 255, 255, 0.5);
	font-family: inherit;
	color: #000;
}

.carousel .btn-carousel.next {
	color: #FFFFFF;
	padding: 8px;
	
	right: 15px;
}
.carousel .btn-carousel.prev {
	color: #FFFFFF;
	padding: 8px;
	
	left: 15px;
}
.carousel .btn-carousel.next:hover { background-color: var(--primary-500); }
.carousel .btn-carousel.prev:hover { background-color: var(--primary-500); }

/* Categorias */

.img-category img{
	width: 100%;
	height: 250px;
	object-fit: cover;
}
.img-category:hover p{
	font-weight: bold;
}



/* ====================== COLLECTIONS ====================== */
.collection-left {
	background-color: #eee;
	background-position: 50%;
	background-size: contain;
	background-repeat: no-repeat;
	border-bottom-left-radius: 4px;
	border-top-left-radius: 4px;
	height: 100%;
	transition: opacity .8s ease-in;
	width: 37%;
	float: left;
}
.collection-right{
	background-color: #fff;
	border-radius: 0 4px 4px 0;
	height: 100%;
	overflow-x: hidden;
	padding: 10px;
	position: relative;
	width: auto;
}
.collection-right .collection-content{
	height: 100%;
	overflow-y: auto;
	padding: 0px 40px 40px;
}
.collection-right .collection-content .title{
	margin-bottom: 20px;
	margin-top: 20px;
	font-size: 28px;
	line-height: 1.2;
	margin-bottom: 16px;
	font-weight: 700;
}
.new-collection{
	border: 2px dashed #d1d1d1;
	color: #767676;
	font-size: 21px;
	line-height: 22px;
	padding: 26px 19px;
	text-decoration: none;
	transition: all .1s ease-in-out;
	width: 100%;
	background-color: #f5f5f5;
	display: block;
	height: 80px;
	margin-bottom: 12px;
	font-weight: 500;
	
	text-align: inherit;
}
.new-collection:hover{
	background-color: #eee;
	color: #767676;
}
.collections{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	margin-top: 0;
}
.collection {
	margin-bottom: 12px;
}
.btn-collection{
	background-color: #f5f5f5;
	display: block;
	width: 100%;
	background-color: initial;
	border: none;
	padding: 0;
	text-align: inherit;
}
.individual-collection{
	overflow: hidden;
	position: relative;
}
.img-collection {
	object-fit: cover;
	width: 100%;
	vertical-align: middle;
	border-style: none;
}
.info-collection{                              
	background-color: #0006;
	padding: 18px 20px;
	transition: all .1s ease-in-out;
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}
.info-collection .actions{
	height: 24px;
	position: absolute;
	width: 24px;
	fill: #fff;
	opacity: 1;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

/* Iconos para acciones */
.info-collection .actions svg.check{ display: none; }

.info-collection .actions svg.add{ display: none; transition: all 0.3s;}
.info-collection:hover .actions svg.add{ display: block;}

.number-cartels{
	color: #fff;
	font-size: 14px;
	margin: 0;
	opacity: .6;
	text-shadow: 0 1px 1px #00000026;
}
.name-collection{
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 21px;
	line-height: 1.3;
	margin: 0;
	max-width: 95%;
	position: relative;
	text-shadow: 0 1px 1px #00000026;
	font-weight: 500;
}
.name-collection .name{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-left: 5px;
}
.name-ico{
	fill: #fff;
	width: 15px;
	height: 15px;
}

/* ====================== CONTROLS CARTEL PAN AND ZOOM ====================== */
.cartel_visor {
	width: 350px;
	height: 500px;
	margin: 0 auto;
	padding: 0.1px;
	overflow: hidden;
}

input[type="range"].zoomlevel {
-webkit-appearance: none;
width: 100px;
height: 2px;
background: var(--primary-400);
border-radius: 5px;
background-size: 100%;
background-repeat: no-repeat;
}

/* Input Thumb */
input[type="range"].zoomlevel::-webkit-slider-thumb {
-webkit-appearance: none;
height: 10px;
width: 10px;
border-radius: 50%;
background-color: var(--primary-500);
border: 1px solid var(--primary-500);
cursor: ew-resize;

transition: background .3s ease-in-out;
}

input[type="range"].zoomlevel::-moz-range-thumb {
-webkit-appearance: none;
height: 10px;
width: 10px;
border-radius: 50%;
background-color: var(--primary-500);
border: 1px solid var(--primary-500);
cursor: ew-resize;

transition: background .3s ease-in-out;
}

input[type="range"].zoomlevel::-ms-thumb {
-webkit-appearance: none;
height: 10px;
width: 10px;
border-radius: 50%;
background-color: var(--primary-500);
border: 1px solid var(--primary-500);
cursor: ew-resize;

transition: all .3s ease-in-out;
}

input[type="range"].zoomlevel::-webkit-slider-thumb:hover {
background: var(--primary-500);
width: 13px;
height: 13px;
}

input[type="range"].zoomlevel::-moz-range-thumb:hover {
background: var(--primary-500);
width: 13px;
height: 13px;
}

input[type="range"].zoomlevel::-ms-thumb:hover {
background: var(--primary-500);
width: 13px;
height: 13px;
}

/* Input Track */
input[type="range"].zoomlevel::-webkit-slider-runnable-track  {
-webkit-appearance: none;
box-shadow: none;
border: none;
background: transparent;
}

input[type="range"].zoomlevel::-moz-range-track {
-webkit-appearance: none;
box-shadow: none;
border: none;
background: transparent;
}

input[type="range"].zoomlevel::-ms-track {
-webkit-appearance: none;
box-shadow: none;
border: none;
background: transparent;
}

/* ====================== INPUT BUSCADOR ====================== */
.buscador{
	width: 100%;
	padding: 0 10%;
}
.buscador-field{
	width: 100%;
	position: relative;
	font-size: 16px;
	
	width: 100%;
	background: transparent;
	border: 0;
	background: #fff;
	display: block;
	width: 100%;
	padding: 10px 70px 10px 20px;
	font-size: 18px;
	color: #222222;
	
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;

}
.btn-search{
	width: 70px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	left: -13px;
	top: 0;
	height: 100%;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}
.btn-search{
	right: 45px !important;
	left: auto;
}
input.search-control:focus + label svg{
	fill: var(--primary-500);
	color: var(--primary-500);
}
#btn-focuse {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	padding: 1px 6px;
}
.btn-search svg {
	fill: var(--text-placeholder);
	color: var(--text-placeholder);
	width: 30px;
	height: 30px;
	transition: all .2s ease-out, color .2s ease-out;
}
.btn-filter{
	width: 70px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}
.btn-filter svg {
	fill: var(--text-placeholder);
	width: 25px;
	height: 25px;
	transition: all .2s ease-out, color .2s ease-out;
}
.search-control{
	width: 100%;
	
	font-size: 20px;
	fill: var(--text-placeholder);
	border: 0px;
}



.advanced-search{
	background-color: transparent;
	padding: 20px 5px;
}
.advanced-search label{
	font-size: 0.73rem !important;
}
.select-advance{
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	padding-top: 3px !important;
	padding-bottom: 0px !important;
}
.clear-btn{
	padding-right: 15px;
	margin-top: 16px;
	position: absolute;
	/*right: 0;*/
}
.clear-btn svg{
	background-color: red;
	color: #ffffff;
}
@media only screen and (max-width:567px) {
	.clear-btn{
		bottom: 0;
	}
	.advanced-search{
		padding: 10px 5px 50px 5px !important;
	}
}

#advanceFilter{
	display: none;
}
input:checked #advanceFilter {
	display: block;
}

/* ====================== TOGGLE FILTRO ====================== */
[id=toggle-filter] {
	display: none;
	position: absolute;
	left: -100vw;
}
[id=toggle-filter]:checked + label {
	color: var(--primary-500);
	fill: var(--primary-500);
}
[for=toggle-filter] {
	align-self: center;
	fill: var(--text-placeholder);
	color: var(--text-placeholder);
	font-size: 0.9rem;
	cursor: pointer;
}
.toggle-filter label svg{
	width: 20px;
	height: 20px;
	fill: var(--text-placeholder);
	color: var(--text-placeholder);
}

/* ====================== BTN COLLECTIONS ====================== */

#btn-colecciones{ border: 0; background: transparent;}
#coleccionesTematicas{ display: none; }

/* ====================== POSTERS ====================== */
.snap_container {
	height: 100vh;
	width: 100vw;
	overflow: auto;
	scroll-snap-type: y mandatory;
}
.snap_section {
	padding-left: 0 !important;
	text-align: center;
	padding: 0% 15%;
	scroll-snap-align: start;
	min-height: 100vh;
}
/*
.snap-section:nth-child(1) { background: #f70bd7; }
.snap-section:nth-child(2) { background: #070707; }
.snap-section:nth-child(3) { background: #e9d312; }
.snap-section:nth-child(4) { background: #4ecdc4; }
.snap-section:nth-child(5) { background: #c44d58; }
*/

.contenedor-carteles{
	position: relative;
	margin: 0px 10%;
}
.poster_section{
	width: 100%;
	/*height: 700px;*/
	height: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkicol-sm-box-sizing: border-box;
}

@media only screen and (max-width:567px) {
	.posters_container{
		display: block;
	}
	.poster_section{
		width: 100%;
	}
}

/*Mobile Version*/
@media only screen and (max-width:567px) {
	
}
/*Tablet Verion*/
@media only screen and (min-width:767px) {

}
/*Desktop Version */
@media only screen and (min-width:1023px) {

}
/*Extra Desktop*/
@media only screen and (min-width:1170px) {
	
}

.poster_section .poster{
	position: relative;
	/*height: 65%;*/
	height: 465px;
	background-color: #FFFFFF;
}
.poster_section .poster .cartel_container{
	position: absolute;
	margin: 30px 20px 40px 20px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: 100%;
	max-height: 100%;
}
.poster_section .poster .cartel_container .marco{
	position: relative;
	height: 100%;
	/*background-color: #10DA28;*/
}
.poster_section .poster .cartel_container .marco .cartel{
	object-fit: scale-down;
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border: .1em solid #ccc;
}

.poster_section .ficha{
	/*height: 13%;*/
	height: 80px;
	background-color: var(--bg-ficha);
	position: relative;
	bottom: 20px;
	margin: 0px 40px;
	color: #fff;
}
@media only screen and (max-width:567px) {
	.poster_section .ficha{ margin: 0px; }
}
.poster_section .ficha .info{ display: flex; }
.poster_section .ficha .info .izq{
	display: block;
	border-right: 1px solid #FFFFFF;
	/* Center */
	text-align: center;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 17%;
	transform: translate(-50%, -50%);
}
.poster_section .ficha .info .derecha{
	display: block;
	text-align: left;
	/* Center */
	margin: 0;
	position: absolute;
	top: 50%;
	left: 63%;
	transform: translate(-50%, -50%);
}
.poster_section .ficha .info .derecha *{
	margin-left: 10px;
}

.poster_section .ficha .info .izq .code h6 { font-size: 0.86rem; }
.poster_section .ficha .info .derecha .autor h5 {
	font-weight: 600; 
	/* dots */
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	font-size: .8rem;
}
.poster_section .ficha .info .derecha .title p { 
	color: #FFFFFF;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	/* Tipografia*/
	line-height: 0.8rem;
	letter-spacing: 0.02rem;
	word-spacing: 0.05rem;
	text-align: left;
	font-size: .6rem;

}

/* Overlay */

.marco .cartel{
	transition: .5s ease;
	backface-visibility: hidden;
	cursor: pointer;
}

.overlay-actions {
	transition: .5s ease;
	opacity: 0;
	position: absolute;
	top: 0px;
	right: 0px;
}

.acciones {
	position: absolute;
	top: 5px;
	right: 5px;
	display: flex;
}

.marco:hover .cartel {
	opacity: 0.5;
}
.marco:hover .overlay-actions {
	opacity: 1;
}

.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	background-color: rgba(217, 16, 125, 0.2);
}

.marco:hover .overlay {
	opacity: 1;
}

/* ====================== FICHA ====================== */
.drop_full{
	max-width: 100vw;
	max-height: 100vh;
	width: 100%;
	height: 100%;
	padding: 10px;
	position: relative;
	top: 0;
	left: 0;
	background-color: white;
	display: inline-block;
	z-index: 10;
}
.container_ficha{
	display: table;
	width: 100vw;
}
.ficha_left{
	width: calc(65% - 78px);
	height: 100vh;
	
	position: absolute;
	
	/*background-color: red;*/
	/*
	overflow-y: scroll;
	overflow-x: auto;
	*/

	top: 0;
	padding: 5% 0%;
}
.ficha_right{
	width: 35%;
	height: 100vh;

	position: fixed;

	top: 0;
	right: 0;
	
	background-color: #FFFFFF;
}

.ficha-alltools{
	position: fixed;
	display: grid;
	top: 110px;
	right: 10px;
	z-index: 1;
	transition: all 1s;
}
.ficha-alltools #btnFicha{ display: none; }

.ficha_tools{
	background-color: var(--bg-color-body);
	display: grid;
	margin: 0;
	padding: 0;
}
.edit_tools{
	border: 1px solid var(--secondary-500);
	display: grid;
	margin: 0;
	padding: 0;
}

/* - - - */
.view-type{
	position: fixed;
	display: grid;
	bottom: 50px;
	right: 10px;
	z-index: 2;
	transition: all 1s;
	border: 1px solid #ccc;
}
.btn-newsh{
	min-width: 80px !important;
	height: 47px !important;
	padding-top: 12px;
}
/* - - - */

@media only screen and (max-width:567px) {
	.container_ficha{
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
	}
	.ficha_left{
		width: 100%;
		height: 100%;
		bottom: 0;
		top: unset;
		position: absolute;
		padding-top: 60px;
	}
	.ficha_right{
		width: 100%;
		height: 100%;
		position: fixed;
	}
	.ficha-alltools #btnFicha{ display: block; }
	.ficha-alltools .edit_tools{ opacity: 0.5; }
	.ficha-alltools .edit_tools:hover{ opacity: 1; }

	/*.crud { padding-right: 12% !important; padding-left: 12% !important; }*/
}

.cartel_info{
	height: 100%;
	width: 100%;
	padding: 15% 10% 10% 10%;
	overflow: hidden;   
}


#cartell { 
	max-width: 100%;
	max-height: 100%;
	width: 95%;
	height: 95%;
	margin: 0 auto;
	overflow: hidden;
	animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.draganddropxd{
	max-width: 100%;
	max-height: 100%;
	width: 100vw;
	height: 100vh;            
	overflow: hidden;
}

.controll_zoom{
	display: table;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
}
.controll_zoom  .cde_a{
	width: 50%;
	float: left;
	display: flex !important;
}
.controll_zoom  .cde_b{
	width: 50%;
	float: right;
	display: flex !important;
	justify-content: flex-end;
}

.controll_zoom .cde_a h3{
	font-weight: 800;
	color: #d9107d;
}
.controll_zoom  .zoombtn{
	fill: #000;
	color: #000;
	width: 45px;
	height: 45px;
	cursor: pointer;            
	background-color: unset;
	border: none;
}
.controll_zoom  .zoomlevel{
	margin-top: 20px;
}

.input-code{
	font-size: 25px;
	font-weight: 800 !important;
	width: 90px !important;
	border: 0;
	color: var(--primary-500);
	-webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	-o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	-moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.input-code:focus {
	border-bottom: 1px solid var(--primary-500);
}
.btn-code{
	border: 0;
	background-color: transparent;
	font-size: 25px;
	font-weight: 700;
	color: var(--primary-500);
}

/* ====================== COPY WIDGET ====================== */
.copy-element{
	margin-top: 30px;
	display: block;
}
.copy-element .copy-content{
	display: flex;
	position: relative;
	font-size: 15px;
	font-weight: normal;
	width: 100%;
}
.copy-element .copy-content .copy-link{
	background-color: #F0F5FF;
	border: 2px solid var(--info-400);
	padding: 6px 5px;
	width: 100%;
	height: 35px;

	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.copy-element .copy-content .copy-btn{
	cursor: pointer;
	padding: 3px 6px;
	background-color: var(--info-500);
	height: 27px;
	margin: 4px -35px;
}
.copy-element .copy-content .copy-btn{ color: var(--cl-primary);}
.copy-element .copy-content span.copy-tooltip{
	display: none;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(70%);
	background-color: var(--primary-500);
	color: var(--cl-primary);
	padding: 3% 5%;
	white-space: nowrap;
}
.copy-element .copy-content span.copy-tooltip.show{ display: block; }

/* ====================== PAGINADOR ====================== */
.pagination-container{
	position: relative;
	width: 100%;
}
ul.pagination{
	/* max-width: 360px; */
	max-width: 385px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	padding: 0px;
	margin-bottom: 10px;
	/*box-shadow: 0px 10px 15px rgba(0,0,0,0.1);*/
	/*border: 1px solid var(--primary-500);*/
}
ul.pagination li{
	color: var(--primary-500);
	list-style: none;
	/*line-height: 40px;*/
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	user-select: none;
	transition: all 0.3s ease;
	border-top: 1px solid var(--primary-500);

	border-bottom: 1px solid var(--primary-500);
}
ul.pagination li.page-item{
	list-style: none;
	height: 35px;
	width: 35px;
	/*margin: 0 3px;*/
	line-height: 35px;
	/*border-radius: 50%;*/
	background-color: #FFFFFF;
}
ul.pagination li.page-item .page-link{
	display: block;
}
ul.pagination li.page-item.disabled{
	font-size: 22px;
	cursor: default;
	padding: 0 5px;
}
ul.pagination li.btn{
	/* padding: 7px 15px; */
	height: 36px; /**/
	padding: 0 5px;
	/*border-radius: 50px;*/
}
ul.pagination li.active,
ul.pagination li.page-item:hover,
ul.pagination li:first-child:hover,
ul.pagination li:last-child:hover{
	color: #fff;
	background: var(--primary-500);
}

.btn.prev{
	min-width: 10px !important;
	height: 35px !important;
	margin: 0px;
	border-left: 1px solid var(--primary-500);
}
.btn.next{
	min-width: 10px !important;
	height: 35px !important;
	margin: 0px;
	border-right: 1px solid var(--primary-500);
}

@media screen and ( max-width: 475px ) {
	li.page-item {
		display: none;
	}

	.page-item:first-child,
	.page-item:nth-child( 2 ),
	.page-item:nth-last-child( 2 ),
	.page-item:last-child,
	.page-item.active,
	.page-item.disabled {
		display: block;
	}
}

.input-page{
	font-size: 17px;
	font-weight: 400 !important;
	width: 65px !important;
	border: 1px solid transparent;
	text-align: center;
	color: var(--primary-500);
	background-color: transparent;
	-webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	-o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	-moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.input-page:focus {
	border: 1px solid var(--primary-500);
}

/* ====================== NOTIFICACIONES ====================== */
.notification-box{
	box-sizing: border-box;
	/*position: absolute;*/
	position: fixed;
	z-index: 3;
	top: 0;
	right: 0;
	padding: 10px;
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-end;
	overflow: hidden;
}
.notification-box .Message {
	display: table;
	position: relative;
	margin: 10px auto 0;
	width: 250px;
	color: #fff;
	transition: all 0.2s ease;
}
.notification-box .Message.is-hidden {
	opacity: 0;
	height: 0;
	font-size: 0;
	padding: 0;
	margin: 0 auto;
	display: block;
}
.notification-box .Message .Message-icon {
	display: table-cell;
	vertical-align: middle;
	width: 20px;
	padding: 20px 5px 20px 20px;
	text-align: center;
	/**/
	background-color: rgba(0, 0, 0, 0);
}
.notification-box .Message .Message-icon > i {
	width: 20px;
	font-size: 10px;
}
.notification-box .Message .Message-body {
	display: table-cell;
	vertical-align: middle;
	padding: 10px 20px 10px 10px;
}
.notification-box .Message .Message-body > p {
	line-height: 1;
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
}
.notification-box .Message.bg-warning .Message-icon > svg,
.notification-box .Message.bg-success .Message-icon > svg,
.notification-box .Message.bg-secondary .Message-icon > svg {
	color: var(--cl-warning);
}
.notification-box .Message.bg-warning .Message-body > p,
.notification-box .Message.bg-success .Message-body > p,
.notification-box .Message.bg-secondary .Message-body > p {
	color: var(--cl-warning);
}
.notification-box .Message .Message-close {
	position: absolute;
	background-color: rgba(0, 0, 0, 0);
	color: #fff;
	border: none;
	outline: none;
	font-size: 10px;
	right: 5px;
	top: 5px;
	opacity: .8;
	cursor: pointer;
}
.notification-box .Message .Message:hover .Message-close {
	opacity: 1;
}

/* ====================== ALERTS ====================== */

.alert {
	position: relative;
	padding: 0.71rem 0.71rem;
	margin-bottom: 1rem;
	background: transparent;
	font-weight: 500;
	border: none;
}
.alert-primary {
    border: 1px solid var(--primary-500) !important;
    color: var(--primary-500) !important;
}
.alert-warning {
    border: 1px solid var(--warning-500) !important;
    color: var(--text-muted) !important;
}

/* ====================== DROPDOWN ====================== */

/* - - - User dropdown - - - */
.user-dropdown {
	/*position: absolute;*/
	/*position: relative;*/
	margin: 0px 0px 0px 10px;
	/*height: 90px;*/
}
.user-dropdown:focus-within .dropdown-menu-container { display: block; }
.user-dropdown .dropdown-button { border: 0px; }
.user-dropdown .dropdown-menu-container { margin-right: 0px; z-index: 2;}
.user-dropdown .dropdown-menu {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--primary-500);
	
	padding: 10px;
	background-color: #ffffff;
	color: #000;
	width: 230px;
	right: 5%;
	top: 50px;
	position: absolute;
}

.user-dropdown .user .online{
	position: relative;
	top: 35px;
	right: 10px;
	display: block;
	height: 10px;
	width: 10px;
	background: #50D030;
	border-radius: 50%;
}
.user-dropdown .user-details{
	position: relative;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #434343
}
.user-dropdown .user-details img{
	height: 30px;
	width: 30px;
	object-fit: fill;
	border-radius: 50%;
	user-select: none;
	margin-top: 5px;
}
.user-dropdown .user-details .details{
	width: 165px;
}
.user-dropdown .user-details .details h4{
	font-size: 15px;
	font-weight: bold;
}
.user-dropdown .user-details .details p{
	font-size: 12px;
	font-weight: normal;
	color: #5f5f5f;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.user-dropdown .menu-list + .menu-list {
	border-top: 1px solid #ec88be;
}

/* - - - General Dropdown - - - */
.dropdown--focus_within {
	position: relative;
	margin-top: 16px;
	height: 65px;
}
.dropdown--focus_within:focus-within .dropdown-menu-container {
	display: block;
}

/* - - - - - - - - - - */
.dropdown-button {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	height: 20px;
	padding: 0.8rem;
	border: 1px solid var(--primary-500);
	cursor: pointer;
	background-color: #ffffff;
	color: var(--cl-secondary);
}
.dropdown-button > *:not(:first-child) {
	margin-left: 16px;
}
.dropdown-button * {
	outline: none;
}
.dropdown-button svg {
	width: 16px;
	height: 16px;
}
.dropdown-button-text {
	font-size: 0.99rem;
}
.dropdown-menu-container {
	position: absolute;
	left: 0;
	right: 0;
	display: none;
	z-index: 1;
}
.dropdown-menu {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--primary-500);
	padding: 5px;
	background-color: #ffffff;
	color: #000;
	width: 100%;
	top: -1px;
	position: relative;
}

.menu-button {
	border: 0;
	padding: 8px 8px;
		padding-right: 8px;
	padding-right: 36px;
	width: 100%;
	text-align: left;
	display: flex;
	align-items: center;
	position: relative;
	background-color: #ffffff;
	font-size: 1rem;
	cursor: pointer;
}
.menu-button:hover {
	background-color: #f1f3f7;
	background-color: var(--primary-500);
	color: #fff;
}
.menu-button.red{ color: #d92027; }
.menu-button.red:hover{ color: #fff; }
.menu-button svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

/* --- Multi Steps --- */
.fw {
    display: block;
    position: relative;
    width: 400px;
    max-height: 90%;
    padding: 16px 32px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2), 0 2px 30px rgba(0, 0, 0, 0.1);
    overflow: auto;
}

/*===============
Form Title
===============*/

.fw__title {
    text-align: center;
    color: #5E3C58;
}

/*===============
Form Progress
===============*/

.fw__breadcrumbs {
    display: flex;
    padding: 0;
    /*margin: 15px 100px 60px auto;*/
	margin: 10px auto 40px auto;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    list-style: none;
}

.fw__breadcrumbs .fw__breadcrumbs__item {
    display: inline-block;
    position: relative;
}

.fw__breadcrumbs .fw__breadcrumbs__item:not(:last-child) {
	padding-right: 7%;
    margin-right: 0px;
}

.fw__breadcrumbs .fw__breadcrumbs__item:not(:last-child):after {
    position: absolute;
    width: 60%;
    height: 3px;
	background-color: var(--primary-500);
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    content: "";
}

.fw__breadcrumbs .fw__breadcrumbs__element {
    width: 35px;
    height: 35px;
    padding: 5px;
    font-size: 16px;
    border-radius: 50%;
    border: 2px solid var(--primary-500);
    color: var(--primary-500);
	background-color: var(--bg-color-body);
    text-align: center;
    transition: all 0.3s;
	position: relative;
	z-index: 1;
}

.fw__breadcrumbs .fw__breadcrumbs__element.fw__breadcrumbs__element--active {
    background: var(--primary-500);
    color: white;
}

.fw__breadcrumbs__desc{
	text-align: left;
	margin-bottom: 30px;
	
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/*===============
Form Input Fields
===============*/


.fw__inputs .fw__inputs__label {
    display: block;
    padding: 0 8px;
    color: #BFB5B2;
    font-size: 12px;
    text-transform: uppercase;
}

.fw__inputs .fw__inputs__label.fw__inputs__label--inline {
    display: inline-block;
}

.fw__inputs .fw__inputs__selector {
    display: inline-block;
    min-width: 160px;
    height: 32px;
    padding: 4px 8px;
    margin-bottom: 16px;
    border: none;
    color: #BFB5B2;
    background-color: #EFEFEF;
    -webkit-appearance: unset;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

.fw__inputs .fw__inputs__selector:hover {
    opacity: 0.7;
}

.fw__inputs__error {
    display: flex;
    width: 100%;
    height: 32px;
    margin-bottom: 16px;
    border: 1px solid darkred;
    /*border-radius: 2px;*/
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.fw__inputs__error .fw__inputs__error--message {
    margin: 0;
    color: darkred;
}

/*===============
Results
===============*/

.fw__result {
    transition: all 0.3s;
}

.fw__result__title {
    text-align: center;
    color: #5E3C58;
}

.fw__result__item {
    display: block;
    width: 100%;
    margin: 16px 0;
}

.fw__result__label {
    display: block;
    margin-bottom: 4px;
    color: #2E4045;
}

.fw__result__value {
    display: block;
    color: #83adb5;
    word-wrap: break-word;
}

.fw__result__button {
    width: 100%;
    height: 40px;
}

/*===============
Icons
===============*/
.done {
    display: inline-block;
    transform: rotate(45deg);
    height: 12px;
    width: 6px;
    border-bottom: 4px solid lightgreen;
    border-right: 4px solid lightgreen;
}

/*===============
Components
===============*/
.fw__button {
    color: white;
    background-color: #83ADB5;
    opacity: 0.7;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.fw__button--negative {
    background-color: #BFB5B2;;
}

.fw__button:hover {
    opacity: 1;
}

/* ====================== LOGIN ====================== */

.login {
	display: flex;
	height: 100vh;
	padding: 0px;
}

.left {
	flex: 1;
	transition: 1s;
	background-image: url('../img/media/bg-login.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.left .authoverlay {
	/*padding: 10px;*/
	width: 100%;
	height: 100%;
	background: rgba(237, 0, 140, .3);
	overflow: hidden;
	box-sizing: border-box;
}
.left .authoverlay .logo{
	width: 190px;
	height: auto;
	margin-top: 10px;
	margin-left: 10px;
}
@media (max-width: 980px) {
	.left {
		width: 0%;
		display: none;
	}
	.right{
		width: 100% !important;
		padding: 20px 0px !important;
		display: contents;
	}
}

.right {
	padding: 50px;
	overflow-x: hidden;
	overflow-y: auto;
	justify-content: center;
	
	-webkit-animation-name: left;
			animation-name: left;
	-webkit-animation-duration: 1s;
			animation-duration: 1s;
	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
	-webkit-animation-delay: 1s;
			animation-delay: 1s;
}

/* center table */
.left.public{
	position: fixed;
	height: 100vh;
}
.right.public{
	min-height:100%;
	display: table;
	width: 80%; 
	position: absolute;
	right: 0;
}
.public.der{ right: 0 !important; }
.public.izq{ left: 0 !important; }

.auth-nav {
	display: block;
	padding: 0px 0px 30px 0px;
}
.back-link {text-align: left; float: left; }
.back-link:hover { color: var(--primary-500); }
.auth-link{
	margin: 0;
	text-align: right;
	float: right;
	font-size: 15px;
}   
.auth-content {
	width: 100%;
	max-width: 650px;
	margin: auto;
	padding: 30px 60px 0;
}
.auth-content h2{
	margin-bottom: 25px;
	font: bold 24px/29px Helvetica, sans-serif;
}
.auth-content p{
	margin-top: 10px;
	margin-bottom: 30px;
	font-size: 0.85rem;
	color: #464646;
}
.auth-connections {
	display: flex;
	margin: 0 0 40px !important;
} 
.recaptcha-terms {
	margin-top: 20px;
	max-width: 300px;
	color: #9e9ea7;
	font: normal 11px/16px "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: left;
}

/* ====================== FOOTER ====================== */

.footer {
	display: table-row;   
	color: var(--text-dark);
	font-size: 0.8rem;
}
.footer span a{
	margin-right: 10px;
}
.footer span a:hover{
	color: var(--primary-500);
}

/* ====================== SCROLL TOGGLE CATEGORIAS ====================== */

.scroll-toggle {
	align-items: center;
	display: flex;
	justify-content: center;
	width: 100%;
	position: relative;
	margin: 0 auto;
}
.scroll-toggle__button {
	-webkit-appearance: none;
		-moz-appearance: none;
			appearance: none;
	flex: 0 0 50px;
	margin: 0px;
	padding: 0px;
	position: relative;
	transition: all 0.1s ease;
	background-color: transparent;
	border: 1px solid var(--primary-500);
	color: var(--primary-500);
}
.scroll-toggle__button:active, .scroll-toggle__button:hover {
	background-color: var(--primary-500);
	color: #FFF;
}
/*
.scroll-toggle__button:focus {
	outline: 2px solid var(--primary-500);
}
*/
.scroll-toggle__list {
	display: flex;
	flex: 1 1 auto;
	overflow-x: scroll;
	padding: 5px;
	/*
	-webkit-overflow-scrolling: touch;
	-ms-scroll-snap-type: x;
	scroll-snap-type: x mandatory;
	*/
}
.scroll-toggle__list-item {
	flex: 0 0 auto;
	padding: 1px 15px;
	background: var(--secondary-400);
	margin: 0 5px;
	/*scroll-snap-align: start;*/
}
.scroll-toggle__list-item:hover {
	background-color: var(--primary-500);
	color: #fff;
}

/* ====================== FAQS ====================== */

/* - - - FAQs - - - */
.question {
    position: relative;
    color: #2e2e2e;
    background: #f1f1f1;
    margin: 0;
    padding: 10px 10px 10px 50px;
    display: block;
    width:100%;
    font-size: 1.2em;
    cursor: pointer;
}
/*Answer*/
.answers {
    padding: 0px 15px;
    margin: 5px 0;
    width:100%!important;
    height: 0;
    overflow: hidden;
    z-index: -1;
    position: relative;
    opacity: 0;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}
.qbox { display: none; }
.qbox:checked ~ .answers{
    height: auto;
    opacity: 1;
    padding: 15px;
}
/*FAQ Toggle*/
.plus {
    position: absolute;
    color: #aab8c2;
    margin-left: 15px;
    margin-top: 9px;
    z-index: 1;
    font-size: 2em;
    line-height: 100%;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}
.qbox:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.section-secondary{
	background-color: var(--secondary-400);
	padding: 20px;
	margin: 20px 0;
}

/* ====================== VIDEO GALERY ====================== */

.player {
	margin: auto;
	max-width: 50em;
}
.player_video {
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
	position: relative;
}
.player_video iframe {
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
}

.gallery {
	height: 300px;
	margin: 20px 0;
	overflow-y: scroll;
	overflow-x: hidden;
}
.gallery_item {
	align-items: center;
	background-color: #FFF;
	cursor: pointer;
	display: flex;
	justify-content: center;
	padding: 0;
}
.gallery_item_img {
	width: 40%;
}
.gallery_item_span {
	padding-left: 1em;
	width: 60%;
}

@media screen and (min-width: 30em) {
.gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0.75em;
}
}
@media screen and (min-width: 48em) {
	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}
	.player{
		padding: 11rem 0 0 0;
	}
}
@media screen and (min-width: 60em) {
	.gallery {
		grid-template-columns: repeat(1, 1fr);
	}
	.player{
		padding: 10rem 0 0 0;
	}
}

/**/
.info-catalogador{display: flex; padding: 5px;}
.info-userdate{margin-left: 15px;}
/**/

/* ====================== ANIMACIONES ====================== */

@keyframes pulse-animation-primary {
	0% {
		box-shadow: 0 0 0 0px rgba(182, 182, 182, 0.3);
	}
	100% {
		box-shadow: 0 0 0 15px rgba(217, 16, 125, .0);;
	}
}
@keyframes pulse-animation-success {
	0% {
		box-shadow: 0 0 0 0px rgba(40,199,111, .8);
	}
	100% {
		box-shadow: 0 0 0 15px rgba(40,199,111, 0);
	}
}

/* animation scale-up-center */
@keyframes scale-up-center {
	0% {
		transform: scale(0.6);
	}
	100% {
		transform: scale(1);
	}
}

/* animation scale-up-bottom */
 @keyframes scale-up-bottom {
	0% {
	  transform: scale(0.5);
	  transform-origin: 50% 100%;
	}
	100% {
	  transform: scale(1);
	  transform-origin: 50% 100%;
	}
}

/* animation scale-up-ver-bottom */
 @keyframes scale-up-ver-bottom {
	0% {
	  transform: scaleY(0.4);
	  transform-origin: 0% 100%;
	}
	100% {
	  transform: scaleY(1);
	  transform-origin: 0% 100%;
	}
}

/* --- Loader --- */
/* .loader-container {
	position: relative;
	height: 200px;
	width: 100%;
} */

.loader {
    position: relative;
    margin: auto;
	margin-top: 40px;
	height: 100px;
	width: 320px;
}
.loader .dot {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 52.5%;
    left: 150px;
    height: 5px;
    width: 5px;
    background-color: #909090;
    border-radius: 0rem;
}
.loader .dot:nth-child(1) {
    left: 80px;
    animation: waveUp 2s, smallExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.loader .dot:nth-child(2) {
    left: 115px;
    animation: waveUp 2s, largeExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0.15s;
}
.loader .dot:nth-child(3) {
    animation: waveUp 2s, smallExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0.3s;
}
.loader .dot:nth-child(4) {
    left: 185px;
    animation: waveUp 2s, largeExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0.45s;
}
.loader .dot:nth-child(5) {
    left: 220px;
    animation: waveUp 2s, smallExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0.6s;
}
@keyframes waveUp {
    0%, 15% {
        top: 50%;
    }
    45%, 65% {
        top: 42.5%;
    }
    85%, 100% {
        top: 50%;
    }
}
@keyframes smallExtend {
    0%, 8% {
        background-color: #212121;
        height: 10px;
    }
    14%,34% {
        background-color: var(--primary-500);;
        height: 30px;
    }
    46%,100% {
        background-color: #212121;
        height: 10px;
    }
}
@keyframes largeExtend {
    0%,8% {
        background-color: #212121;
        height: 10px;
    }
    14%,34% {
        background-color: var(--primary-500);;
        height: 70px;
    }
    46%,100% {
        background-color: #212121;
        height: 10px;
    }
}