/* ==========================================================================
# Side Area style - begin
========================================================================== */

#qodef-side-area {
	position: fixed;
	top: 0;
	right: -490px;
	width: 490px;
	height: 100%;
	min-height: 100%;
	padding: 120px 75px 35px;
	text-align: center;
	background-color: $additional-background-color;
	overflow: hidden;
	visibility: hidden;
	z-index: 9999;
	transition: $sliding-area-transition;
	
	.qodef-side-area--opened & {
		right: 0;
		visibility: visible;
	}
	
	&.qodef-alignment--center {
		text-align: center;
	}
	
	&.qodef-alignment--right {
		text-align: right;
	}
	
	&.qodef-alignment--left {
		text-align: left;
	}
}

#qodef-side-area-close {
	position: absolute;
	top: 33px;
	right: 40px;
	display: block;
	z-index: 1000;
	color: var(--qode-main-color);
	
	.admin-bar & {
		top: 65px;
	}
}

.qodef-side-area-cover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow: hidden;
	z-index: 0;
	transition: opacity 0.2s ease-in-out, z-index 0.2s ease-in-out;
	
	.qodef-side-area--opened & {
		opacity: 1;
		z-index: 1002;
	}
}

/* ==========================================================================
# Side Area style - end
========================================================================== */
