/** Shopify CDN: Minification failed

Line 68:12 Expected ":"

**/
.product-quickadd {
	display: none;
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100svh;
	background: rgba(77, 26, 0, 0.7);
}

.product-quickadd--show {
	display: block;
}

.product-quickadd__open {
	background-color: #fff;
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 10px;
}

.product-quickadd__inner {
    position: fixed;
	top: auto;
    right: 0;
    left: 0;
    bottom: 0;
	width: 700px;
	max-width: 100%;
	height: auto;
    background-color: #fff;
    transition: .2s ease;
    z-index: 2147483647;
    transition: .2s ease;
    max-height: 95%;
    overflow-y: auto;
    margin: 0 auto;
}

.product-quickadd__inner--center {
	top: 50%;
    transform: translateY(-50%);
    bottom: unset;
}

.product-quickadd__header {
	display: flex;
/*	justify-content: space-between;*/
	justify-content: flex-end;
	column-gap: 20px;
	padding: 10px 20px;
	align-items: center;
	border-bottom: none;
}

.product-quickadd__header h4 {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 700;
	color: black;
	line-height 17.6px
}

.product-quickadd__close {
	cursor: pointer;
    padding: 10px;
    margin: -10px;
    font-size: 0;
}

.product-quickadd__body {
	display: flex;
	flex-direction: column;
    overflow-y: auto;
}

.product-quickadd__success {
	width: 100%;
	max-width: 500px;
	min-height: 200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 36px;
}

.product-quickadd__success-body {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
}

.product-quickadd__success-heading {
	font-size: 18px;
	text-align: center;
}


.product-quickadd__media {
	width: 500px;
	max-width: 100%;
    position: relative;
    display: flex;
   	padding-right: 20px;
   	column-gap: 10px;
   	margin: 0 auto;
}

.product-quickadd__image {
	flex: 0 0 calc(50% - 5px);
	width: calc(50% - 5px);
	height: 300px;
}

.product-quickadd__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.product-quickadd__info {
	width: 100%;
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 15px;
    padding-right: 20px;
}

.product-quickadd__link {
	display: flex;
    justify-content: flex-end;
}

.product-quickadd__link a {
    margin-left: auto;
	text-decoration: underline;
	font-size: 12px;
    text-align: right;
    color: var(--color-primary);
    font-weight: 700;
}

.product-quickadd__title {
	font-size: 20px;
	font-weight: 500;
	font-family: var(--font-family-secondary-font);
	margin-top: 6px;
}

.product-quickadd__options {
	margin: 20px 0;
}

.product-quickadd__options .mb {
	margin-bottom: 15px;
}

.product-quickadd__options-title {
	font-weight: 600;
	font-size: 16px;
}

.product-quickadd__options-title span {
	font-weight: 400;
}

.product-quickadd__price {
	font-family: var(--font-family-secondary-font);
	font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    color: var(--color-typography-primary);
    text-align: center;
}

.product-quickadd .shopify-cleanslate [role="button"] {
	opacity: 1 !important;
}


@media (min-width: 768px) {
	/*.product-quickadd__header {
	    padding: 10px 20px;
	}*/
	.product-quickadd__success-heading {
		font-size: 22px;
	}
}

@media (min-width: 1300px) {
	/*.product-quickadd__inner {
		top: 0;
	}*/

	.product-quickadd__header {
		border-bottom: 1px solid #ccc;
	}

	/*.product-quickadd__media {
		display: block;
    	padding-right: 0;
	}

	.product-quickadd__image {
		margin-bottom: 5px;
	}

	.product-quickadd__image:last-child {
		margin-bottom: 0;
	}*/

	.product-quickadd__info {
	    padding-top: 40px;
	}

	.product-quickadd__link a {
		font-size: 14px;
	}

	.product-quickadd__title {
		font-size: 22px;
	}

	/*.product-quickadd__success-heading {
		font-size: 22px;
	}*/
}


