input:focus,
button:focus {
    outline: none !important;
}

.bis_custom-success p,
.bis_custom-errors p {
	font-size: 12px;
	color: red;
	margin: 10px 0;
	text-align: center;
}

.bis_custom-success p{
	color: green;
}

.bis_custom-products {
	flex-basis: calc(75% - 10px);
}

.products-wrapper>h2 {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffc0ba;
	font-size: 25px;
	margin: 15px 0;
	padding: 30px;
	border-radius: 10px;
	color: red;
}

.products-wrapper {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.bis_custom-product-card {
	flex-basis: calc(33.33% - 20px);
	margin: 10px;
	box-shadow: 0 13px 50px rgb(154 154 154 / 25%);
	border-radius: 10px;
	padding: 20px;
	background: #fff;
}

.bis_custom-product-card-header {
	width: min(100%, 110px);
	margin: 0 auto 20px;
}

.bis_custom-product-card-header img {
    width: 100%;
    height: 120px !IMPORTANT;
    object-fit: contain;
}

.bis_custom-product-card-body {
	margin-bottom: 20px;
}

.bis_custom-product-cat {
	text-transform: capitalize;
	font-size: 10px;
	color: #19A330;
	font-weight: 500;
	line-height: 1;
	margin: 5px 13px;
}

h2.bis_custom-product-title {
	font-size: 13px;
	margin-top: 10px;
	font-weight: 500;
	line-height: 1.5;
	min-height: 65px;
	color: #000!important;
}

.bis_custom-product-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

a.bis_custom-reset-filter,
a.bis_custom-product-view {
	width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #19A330;
    color: #fff !important;
    text-decoration: none;
    height: 35px;
    border-radius: 10px;
    border: 2px solid #19a330;
    font-size: 15px;
}

.price-range-wrapper {
	width: 100%;
    padding: 10px 20px 30px 20px;
}

.price-range-wrapper #amount {
	text-align: center;
}

.bis_custom-product-price {
	font-size: 15px;
	font-weight: 500;
}

a.bis_custom-product-add-to-cart {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #19A330;
	text-decoration: none;
	height: 35px;
	min-width: 35px;
	border-radius: 10px;
	border: 2px solid #19a330;
	/* background: url(/../images/add-to-basket.png) no-repeat center; */
	background-size: 65%;
}

a.bis_custom-product-add-to-cart img {
	width: 25px;
}

a.bis_custom-product-add-to-cart.added-to-cart {
	/* background: url(/../images/shopping-bag-1.png) no-repeat center; */
	background-size: 65%;
	border: 2px solid #81cc8d !important;
	pointer-events: none;
}

a.bis_custom-product-add-to-cart:not(.added-to-cart):hover {
	/* background: #19a3308c url(/../images/add-to-basket.png) no-repeat center; */
	background-size: 65%;
	border: 2px solid #81cc8d !important;
}

.lm-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px 0 0;
}

button#btn-lm-product {
    background: #19a330 !important;
    border-radius: 10px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #19a330 !important;
    color: #fff !important;
    outline: none;
    font-weight: 500;
    font-size: 18px;
    min-width: 150px;
    text-transform: uppercase;
    font-family: 'Montserrat';
}


/* Popup */

.bis_custom-product-info-popup {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	z-index: 9;
}

.bis_custom-popup-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	background: #afafaf29;
}

.bis_custom-product-details {
	position: relative;
	background: #eff9f1;
	width: min(100%, 768px);
	border-radius: 10px;
	padding: 50px 30px;
	border: 2px solid #90d99c;
}

.bis_custom-product-details .bis_custom-product-price {
	font-size: 25px;
	margin-right: 20px;
	font-weight: 700;
}

a.bis_custom-popup-close {
	position: absolute;
    right: -10px;
    top: -10px;
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #19a330;
    border-radius: 50px;
}

.bis_custom-product-details-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.bis_custom-product-info-popup .bis_custom-product-img {
	flex-basis: 30%;
}

.bis_custom-product-info-popup .bis_custom-product-img img {
	width: 100%;
}

.bis_custom-product-info-popup .bis_custom-product-info {
	flex-basis: calc(70% - 20px);
}

.bis_custom-product-info-popup h2.bis_custom-product-title {
	font-size: 25px;
	min-height: auto;
	margin: 0 0 10px;
	font-weight: 700;
}

.bis_custom-product-info-popup p.bis_custom-product-desc {
	font-size: 16px;
	margin-bottom: 20px;
	color: #000 !important;
}

.bis_custom-product-info-popup a.bis_custom-product-add-to-cart {
	padding: 0 20px;
	background: #19A330 !important;
	color: #fff !important;
	border-color: #19A330 !important;
}


/* Custom dropdown */


/* Custom Dropdown for select field */

ul::-webkit-scrollbar {
	width: 10px;
	background-color: #f5f5f5;
	border-radius: 0 0 5px 0;
}

ul::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #9E9E9E;
}

.hide-select {
	display: none !important;
}

.bis_custom-select-checkbox,
.bis_custom-select {
	display: flex;
	padding: 5px 10px;
	position: relative;
	text-transform: capitalize;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	border: 2px solid #19a330;
	border-radius: 5px;
	height: 45px;
	width: 100%;
	background: #fff;
}

.select-checkbox,
.select {
	width: min(100%, 300px);
}

.bis_custom-select-checkbox:after,
.bis_custom-select:after {
	content: "";
	position: absolute;
	right: 10px;
	top: calc(50% - 4px);
	width: 8px;
	height: 8px;
	border: 2px solid #000;
	border-top: 0;
	border-left: 0;
	transform: rotate(45deg);
}

.bis_custom-select-checkbox.active:after,
.bis_custom-select.active:after {
	border: 2px solid;
	border-right: 0;
	border-bottom: 0;
}

