	@import url('/include/colors.css');
	@import url('/include/bulma-modifications.css');
	@import url('/include/animations.css');
	@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;600&display=swap');
	
	body, html, .quickViewBody{
	font-family: "Dosis", sans-serif;
	background-color: var(--light-color);
	background-image: url("/assets/bg.png");
	background-repeat: repeat;
	scroll-behavior: smooth;
	}
	
	hr{ margin: 2px; }
	h1, h2, h3, h4, h5, h6{ font-weight: 700; }
	
	input[type=file]{
	border: 2px dashed var(--dark-color);
	border-radius: 5px;
	padding: 40px;
	width: 100%;
	}
	
	.aBlack{ color: var(--black-color); }
	.aNotHover:hover{ cursor: context-menu; text-decoration: none !important; }
	.fas, .fab{ margin: auto 5px; }
	
	.contentBox{
	width: 80%;
	margin: auto;
	margin-bottom: 10px;
	}
	.loginBox{ width: 40%; }
	
	.buttonSnackbar{
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid var(--light-color);
	background-color: var(--dark-color);
	border-radius: 5px;
	padding: 5px;
	margin-left: 5px;
	}
	.buttonSnackbar:hover{ transition: 0.2s; background-color: var(--buttons-hover-dark); color: #fff; }
	
	.overlayLoader{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.3);
	z-index: 40;
	cursor: wait;
	text-align: center;
	color: #fff;
	}
	.overlayLoader .imgProcessing{ width: 60%; margin: auto; }
	.overlayLoader .loaderBox{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	}
	
	.flex{
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: space-around;
	}
	
	.trvModal{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(25, 25, 26, 0.3);
	z-index: 40;
	}
	.trvModal-content{
	background-color: var(--modal-background-color);
	margin: 5% auto;
	padding: 20px;
	width: 60%;
	border-radius: 4px;
	-webkit-animation: enter-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	animation: enter-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	}
	.trvModal-content-small{ width: 40%; }
	
	.boxVoted{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	}
	
	.heroOverlay, #heroImages{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(51, 51, 51, 0.5);
	z-index: 10;
	}
	#heroImages{ z-index: 8; }
	#heroImages .div{ width: 100%; height: 100%; }
	.hero-body{ z-index: 12; }
	
	.verticalMenuWrapper{
	padding: 10px 30px;
	transition: all 0.3s ease-out;
	}
	
	.imageRadius, .imageRadius img{ border-radius: 5px; }
	.footer{
	background-image: url("/assets/bg-dark.png");
	background-repeat: repeat;
	color: #fff;
	}
	
	.imageServices{ position: relative; }
	.imageServices div{
	width: 60%;
	padding: 10px;
	background-color: var(--dark-color);
	color: #fff;
	border-radius: 5px;
	position: absolute;
	bottom: 10px;
	left: 50%;
    transform: translate(-50%);
	}
	
	.specialPagesLeftTitle{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	}
	
	@media screen and (max-width: 850px){
	.loginBox{ width: 80%; }
	.trvModal-content{ width: 95%; }
	.boxVoted{
	position: relative;
	top: auto;
	left: auto;
	transform: initial;
	}
	.list-item-controls{ flex-shrink: initial !important; }
	.imageServices div{ width: 80%; }
	.specialPagesLeftTitle{ position: initial; transform: initial; }
	}