	@import url('/include/colors.css');
	@import url('/include/bulma-modifications.css');
	@import url('/include/animations.css');
	@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
	
	body, html, .quickViewBody{
	font-family: "Poppins", 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; line-height: 100%; }
	
	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;
	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%; }
	.trvModal-content .delete:first-child{
	position: absolute;
	top: 7px;
	right: 7px;
	}
	.trvModal-header{
	width: 100%;
	text-align: center;
	background-color: var(--modal-header-color);
	border-bottom: 2px solid #e6e7e8;
	padding: 10px;
	border-radius: 4px 4px 0 0;
	}
	.trvModal-elements{
	padding: 20px;
	text-align: center;
	}
	
	.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%);
	}
	
	.boxShadowHover{ transition: .2s; }
	.boxShadowHover:hover{ box-shadow: 2px 2px 13px var(--dark-color); }
	
	.width40{ width: 40%; margin: auto; }
	
	.interactive-image .text-item .picture{ max-width: 100% !important; }
	
	.categoryColorImage{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	text-align: center;
	vertical-align: middle;
	font-size: 24px;
	position: relative;
	background-color: var(--dark-color);
	color: #fff;
	}
	.categoryColorImage span{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: bold;
	}
	
	.filtersBox{
	background-color: #fff;
	position: absolute;
	margin-top: 5px;
	z-index: 10;
	}
	.paginationBox{
	width: 40%;
	margin: auto;
	}
	
	#headerLogoDesktop{ display: none; }
	#headerLogoMobile{ display: flex; }
	@media screen and (min-width: 1024px){
	#headerLogoDesktop{ display: flex; }
	#headerLogoMobile{ display: none; }
	}
	
	.additionalConfigBox{
	background-color: var(--light-color);
	border-radius: 5px;
	position: relative;
	}
	.additionalConfigBox:after {
	content: " ";
	position: absolute;
	left: 0px;
	top: -10px;
	border-top: none;
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
	border-bottom: 15px solid var(--light-color);
	}
	
	.cookieConsent{
	width: 70%;
	position: fixed;
    z-index: 40;
    left: 50%;
    transform: translate(-50%);
	background-color: var(--dark-color);
	border: 2px solid var(--light-color);
	}
	.cookieConsent.cookieTop{ top: 15px; }
	.cookieConsent.cookieBottom{ bottom: 0; }
	
	@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; }
	.width40{ width: 100%; }
	.paginationBox{ width: 100%; }
	.buttonsCenteredMobile{ justify-content: center; }
	.cookieConsent{ width: 92%; }
	}