ul.bis_custom-checkbox,
ul.select-options {
	padding: 0;
	list-style: none;
	width: 100%;
	max-height: 300px;
	overflow-y: auto;
	position: absolute;
	background: #fff;
	left: 0;
	top: 50%;
	transform: translate(0px, -50%);
	z-index: 9;
	text-transform: capitalize;
	border-radius: 5px;
	display: none;
	box-shadow: 0 0px 40px 9px rgb(0 0 0 / 6%);
}

ul.select-options li {
	padding: 10px 20px;
	font-size: 14px;
	transition: 0.5s ease-in-out;
	cursor: pointer;
	color: #000;
}

ul.bis_custom-checkbox li {
	font-size: 14px;
	transition: 0.5s ease-in-out;
	cursor: pointer;
	color: #000;
}

ul.bis_custom-checkbox li:first-child,
ul.select-options li:first-child {
	border-radius: 5px 5px 0 0;
}

ul.bis_custom-checkbox li:last-child,
ul.select-options li:last-child {
	border-radius: 0 0 5px 5px;
}

ul.bis_custom-checkbox li:hover,
ul.select-options li:hover {
	transition: 0.5s ease-in-out;
	background: #19a330;
	color: #fff;
}

li.bis_custom-checkbox-list label {
	display: flex;
	align-items: center;
	padding: 10px 20px;
}

li.bis_custom-checkbox-list label input {
	margin-right: 10px;
}

.bis_custom-checkboxes-values {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	max-width: 250px !important;
	margin-right: auto;
}

a.bis_custom-reset-search {
    position: absolute;
    right: 15%;
    top: 50%;
    margin: 0 !important;
    transform: translate(0px, -50%);
    width: 20px;
    height: 20px;
    font-size: 12px;
    text-align: center;
    background: #19a33017;
    border-radius: 50%;
    color: #000;
}

/* Cart Page */

.bis_custom-cart-wrapper-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #ffffff61;
    z-index: 9;
	display: flex;
    justify-content: center;
    align-items: center;
}

.bis_custom-products-total p,
.bis_custom-products-tax p,
.bis_custom-products-grand-total p {
	display: flex;
	font-size: 16px;
	padding: 5px 0;
}

.bis_custom-products-total p strong,
.bis_custom-products-tax p strong,
.bis_custom-products-grand-total p strong {
	width: 52.4%;
}

.bis_custom-products-tax p {
	border-bottom: 1px dashed;
}

.bis_custom-products-grand-total p {
	padding: 10px 0;
}

.bis_custom-product-cart-price {
	position: relative;
    width: 12%;
}

.bis_custom-product-cart-price p {
	position: absolute;
	top: -12px;
	left: 0;
	font-size: 12px;
	color: #19a330;
	font-weight: 500;
}

.bis_custom-product-cart-price>span {
	font-size: 18px;
	font-weight: 500;
	padding: 10px 0;
}

.bis_custom-cart-wrapper {
	flex-basis: calc(60% - 20px);
}

.bis_custom-cart-items {
	display: flex;
	flex-direction: column;
}

.bis_custom-cart-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid #19a3307a;
	padding: 10px 0;
}

.bis_custom-product-cart-img {
	width: 10%;
}

.bis_custom-product-cart-img img {
	max-width: 75px !important;
	width: 100%;
}

.bis_custom-product-cart-count {
	margin: 0 10px;
	position: relative;
    width: 18%;
}

.bis_custom-product-cart-count input {
	width: 75px;
	border: 2px solid #767676;
	border-radius: 50px;
	height: 36px;
	padding: 0 15px;
}

.bis_custom-product-cart-count input[type="number"]::-webkit-outer-spin-button,
.bis_custom-product-cart-count input[type="number"]::-webkit-inner-spin-button {
  opacity: 1;
}


.bis_custom-product-cart-count p {
    font-size: 10px;
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translate(-50%, 0px);
}

.bis_custom-product-cart-name {
	width: 30%;
}

.bis_custom-product-cart-name h5 {
	font-size: 15px;
	width: 200px;
	margin: auto;
	color: #2b2b2b;
}

input[type="date"]::-webkit-calendar-picker-indicator {
	background: transparent;
	bottom: 0;
	color: transparent;
	cursor: pointer;
	height: auto;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

input[type='date']:after {
	content: "";
	position: absolute;
	left: 4px;
	background: url(calendar.png) center no-repeat;
	background-size: 100%;
	width: 14px;
	height: 15px;
}

input[type='date']{
	padding: 5px 0px 5px 20px !important;
}

.bis_custom-main-cart-wrapper {
	display: flex;
	justify-content: space-between;
	margin: auto;
	align-items: flex-start;
	flex-wrap: wrap;
}

#create-order-form input[type=checkbox],
#create-order-form input[type=radio] {
		-webkit-appearance: auto;
	}

a.next-btn,
input#btnSubmit {
	min-width: 100px;
	max-width: 200px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #19A330;
	color: #fff !important;
	text-decoration: none;
	border-radius: 5px;
	margin: 20px auto 0;
	cursor: pointer;
	border: none;
	font-size: 15px;
	padding: 0;
}

span#lang-selected {
	font-weight: 600;
}
.bis_custom-form-container {
	flex-basis: calc(40% - 20px);
	padding: 10px 20px 30px;
    background: #91d39c61;
    border-radius: 30px;
}

form#create-order-form {
	padding-left: 10px;
}

.create-order-form-wrapper {
	position: relative;
}

.create-order-form-wrapper.loading:before {
	position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    z-index: 1;
}

body .cart-form #create-order-form .heading p,
#create-order-form .heading p {
	font-size: 14px;
    line-height: 20px;
    background: #EDE59E !important;
    padding: 17px;
    border-radius: 5px;
    border: dashed 2px #C9BD55 !important;
    font-weight: 500;
    margin: 23px 23px 23px 10px;
}

.bis_custom-form-part-2,
.bis_custom-form-part-3 {
	display: none;
}
.bis_custom-form-wrapper {
	width: min(95%, 1500px);
	margin: 30px auto;
}

.bis_custom-form-logo img {
	max-width: 300px;
	margin: 0px auto 40px;
	display: block;
}

