img{
	-webkit-touch-callout: none;
    -webkit-user-select: none;
}

/*---- RESET GENERAL---*/

*::selection{
	background: rgba(var(--main-lighter-color),0.6);
	color:black;
}

*::-moz-selection{
	background: rgba(0,0,0,0.2);
}

*{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-moz-tap-highlight-color: rgba(0,0,0,0);
	-o-tap-highlight-color: rgba(0,0,0,0);
}


/* Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: rgba(var(--main-lighter-color),0.4) rgba(var(--main-lighter-color),0.2);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 8px;
}

*::-webkit-scrollbar-track {
	background: rgba(var(--main-lighter-color),0.2);
}

*::-webkit-scrollbar-thumb {
	background-color: rgba(var(--main-lighter-color),0.4);
	border-radius: 25px;
	border: 0px none transparent;
}


:root{
	/*----- MAIN COLOR (PURPLE - POWER) -----*/
	--main-dark-color: 52, 34, 145;
	--main-color :84, 48, 216; 
	--main-light-color :99, 67, 255; 
	--main-lighter-color :126, 100, 255;

	/*----- SECONDARY COLOR (CYAN - INTELLIGENCE) -----*/ 
	
	--secondary-color:17, 203, 218; 
	--secondary-light-color:61, 230, 234; 
	--secondary-lighter-color:101, 231, 234; 

	/*----- TERCIARY COLOR (STABILITY - DARK) ---------*/

	--terciary-color:12,9,28; 
	--terciary-light-color:28,23,66; 
	--terciary-lighter-color:49,41,104; 

	/*----- CUATERNARY COLOR (BLUE/CYAN)--------*/


	--cuaternary-color: 53,145,222;
	--gray-color: #3D3D3D;
	--gray-darker-color: #262626;
	--main-font: 'Poppins', sans-serif;
	--secondary-font: 'Poppins', sans-serif;
	--terciary-font: 'Poppins', sans-serif;


	/*	------------- INTERPOLATE AUTO AND KEYWORDS ANIMATIONS -------*/

	interpolate-size: allow-keywords;


}

 /*----- FONT FACES -----*/
/*
@font-face {
    font-family: 'Panton';
    src: url('fonts/Panton-BoldItalic.eot');
    src: local('fonts/Panton Bold Italic'), local('fonts/Panton-BoldItalic'),
        url('fonts/Panton-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('fonts/Panton-BoldItalic.woff2') format('woff2'),
        url('fonts/Panton-BoldItalic.woff') format('woff'),
        url('fonts/Panton-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}
*/

html{
	width: 100%;
	height: 100%;
}

body{
	padding: 0;
	margin:0;
	text-align: center;
	width: 100%;
	height: 100%;
	font-family: var(--main-font);
	display: inline-block;
}

.contenedor-general{
	width:calc(100% - 50px);
	max-width: 1280px;
	display: inline-block;
	/*margin:10px 0 0 10px;*/
}

.design-container{
	backdrop-filter: blur(15px) brightness(50%);
	-moz-backdrop-filter: blur(15px) brightness(50%);
	-webkit-backdrop-filter: blur(15px) brightness(50%);
	-o-backdrop-filter: blur(15px) brightness(50%);
	-ms-backdrop-filter: blur(15px) brightness(50%);
	border:1px solid rgba(200,200,255,0.1);
	border-radius: 10px;
	position: relative;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
	background:radial-gradient(
		200px at 50% 50%, rgba(var(--main-light-color),0.4) 0%, rgba(var(--main-light-color),0) 100%
		) no-repeat;

	background-size: 200% 200%;
    background-position: -100% 0%;
    animation: design_container_out .5s 1 forwards cubic-bezier(0.505, 0.000, 0.305, 1.000); 

	/*overflow: hidden;*/
}

.design-container:hover{
	animation: design_container_in .5s 1 forwards cubic-bezier(0.505, 0.000, 0.305, 1.000); 	
}

