:root {
	--bs-body-bg: #fff;
	--bs-border-color: #dee2e6;
	--bs-border-width: 1px;
	--bs-body-color-rgb: 33, 37, 41;
	--bs-border-radius-lg: 0.5rem;
	--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
}
/*!
 * Bootstrap  v5.3.0-alpha1 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
	.wcgwp-modal.modal {
		--bs-modal-zindex: 100001;
		--bs-modal-width: 500px;
		--bs-modal-padding: 1rem;
		--bs-modal-margin: 0.5rem;
		--bs-modal-color: #000;
		--bs-modal-bg: var(--bs-body-bg);
		--bs-modal-border-color: var(--bs-border-color-translucent);
		--bs-modal-border-width: var(--bs-border-width);
		--bs-modal-border-radius: var(--bs-border-radius-lg);
		--bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);
		--bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
		--bs-modal-header-padding-x: 1rem;
		--bs-modal-header-padding-y: 1rem;
		--bs-modal-header-padding: 1rem 1rem;
		--bs-modal-header-border-color: var(--bs-border-color);
		--bs-modal-header-border-width: var(--bs-border-width);
		--bs-modal-title-line-height: 1.5;
		--bs-modal-footer-gap: 0.5rem;
		--bs-modal-footer-bg: #FFF;
		--bs-modal-footer-border-color: var(--bs-border-color);
		--bs-modal-footer-border-width: var(--bs-border-width);
		position: fixed;
		top: 0;
		left: 0;
		z-index: var(--bs-modal-zindex);
		display: none;
		width: 100%;
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		outline: 0;
	}

	.wcgwp-modal .modal-dialog {
		position: relative;
		width: auto;
		margin: var(--bs-modal-margin);
		pointer-events: none;
	}

	.wcgwp-modal.modal.fade .modal-dialog {
		transition: transform 0.3s ease-out;
		transform: translate(0, -50px);
	}

@media (prefers-reduced-motion: reduce) {
	.wcgwp-modal.modal.fade .modal-dialog {
		transition: none;
	}
}
.wcgwp-modal.modal.show .modal-dialog {
	transform: none;
}
.wcgwp-modal.modal.modal-static .modal-dialog {
	transform: scale(1.02);
}

.wcgwp-modal .modal-dialog-scrollable {
	height: calc(100% - var(--bs-modal-margin) * 2);
}

.wcgwp-modal .modal-dialog-scrollable .modal-content {
	max-height: 100%;
	overflow: hidden;
}

.wcgwp-modal .modal-dialog-scrollable .modal-body {
	overflow-y: auto;
}

.wcgwp-modal .modal-dialog-centered {
	display: flex;
	align-items: center;
	min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.wcgwp-modal .modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	color: var(--bs-modal-color);
	pointer-events: auto;
	background-color: var(--bs-modal-bg);
	background-clip: padding-box;
	border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
	border-radius: var(--bs-modal-border-radius);
	outline: 0;
}

.modal-backdrop {
	--bs-backdrop-zindex: 99999;
	--bs-backdrop-bg: #000;
	--bs-backdrop-opacity: 0.5;
	position: fixed;
	top: 0;
	left: 0;
	z-index: var(--bs-backdrop-zindex);
	width: 100vw;
	height: 100vh;
	background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
	opacity: 0;
}
.modal-backdrop.show {
	opacity: var(--bs-backdrop-opacity);
}

.wcgwp-modal .modal-header {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-between;
	padding: var(--bs-modal-header-padding);
	border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
	border-top-left-radius: var(--bs-modal-inner-border-radius);
	border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.wcgwp-modal .modal-header .btn-close {
	padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
	margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.wcgwp-modal .modal-title {
	margin-bottom: 0;
	line-height: var(--bs-modal-title-line-height);
}

.wcgwp-modal .modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: var(--bs-modal-padding);
}

.wcgwp-modal .modal-footer {
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
	background-color: var(--bs-modal-footer-bg);
	border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
	border-bottom-right-radius: var(--bs-modal-inner-border-radius);
	border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.wcgwp-modal .modal-footer > * {
	margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
	.wcgwp-modal.modal {
		--bs-modal-margin: 1.75rem;
		--bs-modal-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);
	}
	.wcgwp-modal .modal-dialog {
		max-width: var(--bs-modal-width);
		margin-right: auto;
		margin-left: auto;
	}
	.wcgwp-modal .modal-sm {
		--bs-modal-width: 300px;
	}
}
@media (min-width: 992px) {
	.wcgwp-modal .modal-lg,
	.wcgwp-modal .modal-xl {
		--bs-modal-width: 800px;
	}
}
@media (min-width: 1200px) {
	.wcgwp-modal .modal-xl {
		--bs-modal-width: 1140px;
	}
}

/* Qode-specific "fixes" */
.modal-open .product_layout_2 .product_content_wrapper .product_infos,
.modal-open .product_layout_4 .product_content_wrapper .product_infos {
	position: relative;
}

.qode-theme-bridge .modal-content {
	background-color: #f9f9f9;
}

/* Divi-specific "fixes" */
.woocommerce-cart.modal-open .et_builder_inner_content,
.woocommerce-checkout.modal-open .et_builder_inner_content {
	z-index: 100000;
}

/* Woodmart-specific "fixes" */
.theme-woodmart .modal-backdrop {
	z-index: 150;
}

.wcgwp-thumb img {
    height: auto !important;
    max-width: 100% !important;
    width: 100% !important;
}