.bis_custom-form-intro {
	margin: 20px auto 0;
	width: min(100%, 600px);
	text-align: center;
}

.bis_custom-form-intro {
	flex-basis: 40%;
}

.bis_custom-form-heading h2 {
	font-family: 'PT Serif', serif;
	font-weight: 700;
	font-size: 35px;
	color: #8961a7;
	margin: 0 !important;
	text-transform: uppercase;
}


.bis_custom-form-sub-heading p {
	font-size: 19px;
	font-weight: 400;
	line-height: 1.3;
	margin: 10px 0px;
}

.bis_custom-form-body-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 50px 0;
}

.bis_custom-form-timer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bis_custom-timer-img {
	width: 75px;
}

.bis_custom-timer-img img {
	width: 100%;
}

.bis_custom-timer-info-heading p {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}

.bis_custom-timer-info-heading h3 {
	font-size: 30px;
	margin: 0;
}

.bis_custom-timer-info-heading {
	margin: 20px;
}

.bis_custom-select-lang {
	position: relative;
}

/*.selected {
	width: 220px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	border: 2px solid whitesmoke;
	padding: 20px 30px 20px 10px;
	cursor: pointer;
	border-radius: 5px;
	position: relative;
	z-index: 1;
}*/

ul.lang {
	top: 50%;
	padding: 0px;
	list-style: none;
	position: absolute;
	width: 100%;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 0 15px -2px #cdc9c9;
	border-radius: 5px;
	transform: translate(0px, -50%);
	background: #fff;
	z-index: 9;
}

ul.lang li {
	padding: 20px 0;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	cursor: pointer;
	transition: 0.5s ease-in-out;
}

ul.lang li.active,
ul.lang li:hover {
	transition: 0.5s ease-in-out;
	background: whitesmoke;
}

/*.selected:before {
	content: "";
	position: absolute;
	right: 12px;
	top: 24px;
	width: 8px;
	height: 8px;
	border: 2px solid #000;
	border-top: 0;
	border-left: 0;
	transform: rotate(45deg);
}*/

.bis_custom-form-sec {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	flex-direction: column;
}

#create-order-form .heading h2 {
	font-size: 25px;
    font-weight: 500;
    text-align: left;
    line-height: 36px;
	margin: 20px 10px;
}

.bis_custom-input-field * {
	display: block;
}

.bis_custom-input-field label {
	font-size: 13px;
	margin: 0;
}

canvas#signature,
.bis_custom-input-field select,
.bis_custom-input-field input,
.bis_custom-input-field textarea {
	margin: 0px 0 20px;
	border: 2px solid #fff;
	height: 36px;
	width: calc(100% - 10px);
	padding: 5px 10px;
	border-radius: 6px !important;
	transition: 0.5s all;
	position: relative;
	font-size: 14px;
	background: #fff;
}

canvas#signature {
	height: 100px;
}

.bis_custom-input-field.full-width textarea {
	height: 70px;
}

.bis_custom-input-field select {
	width: 100%;
	height: 40px;
}

.bis_custom-input-field input:focus,
.bis_custom-input-field textarea:focus,
.bis_custom-input-field select:focus {
	outline: none;
}

.bis_custom-input-field textarea:focus::placeholder,
.bis_custom-input-field input:focus::placeholder {
	opacity: 0;
}

.bis_custom-input-field {
	position: relative;
	flex-basis: calc(33.33% - 20px);
	margin:0 10px;
}

.bis_custom-input-field.half-width {
	flex-basis: calc(50% - 20px);
}

.bis_custom-input-field.full-width {
	flex-basis: 100%;
}

.bis_custom-two-input {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.bis_custom-input-field-common {
	position: relative;
	flex-basis: calc(50% - 0px);
}

span.bis_custom-required-msg {
	font-size: 10px;
	position: absolute;
	bottom: 1px;
	font-style: italic;
	color: red;
	font-weight: 600;
	display: none;
}

span.bis_custom-tick {
	position: absolute;
	bottom: 33px;
	right: 25px;
	width: 12px;
	height: 6px;
	border-top: 1px solid #19A330;
	border-right: 1px solid #19A330;
	display: none;
	transition: 0.5s all;
	transform: rotate(135deg);
}

span.bis_custom-suffix {
	position: absolute;
	bottom: 24px;
	right: 30px;
	font-size: 14px;
}

.bis_custom-input-field input.required.click:valid ~ span.bis_custom-tick,
.bis_custom-input-field textarea.required.click:valid ~ span.bis_custom-tick {
	display: block !important;
}

.bis_custom-input-field input.required.not-same:focus:valid ~ span.bis_custom-tick,
.bis_custom-input-field input.required.not-same:not(:focus):valid ~ span.bis_custom-tick {
	display: none !important;
}

.bis_custom-input-field input.required.click:not(:focus):invalid ~ span.bis_custom-required-msg,
.bis_custom-input-field textarea.required.click:not(:focus):invalid ~ span.bis_custom-required-msg,
.bis_custom-input-field .select select.required.click:not(:focus):invalid ~ span.bis_custom-required-msg {
	display: block !important;
}

.bis_custom-input-field input.required:valid,
.bis_custom-input-field textarea.required:valid,
.bis_custom-input-field select.required:valid ~ .bis_custom-select.required.click{
/* 	border: 1px solid #19A330; */
}

.bis_custom-input-field select.required:valid ~ .bis_custom-select.required.click{
	background: #fff;
	z-index: 1;
	color: #111;
}

.bis_custom-input-field input.required.not-same:focus:valid,
.bis_custom-input-field input.required.not-same:not(:focus):valid,
.bis_custom-input-field input.required.click:not(:focus):invalid,
.bis_custom-input-field textarea.required.click:not(:focus):invalid,
.bis_custom-input-field select.required.click:not(:focus):invalid ~ .bis_custom-select.required.click,
.bis_custom-input-field select.required.click:not(:focus):invalid {
	border: 1px solid red;
}

.bis_custom-radio-btns {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 5px 0 20px;
}

.bis_custom-radio-btn-container {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	min-width: 50px;
	margin-right: 5px;
}

.bis_custom-radio-btn-container input {
	width: 15px;
	height: 15px;
	margin: 0;
}

.bis_custom-radio-btn-container label {
	font-size: 9px !important;
    padding-left: 5px !important;
    line-height: 1.3;
	color: #000 !important;
}

.bis_custom-radio-btn-container input[type="radio"]:checked:after {
	width: 9px;
	height: 9px;
	background: #4b9eff;
}

a#one_time_payment {
	background: transparent !important;
	position: relative;
	padding-left: 15px;
	display: flex;
	align-items: center;
}

