body.qv-open { overflow: hidden; }

.qv-wrapper {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	z-index: 10000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}
	body.qv-open .qv-wrapper {
		right: 0;
		pointer-events: all;
		opacity: 1;
		transition: opacity 0.5s ease;
	}

	.qv-wrapper .qv-top {
		display: block;
		width: 100%;
		height: 51px;
		position: absolute;
		top: -50px;
		background-color: #252525;
		z-index: 100000;
		transition: top 0.6s ease;
	}
		body.qv-open .qv-wrapper .qv-top {
			top: 0;
			transition: top 0.6s ease;
		}

		.qv-wrapper .qv-top .qv-close {
			display: inline-block;
			padding: 10px;
			position: absolute;
			right: 10px;
			top: 4px;
			font-size: 20px;
			font-family: 'Brown-Regular', Arial, sans-serif;
			color: #fff;
			cursor: pointer;
		}


/* detail page container */
.qv-wrapper .qv-content {
	width: 85%;
	height: 100%;
	position: absolute;
	right: -100%;
	background-color: #fff;
	overflow-y: auto;
	z-index: 10002;
	box-shadow: -5px 0px 5px -2px rgba(0, 0, 0, 0.35);
	-webkit-box-shadow: -5px 0px 5px -2px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: -5px 0px 5px -2px rgba(0, 0, 0, 0.35);
	transition: right 0.4s ease;
}
	body.qv-open .qv-wrapper .qv-content {
		right: 0;
		transition: right 0.6s ease;
	}

	body.qv-open .qv-wrapper .qv-content .no-quickview {
		display: none;
	}

	body.qv-open .qv-wrapper .qv-content .quickview-only {
		display: block;
	}


/* shade background */
.qv-wrapper .qv-shade {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10001;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.5);
}


/* tablet */
@media only screen and (min-width: 40.063em) {
	.qv-wrapper .qv-content {
		width: 55%;
	}
}


/* desktop */
@media only screen and (min-width: 64.063em) {
	.qv-wrapper .qv-content {
		width: 30%;
	}
}


/* ======= COOLINARY QV STYLES ======= */
.qv-wrapper .qv-content.qv-coolinary { max-width: 350px; }
.qv-coolinary em { font-style: italic; }

.qv-wrapper .qv-content .qv-container {
	padding: 60px 20px 20px;
	font-family: 'Brown-Regular', Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.3;
	color: #313131;
}

.qv-wrapper .qv-content .qv-container .qv-icon { font-weight: 600; }

.qv-wrapper .qv-content .qv-container .qv-icon::after {
	color: #0087a4;
	content: '\f06e';
	font-family: 'fontAwesome';
	margin-left: 8px;
	font-size: 15px;
	font-weight: 400;
}

.qv-wrapper .qv-content .qv-container img {
	max-width: 620px;
	width: 100%;
	object-fit: cover;
	object-position: center;
	margin-bottom: 15px;
	margin-top: 10px;
}

.qv-wrapper .qv-content .qv-container h3,
.qv-wrapper .qv-content .qv-container h3 a {
	font-family: 'Brown-Regular', Arial, Helvetica, sans-serif;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 600;
	color: #313131;
}

.qv-wrapper .qv-content .qv-container address {
	margin-bottom: 10px;
	margin-left: 15px; 
}

.qv-wrapper .qv-content .qv-container address::before {
	content: '\f041';
	font-family: 'fontAwesome';
	color: #0087a4;
	margin-left: -15px;
}

.qv-wrapper .qv-content .qv-container .content-details {
	margin: 0;
	list-style: none;
	margin-bottom: 15px;
}

.qv-wrapper .qv-content .qv-container .content-details li { margin-bottom: 5px; }

.qv-wrapper .qv-content .qv-container .content-details span { font-weight: 600; }

.qv-wrapper .qv-content .qv-container .menus span {
	font-size: 18px;
	font-weight: 600;
}

.qv-wrapper .qv-content .qv-container .menus span::after {
	content: '\f0f5';
	color: #0087a4;
	font-family: 'fontAwesome';
	margin-left: 5px;
	font-weight: 400;
}

.qv-wrapper .qv-content .qv-container .menu-specs {
	padding: 10px 0 15px;
}

.qv-wrapper .qv-content .qv-container .menu-specs .trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 40px;
	font-size: 16px;
	background-color: #efefef;
	border: 1px solid darkgrey;
	padding: 0 15px;
	cursor: pointer;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.qv-wrapper .qv-content .qv-container .menu-specs .trigger.active { margin-bottom: 0; }

.qv-wrapper .qv-content .qv-container .menu-specs .trigger .fa {
	font-size: 22px;
	transform: rotate(0deg);
	transition: all 225ms ease-in-out;
	color: #0087a4;
}

.qv-wrapper .qv-content .qv-container .menu-specs .trigger.active .fa {
	transform: rotate(180deg);
}

.qv-wrapper .qv-content .qv-container .menu-specs .content {
	display: none;
	padding: 15px;
	background-color: #f6f3e4;
	border: 1px solid darkgrey;
	border-top: none;
	margin-bottom: 5px;
	text-align: center;
	font-size: 16px;
	letter-spacing: 0px;
}

.qv-wrapper .qv-content .qv-container .menu-specs .content .course {
	display: block;
	width: max-content;
	font-weight: 600;
	border-bottom: 2px solid #444;
	margin: 0 auto 10px;
}

.qv-wrapper .qv-content .qv-container .menu-specs .content p { margin-bottom: 10px; }

.qv-wrapper .qv-content .qv-container .menu-specs .content .course + span {
	display: block;
	margin-bottom: 10px;
}

.qv-wrapper .qv-content .qv-container .menu-specs .trigger.active + .content { display: block; }

.qv-wrapper .qv-content .qv-container .button {
	background-color: #f7a81b;
	color: #313131;
	font-weight: 700;
	letter-spacing: 0.5px;
	display: block;
	line-height: 1;
	padding: 20px 20px 17px;
}

.qv-wrapper .qv-content .qv-container .button::after {
	position: relative;
	display: inline;
	right: -15px;
}

.qv-wrapper .qv-content .qv-container .button:hover { background-color: #dd8f08; }