.custom-quickview-modal-container {
	display: none; 
	position: fixed; 
	z-index: 99999; 
	left: 0; 
	top: 0; 
	width: 100%; 
	height: 100%; 
	overflow: auto; 
	background-color: rgba(0,0,0,0.7);
	scrollbar-width: thin;
    scrollbar-color: #333333 rgba(0, 0, 0, 0.05);
}
.custom-quickview-modal-container::-webkit-scrollbar {
    width: 2px;
    height: 8px;
}
.custom-quickview-modal-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 1); 
    border-radius: 10px;
}
.custom-quickview-modal-container::-webkit-scrollbar-thumb {
    background-color: #333333;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}
.custom-quickview-modal-container::-webkit-scrollbar-thumb:hover {
    background-color: #000000;
}
.modal-content-wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin:auto; 
	width: 100%; 
	max-width: 920px;
	position: relative;
	height: 100%;
}
@media(min-width: 768px) {
	.modal-content-wrapper {
		align-items: center;
	}
}
.modal-dynamic-body {
	background-color: rgba(255, 255, 255, 1);
	border-radius: 10px;
	padding-inline: 30px;
	padding-block: 30px;
	position: relative;
	margin-bottom: 50px;
    margin-inline: 15px;
}

@media ( min-width: 768px) {
	.modal-dynamic-body {
		height: auto;	
		margin-bottom: 0;
	}
}

@media ( min-width: 1024px) {
	.modal-dynamic-body {
    	margin-inline: 0;
	}
}
.modal-content-wrapper .flex {
	position: relative;
}
.modal-content-wrapper .grid {
	display: grid;
	grid-template-columns: repeat(1,minmax(0,1fr));
	gap: calc(0.25rem * 6);
}
@media (min-width: 768px) {
	.modal-content-wrapper .grid {
		grid-template-columns: repeat(2,minmax(0,1fr));
	}
}
.close-modal-trigger {
	font-size: 2.2em; 
	font-weight: 300;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	cursor: pointer;
	color: white;
	margin-left: auto;
}

@media(min-width: 768px) {
	.close-modal-trigger {
		position: absolute; 
		right: 0;
		top: -50px;
	}
}

@media(min-width: 1024px) {
	.close-modal-trigger {
		right: -15px; 
	}
}
.product-quickview-container .product_title {
	font-family: 'Jost', sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	color: #333333;
	margin-top: 0;
	margin-bottom: 58px;
}
@media (min-width: 768px) {
	.product-quickview-container .product_title {
		font-size: 26px;
	}
}
.product-quickview-container .product_title a {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
.product-quickview-container .price {
	font-family: 'Jost', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
	color: rgb(28,97,231);
	margin-bottom: 15px;
}
@media(min-width: 768px) {
	.product-quickview-container .price {
		font-size: 23px;
	}
}
.product-quickview-container del {
    font-size: 90%;
    font-weight: 400;
    color: red;
}
.product-quickview-container ins {
	text-decoration: none;
}

.product-quickview-container .cart {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
	margin-bottom: 15px;
}
.product-quickview-container .cart div.quantity {
	display: inline-flex;
	vertical-align: top;
	white-space: nowrap;
}
.product-quickview-container .cart div.quantity input[type="number"] {
	width: 30px;
	border-radius: 0;
	border-right: none;
	border-left: none;
	-webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  min-height: 42px;
  border-color: rgba(0,0,0,0.1);
  padding: 0;
  text-align: center;
  outline: none;
}
.product-quickview-container .cart div.quantity input[type="number"]::-webkit-inner-spin-button,
.product-quickview-container .cart div.quantity input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-quickview-container .cart div.quantity input[type="button"] {
    padding: 0 5px;
    min-width: 25px;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    box-shadow: none;
    color: #333333;
}
.woocommerce-variation-add-to-cart {
	display: flex;
	gap: 10px;
}
.product-quickview-container form.cart > * {
	flex: 1 1 100%;
}
.product-quickview-container form.cart :where(.single_add_to_cart_button, .wd-buy-now-btn, .quantity) {
	flex: 0 0 auto;
}
.product-quickview-container .cart .button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	outline: none;
    border-radius: 5px;
    color: white;
    box-shadow: none;
    background-color: rgb(28,97,231);
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    border: 1px solid rgb(28,97,231);
}
.product-quickview-container .cart .button.disabled{
	cursor: not-allowed;
    opacity: .5;
}
.product-quickview-container .product_meta {
	font-family: 'Jost', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.105);
}

.product-quickview-container .product_meta > span {
	flex: 1 1 100%;
}

.product_meta .meta-label {
	color: #333333;
	font-weight: 600;
}
.product_meta a {
	color: inherit;
}
.quickview-gallery-column {
	position: relative;
	overflow: hidden;
}
.quickview-gallery-column .swiper-slide {
	display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}
.quickview-gallery-column .swiper-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	font-size: 1.5em;
	color: #767676;
	opacity: 0;
	pointer-events: none;
	transition: all .25s ease;
}
.quickview-gallery-column:hover .swiper-button {
	opacity: 1;
	transform: translateY(0);
	pointer-events: unset;
}
.quickview-gallery-column .swiper-button-prev {
	left: 0;
	transform: translateX(-30px);
}
.quickview-gallery-column .swiper-button-next {
	right: 0;
	transform: translateX(30px);
}
.quickview-gallery-column .swiper-button::after {
	display: none;
}
.quickview-gallery-column .swiper-button svg {
	stroke-width: 1;
}
.quickview-gallery-column .elementor-button {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
    min-height: 42px;
    border-radius: 0 0 8px 8px;
    background-color: rgb(28,97,231);
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
	opacity: 0;
	transform: translateY(100%);
	pointer-events: none;
	transition: all .25s ease;
}
.quickview-gallery-column:hover .elementor-button {
	opacity: 1;
	transform: translateY(0);
	pointer-events: unset;
}

.quickview-gallery-column .swiper-scrollbar {
	display: none;
}
.quickview-entry-summary-column table tbody {
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}
.quickview-entry-summary-column table tr {
	display: flex;
	gap: 20px;
	width: 100%;
}

.quickview-entry-summary-column table td, 
.quickview-entry-summary-column table th {
	padding: 0 0 0 0;
	border: 0;
	background-color: white;
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	flex: 1 1 50%;
}
.quickview-entry-summary-column table tbody>tr:nth-child(odd)>td, .quickview-entry-summary-column table tbody>tr:nth-child(odd)>th {
    background-color: white;
}
.quickview-entry-summary-column table tbody tr:hover>td, .quickview-entry-summary-column table tbody tr:hover>th {
    background-color: white;
}
.quickview-entry-summary-column table select {
	font-family: 'Jost', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0;
    display: block;
    padding-right: 30px;
    padding-block: 0;
    min-height: 42px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNiYmIiPjxwYXRoIGQ9Ik02IDlsNiA2IDYtNiIvPjwvc3ZnPg==);
    background-position: right 10px top 50%;
    background-size: auto 18px;
    background-repeat: no-repeat;
    background-color: white;
    border: 1px solid rgba(0,0,0,0.1);
    transition: border-color .5s ease;
    color: #002052;
    outline: none;
    appearance: none;
    width: 100%;
}

.quickview-entry-summary-column table .reset_variations {
	position: absolute;
    bottom: -28px;
}