html,
body {
  	height: 100%;
    --brandColor: #54Ac44;
    --hoverColor: #50d63c;
    --secondaryColor: #00adcf;
}
body {
	font-size: .875rem;
}
.site-btn,
.page-item.active .page-link {
	color: #fff;
	background-color: #50d63c;
    border-color: #50d63c;
}
.site-btn:hover {
	color: #fff;
    background-color: #47b936;
    border-color: #47b936;
}
.text-site-primary,
a.text-site-primary,
.btn.text-site-primary,
.page-link {
	color: var(--brandColor) !important;
    transition: all 0.2s ease;
}
a:hover.text-site-primary,
.btn:hover.text-site-primary,
.page-link:hover {
	color: var(--hoverColor) !important;
	text-decoration: none;
}
.btn,
.form-control {
	font-size: 14px;
}
.btn.focus,
.btn:focus,
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.custom-control-input:focus~.custom-control-label:before {
	box-shadow: none !important;
}
.error {
	color:#e40000;
}
.dropdown-item.active,
.dropdown-item:active {
	background-color: var(--brandColor);
}



/* start sweet alert message */
.sweet-alert {
    background-color: white;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 420px;
    padding: 17px;
    border-radius: 5px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -256px;
    margin-top: -200px;
    overflow: hidden;
    display: none;
    z-index: 99999;
}
.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
    padding-bottom: 0px;
}
.sweet-alert h2 {
    color: #575757;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 25px 0;
    padding: 0;
    line-height: 40px;
    display: block;
}
/* end sweet alert message */
.form-control:focus {
	border-color: var(--brandColor);
	box-shadow: 0 0 0 0.2rem rgba(80, 214, 60, .25);
}
.btn:focus,
.custom-control-input:focus~.custom-control-label:before {
	box-shadow: none;
}
.site-btn,
.custom-control-input:checked~.custom-control-label:before {
	color: #fff;
	background-color: var(--brandColor);
	border-color: var(--brandColor);
}
.site-btn:hover {
	color: #fff;
	background-color: var(--hoverColor);
	border-color: var(--hoverColor);
}
.custom-control-label {
	cursor: pointer;
}

.page-height {
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login .wrapper,
.registration .wrapper {
	width: 100%;
	max-width: 400px;
}
.login .page-title .register-url,
.registration .page-title .login-url {
	font-size: .875rem;
	font-weight: bold;
}
.login .page-title .register-url:hover,
.registration .page-title .login-url:hover {
	opacity: .75;
	text-decoration: none;
}

.form-label-group {
	position: relative;
	margin-bottom: 1rem;
}
.form-label-group > input,
.form-label-group > label {
	height: 3.125rem;
	padding: .75rem;
}
.form-select-group{
    height: 3.125rem;
	padding: .75rem;
}

.form-label-group > label {
	font-size: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	margin-bottom: 0;
	line-height: 1.5;
	color: #495057;
	pointer-events: none;
	cursor: text;
	border: 1px solid transparent;
	border-radius: .25rem;
	transition: all .1s ease-in-out;
}
.form-label-group input::-webkit-input-placeholder {
	color: transparent;
}
.form-label-group input:-ms-input-placeholder {
	color: transparent;
}
.form-label-group input::-ms-input-placeholder {
	color: transparent;
}
.form-label-group input::-moz-placeholder {
	color: transparent;
}
.form-label-group input::placeholder {
	color: transparent;
}
.form-label-group input:not(:placeholder-shown) {
	padding-top: 1.25rem;
	padding-bottom: .25rem;
}
.form-label-group input:not(:placeholder-shown) ~ label {
	padding-top: .25rem;
	padding-bottom: .25rem;
	font-size: 12px;
	color: #777;
}

.dropdown-menu {
	font-size: .875rem;
}

.site-footer .copyright {
	font-size: .75rem;
}

/* Default CSS */
.primary-title {
    margin: 28px 0 0;
    padding: 0;
    font-size: 22px;
    color: #333;
    font-weight: 400;
    line-height: 1;
}
.secondary-title {
    font-size: 18px;
}
.table-filter-tab .tab-inner {
    display: inline-block;
    position: relative;
}
.table-filter-tab .tab-inner:after {
    content: " ";
    position: absolute;
    top: calc(50% - 8px);
    right: 0;
    width: 1px;
    height: 15px;
    background-color: #dcdee3;
}
.table-filter-tab .tab-inner:last-child:after {
    content: none;
}
.table-filter-tab .tab-inner a,
.table-filter-tab .tab-inner .active-tab {
    padding: 10.5px 16px;
    color: #666;
    display: block;
}
.table-filter-tab .tab-inner a:hover {
    color: #333;
}
.table-filter-tab .tab-inner .active-tab {
    color: #50d63c;
}
.table-filter-tab .tab-inner .the-count {
    margin-left: 4px;
    font-weight: 400;
}
.base-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
    background: #fff;
}
.base-table th {
    padding: 0;
    background: #f7f8fa;
    color: #333;
    text-align: left;
    font-weight: 400;
    border: 1px solid #e6e7eb;
    padding: 12px 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
}
.base-table td {
    padding: 12px 8px;
    border: 1px solid #e6e7eb;
}
.base-table .dropdown .btn {
    padding: 0;
    font-size: 14px;
}
.base-table .dropdown .btn:hover,
.base-table .dropdown .btn:focus,
.base-table .dropdown.show .btn {
    text-decoration: none;
}
.base-table .dropdown .dropdown-menu a {
    font-size: 14px;
}