a#one_time_payment:before {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border: 1px solid #7e7f7e;
	left: 0;
	border-radius: 2px;
	background: #fff;
}
a#one_time_payment.active:before {
	border-color: #0075ff;
	background: #0075ff;
}

a#one_time_payment.active:after {
	content: "";
	position: absolute;
	left: 2px;
	top: 3px;
	width: 10px;
	height: 5px;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	transform: rotate(130deg);
}

input[type=checkbox]:checked:after {
    opacity: 0;
}

/* Custom Dropdown for select field */
ul::-webkit-scrollbar {
	width: 10px;
	background-color: #f5f5f5;
	border-radius: 0 0 5px 0;
	/* display: none; */
}
ul::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color:#9E9E9E;
	/* display: none; */
}

.hide-select {
	display: none !important;
}

.bis_custom-select {
	display: flex;
	margin: 0px 0 20px;
	padding: 5px 10px;
	position: relative;
	text-transform: capitalize;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
	height: 36px;
	width: calc(100% - 10px);
}

.select {
	width: 100%;
}

.bis_custom-select:after {
	content: "";
	position: absolute;
	right: 10px;
	top: 11px;
	width: 8px;
	height: 8px;
	border: 1px solid #000;
	border-top: 0;
	border-left: 0;
	transform: rotate(45deg);
}

.bis_custom-select.active:after {
	border: 1px solid;
	border-right: 0;
	border-bottom: 0;
}

ul.select-options {
	padding: 0;
	list-style: none;
	width: 100%;
	max-height: 300px;
	overflow-y: scroll;
	position: absolute;
	background: #fff;
	left: 0;
	top: 50%;
	transform: translate(0px, -50%);
	z-index: 9;
	text-transform: capitalize;
	border-radius: 5px;
	display: none;
	box-shadow: 0 0px 40px 9px rgb(0 0 0 / 6%);
}

ul.select-options li {
	padding: 10px 20px;
	font-size: 14px;
	border-radius: 5px;
	transition: 0.5s ease-in-out;
	cursor: pointer;
	color: #000;
}

ul.select-options li:hover {
	transition: 0.5s ease-in-out;
	background: #19a330;
	color: #fff;
}

.bis_custom-form-sec-heading {
	flex-basis: 100%;
}

.bis_custom-form-sec-heading h3 {
	font-size: 22px;
	color: #9774ae;
}

.bis_custom-form-sec-action,
.bis_custom-form-second-part-remove {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.bis_custom-form-sec-action,
.bis_custom-form-second-part-remove,
.bis_custom-input-field.full-width {
	flex-basis: 100%;
	order: 1;
}

a.bis_custom-delete-btn {
	width: 24px;
}

a.bis_custom-delete-btn img {
	width: 24px;
}

a.bis_custom-add-btn {
	background: red;
	color: #fff;
	padding: 5px 20px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 3px;
}

.for-duplicate{
	flex-basis: 100%;
}

.bis_custom-form-second {
	flex-basis: 100%;
	padding: 30px;
	box-shadow: 0 0px 20px 5px rgb(222 212 231);
	border-radius: 10px;
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.bis_custom-form-second-part-one {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-basis: 100%;
	flex-wrap: wrap;
}

.bis_custom-form-second-part-one .bis_custom-input-field {
	flex-basis: calc(20% - 20px);
}

.bis_custom-form-second label {
	color: green;
	font-size: 14px;
	font-weight: 600;
}

.bis_custom-form-second-part-two {
	display: flex;
	flex-direction: column;
	flex-basis: calc(50% - 20px);
}

.bis_custom-form-second-part-three {
	flex-basis: calc(50% - 20px);
}

.bis_custom-form-second-part-three .bis_custom-input-field {
	display: flex;
	flex-basis: 100%;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.bis_custom-select-checkbox {
	display: flex;
	margin: 8px 0 20px;
	padding: 5px 10px;
	position: relative;
	text-transform: capitalize;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	border: 2px solid whitesmoke;
	border-radius: 5px;
	font-size: 13px;
	height: 40px;
}

.bis_custom-select-checkbox:after {
	content: "";
	position: absolute;
	right: 10px;
	top: 15px;
	width: 8px;
	height: 8px;
	border: 2px solid #000;
	border-top: 0;
	border-left: 0;
	transform: rotate(45deg);
}

.bis_custom-select-checkbox.active:after {
	border: 2px solid;
	border-right: 0;
	border-bottom: 0;
}

.bis_custom-checkboxes-values {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	max-width: 250px !important;
	margin-right: auto;
}

ul.bis_custom-checkbox {
	padding: 0;
	list-style: none;
	width: 100%;
	max-height: 300px;
	overflow-y: scroll;
	position: absolute;
	background: #fff;
	left: 0;
	top: 50%;
	transform: translate(0px, -50%);
	z-index: 9;
	text-transform: capitalize;
	border-radius: 5px;
	display: none;
	box-shadow: 0 0px 40px 9px rgb(0 0 0 / 6%);
}

li.bis_custom-checkbox-list label {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 13px;
	color: #000;
	font-weight: 400;
	padding: 10px;
	cursor: pointer;
}

li.bis_custom-checkbox-list label input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0;
	min-width: 20px;
	margin-right: 10px;
}

.select-checkbox {
	flex-basis: 50%;
	position: relative;
}

.bis_custom-form-second-part-three .bis_custom-input-field label {
	flex-basis: 50%;
	margin: 8px 0 20px;
	color: #000;
}

.for-duplicate .bis_custom-form-second:nth-child(1) .bis_custom-form-second-part-remove {
	display: none;
}

/* Products */
.bis_custom-main-container {
	width: min(90%, 1244px);
	margin: auto;
}

.bis_custom-main-container-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	align-items: center;
}

.bis_custom-search-bar {
	width: calc(100% - 10px);
	margin: 40px 0px;
	display: flex;
    justify-content: space-between;
}

.bis_custom-search-bar form#search-form {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	width: 80%;
}

