.quantity-selector-module {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quantity-selector-module .qs-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: 1px solid #CCC;
    border: 2px solid transparent;
    padding: 12px;
    background-color: #fff;
    transition: 0.3s ease;
    position: relative;
    border-radius:8px;
    margin-right: 15px;
}
.quantity-selector-module .qs-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;

}
.quantity-selector-module .qs-option.qs-active {
    border: 2px solid #FF5722;
    background-color: #F8F9FC;
}
.quantity-selector-module .qs-price {
	color: #000;
	text-align: right;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
}
.quantity-selector-module .qs-left {
	display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.quantity-selector-module .qs-title {
	color: #FF5722;
	font-size: 26px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	min-width: 50px;
}

.quantity-selector-module .qs-description {
    color: #0A1740;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.quantity-selector-module .qs-price-container {
    text-align: right;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.quantity-selector-module .qs-right {
    text-align: right;
    padding: 0 20px;
}
.quantity-selector-module .qs-price-per-gram {
	color: #0A1740;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
}
.quantity-selector-module .qs-price-original {
    color: #0A1740;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-decoration-line: line-through;
}


.quantity-selector-module .qs-price-discounted {
    color: #F00;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
}

.quantity-selector-module .qs-discount {
    background-color: #FF5722;
    color: #FFF;
    border-radius: 8px;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	padding: 4px 6px;
	position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}