/* Vendor join */
.progress-bar-container {
	margin: 0 auto;
	padding: 40px 0;
}
.progress-bar-content {
	height: 76px;
	padding-left: 0;
	margin-bottom: 0;
}
.progress-bar-content .step {
	float: left;
	width: 180px;
	margin: 0;
	list-style: none;
	text-align: center;
}
.progress-bar-content .step .step-order {
	width: 48px;
	height: 48px;
	margin: 0 auto 8px;
	border: 1px solid #d8d8d8;
	border-radius: 100%;
	background-color: #fff;
	font-size: 30px;
	line-height: 48px;
	color: #666;
	position: relative;
	-webkit-transition: all 0.5s ease;
		 -moz-transition: all 0.5s ease;
			 -o-transition: all 0.5s ease;
					transition: all 0.5s ease;
}
.progress-bar-content .step.complete-step .step-order {
	color: #50d63c;
	border-color: #50d63c;
}
.progress-bar-content .active-step .step-order {
	color: #fff;
	border-color: #50d63c;
	background-color: #50d63c;
}
.progress-bar-content .step .step-title {
font-size: 14px;
	color: #000;
}
.progress-bar-content .step:nth-child(2) {
	margin: 0 83px;
}
.progress-bar-content .step .step-sec:before,
.progress-bar-content .step .step-wait:before {
	width: 197px;
	height: 1px;
	position: absolute;
	left: -206px;
	top: 50%;
	background: #d8d8d8;
	content: ' ';
}
.progress-bar-content .step.active-step .step-sec:before,
.progress-bar-content .step.active-step .step-wait:before,
.progress-bar-content .step.complete-step .step-sec:before,
.progress-bar-content .step.complete-step .step-wait:before {
	background: #50d63c;
}
.vendor-registration .form-step {
	display: none;
}
.vendor-registration .form-step.active-step {
	display: block;
}
.vendor-registration .select2-container {
	width: 100% !important;
}
.vendor-registration .select2-container .select2-selection--single {
	border-color: #ced4da;
}
.vendor-registration .select2-container .select2-selection--single,
.vendor-registration .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 50px;
}
.vendor-registration .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 50px;
}

.select2-container .select2-selection--single {
	border: 1px solid #8d96a0;
	border-radius: 4px;
	height: 38px;
	padding-left: .37rem;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 38px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 36px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #50d63c;
}
.select2-container .select2-selection--single:focus {
	outline: 0;
}

