a {
    color: unset;
}

.form-control {
    padding: 3px;
}

.cursor-pointer{
	cursor : pointer;
}

@media (max-width:991px) {
    .product-detail-wrapper {
        padding: 25px;
    }
}

/* back to top */
#back-to-top {
    position: fixed;
    bottom: 85px;
    right: 15px;
    z-index: 1039;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: var(--green);
    /* background: #256AAB; */
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 50%;
    text-decoration: none;
    opacity: 0;
    transition: opacity 1s ease-out, background-color 1s ease;
}

#back-to-top:hover {
    background: #4D4D4D;
}

#back-to-top.show {
    opacity: 1;
}

/* back to top */

.btn_my_cart,
.btn-login {
    margin-top: 5px;
    margin-left: 25px;
    font-size: 20px;
    color: #271E01;
}

#cart-item-qty {
    margin-left: 15px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    background-color: red;
    border-radius: 50%;
    color: white;
    position: absolute;
    top: -5px;
    right: -5px;
    padding-top: 2px;
    margin: 0;
}

/* for right cart */
.my-cart {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 450px;
    z-index: 1040;
    background-color: var(--white);
    padding: 0px;
    transform: translate(450px);
    transition: all 0.2s;
    font-size: 14px;
}

.my-cart.shadow {
    box-shadow: -7px 1px 33px var(--shadow);
}

.my-cart.show {
    transform: translate(0px);
    max-width: 90%;
}

.cart-overlay {
    position: fixed;
    /* Sit on top of the page content */
    opacity: 0;
    visibility: hidden;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(202, 198, 191, 0.7);
    /* Black background with opacity */
    z-index: 2;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
    transition: all 0.15s;
    z-index: 1039;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 18px;
    cursor: pointer;
    color: var(--purple);
}

.cart_right_product_row {
    height: 78vh;
    overflow-y: auto;
    padding: 0px 20px;
}

.cart_right_bottom_container {
    background-color: white;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
}

.cart_right_bottom_container_title {
    color: #424242;
}

.cart_right_bottom_container_value {
    color: #666666;
}

.label_cart_right_checkout_div {
    margin: 0px;
    padding: 10px;
    width: 100%;
    height: 50px;
    border-top: 1px solid #e3e3e3;
}

.btn_cart_right_checkout {
    width: 100%;
    height: 50px;
    border: none;
    background-color: var(--purple);
    color: white;
    cursor: pointer;
}

.btn_cart_right_remove {
    cursor: pointer;
    font-size: 18px;
    font-weight: 100;
}

.cart_right_voucher_code {
    position: absolute;
    top: 0px;
    border: none;
}

.btn_cart_right_remove_voucher {
    color: var(--purple);
    cursor: pointer;
    background-color: white;
    border: none;
}

.btn_cart_right_voucher {
    cursor: pointer;
    background-color: white;
    border: none;
    color: var(--purple);
}

/* for right cart */

.breadcrumbs {
    background-color: var(--purple);
    color: white;
    padding: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: white;
}

.text-red {
    color: red !important;
}

/* 2020-11-26 add by j */
.cart-special-tag {
    padding: 2px 12px 2px;
    background-color: #3cbf32;
    color: #fff;
    position: relative;
}

.cart-special-tag:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #3cbf32;
}

.cart-special-tag:after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #3cbf32;
}

/* 2020-11-26 add by j */

/* 2020-12-07 price range */
.filter-range {
    min-width: 20%;
    margin-right: 14px;
    background-color: var(--btn-color);
    color: var(--btn-textcolor);
    padding: 2px 5px;
    text-align: center;
}

#slider-range {
    width: 50%;
    float: left;
    margin: 5px 0px 5px 0px;
}

.filter-min-val,
.filter-max-val {
    width: 60px;
}

/* 2020-12-07 price range */


















/* for loading */
.preload-box {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 255);
    z-index: 9999999;
    overflow: hidden;
}

.preimage-box {
    -webkit-animation: flickerAnimation 1s infinite;
    -moz-animation: flickerAnimation 1s infinite;
    -o-animation: flickerAnimation 1s infinite;
    animation: flickerAnimation 1s infinite;
}

@keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* for loading */


/* my account */
.box-border .account-sidebar,
.account-sidebar ul {
    padding-left: 0;
    list-style: none;
}

.box-border .account-sidebar .client-account-side-nav {
    color: #888888;
    padding: 10px 0px;
    font-size: 14px;
    display: block;
    font-weight: 500;
}

.box-border .account-sidebar .client-account-side-nav:hover {
    color: #2b1000;
    /*    background-color: #f3f3f3;*/
}

.client-account-side-nav.active {
    color: var(--purple) !important;
    font-weight: bold !important;

}

/* my account */



/*My Cart*/
.full-width {
    width: 100%;
}

.cart-table {
    min-width: 700px;
    width: 100%;
}

.font-size-small {
    font-size: 12px;
}

.cart-table th,
.cart-table td {
    padding-top: 11px;
    padding-bottom: 11px;
    padding-left: 11px;
    padding-right: 11px;
}

.cart-table tbody td,
.checkout-table tbody td {
    vertical-align: top;
}

.line-through-color {
    color: #696969;
}

.text-line-through {
    text-decoration: line-through;
}

.cart-table .cart-table-title,
.checkout-table thead tr th {
    border-bottom: 1px solid #bfbfbf;
    text-transform: uppercase;
}

.cart-border-top {
    border-top: 1px solid #bfbfbf;
}

.btn-cart {
    /* background-color : #49a842;
	border : unset;
	color : white;
    font-size: 14px; */
}

.btn-cart:hover {
    /* background-color : #54c54c;
    color: #fff; */
}

/* 
.btn-cart-continues{
	background-color : white;
  border: 1px solid #49a842;
    font-size: 14px;
    color: #49a842;
}

.btn-cart-continues:hover{
	background-color : #49a842;
    color: #fff;
} */

.cart-sub-total-table {
    float: right;
}

.cart-thumbs {
    max-width: 100px;
    width: 100%;
    object-fit: contain;
}

.cart-table img {
    width: 100%;
    padding: 10px;
}

.cart-table tr,
.checkout-table tr {
    /*border-bottom : 1px solid #c9c9c9;*/
}

.cart-table tr:last-child {
    border-bottom: 0.5px solid #e2e2e2;
}

.btn_add_to_cart_wishlist {
    color: #2d1001;
    display: inline-block;
}

.btn_add_to_cart_wishlist i,
.btn_add_to_cart_wishlist span,
.btn_wishlist_remove i,
.btn_wishlist_remove span {
    font-size: 14px;
}

.btn_wishlist_remove {
    display: inline-block;
}

.btn-cart-remove-text {
    color: #2d1001;
    margin-left: 10px;
}

.billing-title.checkout-title {
    padding-bottom: 15px;
}

.billing_shipping_wrapper,
.shipping_shipping_wrapper,
.payment-border {
    padding: 15px;
    background: #f6f6f6;
    border-radius: 5px;
}

.billing_shipping_wrapper .btn-edit,
.shipping_shipping_wrapper .btn-edit {
    cursor: pointer;
}

.btn_remove {
    cursor: pointer;
}

.add-border-btm {
    border-bottom: 1px solid #ccc;
}

.checkout-btn {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #2c7fc1;
    color: #fff;
    border: 1px solid #2c7fc1;
    border-radius: 0;
}

.checkout-btn:hover {
    background-color: #fff;
    border: 1px solid #2c7fc1;
    color: #2c7fc1;
}

.mobile-my-cart-layout {
    display: none;
}

@media only screen and (max-width: 1053px) {
    .cart-quantity-input {
        width: 32px;
    }
}


@media only screen and (max-width: 991px) {
    .cart-table {
        overflow-x: scroll;
    }

    .mobile-my-cart-layout {
        display: block;
    }

    .mobile-my-cart-layout img {
        width: 100%;
        padding: 20px;
    }

    .mobile-cart-checkbox {
        margin-top: 50px;
    }

    .checkbox label::after {
        left: 6px;
        top: 2px;
    }

    .cart-quantity-input {
        width: 50px;
    }
}