.bis_custom-search-bar form#search-form input {
    width: 100%;
    border: 1px solid #19a330;
    border-radius: 5px !important;
    height: 60px;
    padding: 25px;
    font-family: 'Montserrat' !important;
    font-size: 18px;
}

.bis_custom-search-bar form#search-form button {
    position: absolute;
    right: 0;
    border-radius: 0 5px 5px 0 !important;
    height: 60px;
    border: 0;
    background: #19a330;
    color: #fff;
    width: 15%;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: 'Montserrat';
}


.bis_custom-basket a.bis_custom-cart-link {
	text-decoration: none;
	position: relative;
	display: block;
	background: #1957a314;
	padding: 20px;
	border-radius: 50%;
	transition: 2s ease-in-out;
}

.bis_custom-basket a.bis_custom-cart-link img {
	width: 40px;
}

.bis_custom-basket a.bis_custom-cart-link span.bis_custom-product-count {
	position: absolute;
	width: 25px;
	height: 25px;
	font-size: 15px;
	background: #19a330;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	color: #fff;
	right: 13px;
	bottom: 10px;
}

.bis_custom-main-container-body {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 70px;
}

.bis_custom-main-content {
	flex-basis: calc(80% - 20px);
}

.bis_custom-main-content-body {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.bis_custom-main-container-filter {
	flex-basis: calc(25% - 10px);
}

.bis_custom-main-container-filter form#filter {
	display: flex;
    flex-direction: column;
    box-shadow: 0 13px 50px rgb(154 154 154 / 25%);
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
    margin-top: 13px;
    border-radius: 10px;
}

.bis_custom-main-container-filter form#filter .select {
	position: relative;
}

.bis_custom-main-container-filter form#filter button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #19A330;
    color: #fff;
    text-decoration: none;
    height: 40px;
    border-radius: 6px;
    border: 2px solid #19a330;
    font-size: 15px;
    width: calc(100% - 10px);
    font-weight: 400;
    font-family: 'Montserrat';
}

.bis_custom-main-container-filter form#filter .select .bis_custom-select {
	margin: 0px auto 20px;
}

/*  header cards */

.bis_custom-main-content-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
}

.bis_custom-recent-product-container {
	flex-basis: calc(50% - 10px);
}

.bis_custom-special-items-container {
	flex-basis: calc(50% - 10px);
    background: #c3e7c9;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bis_custom-special-item {
	background: #19a330;
	border-radius: 10px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 10px;
}

.bis_custom-special-item-icon {
	flex-basis: 8%;
}

.bis_custom-special-item-icon img {
	width: 100%;
}

.bis_custom-special-item-title {
	flex-basis: calc(60% - 10px);
	margin: 0 auto;
}

.bis_custom-special-item-title h2 {
	font-size: 18px;
	font-weight: 500;
	color: #efefef;
}

.bis_custom-special-item-btn {
	flex-basis: 29%;
}

.bis_custom-special-item-btn a {
	background: #fff;
	color: #19a330;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	padding: 8px 10px;
	border-radius: 10px;
}
.bis_custom-right-sidebar-card-body form input {
    width: 100%;
    border: 1px solid #C4C4C4 !important;
    background: #fff;
    border-radius: 5px !important;
    height: 30px !IMPORTANT;
    font-size: 12px !important;
    padding: 0 10px !important;
}
.bis_custom-special-item:last-child {
	margin-bottom: 0;
}

.bis_custom-right-sidebar-card-body form .gform_button {
    font-size: 9px !important;
    display: flex;
    line-height: 0px !important;
    width: 67px !important;
    position: absolute;
    right: -1px;
    top: 7px;
    background: #19a330;
    border: 0;
    color: #fff;
    border-radius: 5px !important;
    padding: 15px 10px !important;
    text-transform: capitalize;
}

div#gform_58_validation_container {
    display: none;
}
form#gform_58 {
    display: flow-root;
}
.bis_custom-recent-product-card {
	background: #fefefe;
	border-radius: 20px;
	/* padding: 30px; */
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
box-shadow: 0px 14px 32px 0px rgb(0 0 0 / 15%);}

img.bis_custom-recent-product-tag {
    position: absolute;
    width: 50px;
    z-index: 1;
    right: -10px;
    top: -15px;
}

.bis_custom-recent-product-img {
	flex-basis: 50%;
	background: #ffffff;
	border-radius: 20px 0 0 20px;
	
	
	
	
	overflow: hidden;
}

.bis_custom-recent-product-img img {
	width: 100%;
	max-height: 270px;
    min-height: 270px;
    object-fit: contain;
}

.bis_custom-recent-product-info {
	flex-basis: calc(50%);
padding: 30px 20px;}

h2.bis_custom-recent-product-title {
	font-size: 16px;
	font-weight: 700;
	color: #19a330 !important;
	margin-bottom: 10px;
}

p.bis_custom-recent-product-desc {
	font-size: 12px;
	color: #000 !important;
}

.bis_custom-recent-product-card a.bis_custom-product-add-to-cart {
    margin: 15px 0px 0;
    background: #19a330 !important;
    color: #fff;
    padding: 15px;
    font-size: 15px;
    border: 2px solid #19a330 !important;
    border-radius: 5px;
}