/* Single Order */
.item-group-wrapper .item-group tbody td {
	border-bottom: 1px solid #dee2e6;
}
.item-group-wrapper .item-group .item-price {
	width: 150px;
}
.item-group-wrapper .item-group .item-info .item-image,
.item-group-wrapper .item-group .item-info .item-image img {
	max-width: 80px;
	width: 80px;
	height: 80px;
}
.item-group-wrapper .item-group .item-info .variation {
	font-size: 12px;
}
.item-group-wrapper .item-group .item-info .item-action .kgr {
	font-size: 20px;
}
.item-group-wrapper .item-group .item-price .current-price {
	font-size: 18px;
}
.item-group-wrapper .item-group .item-price .orginal-price del {
	color: #9e9e9e;
}
.shopping-cart .item-group-wrapper:last-child .item-group,
.shipping-locationout .item-group-wrapper:last-child .item-group {
	margin-bottom: 0 !important;
}
.purchase-summary .subtotal,
.purchase-summary .subtotal li {
	list-style: none;
}
.purchase-summary .subtotal li span {
	width: 100px;
}
.shipping-location .shipping-form,
.purchase-summary .coupon-field,
.payment-method .card-payment {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.15s ease-out;
}
.shipping-location .shipping-form.active,
.purchase-summary .coupon-field.active,
.payment-method .card-payment.active {
	max-height: 500px;
	transition: max-height 0.25s ease-in;
}
.purchase-summary .coupon-field .input-group-append .btn,
.purchase-summary .coupon-field .input-group-prepend .btn {
	z-index: inherit !important;
}
.payment-method .payment-icons img {
	width: 32px;
	height: auto;
	margin-left: 5px;
	display: inline-block;
}

.site-main {
    min-height: calc(100vh - 152px);
}

.order-review .item-info .item-image {
	display: inline-block;
	max-width: 80px;
	margin-right: 10px;
}
.order-review .item-info .item-details {
	display: inline-block;
	vertical-align: top;
}
.order-review .item-info .item-review .star,
.order-review .seller-rating .seller-review .reaction {
	display: inline-block;
	border: 0;
	padding: 0;
	margin: 0;
	background-color: transparent;
}
.order-review .item-info .item-review .star:focus,
.order-review .seller-rating .seller-review .reaction:focus {
	outline: 0;
}
.order-review .item-info .item-review .star.star-gray,
.order-review .item-info .item-review .star.orginal-star,
.order-review .seller-rating .seller-review .reaction {
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-image: url('../images/icons/star-gray.png');
}
.order-review .item-info .item-review .star.orginal-star {
	background-image: url('../images/icons/star-yellow.png');
}
.order-review .seller-rating .seller-review .reaction {
	background-image: url('../images/icons/emoticons.png');
}
.order-review .seller-rating .seller-review .reaction.frown {
	background-position: -1px 0;
}
.order-review .seller-rating .seller-review .reaction.meh {
	background-position: -43px 0;
}
.order-review .seller-rating .seller-review .reaction.smile {
	background-position: -85px 0;
}
.order-review .seller-rating .seller-review .reaction.frown-orginal {
	background-position: -22px 0;
}
.order-review .seller-rating .seller-review .reaction.meh-orginal {
	background-position: -64px 0;
}
.order-review .seller-rating .seller-review .reaction.smile-orginal {
	background-position: -106px 0;
}
.order-list-dropdown .dropdown-toggle::after {
	display: unset;
	margin-left: unset;
	vertical-align: unset;
	content: "";
	border-top: unset;
	border-right: unset;
	border-bottom: unset;
	border-left: unset;
}


/*order-tracking page*/

.order-tracking {
	box-shadow: 0px 0px 5px 1px #ddd;
	border-radius: 5px;
	padding: 10px;
	border-top: 2px solid var(--brandColor);;
}
.order-tracking-head h4 {
	padding: 10px;
	text-shadow: 1px 1px #ccc;
	color: #656565;
	border-bottom: 1px dotted #ddd;
}

.progress-order {
	margin: 20px;
	width: 180px;
}

.step {
	width: 80px;
	height: 80px;
	background: #ddd;
	position: relative;
	color: #fff;
	border-radius: 50%;
	box-shadow: 0px 0px 3px 7px #ccc;
}
.active-step{
	background: var(--brandColor);
	box-shadow: 0px 0px 3px 7px #50d63c73;
}

