.store-product .row:last-of-type {
	display: flex;
	flex-direction: row-reverse;
}

.store-product .container-fluid {
	max-width: calc(1200px + 8rem);
	padding-bottom: 4rem;
}

.store-product .container-fluid .row {
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
}

.store-product .container-fluid .row .col-md-6 {
	padding-left: 0;
	padding-right: 0;
}

h1.store-product-name {
	color: var(--font-color);
	font-weight: 300;
	max-width: 800px;
	margin: 0 0 2rem 0;
	padding: 0;
}

.row div.store-product-details {
	padding-left: 2rem!important;
}

.store-product-description h2 {
	font-size: 2.5em;
}

.aurora-btn.back-to-products {
	background: var(--main-color);
	color: var(--light-font-color);
	margin: 5rem 0 0 0;
}

.aurora-btn.back-to-products:before {
	content:'\f34b';
	font-family: 'Font Awesome 5 Pro';
	font-size: 1em;
	color: var(--white-color);
	margin: 0 0.25rem 0 0;
	position: relative;
}

a.aurora-btn.back-to-products:after {
  border: 1px solid var(--main-color); 
}

a.aurora-btn.back-to-products:hover:after {
  border: 1px solid var(--light-gold); 
}

.store-product-primary-image {
}

.store-product-thumb {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid var(--lighter-gold);
	overflow: hidden;
}

.store-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}

.store-product-thumb:hover img {
	transform: scale(1.05);
	transition: all 0.3s;
}

.store-product-additional-images {
	display: flex;
	align-items: flex-start;
	gap: 1%;
	justify-content: space-evenly;
	overflow: hidden;
}

.store-product-additional-image {
	flex: 0 0 24%;
}

.store-product-additional-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}

.store-product-additional-image:hover img {
	transform: scale(1.1);
	transition: all 0.3s;
}

.store-product-price {
	color: var(--font-color);
}
.was-price {
	font-size: 1.5rem;
}

span.was-price span.store-original-price {
	text-decoration: line-through;
}

.call-to-action {
	margin: 2rem 0 0 0;
	background: var(--lighter-gold);
	padding: 1.5rem;
}

 
.call-to-action h4 {
	font-size: 1.75em;
	font-family: var(--title-font);
	margin: 0 0 0.25rem 0 ;
}

.call-to-action p {
	margin: 0;
}

.ask-question-form {
	position: fixed;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	backdrop-filter: blur(8px);
	top: 0;
	z-index: 901;
	padding: 2rem;
	opacity: 0;
	visibility: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.form-wrapper {
	position: relative;
	width: 100%;
	max-width: 800px;
	background: var(--body-color);
	padding: 1.75em;
}

.close-form {
	position: absolute;
	top: 1em;
	right:1em;
	z-index: 100;
	height: 30px;
	width: 30px;
	cursor: pointer;
}

.close-form:before {
	content:'\f00d';
	font-family: 'Font Awesome 5 Pro';
	font-size: 2em;
	color:var(--main-color);
}

.close-form:hover:before {
	color: var(--second-color);
}

.show-form {
	opacity: 1;
	visibility: visible;
}

.ask-question-form .ccm-dashboard-express-form {
	display: flex;
	gap: 1.5%;
	flex-wrap: wrap;
}

.ask-question-form .ccm-dashboard-express-form fieldset {
	width: 49%;
}

.ask-question-form .form-actions {
		margin: 2rem 0;

}

.ask-question-form .form-actions .btn-primary {
	border-radius: 0;
	background: var(--main-color);
	border: none;
}

.ask-question-form .form-actions .btn-primary:hover {
	background: var(--second-color);
}

.ask-question-form  .form-control {
	border-radius: 0;
}

.ask-question-form  .form-control:focus {
  border-color: var(--lighter-gold);
  box-shadow: 0 0 0 .25rem var(--lighter-gold);
  border-radius: 0;
  }

@media screen and (max-width: 992px){
	.store-product .row:last-of-type {
		display: flex;
		flex-direction: column-reverse;
		margin: 0 0 5rem 0;
	}
	
	.row div.store-product-details {
		width: 100%;
		padding: 0 0!important;
	}
	
	.store-product-image.col-md-6 {
		margin-bottom: 2rem;
		width: 100%;
	} 
}

@media screen and (max-width: 800px){ 
	
	.ask-question-form .form-wrapper {
		max-height: 500px;
		overflow: scroll;
		-ms-overflow-style: none; 
		  scrollbar-width: none;
	}
	
	.ask-question-form .form-wrapper::-webkit-scrollbar {
	  display: none;          
	}
	
	.ask-question-form .ccm-dashboard-express-form { 
		flex-direction: column;
	}
	
	.ask-question-form .ccm-dashboard-express-form fieldset {
		width: 98%;
	}
}

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