.special-column .elementor-row {
    display: flex;
    align-items: flex-start;
}
.special-column .bis_custom-special-item-btn {
    flex-basis: 29%;
    text-align: right;
}

.special-column .bis_custom-recent-product-info {
    flex-basis: 65%;
    padding: 35px 20px 35px 0;
}

.special-column .bis_custom-recent-product-img {
    flex-basis: 35%;
    background: #ffffff;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.special-column h2.bis_custom-recent-product-title {
    font-size: 16px;
    font-weight: 700;
    color: #19a330 !important;
    margin-bottom: 10px;
    margin-top: 0;
}


.special-column .bis_custom-recent-product-info {
    flex-basis: 65%;
    padding: 35px 20px 35px 0;
}



.bis_custom-right-sidebar {
	flex-basis: calc(20% - 10px);
}

.bis_custom-right-sidebar-card {
    padding: 30px 15px;
    width: 100%;
    background: #efefef;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: none;
}

.bis_custom-right-sidebar-card-header {
	display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.bis_custom-right-sidebar-card-header img {
	width: 30px;
	margin-right: 10px;
}

.bis_custom-right-sidebar-card-header h3, .bis_custom-main-container-filter h3 {
    font-size: 17px;
    font-weight: 500;
    color: #2b2b2b;
    position: relative;
    padding: 0 0 10px 0px;
    margin: 0;
}
.bis_custom-main-container-filter h3:after,
.bis_custom-right-sidebar-card-header h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #19a330 25%, #fefefe 25%);
}

.bis_custom-main-container-filter h3 {
	margin: 30px 0 0px;
	display: inline-block;
}

.bis_custom-main-container-filter h3:after{
	background: linear-gradient(90deg, #19a330 25%, #aaa9a9 25%);
}

.bis_custom-right-sidebar-card-body form {
	position: relative;
}

.bis_custom-right-sidebar-card-body form input {
	width: 100%;
	border: 1px solid #19a330;
	background: #fff;
	border-radius: 40px;
	height: 30px;
	font-size: 12px;
	padding: 0 10px;
}

.bis_custom-right-sidebar-card-body form input#subscribe {
	font-size: 11px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 0;
	width: 65px;
	position: absolute;
	right: -2px;
	top: 0px;
	background: #19a330;
	border: 0;
	color: #fff;
}

.bis_custom-right-sidebar-card-body ul {
	list-style: none;
	padding: 0;
}

.bis_custom-right-sidebar-card-body ul li {
	margin: 0;
}

.bis_custom-right-sidebar-card-body ul li a {
	font-size: 12px;
	line-height: 16px;
	display: block;
	padding-left: 20px;
	text-decoration: none;
	margin-bottom: 10px;
	position: relative;
	color: #505050;
}

.bis_custom-right-sidebar-card-body ul li a:before {
	content: "";
	position: absolute;
	left: 5px;
	top: 5px;
	border: 4px solid #19a330;
	border-bottom: 4px solid transparent;
	border-top: 4px solid transparent;
	border-right: 4px solid #fefefe;
}

.bis_custom-cart-items>a {
	text-decoration: none;
	margin-top: 30px;
	font-size: 16px;
	font-weight: 500;
	color: #19a330 !important;
	position: relative;
	padding-left: 20px;
	width: 180px;
	background: transparent !important;
}

.bis_custom-cart-items>a:before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	border: 2px solid;
	width: 8px;
	height: 8px;
	border-right: 0;
	border-top: 0;
	transform: rotate(45deg);
}

a.bis_custom-product-remove-from-cart {
	width: 20px;
	height: 20px;
	font-size: 12px;
	background: red;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #fff !important;
	border-radius: 20px;
	font-weight: 500;
}

@media screen and (min-width:1024px) and (max-width: 1100px){
.bis_custom-right-sidebar-card {
    padding: 20px 15px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}
.bis_custom-right-sidebar-card-header h3, .bis_custom-main-container-filter h3{
	font-size: 18px;
}
.bis_custom-special-item-title h2{
	font-size: 16px;
}
}

@media screen and (max-width:1024px){
	.bis_custom-main-container-body {
		flex-direction: column;
	}

	.bis_custom-right-sidebar {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		margin-top: 50px;
	}

	.bis_custom-right-sidebar-card {
		flex-basis: calc(33.33% - 10px);
	}
}

@media screen and (max-width:800px){
	.bis_custom-main-content-header {
		flex-direction: column;
	}

	.bis_custom-recent-product-container {
		margin-bottom: 50px;
	}

	.bis_custom-main-content-body {
		flex-direction: column;
	}
	
	/* CartPage */
	
	.bis_custom-main-cart-wrapper {
		flex-direction: column;
	}

	.bis_custom-cart-wrapper {
		width: 100%;
		margin-bottom: 50px;
	}

	.bis_custom-form-container {
		width: 100%;
	}
}

