@charset "utf-8";

/***************************************************************************
Media Queries
****************************************************************************/

@media only screen and (max-width: 768px) {
}

/***************************************************************************
left&right_grayout
****************************************************************************/

#left,#right {
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 0px;
    z-index: 1;
	width: 5% !important;
}
#left {
	left: 0px;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.2) 100%);
}
#right {
	right: 0px;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,1) 100%);	
}

@media only screen and (max-width: 1100px) {
#left,#right {
	display: none !important;
}
}