.step::before{
	content: '';
	position: absolute;
	width: 140px;
	height: 5px;
	background: #ddd;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
}
.ongoing-step::before {
	background: #50d63c73;
}

.progress-order:last-child .step::before{
	content: '';
	background: unset;
	width: 0;
	height: 0;
}


.step span {
	position: absolute;
	font-size: 25px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.step-name p {
	font-size: 20px;
	color: #343434;
	margin-top: 5px;
	text-shadow: 1px 1px #ccc;
	font-weight: 500;
}

.order-tracking-body {
	background: url('../images/order-background.webp') no-repeat center bottom;
	min-height: 380px;
	background-size: contain;
}

.order-information, .shipping-information {
	box-shadow: 0px 0px 5px 1px #ddd;
	padding: 10px;
	border-radius: 5px;
	border-top: 2px solid var(--brandColor);
	height: 240px;
}
.order-information-heading h5, .shipping-information-heading h5 {
	padding: 10px;
	color: #808080;
}
.shipping-information-body {
	padding: 10px;
	padding-bottom: 18px;
}
.order-information-body, .shipping-information-body {
	border-top: 1px dotted #ddd;
	border-bottom: 1px dotted #ddd;
}
.order-information-body table tr td{
	padding: .25rem .75rem;
	font-weight: 500;
	font-size: 16px;
	color: #656565;
}
.shipping-address p {
	font-size: 16px;
	font-weight: 500;
	color: #656565;
	margin-bottom: unset;
}
.shipping-address span {
	font-weight: 500;
	color: #656565;
	margin-bottom: 10px;
	display: block;
}
.customer-phone p {
	font-size: 16px;
	color: #656565;
	font-weight: 500;
}
.pickup-option p{
	font-size: 16px;
	color: #656565;
	font-weight: 500;
	margin-bottom: 2px;
}

.select-state{
	height: 3.125rem;
}

/*order-tracking page*/



@media (max-width: 767.98px) {
    .base-table {
        table-layout: auto;
        display: table;
        width: 100%;
    }
    .base-table tbody td {
        position: relative;
        display: block;
        width: 100%;
        margin-top: -1px;
        padding-left: 80px;
    }
    .base-table tbody td:before {
        content: attr(data-title);
        position: absolute;
        left: 12px;
        color: #666;
    }
    .base-table tbody tr:nth-child(even) td {
        background-color: #fdfdfd;
    }

    /* Single Order */
	.item-group-wrapper .item-group thead {
		display: none;
	}
	.item-group-wrapper .item-group tbody td {
		display: block;
	}
	.item-group-wrapper .item-group tbody .item-details,
	.item-group-wrapper .item-group tbody .item-qty {
		border-bottom-width: 0;
	}
	.item-group-wrapper .item-group .item-qty,
	.item-group-wrapper .item-group .item-price {
		width: auto;
		padding-left: 104px !important;
	}
	.item-group-wrapper .item-group .item-qty {
		margin-top: -30px;
	}
}

/* Fallback for Edge
-------------------------------------------------- */
@supports (-ms-ime-align: auto) {
	.form-label-group > label {
		display: none;
	}
	.form-label-group input::-ms-input-placeholder {
		color: #777;
	}
}

/* Fallback for IE
-------------------------------------------------- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.form-label-group > label {
		display: none;
	}
	.form-label-group input:-ms-input-placeholder {
		color: #777;
	}
}

@media (max-width: 575.98px) {


	/*Order Tracking Page*/
	.step::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 5px;
    top: 180%;
    left: -35%;
    right: 0;
    transform: rotate(90deg);
	}
	/*Order Tracking Page*/


}
@media (min-width: 575.98px) and (max-width: 768px){
	/*Order Tracking Page*/
	.progress-order {
    margin: 15px;
    width: 130px;
	}
	.step {
    width: 60px;
    height: 60px;
	}
	.step-name p {
    font-size: 16px;
	}
	.step::before {
    content: unset;
    position: unset;
    width: unset;
    height: 0;
    top: unset;
    left: unset;
    right: unset;
    transform: unset;
	}
	/*Order Tracking Page*/
}