@media screen and (max-width:500px){
	
	.bis_custom-main-container-header {
		flex-direction: column;
	}

	.bis_custom-search-bar {
		width: 100%;
		flex-wrap: wrap;
	}
	
	.bis_custom-search-bar form#search-form input {
	    font-size: 15px !IMPORTANT;
	    height: 45px;
	    padding: 0 20px;
	}
	.bis_custom-search-bar form#search-form button {
	    height: 45px;
	    line-height: 1;
	    font-size: 13px !important;
	    padding: 0;
	    width: 100px !IMPORTANT;
	}
	.bis_custom-basket {
		order: -1;
		margin-bottom: 30px;
	}

	.bis_custom-search-bar form#search-form {
		width: 100%;
	}

	.bis_custom-recent-product-card {
		flex-direction: column;
	}

	.bis_custom-recent-product-card a.bis_custom-product-add-to-cart {
		position: relative;
		left: inherit;
		bottom: inherit;
		margin-top: 20px;
	}

	.bis_custom-recent-product-info {
		text-align: center;
	}

	.bis_custom-recent-product-img {
		width: 200px;
		margin: auto;
		margin-bottom: -10%;
	}
	
	.special-column .bis_custom-special-item-btn {
	    flex-basis: 35%;
	    text-align: right;
	}
	.bis_custom-special-item-btn a {
	    font-size: 10px;
	    padding: 10px 10px;
	}

	.bis_custom-special-item-title h2 {
		font-size: 14px;
	}

	.bis_custom-special-item-icon {
		flex-basis: 7%;
	}
	
	.products-wrapper {
		flex-direction: column;
	}

	.bis_custom-product-card {
		margin: 20px 0;
	}
	
	.bis_custom-product-card-header {
		width: 200px;
	}

	h2.bis_custom-product-title {
		font-size: 20px;
	}

	.bis_custom-product-cat {
		font-size: 14px;
	}

	.bis_custom-right-sidebar {
		flex-direction: column;
	}
	
	.bis_custom-search-bar .bis_custom-basket a.bis_custom-cart-link {
        position: fixed;
        top: 200px;
        z-index: 1;
        right: 10px;
        padding: 10px;
        border: 2px solid #19a330;
        background: #fff;
        width: 50px;
        height: 50px;
        display: flex;
    }
    
    .bis_custom-search-bar .bis_custom-basket a.bis_custom-cart-link img {
        width: 25px;
    }
    
    .bis_custom-search-bar .bis_custom-basket a.bis_custom-cart-link span.bis_custom-product-count {
        font-size: 12px;
        width: 15px;
        height: 15px;
        bottom: 5px;
        right: 6px;
    }
	
	/* Cart Page */
	
	.bis_custom-cart-item {
    	flex-wrap: wrap;
    	justify-content: center;
    	flex-direction: column;
    }
    
    a.bis_custom-product-remove-from-cart {
        margin-top: 20px;
    }
    
    .bis_custom-product-cart-name {
    	flex-basis: 100%;
    	display: flex;
    	flex-direction: column;
    	align-items: center;
    	margin: 10px 0;
    }
	
	.bis_custom-product-cart-count input {
		width: 50px;
		height: 25px;
		font-size: 14px;
	}

	.bis_custom-product-cart-name h5 {
		font-size: 12px;
		width: 175px;
		text-align: center;
	}

	.bis_custom-product-cart-img {
		margin-right: 5px;
		width: 100px;
	}

	.bis_custom-input-field>.bis_custom-two-input {
		flex-direction: column;
	}
}

.bis_custom-recent-product-card  .numberstyle-qty, 
.bis_custom-card-for-view .numberstyle-qty,
.bis_custom-product-info-popup .numberstyle-qty {
    display: none;
}

/* --- Product Card ---- */

.bis_custom-recent-products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bis_custom-recent-products-container .product-card {
    flex-basis: calc(25% - 20px);
}

.stats-container {
    min-height: 85px;
}

.product-front{
	width: auto;
	height: 320px;
	background:#fff;
	position: relative;
	-webkit-transition: all 100ms ease-out; 
       -moz-transition: all 100ms ease-out; 
         -o-transition: all 100ms ease-out; 
            transition: all 100ms ease-out; 
}

.product-front img {
	width: 175px;
	margin: auto;
	display: block;
}

.product-card.animate .product-front{
	top:0px;
	left:0px;
	-webkit-transition: all 100ms ease-out; 
       -moz-transition: all 100ms ease-out; 
         -o-transition: all 100ms ease-out; 
            transition: all 100ms ease-out; 
}
.product-card{
	width: 100%;
	overflow:hidden;
  box-shadow:0px 13px 21px -5px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
	-webkit-transition:  100ms ease-out; 
       -moz-transition:  100ms ease-out; 
         -o-transition:  100ms ease-out; 
            transition:  100ms ease-out;
margin: 20px 0;
	border-radius: 10px;
}

.product-card.animate{
	top:5px;
	left:5px;
	width: auto;
	
	box-shadow:0px 13px 21px -5px rgba(0, 0, 0, 0.3);
	-webkit-transition:  100ms ease-out; 
       -moz-transition:  100ms ease-out; 
         -o-transition:  100ms ease-out; 
            transition:  100ms ease-out; 
}
.stats-container{
    min-height: 120px;
	background:#fff;	
	position:absolute;
	bottom:0;
	left:0;
	width: 100%;
	height:auto;
	padding:0 20px 20px;	
	-webkit-transition: all 200ms ease-out; 
       -moz-transition: all 200ms ease-out; 
         -o-transition: all 200ms ease-out; 
            transition: all 200ms ease-out;
}

.stats-container .product_name{
	font-size:15px;
	line-height: 20px;
	font-weight: 500;
	color:#393c45;	
	display: block;
}

.stats-container span.bis_custom-product-price {
	position: absolute;
	right: 20px;
	top: 12px;
	font-size: 12px;
}

.image_overlay{
	position:absolute;
	top:0;
	left:0; 
	width:100%;
	height:100%;
	background:rgb(158, 157, 157);
	opacity:0.2;	
}
.product-card.animate .image_overlay{
	background:#19a330;
	opacity:0.7;	
	-webkit-transition: all 200ms ease-out; 
       -moz-transition: all 200ms ease-out; 
         -o-transition: all 200ms ease-out; 
            transition: all 200ms ease-out; 
}

a.view_details{	
	position:absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);	
	border:2px solid #fff;
	color:#fff;
	font-size:19px;
	text-align:center;
	text-transform:uppercase;
	font-weight:700;
	padding:10px 0;
	width:172px;	
	opacity:0;
	-webkit-transition: all 200ms ease-out; 
       -moz-transition: all 200ms ease-out; 
         -o-transition: all 200ms ease-out; 
            transition: all 200ms ease-out; 
}
a.view_details:hover{	
	background:#fff;
	color:#19a330;
	cursor:pointer;

}
.product-card.animate .view_details{
	opacity:1;
	width:152px;
	font-size:15px;
	-webkit-transition: all 200ms ease-out; 
       -moz-transition: all 200ms ease-out; 
         -o-transition: all 200ms ease-out; 
            transition: all 200ms ease-out; 		
}