@keyframes design_container_in{
	0%{
		background-position: -100% 0%;
	}
	100%{
		background-position: 0% 0%;
	}

}

@keyframes design_container_out{
	0%{
		background-position: 0% 0%;
	}
	100%{
		background-position: -100% 0%;
	}

}

/*TXT - ELLIPSIS */

.txt-ellipsis{
	margin: 0;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


/*TXT - ALIGN */

.txt-left{
	text-align: left;
}

.txt-center{
	text-align: center;
}

.txt-right{
	text-align: right;
}

.txt-uppercase{
	text-transform: uppercase;
}

/*FONT WEIGHT*/

.fw-light{
	font-weight: 100;
}

.fw-normal{
	font-weight: 500;
}

.fw-bold{
	font-weight: 700;
}

/*FONT FAMILY*/

.ff-main{
	font-family: var(--main-font) !important;
}

.ff-secondary{
	font-family: var(--secondary-font) !important;
}

.ff-terciary{
	font-family: var(--terciary-font) !important;
}

.fw-bold{
	font-weight: 700;
}

.fw-light{
	font-weight: 300;
}

.fs-italic{
	font-style: italic;
}

.fs-normal{
	font-style: normal;
}

.txt-uppercase{
	text-transform: uppercase;
}

.txt-underline{
	text-decoration: underline;
}

.txt-decoration-none{
	text-decoration: none;
}


/*FONT SIZE*/

.ls-0em{
	letter-spacing: 0em !important; 
}

.lh-1em{
	line-height: 1em;
}

.lh-09em{
	line-height: 0.9em;
}

.lh-08em{
	line-height: 0.8em;
}

.lh-05em{
	line-height: 0.5em;
}


.lh-0em{
	line-height: 0em;
}


.fs-7pt{
	font-size: 7pt !important;
}

.fs-8pt{
	font-size: 8pt !important;
}

.fs-9pt{
	font-size: 9pt !important;
}

.fs-10pt{
	font-size: 10pt !important;
}

.fs-11pt{
	font-size: 11pt !important;
}

.fs-12pt{
	font-size: 12pt !important;
}

.fs-13pt{
	font-size: 13pt !important;
}

.fs-14pt{
	font-size: 14pt !important;
}

.fs-16pt{
	font-size: 16pt !important;
}

.fs-18pt{
	font-size: 18pt !important;
}

.fs-20pt{
	font-size: 20pt !important;
}

.fs-22pt{
	font-size: 22pt !important;
}

.fs-24pt{
	font-size: 24pt !important;
}

.fs-26pt{
	font-size: 26pt !important;
}

.fs-28pt{
	font-size: 28pt !important;
}

.fs-30pt{
	font-size: 30pt !important;
}

.fs-32pt{
	font-size: 32pt !important;
}

.fs-34pt{
	font-size: 34pt !important;
}

.fs-36pt{
	font-size: 36pt !important;
}

.fs-38pt{
	font-size: 38pt !important;
}

.fs-40pt{
	font-size: 40pt !important;
}

.fs-44pt{
	font-size: 44pt !important;
}

.fs-48pt{
	font-size: 48pt !important;
}

.fs-52pt{
	font-size: 52pt !important;
}

.fs-58pt{
	font-size: 58pt !important;
}

.fs-60pt{
	font-size: 60pt !important;
}

.fs-66pt{
	font-size: 66pt !important;
}

.fs-72pt{
	font-size: 72pt !important;
}

/*---------------------------
 RESPONSIVE FONTS 
---------------------------*/

.fs-1vw{
	font-size: 1vw !important;
}

.fs-2vw{
	font-size: 2vw !important;
}

.fs-3vw{
	font-size: 3vw !important;
}

.fs-4vw{
	font-size: 4vw !important;
}

.fs-5vw{
	font-size: 5vw !important;
}

.fs-6vw{
	font-size: 6vw !important;
}

.fs-8vw{
	font-size: 8vw !important;
}

.fs-10vw{
	font-size: 10vw !important;
}

.fs-12vw{
	font-size: 12vw !important;
}

.fs-14vw{
	font-size: 14vw !important;
}

.fs-16vw{
	font-size: 16vw !important;
}

.fs-18vw{
	font-size: 18vw !important;
}

.fs-20vw{
	font-size: 20vw !important;
}




/*CUSTOM WIDTHS */

.w-0x100{
	display: inline-block;
	width: 0% !important;
	vertical-align: top;
}

.w-5x100{
	display: inline-block;
	width: calc(5% - 5px) !important;
	vertical-align: top;
}

.w-10x100{
	display: inline-block;
	width: calc(10% - 5px) !important;
	vertical-align: top;
}

.w-20x100{
	display: inline-block;
	width: calc(20% - 5px) !important;
	vertical-align: top;
}

.w-25x100{
	display: inline-block;
	width: calc(25% - 5px) !important;
	vertical-align: top;
}

.w-30x100{
	display: inline-block;
	width: calc(30% - 5px) !important;
	vertical-align: top;
}

.w-40x100{
	display: inline-block;
	width: calc(40% - 5px) !important;
	vertical-align: top;
}

.w-50x100{
	display: inline-block;
	width: calc(50% - 5px) !important;
	vertical-align: top;
}

.w-60x100{
	display: inline-block;
	width: calc(60% - 5px) !important;
	vertical-align: top;
}

.w-70x100{
	display: inline-block;
	width: calc(70% - 5px) !important;
	vertical-align: top;
}

.w-80x100{
	display: inline-block;
	width: calc(80% - 5px) !important;
	vertical-align: top;
}

.w-90x100{
	display: inline-block;
	width: calc(90% - 5px) !important;
	vertical-align: top;
}

.w-100x100{
	display: inline-block;
	width: calc(100% - 5px) !important;
	vertical-align: top;
}

/*COLUMNAS*/

.v-align-top{
	vertical-align: top !important;
}

.v-align-middle{
	vertical-align: middle !important;
}

.v-align-baseline{
	vertical-align: baseline !important;
}

.v-align-bottom{
	vertical-align: bottom !important;
}


.col-1, .col-2, .col-3, .col-4, .col-5{
	display: inline-block;
	position: relative;
	font-size: 0;
	vertical-align: top;
}


.col-1 > img, .col-2 > img, .col-3 > img, .col-4 > img, .col-5 >img{
	display: inline-block;
	width: 100%;
}
.col-1 > iframe, .col-2 > iframe, .col-3 > iframe, .col-4 > iframe, .col-5 >iframe{
	display: inline-block;
	width: 100%;
}

.col-1  *:not(.col-1):not(.col-2):not(.col-3):not(.col-4):not(.col-5):not(.contenedor-general):not(.contenedor-full-screen), .col-2  *:not(.col-1):not(.col-2):not(.col-3):not(.col-4):not(.col-5):not(.contenedor-general):not(.contenedor-full-screen), .col-3  *:not(.col-1):not(.col-2):not(.col-3):not(.col-4):not(.col-5):not(.contenedor-general):not(.contenedor-full-screen), .col-4  *:not(.col-1):not(.col-2):not(.col-3):not(.col-4):not(.col-5):not(.contenedor-general):not(.contenedor-full-screen), .col-5  *:not(.col-1):not(.col-2):not(.col-3):not(.col-4):not(.col-5):not(.contenedor-general):not(.contenedor-full-screen){
	font-size: initial;
}

.col-1{
	width: calc(100% - 25px);
	margin:10px;
}

.col-2{
	width: calc(50% - 25px);
	margin:10px;
}

.col-3{
	width: calc(30% - 25px);
	margin:10px;
}

.col-4{
	width: calc(25% - 25px);
	margin:10px;
}

.col-5{
	width: calc(20% - 25px);
	margin:10px;
}

/*CUSTOM SPACES*/

.top-space-90px{
	margin-top: 90px !important;
}

.bottom-space-90px{
	margin-bottom: 90px !important;
}

.left-space-90px{
	margin-left: 90px !important;
}

.right-space-90px{
	margin-right: 90px !important;
}

.top-space-100px{
	margin-top: 100px !important;
}

.bottom-space-100px{
	margin-bottom: 100px !important;
}

.left-space-100px{
	margin-left: 100px !important;
}

.right-space-100px{
	margin-right: 100px !important;
}

.top-space-80px{
	margin-top: 80px !important;
}

.bottom-space-80px{
	margin-bottom: 80px !important;
}

.left-space-80px{
	margin-left: 80px !important;
}

.right-space-80px{
	margin-right: 80px !important;
}

.top-space-70px{
	margin-top: 70px !important;
}

.bottom-space-70px{
	margin-bottom: 70px !important;
}

.left-space-70px{
	margin-left: 70px !important;
}

.right-space-70px{
	margin-right: 70px !important;
}

.top-space-60px{
	margin-top: 60px !important;
}

.bottom-space-60px{
	margin-bottom: 60px !important;
}

.left-space-60px{
	margin-left: 60px !important;
}

.right-space-60px{
	margin-right: 60px !important;
}


.top-space-50px{
	margin-top: 50px !important;
}

.bottom-space-50px{
	margin-bottom: 50px !important;
}

.left-space-50px{
	margin-left: 50px !important;
}

.right-space-50px{
	margin-right: 50px !important;
}

.top-space-40px{
	margin-top: 40px !important;
}

.bottom-space-40px{
	margin-bottom: 40px !important;
}

.left-space-40px{
	margin-left: 40px !important;
}

.right-space-40px{
	margin-right: 40px !important;
}

.top-space-30px{
	margin-top: 30px !important;
}

.bottom-space-30px{
	margin-bottom: 30px !important;
}

.left-space-30px{
	margin-left: 30px !important;
}

.right-space-30px{
	margin-right: 30px !important;
}

.top-space-20px{
	margin-top: 20px !important;
}

.bottom-space-20px{
	margin-bottom: 20px !important;
}

.left-space-20px{
	margin-left: 20px !important;
}

.right-space-20px{
	margin-right: 20px !important;
}

.top-space-10px{
	margin-top: 10px !important;
}

.bottom-space-10px{
	margin-bottom: 10px !important;
}

.left-space-10px{
	margin-left: 10px !important;
}

.right-space-10px{
	margin-right: 10px !important;
}

.top-space-5px{
	margin-top: 5px !important;
}

.bottom-space-5px{
	margin-bottom: 5px !important;
}

.left-space-5px{
	margin-left: 5px !important;
}

.right-space-5px{
	margin-right: 5px !important;
}

.top-space-0px{
	margin-top: 0px !important;
}

.bottom-space-0px{
	margin-bottom: 0px !important;
}

.left-space-0px{
	margin-left: 0px !important;
}

.right-space-0px{
	margin-right: 0px !important;
}

/*COLORES BG*/


.bg-main{
	background-color:var(--main-color);
}

.bg-secondary{
	background-color:var(--secondary-color);
}

.bg-black{
	background-color:#333333;
}

.bg-white{
	background-color: #FFF;
}

.bg-gray{
	background-color:var(--gray-color);
}

.bg-terciary{
	background-color:var(--terciary-color);
}

.bg-cuaternary{
	background-color:var(--cuaternary-color);
}

.bg-opacity-black{
	background-color: rgba(0,0,0,0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	-o-backdrop-filter: blur(20px);
	-moz-backdrop-filter: blur(20px);
	-ms-backdrop-filter: blur(20px);
}

/*COLORES TEXTO */

.txt-gradient-highlight{
	background: linear-gradient( 90deg,
			rgba(var(--main-color),1),
			rgba(var(--secondary-light-color),1),
			rgba(var(--terciary-color),1),
			rgba(var(--terciary-color),1),
			rgba(var(--secondary-color),1),
			rgba(var(--main-color),1)
		);
	background-position: 40% 50%;
	background-size: 200% 200%;
	background-clip: text;
	-moz-background-clip: text;
	-webkit-background-clip: text;
	-o-background-clip: text;
	-ms-background-clip: text;
	text-fill-color:transparent;
	-moz-text-fill-color:transparent;
	-webkit-text-fill-color:transparent;
	-o-text-fill-color:transparent;
	-ms-text-fill-color:transparent;
	text-shadow: 1px 3px 10px rgba(0,0,0,0.4);
}

.txt-main{
	color:rgba(var(--main-color), 1);
}

.txt-main-lighter{
	color:rgba(var(--main-lighter-color), 1);
}


.txt-secondary{
	color:rgba(var(--secondary-lighter-color), 1);
}

.txt-terciary{
	color:rgba(var(--terciary-color), 1);
}

.txt-cuaternary{
	color:rgba(var(--cuaternary-color), 1);
}

.txt-black{
	color:#333333;
}

.txt-white{
	color: #FFF;
}

.txt-gray{
	color:var(--gray-color);
}

.txt-red{
	color:red !important;
}

.txt-green{
	color:rgb(59,180,54) !important;
}

.txt-yellow{
	color:#FFCE54 !important;
}




/*ANIMACIONES*/

.anim{
	transition:all .5s ease-in-out;
	-moz-transition:all .5s ease-in-out;
	-webkit-transition:all .5s ease-in-out;
	-o-transition:all .5s ease-in-out;
	-ms-transition:all .5s ease-in-out;
	opacity: 0;
}

.anim-ltr{
	transform: translate(-100%, 0);
	-moz-transform: translate(-100%, 0);
	-webkit-transform: translate(-100%, 0);
	-o-transform: translate(-100%, 0);
	-moz-transform: translate(-100%, 0);
}

.anim-rtl{
	transform: translate(100%, 0);
	-moz-transform: translate(100%, 0);
	-webkit-transform: translate(100%, 0);
	-o-transform: translate(100%, 0);
	-moz-transform: translate(100%, 0);
}

.anim-utd{
	transform: translate(0, -100%);
	-moz-transform: translate(0, -100%);
	-webkit-transform: translate(0, -100%);
	-o-transform: translate(0, -100%);
	-moz-transform: translate(0, -100%);
}

.anim-dtu{
	transform: translate(0, 100%);
	-moz-transform: translate(0, 100%);
	-webkit-transform: translate(0, 100%);
	-o-transform: translate(0, 100%);
	-moz-transform: translate(0, 100%);
}


/*BOTONES*/

.btn{
	display: inline-block;
	background: transparent;
	outline: none;
	border:none;
	padding: 20px 30px;
	margin:10px 0;
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-ms-transition: all .3s;
	cursor: pointer;
	text-decoration: none !important;
	font-family: var(--terciary-font);
	font-weight: normal !important;
	border-radius:999px;
	position: relative;
	color:white;
	box-shadow: 0px 0px 9px rgba(0,0,0,0);
	vertical-align: middle;
}

.btn:has(span){
	padding: 10px 20px;
}

.btn > *{
	z-index: 1;
	position: relative;
}

.btn > p{
	margin:0;
	display: inline-block;
}

.btn span{
	vertical-align: middle;
	font-size: 30px !important;
	display: inline-block;
	color:white;
	transition: all .3s;
}

/*.btn::before{
	content: '';
	display: inline-block;
	margin:0;
	padding:0;
	background: var(--gray-darker-color);
	width:calc(100% - 10px);
	height: calc(100% - 10px);
	position: absolute;
	z-index:0;
	right:0;
	left: 0;
	bottom:0;
	top: 0;
	margin:auto;
	border-radius: inherit;
	background-position: 0% 25%;
	transform: all .3s;
	opacity: 1;

}

.btn:hover::before{
	opacity: 0.8;
}

.btn:hover, .btn:focus{
	padding: 10px 30px;
	box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
	transform: scale(1.015);
}

.btn:has(span):hover, .btn:has(span):focus{
	padding: 10px 25px;
}

.btn:hover::before{
	animation: btn_anim 1s 1;
}

@keyframes btn_anim{
	0%{
		background-position:0% 25%;
	}
	50%{
		background-position: 50% 50%;
	}
	51%{
		background-position: -25% 50%
	}
	100%{
		background-position: 0% 25%;
	}
}

.btn:active{
	transform:scale(0.98);
	-moz-transform:scale(0.98);
	-webkit-transform:scale(0.98);
	-o-transform:scale(0.98);
	-ms-transform:scale(0.98);
	box-shadow: inset 0px 0px 15px 3px rgba(255,255,255,0.1), inset 0px 0px 15px 3px rgba(255,255,255,0.1);
}*/

.btn-main{
	background-color:rgba(var(--main-color), 1);

}

.btn-secondary{
	background-color:rgba(var(--secondary-color), 1);
	
}

.btn-terciary{
	background-color:rgba(var(--terciary-color), 1);
	
}

.btn-cuaternary{
	background-color:var(--cuaternary-color);
}

.btn-black{
	background-color:#333333;
}

.btn-white{
	background-color: #FFF;
}

.btn-red{
	background-color: rgba(220,0,0,0.5);
}

.btn-red:hover{
	padding: 10px 30px;
}


.btn-gray{
	background-color:var(--gray-color);
}

.btn-opacity-black{
	background-color: rgba(0,0,0,0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	-o-backdrop-filter: blur(20px);
	-moz-backdrop-filter: blur(20px);
	-ms-backdrop-filter: blur(20px);
}

/*NAVEGACIÓN*/


.icon-back{
	position: relative;
	top: 15px;
	left: 0px;
	font-size: 22pt;
	width: 30px;
	height: 30px;
}

.icon-back > img{
	width: 100%;
	display: inline-block;
}

/*MODALES*/

.modal, .modal-right{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	left: 0;
	top:100%;
	opacity: 0;
	position: fixed;
	z-index: 999999999;
	width:100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	-o-backdrop-filter: blur(10px);
	-moz-backdrop-filter: blur(10px);
	-ms-backdrop-filter: blur(10px);
	transition:all .6s;
	-moz-transition:all .6s;
	-webkit-transition:all .6s;
	-o-transition:all .6s;
	-ms-transition:all .6s;
}


.modal-show{
	/*display: block;*/
	top:0;
	opacity: 1;
}

.modal-right.modal-show{
	/*display: block;*/
	right: 0 !important;
	opacity: 1;
}

.modal-wrapper{
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
	overflow: auto;
	
}

.modal-close{
	display: inline-block;
	position: absolute;
	top:15px;
	right: 15px;
	width: 20px;
	height: 20px;
	font-size: 20px;
	cursor: pointer;
}

.modal-close > i{
	line-height: 20px;
}

.modal-content{
	width: calc(100% - 20px);
	max-width: 640px;
	position: absolute;
	left: 0;
	right: 0;
	margin:auto;
	max-height: calc(100% - 30px);
	overflow: auto;
	
	/*height: fit-content;
	box-sizing: border-box;
	display: inline-block;
	top: 0;
	bottom: 0;
	border-radius: 10px;*/

}

.modal-bottom{
	display: block !important;
}

.modal-bottom .modal-content{
	width: 100% !important; 
	top: unset !important;
	height: auto !important;
	max-width: none;
	max-height: none;

}

/*SLIDER*/

.slider{
	display: inline-block;
	position: relative;
	width: 100%;
	height: 150px;
}

.slider-wrapper{
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	display: inline-block;
	z-index: 1;
	overflow: hidden;
}

.slide-next, .slide-prev{
	position: absolute;
	width: 40px;
	height: 40px;
	display: inline-block;
	background-size: contain;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	-ms-background-size: contain;
	line-height: 40px;
	color:#fff;
	z-index: 2;
	cursor: pointer;
}

.slide-next{
	right: 5px;
	top:0;
	bottom:0;
	margin:auto 0;
}

.slide-prev{
	left: 5px;
	top:0;
	bottom:0;
	margin:auto 0;
}

.slide{
	display: inline-block;
	position: absolute;
	top:0;
	bottom:0;
	left: 0;
	right: 0;
	margin:auto;
	transition:all .3s;
	-moz-transition:all .3s;
	-webkit-transition:all .3s;
	-o-transition:all .3s;
	-ms-transition:all .3s;
	opacity: 1;
}

.slide > img{
	display: inline-block;
	top: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
}

.slide-left{
	right:100%;
	opacity: 0;
}

.slide-right{
	left: 100%;
	opacity: 0;
}

/*INPUTS - SELECTS*/

.input-field{
	position: relative;
	width:100%;
/*	width:calc(100% - 20px);*/
	height: calc(1.25em + 5px);
	margin: 15px 0px;
	text-align: center;
	display: inline-block;
}

.input-field label{
	font-family: var(--terciary-font);
	font-size: 8pt !important;
	color: var(--gray-color);
	position: absolute;
	left: 10px;
	top: .65em;
	display: inline-block;
	height: 1em;
	transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
}

.input-field > span{
	position: absolute;
	left: 0;
	top: 0;
	bottom:0;
	margin: auto 0;
	font-size: 30px !important;
	display: inline-block;
	height: 20px;
}

.input-field:has(> span) input{
	width: calc(100% - 10px - 40px);
	margin-left: 30px;
	vertical-align: middle;
}

.input-field:has(> span) label{
	margin-left: 30px;
}


.input-field input:not([type="checkbox"], [type="file"]), textarea{
	height: calc(100% - 20px); 
	width:calc(100% - 10px);
	padding: 12px 5px 12px 5px;
	font-family: var(--terciary-font);
	font-size: 8pt !important;
	background-color: white;
	color: var(--gray-color);
	border:none;
	border: 1px solid rgb(var(--main-light-color));
	outline: none;
	/*box-shadow: inset 2px 2px 5px rgba(0,0,0,0.2);*/
	display: inline-block;
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-ms-transition: all .3s;
	border-radius: 5px;
	
}

.input-field input:not([type="checkbox"], [type="file"]):hover, .input-field input:not([type="checkbox"], [type="file"]):focus, textarea:hover, textarea:focus{
	/*background-color: rgba(0,0,0,0.1);*/
}

.input-field input:not([type="checkbox"], [type="file"]):focus, textarea:focus, .active-input input{
	/*background-color: rgba(0,0,0, 0.14);*/
}

.input-field input[type="date"]:not(:focus){
	color:transparent;
}

.input-field input[type="date"]::-webkit-calendar-picker-indicator {
    /*filter: invert(1);*/
}

.input-field input[type="date"]{
	-webkit-appearance: none;
	font-size: 8pt !important;
	width: calc(100% - 5px);
	padding-left: 5px;
}

.input-field input[type="date"]:focus{
	color:black !important;
}

.active-input label{
	top: calc(-10px - .75em) !important;
	left: 5px !important;
	font-size: 8pt !important;
	color: rgb(var(--main-light-color));
}


::placeholder{
	color:gray;
}

.checkbox-field {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.checkbox-field input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	border:1px solid white;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-ms-transition: all .3s;
}

.checkbox-field:hover input ~ .checkmark {
	background-color: rgba(0,0,0, 0.1);
}

.checkbox-field input:checked ~ .checkmark {
	background-color: rgba(0,0,0, 0.07);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-field input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-field .checkmark:after {
  right: 2px;
  top: -3px;
  width: 7px;
  height: 16px;
  border: solid white;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

select{
	height: 2.8em; 
/*	width:calc(100% - 10px);*/
	width:100%;
	padding: 5px 10px;
	font-family: var(--secondary-font);
	font-size: 8pt !important;
	border-radius: 5px;
	background-color: white;
	color: gray;
	border: none;
	border-right: 5px solid transparent;
	outline: none;
	box-shadow: inset 2px 2px 5px rgba(0,0,0,0.2);
	display: inline-block;
	margin: 16px 0px 0px 0px;
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-ms-transition: all .3s;
}


input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.input-file-field{
	position: relative;
	height: 150px;
	margin:30px 0;
	border:1px dashed rgb(var(--main-lighter-color));
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	cursor: pointer;
	backdrop-filter: blur(20px);
	-moz-backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	-o-backdrop-filter: blur(20px);
	-ms-backdrop-filter: blur(20px);
	transition:all .3s;
}

.input-file-field.active{
	background-color: rgba(0,240,0, 0.2);
	border-color: green;
/*	background-color: rgba(var(--main-light-color), 0.2);*/
	box-shadow: 0px 0px 10px rgba(255,255,255,0.3);
}

.input-file-field input{
	width: 0;
	height: 0;
	opacity: 0;
}

.input-file-field .input-file-field-content{
	width: 100%;
	height: fit-content;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.input-file-field .input-file-field-content span{
	font-size: 45px !important;
}

.input-file-field .input-file-field-content p{
	margin:5px 0;
}

.input-field.password .visibility-icon{
	font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 30px !important;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
    position: absolute;
    color:gray;
    right: 5px;
    top: 1px;
    bottom: 0;
    margin:auto;
    cursor: pointer;
}


/*----- TOOLTIPS ----- */

*[title]{
	cursor: pointer;
}

*[title]::before{
	content:attr(title);
	text-align: center;
	position: absolute;
	display: none;
	z-index: 1;
	color:rgba(var(--main-dark-color),0.9);
	font-weight: lighter;
	font-size: 9pt;
	font-family: var(--main-font);
	background-color: rgba(255,255,255,0.9);
	backdrop-filter: blur(10px);
	max-width: 250px;
	padding:5px;
	border: 1px solid rgba(var(--main-lighter-color),0.6);
	border-radius: 5px;
	transition-property:opacity transform display;
	transition-duration:.3s;
	transition-behavior:allow-discrete;
	opacity: 0;
	white-space: pre-wrap;
	transform: translateY(calc(-100% - 1.2em));
}



*[title]:hover::before{
	display: inline-block;
	opacity: 1;
	transform: translateY(calc(-100% - 0.2em));


}

@starting-style{
	*[title]:hover::before{
		opacity: 0;
		transform: translateY(calc(-100% - 1.2em));
	}
}

/*MEDIA QUERIES*/

@media screen and (max-width: 950px) {

	.design-container{
		animation: design_container_in .5s 1 forwards cubic-bezier(0.505, 0.000, 0.305, 1.000) !important; 	
	}

	.col-1, .col-2, .col-3{
		width: 100%;
		margin-left:0 !important;
		margin-right:0 !important;
	}

	.col-5{
		width: 48%;
		margin-left:0 !important;
		margin-right:0 !important;
	}

	.slider{
		width: 50%;
	}

	.fs-34pt,
	.fs-36pt,
	.fs-38pt,
	.fs-40pt{
		font-size: 24pt !important;
	}
	
	.fs-44pt,
	.fs-48pt,
	.fs-52pt,
	.fs-58pt,
	.fs-60pt,
	.fs-66pt,
	.fs-72pt{
		font-size: 34pt !important;
	}



}