@media only screen and (max-width: 500px) {
    .btn-cart-continues {
        font-size: 12px;
    }
}

/*End of My Cart*/

/*Checkout*/
.mobile-checkout {
    display: none;
}

.checkout-table {
    width: 100%;
}

.checkout-table img {
    width: 100%;
}

.checkout-table th,
.checkout-table td {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
}

.checkout-billing-container {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
}

.checkout-billing-container span {
    margin-bottom: 30px;
    color: #666666;
}

.checkout-billing-container p {
    font-size: 18px;
}

.checkout-change {
    text-align: right;
}

.change-btn {
    background-color: #2c7fc1;
    border: 1px solid #2c7fc1;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 0;
}

.change-btn:hover {
    background-color: #fff;
    color: #2c7fc1;
}

.place-order-btn {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #2c7fc1;
    color: #fff;
    border: 1px solid #2c7fc1;
    border-radius: 0;
}

.place-order-btn:hover {
    background-color: #fff;
    border: 1px solid #2c7fc1;
    color: #2c7fc1;
}


@media only screen and (max-width: 991px) {
    .mobile-checkout {
        display: block;
    }

    .mobile-checkout img {
        width: 100%;
        padding: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .checkout-change {
        text-align: left;
        margin-top: 10px;
    }
}

.quantity .qty {
    background-color: transparent;
    border: unset;
}

.quantity .plus,
.quantity .minus {
    border: unset;
    background-color: transparent;
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

/*End of Checkout*/

/* cart right panel */
.cart-top-wrapper {
    border-bottom: 1px solid #e3e3e3;
    padding: 10px 10px 5px 13px;
    margin-bottom: 20px;
}

.cart-title-top {
    font-size: 18px;
    font-weight: unset !important;
    color: #000;
}

.cart-product-title {
    font-size: 13px;
    color: #000;
}

.sku-text-small {
    font-size: 12px;
}

@media only screen and (max-width: 991px) {
    .product-detail-right {
        padding: 15px;
        margin-top: 25px;
        margin-bottom: 50px;
    }
}

.cart-inner-overlay {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: 5;
}

.cart-inner-overlay.show {
    opacity: 0.35;
    visibility: visible;
}

.quantity-wrapper,
.cart-quantity-group,
.cart-right-quantity-group {
    position: relative;
}

.quantity-wrapper .quantity,
.cart-quantity-group .quantity,
.cart_right_quantity {
    border: 0;
    text-align: center;
    /* width: 100%; */
}

.quantity-wrapper .quantity：focus,
.cart-quantity-group .quantity：focus,
.cart_right_quantity:focus {
    outline: unset;
    box-shadow: unset;
}

.quantity-wrapper .input-number-increment,
.cart-quantity-group .cart_increase_btn,
.cart-right-quantity-group .cart_right_increase_btn {
    all: unset;
    position: absolute;
    top: 20%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 0;
    height: 20px;
    width: 20px;
    /*  border-radius: 20px;
    border: 1px solid #e5e5e5; */
    color: #adadad;
    transition: 0.1s;
    cursor: pointer;
}

.quantity-wrapper .input-number-decrement,
.cart-quantity-group .cart_decrease_btn,
.cart-right-quantity-group .cart_right_decrease_btn {
    all: unset;
    position: absolute;
    top: 20%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 0;
    height: 20px;
    width: 20px;
    /* border-radius: 20px;
    border: 1px solid #e5e5e5; */
    color: #adadad;
    transition: 0.1s;
    cursor: pointer;
}

.quantity-wrapper .input-number-increment:hover,
.quantity-wrapper .input-number-decrement:hover,
.cart_increase_btn:hover,
.cart_decrease_btn:hover,
.cart_right_increase_btn:hover,
.cart_right_decrease_btn:hover {
    /* background-color: #271E01;
	color: #fff;
	border: 1px solid #271E01; */
}

/* cart right */

/* rating */
.light-gray-text {
    color: #8A8A8A;
}

.overall-review-rating i,
.user-review-rating i {
    font-size: 10px;
    color: black;
}

.user-review-rating i {
    cursor: pointer;
}

.overall-review-rating i.checked,
.user-review-rating i.checked {
    color: black;
    font-weight: 900;
}

.user-review-rating i:hover,
.user-review-rating i:hover~i {
    color: grey;
    font-weight: 900;
}

/* rating */
/* product page */
.btn {
    border-radius: unset;
}

.ori-price {
    font-size: 12px;
    text-decoration: line-through;
    color: #808080;
    font-weight: 400;
}

.cart-right-quantity-group,
.quantity-wrapper {
    border: 1px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    max-width: 100px;
}

.input-number {
    width: 85px;
    height: 30px;
    border: unset;
    text-align: center;
    background: transparent;
}

.plus-btn,
.minus-btn {
    all: unset;
    font-size: 13px;
    padding-top: 0px;
    padding-bottom: 2px;
    padding-left: 10px;
    padding-right: 5px;
    /* background-color: #f7f7f7;
  border: 1px solid #e6e6e6; */
    width: 16px;
    height: 16px;
}

.plus-btn:hover,
.minus-btn:hover {
    /*  background-color: #353535;
    color: #fff; */
}

.btn_add_to_cart {
    margin-top: 15px;
    padding: 5px 28px;
    background-color: #2ba6b2;
    color: #fff;
    border: 1px solid #2ba6b2;
    margin: 0 auto;
    /* border-radius: 5px */
}

.product-page-cart-btn:hover {
    /*  background-color: #2b1000;
    border: 1px solid #2b1000;
    color: #ffffff; */
}

.tile-zoom {
    overflow: hidden;
}

.radio-label {
    cursor: pointer;
}

.radio-label input[type="radio"]+.radio-text {
    padding: 5px 15px;
    border: 1px solid #DFDFDF;
    margin-right: 10px;
    position: relative;
}

.radio-label input[type="radio"]+span.radio-label-text {
    padding: 5px 15px;
    border: 1px solid #DFDFDF;
    margin-right: 10px;
    position: relative;
}

.radio-label input[type="radio"]+span.radio-label-text i {
    display: none;
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 0;
    color: white;
    z-index: 1;
}

.radio-label input[type="radio"]:checked+span.radio-label-text i {
    display: block;
}

.radio-label input[type="radio"]:checked+.radio-text {
    border-color: var(--purple);
}

.radio-label input[type="radio"]:checked+span.radio-label-text {
    border-color: var(--purple);
}

.radio-label input[type="radio"]:checked+span.radio-label-text::before,
.radio-label input[type="radio"]:checked+span.radio-label-text::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    border-color: transparent;
    border-style: solid;
}

.radio-label input[type="radio"]:checked+span.radio-label-text::after {
    border-radius: 0px;
    border-width: 10px;
    border-right-color: var(--purple);
    border-top-color: var(--purple);
}

/* product page */

/* category */
.border-box .img-box {
    height: 200px;
    margin-bottom: 25px;
}

.img-border-style {
    /*border: 1px solid #e4e4e4;*/
    border-radius: 5px;
    height: 135px;
}

.border-box img {
    width: 100%;
    height: 100%;
    padding: 0px;
    object-fit: contain;
}

.border-box:hover {
    /*box-shadow: 1px 1px 10px rgba(156, 156, 156, 0.2);*/
    /* padding: 10px 0px; */
}

.border-box .img-box {
    position: relative;
}

/* .border-box .img-box .main-product-image,
.border-box .img-box .hover-product-image{
	transition: opacity 0.3s;
} */
.border-box .img-box:hover .main-product-image,
.border-box .img-box .hover-product-image {
    position: absolute;
    opacity: 0;
    left: 0;
}

.border-box .img-box:hover .hover-product-image.hover-show {
    opacity: 1;
}

.img-box .btn-category-add-cart {
    opacity: 0;
    visibility: hidden;
    background-color: rgb(73, 168, 66);
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    transition: opacity 0.3s;
}

.img-box:hover .btn-category-add-cart {
    opacity: 1;
    visibility: visible;
}

.out-of-stock {
    color: gray !important;
    background-color: #f3f3f3 !important;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
    margin-top: 15px;
    /*    width: 268px;*/
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* category */

/* ecom clone css */
.checkout-wrapper .checkout-item {
    display: flex;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.checkout-item-image {
    min-width: 50px;
    min-height: 50px;
    width: 100px;
    height: 100px;
    object-fit: contain;
    border: 2px solid #EEE;
    margin-right: 15px;
}

.checkout-item-image img {
    display: block;
    min-width: 48px;
    min-height: 48px;
    width: 98px;
    height: 98px;
}

.checkout-item-desc {
    display: flex;
}

.checkout-item-desc,
.checkout-item-desc-title {
    padding-left: 1rem;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.checkout-item-desc-title span {
    margin-right: 5px;
}

.checkout-item-desc-title .quantity {
    justify-content: flex-start;
    font-size: 14px;
}

.checkout-item-desc-title .quantity .plus,
.quantity .minus {
    width: auto;
    height: auto;
    line-height: unset;
}

.checkout-item-desc-title .quantity .qty {
    width: 50px;
    height: auto;
    line-height: unset;
    text-align: center;
}

.checkout-item-desc-title .quantity .plus:hover,
.quantity .minus:hover {
    background-color: transparent;
}

.checkout-item-desc-title>div {
    font-size: 14px;
}

.dlt-item {
    font-size: 18px;
}

.checkout-select {
    position: relative;
    border: 0;
    display: inline-block;
}

.checkout-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    color: #444444;
    padding: 0 25px 0px 10px;
}

.checkout-select i {
    position: absolute;
    right: 0;
}

.product-suggestion {
    margin-top: 50px;
}

.edit-btn {
    font-size: 14px;
    text-decoration: underline !important;
}

.shipping-detail,
.billing-detail {
    background-color: #f5f5f5;
    padding: 15px;
    font-size: 14px;
    margin-bottom: 25px;
}

.remark-field,
.voucher-field {
    margin-bottom: 25px;
}

.voucher-input {
    display: flex;
    background-color: #f5f5f5;
    padding: 15px;
}

.voucher-input .form-control {
    margin-right: 10px;
    border: 0;
}

.payment-method {
    margin-bottom: 25px;
}


.payment-option {
    background-color: #f5f5f5;
    padding: 15px;
}

.payment-option label {
    margin-bottom: 0;
}

.payment-method-label {
    padding: 10px 15px;
    border: 1px solid #eee;
    background-color: #fff;
    width: 100%;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: 0.15s;
}

.payment-method-label.active {
    background-color: var(--green);
    color: white;
} 


.account-sidebar-menu {
    margin-bottom: 25px;
}

.account-sidebar-menu ul {
    list-style-type: none;
}

.account-sidebar-menu ul li {
    margin-bottom: 15px;
}

.account-sidebar-menu ul li.active {
    font-weight: bold;
    color: var(--contrast);
}

.account-setting {
    background-color: #f5f5f5;
    padding: 25px;
    color: #000;
}

.account-setting label {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-size: 14px;
}

.account-setting .form-control {
    border-radius: 0;
    border: 1px solid #eee;
    padding: 10px 10px;
    height: unset;
}


.setting-select {
    position: relative;
    border: 0;
}

.setting-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #eee;
    background-color: #fff;
    padding: 10px 10px;
    width: 100%;
}

.setting-select i {
    position: absolute;
    right: 10px;
    top: 25%;
}

.address-book-wrapper {
    margin-bottom: 25px;
}

.address-book-wrapper:last-child {
    margin-bottom: 0;
}

.address-book-setting {
    background-color: var(--light-gray);
    display: flex;
    justify-content: space-between;
    padding: 15px;
    font-size: 14px;
    margin-bottom: 25px;
    border-radius: 10px;
}

.address-details .name,
.address-details .contact,
.address-details .address {
    display: flex;
}

.address-details .name>p,
.address-details .contact>p,
.address-details .address>p {
    min-width: 110px;
}

.address-edit {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.account-setting .main-btn {
    font-size: 14px;
}

.main-btn.disabled {
    background-color: #e5e5e5;
    color: #000;
}

.order-history-details {
    background-color: var(--light-gray);
    font-size: 14px;
}

.order-history-details .order-id {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.order-item-list {
    margin-bottom: 25px;
}

.order-item-list .order-item {
    display: flex;
    justify-content: flex-start;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.order-item-list .order-item .order-item-image {
    width: 75px;
    height: 75px;
    border: 1px solid #eee;
    margin-right: 15px;
    display: inline-block;
}

.order-item-list .order-item .order-item-image img {
    width: 75px;
    height: 75px;
}

.order-item-details {
    display: flex;
    justify-content: space-between;
}


.order-item-details,
.order-item-title {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.order-history-details .order-total {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-history-details .order-total p {
    font-size: 18px;
}

.order-details-inner .order-id {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
    font-size: 14px;
}

.order-details-address {
    padding: 15px;
    background-color: #fff;
    font-size: 14px;
    border: 1px solid #eee;
    margin-bottom: 15px;
}


.parcel-detail {
    background-color: #fff;
    padding: 15px;
    font-size: 14px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}


.parcel-detail .parcel-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.parcel-detail .parcel-item .parcel-item-image {
    width: 75px;
    height: 75px;
    border: 1px solid #eee;
    margin-right: 15px;
    display: inline-block;
}

.parcel-detail .parcel-item .parcel-item-image img {
    width: 75px;
    height: 75px;
}

.parcel-item-details {
    display: flex;
    justify-content: space-between;
}


.parcel-item-details,
.parcel-item-title {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.payment-status {
    padding: 15px;
    background-color: #fff;
    font-size: 14px;
    border: 1px solid #eee;
    margin-bottom: 15px;
}

.payment-status-details {
    display: flex;
    justify-content: space-between;
}

.red {
    color: red;
}

.green {
    color: green;
}

.order-detail-summary {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 15px;
    font-size: 14px;
}


/* datatable pagination */
.pagination .paginate_button>a {
    color: var(--font) !important;
    background-color: unset !important;
}

.pagination .paginate_button.active>a,
.pagination .paginate_button>a:hover {
    background-color: unset;
    color: var(--green) !important;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    justify-content: unset !important;
}

.dataTable tr:nth-child(even) td {
    background-color: unset !important;
}

.page-link {
    padding: 0.2rem 0.75rem !important;
}

/* datatable pagination */

.contain-template-wrapper {
    background-color: #f5f5f5;
    margin-bottom: 25px;
    padding: 25px;
}


.account-detail-title {
    font-weight: bold;
    margin-bottom: 15px;
}

.account-title,
.cart-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contain-template-wrapper .form-control {
    margin-top: 10px;
    /* margin-bottom: 15px; */
    padding: 10px 10px;
    height: unset !important;
    min-height: 50px !important;
}

table.dataTable {
    margin: 0 !important;
}

.contain-template-wrapper .table th,
.contain-template-wrapper .table td {
    padding: 0;
}

.address-book-wrapper a {
    color: #7D7D7D;
}

.total_form .full-width td {
    padding: 10px 0;
}

.billing-title,
.checkout-title {
    font-weight: bold;
}

#category_search_form {
    display: flex;
}

.dropdown-menu.filter {
    min-width: 250px;
    top: 10px !important;
    border-radius: 0;
    border: 0;
    box-shadow: 3px 3px 25px rgba(0, 0, 0, 0.15);
}

.form-control.sort_by {
    border: 0;
    width: auto;
}

.dropdown-toggle::after {
    all: unset;
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 10px;
    color: #495057;
    margin-left: 10px;
}

.filter-range {
    border: 1px solid #e5e5e5;
}

.product-page-min-height {
    min-height: 500px;
}

.product-hover {
    transition: 0.15s;
}

.product-hover:hover {
    text-decoration: none;
    color: var(--purple);
}

.product-title {
    font-weight: 500;
    margin-bottom: 15px;
}

.product_image.photo_zoom {
    height: 400px;
    object-fit: contain;
}

/* .product-sub-image-container {
    border: 1px solid #e5e5e5;
    padding: 10px;
    min-height: 75px;
    margin-bottom: 15px;
} */

.product-sub-image-container .img_thums {
    display: flex;
}

.product-sub-image-container img {
    object-fit: contain;
}

.product-detail-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.overall-review-rating i {
    font-size: 14px;
}

.overall-review-rating i.checked {
    color: var(--purple);
}

.inner-product-price {
    margin-bottom: 25px;
}

.ori-price [itemprop="lowPrice"] {
    font-size: 14px;
}

[itemprop="lowPrice"] {
    font-size: 18px;
}

.product-description-text {
    font-size: 14px;
}

[itemprop="reviewBody"] {
    font-size: 14px;
}

.product-cat-setting-row {
    margin-bottom: 75px;
}

.login-form,
.register_form {
    min-height: 500px;
}

.login-box {
    max-width: 40%;
    margin: 0 auto;
}

.user-login-reg-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
}

.login-box .form-control,
.register_form .form-control {
    margin-bottom: 15px;
}

.fb-login,
.google-login {
    display: inline-block;
}

.register_page {
    max-width: 70%;
    margin: 0 auto;
}

.cart-right-quantity-group .form-control {
    font-size: 14px;
    padding: 5px 10px;
}

.right-cart-price {
    font-size: 14px;
}

.dropzone {
    border: 1px solid #ced4da !important;
    border-radius: 0 !important;
}


@media (max-width:991px) {

    .mobile-w100 {
        width: 100%;
    }

    #category_search_form {
        display: block;
    }

    .login-box {
        max-width: 100%;
    }

    .register_page {
        max-width: 100%;
    }

    #cart-item-qty {
        top: 5px;
        right: -5px;
    }

}

@media (max-width:575px) {

    .fb-login,
    .google-login {
        display: block;
    }

    .fb-login {
        margin-bottom: 25px;
    }
}

/*my order*/
.step-wrapper {
    display: flex;
}

.step {
    /* background-color: gray; */
    border: 2px solid var(--green);
    color: var(--green);
    line-height: 25px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step span {
    color: var(--green);
}

.step-level {
    font-size: xx-large;
}



/*.border{
    background-color: #A8A8A8;
    width: 90px;
    height: 90px;
    border-radius: 90px;
}*/

.line {
    display: flex;
    align-items: center;
    background-color: #A8A8A8;
    height: 1px;
    width: 10%;
}

.font-small {
    font-size: small;
}

.sub-title {
    font-size: 14px;
    font-weight: bold;
}

input#quantity {
    border: none;
    width: 30%;
    text-align: center;
}

.quantity-controller {
    border-bottom: 1px solid black;
    display: block;
}

.clickable {
    cursor: pointer;
}

.plan-selected {
    background-color: #353535;
    color: white;
}

.sub-plan-selected {
    background-color: gray;
    color: white;
}

.sub-plan {
    border: 1px solid gray;
    padding: 8px;
    cursor: pointer;
}

.main-add-btn {
    background-color: #000000;
    color: #ffffff;
}

.font-gray {
    color: gray;
}

.qty-btn {
    width: 30px;
}

.total {
    background-color: orange;
    padding: 8px;
    position: absolute;
    bottom: 0;
    right: 0;
}

input[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: orange;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 3px solid white;
    box-shadow: 0 0 2px orange;
}

.divider-hr {
    width: 98%;
    background-color: black;
}

.font-large {
    font-size: x-large;
}

.row-align {
    display: block;
}

.row-align span {
    display: block;
    float: right;
}

.red-static {
    color: red;
}

.selectize-control.single .selectize-input.items,
.selectize-dropdown.single.items {
    height: 40px;
    margin-top: 10px;
    padding: 5px 8px;
}

.selectize-control.single .selectize-input.items.not-full,
.selectize-dropdown.single.items.not-full {
    padding-top: 15px;
}

.selectize-control.single .selectize-input.items input,
.selectize-dropdown.single.items input,
.selectize-control.single .selectize-input.items .item,
.selectize-dropdown.single.items .item {
    margin-top: 5px;
}


.mandatory,
.red {
    color: red;
}

.border-mandatory {
    border: 1px solid red;
}

.error-message {
    font-size: 80%;
}





/* need move to style */
.btn {
    border-radius: 10px;
}

.main-btn-green {
    background-color: #2ba6b2;
    color: white;
}


.step-wrapper.active .step {
    background-color: var(--green);
}

.step-wrapper.active {
    color: var(--green);
}

.step-wrapper.active .step span {
    color: white !important;
}

.attr-text {
    padding: 10px 15px;
    border: 1px solid #eee;
    background-color: #fff;
    width: 100%;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

.attr-text.active {
    background-color: #256AAB;
    color: white;
}

.product-modal-bk-gray {
    background-color: #80808014;
    border-radius: 15px;
    padding: 20px 15px;
}

.input-radio-label {
    padding: 10px 15px;
    border: 1px solid #eee;
    background-color: #fff;
    width: 100%;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

.input-radio-label.active {
    background-color: #256AAB;
    color: white;
}

.radio-border-label {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #80808080;
    height: 100%;
}

.radio-border-label.active {
    border-radius: 5px;
    border: 1px solid #256cad;
    background-color: #256cad;
    color: #fff;
}

.location_wrapper{
    margin-bottom: 15px;
}

.cart-sku {
    font-size: 90%;
    color: #808080bf;
}

.ext-cart-margin {
    margin-top: 50px;
}

.bk-white {
    padding: 15px 10px;
    background-color: white;
}

@media (max-width : 991px) {
    .step-wrapper {
        width: 100%;
    }

    .step-center-mobile {
        width: 100%;
    }

    .step-center-mobile .step-wrapper {
        width: 150px;
        margin: 15px auto;
    }

    .step-center-mobile-hide {
        display: none;
    }
}

/* .modal-leasing {
    max-width: 90%;
} */

.font-size-14 {
    font-size:14px !important;
}

@media (max-width:767px) {
    .order-details-inner .order-id,
    .address-details .name,
    .address-details .contact,
    .address-details .address,
    .parcel-detail .parcel-item, .parcel-item-details,
    .payment-status-details {
        flex-direction: column;
    }
}

/* 2020-11-24 added by leon */
#snackbar {
  visibility: hidden; 
  min-width: 250px; 
  margin-left: -125px; 
  background-color: #333; 
  color: #fff; 
  text-align: center;
  border-radius: 5px; 
  padding: 14px; 
  position: fixed; 
  z-index: 9999; 
  left: 50%; 
  bottom: 50px; 
}
#snackbar.show {
  visibility: visible; 
  
  -webkit-animation: fadeIn 0.5s, fadeOut 0.5s 2.6s;
  animation: fadeIn 0.5s, fadeOut 0.5s 2.6s;
}
/* 2020-11-24 added by leon */

.active-point-text{
    font-size: 20px !important;
    font-weight: bold !important;
    color: var(--main-blue) !important;
}

.active3-table tr th{
    border: #e2e2e2 solid 1px;
}

.href-style{
    text-decoration: underline;
    color: #446aa7;

}

.level-up-table tr td{
    border: 1px solid black;
    padding: 10px;
}

.sending_message{
    font-size: 12;
    font-style: italic;
}

/*FAQ*/

.card.faq{
    border: 0;
    margin-bottom: 10px;
}

.card.faq .card-header{
    padding: 0;
    background-color: transparent;
    border: 0;
    margin-bottom: 5px;
}

.card.faq .card-body{
    border: 0;
    padding: 0;
    margin-bottom: 15px;
}

.card.faq .card-header .btn-link{
    border: 0;
    text-decoration: none;
    font-weight: bold;
    color: var(--main-blue);
    padding: 0 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    white-space: break-spaces;
}

.card.faq .card-body{
    padding-right: 20px;
}

.order-filter-display.active{
    border-color: #EE6779;
}
.order-filter-display.active a{
    color: #EE6779;
}