.bis_custom-main-container-filter .nice-select,
form#create-order-form .nice-select {
    display: none !important;
}

.bis_custom-special-item-title h2 {
	margin: 0 !important;
}

.bis_custom-right-sidebar-card-body form input#subscribe {
	top: 9px !important;
}


/*
 * Number style
 */
.numberstyle-qty {
  position: relative;
    border-radius: 6px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 1px 6px rgb(193 193 193 / 78%);
    margin-top: 6px;
}

.numberstyle-qty input,
.numberstyle-qty .qty-btn {
  position: relative;
  display: block;
  float: left;
  height: 30px;
  padding: 0;
  margin: 0;
	border: 0px;
  text-align: center;
  line-height: 30px;
  outline: 0;
  box-shadow: 0px;
}
  
.numberstyle-qty .qty-btn {
      width: 20px;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    user-select: none;
    transition: all 250ms ease;
}  

.numberstyle-qty .qty-btn.disabled {
  cursor: default;
  color: #000;
}
  
.numberstyle-qty input {
  width: 30px;
  border-left: 0;
  border-right: 0;
  font-size: 18px;
    font-weight: 700;
  z-index: 1;
}

.numberstyle-qty input:focus {
  outline: 0;
  box-shadow: 0px;
}
    
.numberstyle-qty input[type=number]::-webkit-inner-spin-button,
.numberstyle-qty input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
    
.numberstyle-qty input[type=number] {
  -moz-appearance: textfield;
	padding: 0;
}

@media screen and (min-width:767px){
	.products-search .bis_custom-basket a.bis_custom-cart-link.active {
		position: fixed;
		right: 20px;
		top: 150px;
		transition: 2s ease-in-out;
		z-index:9;
	}
}

@media screen and (max-width:800px){
	.bis_custom-recent-products-container .product-card {
		flex-basis: calc(50% - 20px);
	}
}

@media screen and (max-width:500px){
	.bis_custom-recent-products-container .product-card {
		flex-basis: calc(100%);
	}
	.bis_custom-products {
		margin-top: 30px;
	}
	a.bis_custom-reset-search {
		right: 105px;
	}
}



@media (min-width: 767px) and (max-width: 800px){
.special-column .bis_custom-special-item-btn {
    flex-basis: 30%;
    text-align: right;
}
.product-card {
    width: 48%;
    display: inline-block;
    margin: 20px 10px 0 0;
}
.product-card:last-child {
    margin-right: 0;
    margin-left: 10px;
}
.bis_custom-main-container-filter h3 {
    margin: 30px 0 0px;
    display: block;
}
}



@media (min-width: 575px) and (max-width: 767px){
    .bis_custom-right-sidebar-card:first-child {
        flex-basis: 100%;
    }
    .bis_custom-right-sidebar-card {
        flex-basis: calc(50.33% - 10px);
    }
    .bis_custom-product-card {
        flex-basis: calc(49.33% - 17px);
        margin: 10px;
    }
}

@media (max-width: 575px){
    .bis_custom-product-card{
        flex-basis: 100% !important;
    }
    .bis_custom-product-cart-name,
    .bis_custom-product-cart-price {
        width: 100%;
        text-align: center;
    }
    .bis_custom-product-cart-price p {
        right: 0;
    }
    .bis_custom-product-cart-count {
        margin-top: 35px !important;
    }
    .bis_custom-product-cart-count p {
        top: -10px;
    }
    .bis_custom-products-total p strong, .bis_custom-products-tax p strong, .bis_custom-products-grand-total p strong {
        width: 50%;
    }
    .bis_custom-products-total p span, .bis_custom-products-tax p span, .bis_custom-products-grand-total p span {
        width: 50%;
        text-align: right;
    }
}



@media (min-width: 767px) and (max-width: 1024px){

}


.bis_custom-right-sidebar-card:last-child .bis_custom-right-sidebar-card-body img {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    margin-right: 9px !IMPORTANT;
    object-fit: cover;
}
.bis_custom-right-sidebar-card:last-child .bis_custom-right-sidebar-card-body ul li a:before{
	display: none;
}

.bis_custom-right-sidebar-card:last-child .bis_custom-right-sidebar-card-body ul li a {
    font-size: 12px;
    line-height: 16px;
    display: flex;
    padding-left: 0px;
    padding-bottom: 10px;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    color: #505050;
    border-bottom: 1px solid #c3e7c9;
}
/* Loading */

.bis_loading {
	display: inline-block;
	position: relative;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: radial-gradient(circle, transparent 27px, #19a33080 32px);
}
.bis_loading div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 3px;
	border: 5px solid #19a330;
	border-radius: 50%;
	animation: loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #19a330 transparent transparent transparent;
}
.bis_loading div:nth-child(1) {
	animation-delay: -0.45s;
}
.bis_loading div:nth-child(1)::before {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	background-color: #19a330;
	position: absolute;
	top: 8px;
	right: 0px;
	border-radius: 50%;
}
.bis_loading div:nth-child(2) {
	animation-delay: -0.3s;
}
.bis_loading div:nth-child(3) {
	animation-delay: -0.15s;
}
.bis_loading div:nth-child(4)::before {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	background-color: #19a330;
	position: absolute;
	top: 8px;
	left: 0;
	border-radius: 50%;
}
@keyframes loading {
	to {
		transform: rotate(360deg);
	}
}

.bis_custom-product-added-confirmation-msg {
    position: absolute;
    top: 140px;
    right: 3vw;
    font-size: 12px;
    border-radius: 30px 0 30px 30px;
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 16%);
    padding: 15px;
    width: 242px;
    background-color: #fff;
    z-index: 999;
}

.bis_custom-product-added-confirmation-msg.active {
    position: fixed;
    top: 240px;
}

p.bis_custom-product-added-msg {
    font-size: 15px;
    margin: 0;
    text-align: center;
}

.bis_custom-product-card.bis_custom-hidden {
    display: none;
}