:root{
    --corecolor:  #CC314B;
	
	/* old */
    --white: #fff;
    --black: #000;
    --gray: #f9f9f9;
    --shadow: #666;
	/* old */
}

.cursor-pointer{
	cursor : pointer;
}

.border-mandatory {
    border: 1px solid #e01d3f;
}

.tmt-main-logo{
  width: 200px !important;
  max-width: 210px !important;
}

.cart_menu>i{
  font-size: 20px !important;
}

a{
  transition: 0.15s;
}

.fa-shopping-basket, .fa-child{
  font-size: 20px !important;
}

.account_text{
  font-family: 'ProximaNova-Regular', sans-serif;
}

.form-control {
	padding : 3px;
}


.w-80{
  width: 80% !important;
}

/*FB Btn*/

.abcRioButtonLightBlue{
  margin: 0 auto !important;
}


/*Login*/

.btn-tmt-log{
  width: 150px;
  background-color:#eb1b23;
  color: #fff;
}

.btn-foget-link > a{
  font-size: 14px;
  color:#4a96e8;
  font-family: 'ProximaNova-Regular', sans-serif;
  font-style: italic;
}

.register-width-box{
  min-width : 550px;
}



@media only screen and (max-width: 768px) {

  .register-width-box{
    min-width : unset;
    max-width: 100%;
  }

  .fa-shopping-basket, .fa-child{
    font-size: 16px !important;
  }

  .member-login{
      padding: 20px !important;
  }
  

}


.home-banner{
    min-height: 1030px;
    margin-top: -80px;
}

.container.wide{
    max-width: 90%;
}

.main-btn.banner{
    font-size: 16px;
    font-weight: bold;
}

.main-btn{
    background-color: var(--corecolor);
    color: #fff;
    font-weight: 500;
    border-radius: 0;
    font-size: 14px;
    padding: 8px 15px;
	cursor : pointer;
}

.banner-content{
    margin-top: 20%;
}

.banner-content .home-banner-title{
    font-weight: bold;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--corecolor);
}

.main-section-01{
    margin-top: -125px;
}

.product-detail-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--gray);
}

.product-title.intro , .product-price.intro{
    font-weight: bold;
}

.review-rating{
    margin-bottom: 15px;
    color: var(--corecolor);
}

.feature-product-wrapper{
    padding: 15px;
}

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

    .brand-upper-text{
    position: relative !important;

    }

    .brand-lower-text{
    position: relative !important;

    }

}
/*Chat with us mobile fixed nav*/
/* Chat with us*/
.chat-us-bold-text {
  font-weight: 600;
  color:#000;
  margin-inline: 5px;
}
.chat-with-us-text {
    position: fixed;
    bottom: 100px;
    right: 100px;
    z-index: 9999;
    text-align: center;
    color:#818589;
    cursor: pointer;
    border: 0;
    border-radius: 50px;
    text-decoration: none;
    opacity: 1;
    transition: opacity 1s ease-out, background-color 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-text-color);
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
     box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0px;
}

#chat-with-us{
    position: fixed;
    bottom: 100px;
    right: 40px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    text-align: center;
    background:#25D366;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 50px;
    text-decoration: none;
    opacity: 1;
    transition: opacity 1s ease-out, background-color 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
#chat-with-us:hover {
    background:#25D366;
}
#chat-with-us.show {
    opacity: 1;
}

#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: var(--corecolor);
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    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 */

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

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

.my-cart.show{
    transform: translate(0px);
}

.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: #ed1c24;
}

.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(--corecolor);
    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{
    
    cursor: pointer;
    background-color: white;
    border:none;
}
.btn_cart_right_voucher{
    cursor: pointer;
    background-color: white;
    border:none;
}
/* for right cart */

.breadcrumbs{
    margin-top: 25px;
    margin-bottom: 35px;
}

.breadcrumbs a{
	color : initial;
}

/* 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 : #ED1B23;
	color : #ffffff;
	padding : 2px 5px;
	text-align : center;
}
.filter-range::placeholder{
    color : #ffffff;

}
#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;
}

.preimage-box img{
    max-width: 125px;
}

@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;
    margin-bottom: 0;
}

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

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

.client-account-side-nav.active{
    /* color: #2b1000 !important; */
    color: #000 !important;
    /* background-color: #f3f3f3; */
}
/* 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;
}

.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 : 80px;
    width: 100%;
	border : 1px solid #f3f3f3;
}

.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;
    border-radius : 0px;
    border: 1px solid #d2d2d2;
}

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

.form-control{
    border-radius: 0;
    padding: 10px
}

.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;
}

.cart-title{
    font-size: 1.5rem;
    font-weight: bold;
}

.checkout-title{
    font-weight: bold;
    font-size: 16px;
}

.checkout-table{
	width : 100%;
}

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

.checkout-table tr{
    border-bottom: 1px solid #000;
}

.checkout-table tr td{
    padding-bottom: 25px;
    padding-top: 25px;
    padding-left: 10px;
    padding-right: 10px;
}

.checkout-table tr td:first-child{
    padding-left: 0px;
    padding-right:0px;
}

.checkout-table .product-remarks-button{
    margin-top: 10px;
}

.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;
}

.checkout-suggestion-img{
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.mobile-hide{
    display:block !important;
}

.mobile-show{
    display:none !important;
}

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

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

    .mobile-hide-home{
        display:none !important;
    }

    .mobile-show-home{
        display:block !important;
    }

}

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

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

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

    .mobile-show{
        display:block !important;
    }

}

@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;
}

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

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

/*End of Checkout*/

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

.header-custom-title{
    font-size: 30px;
    font-weight: bold !important;
    color: #ed1c24;
}

.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%;
	font-size: 20px;
}

.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: 30% !important;
    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: 30% !important;
    font-size: 30px;
    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-product,
.cart-quantity-group-product,
.cart-right-quantity-group{
    position: relative;
}

.quantity-wrapper-product .quantity,
.cart-quantity-group-product .quantity,
.cart_right_quantity_product{
    border: 0;
    text-align: center;
    /*width: 100%;*/
    width: 20%;
    font-size: 24px;
}

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

.quantity-wrapper-product .input-number-increment-product,
.cart-quantity-group-product .cart_increase_btn,
.cart-right-quantity-group-product .cart_right_increase_btn{
    all: unset;
    position: absolute;
    top: 20%;
    font-size: 30px;
    right:80%;
    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-product .input-number-decrement-product,
.cart-quantity-group-product .cart_decrease_btn,
.cart-right-quantity-group-product .cart_right_decrease_btn{
    all: unset;
    position: absolute;
    top: 20%;
    font-size: 30px;
    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; */
    background-color: #ed1c24 !important;
    border: 1px solid #ed1c24 !important;
}
/* 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 : inline-block;
}
.input-number {
  width: 70px;
  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: var(--corecolor);
    color: #fff;
    border: 1px solid var(--corecolor);
    /* 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;
    /* margin-top: 15px; */
    position: relative;
    text-align: center;
}

.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: #ed1b25;
  color: #fff;
  background-color: #ed1b25;
}

.radio-label input[type="radio"]:checked+span.radio-label-text {
    border-color: #4CAF50;
}

.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: #4CAF50;
    border-top-color: #4CAF50;
}

/* product page */

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

.img-border-style{
  /*border: 1px solid #e4e4e4;*/
  border-radius: 5px;
  /* height: 135px; */			/* 2021-12-10 comment by j */
  height: 100%;
}

.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;
	top: 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: #ed1c24;
	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;
    padding-bottom: 15px ;
	border-bottom: 1px solid #d2d2d2;
}

.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;
    object-fit: contain;
    border: 0;
    margin: 0 auto;
}

.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-gateway-wrapper{
    justify-content: space-between
}

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

.payment-method-label .card {
    border: 0;
    background-color: transparent
}

.payment-method-label .card img{
    width: 50%;
    margin: 0 auto
}

.payment-method-label.active {
    background-color: var(--dark-gray);
	/*background-color: var(--corecolor);*/
	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: #fff;
	display: flex;
	justify-content: space-between;
	padding: 15px;
	font-size: 14px;
}

.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: #fff;
	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;
}

.contain-template-wrapper{
	background-color : #f5f5f5;
}

/* 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(--corecolor) !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 */

/*footer css*/
.footer-items-menu ul{
  display: inline-grid;
  grid-template-rows: repeat(11, auto);
  grid-auto-flow: column;
  font-size: 12px;
}

.footer-items-menu :not(.customer-service) ul li {
  padding-bottom: 10px;
  width:125px;
  padding-right: 10px;
}

.footer-items-menu ul li a{
  color:black;
}

.footer-items-menu ul li a:hover{
  text-decoration: none;
}

.customer-service ul li{
  padding-bottom: 10px;
}

.customer-service ul{
  font-size: 12px;
}

.footer-copyright{
  font-size: 12px;

}

.flex-align-center{
  align-items: center;
}

.service-container{
  /* display:inline-flex;
  font-weight: bold;
  vertical-align: middle;
  align-items: center; */
  width: 15%;
  padding: 0 20px;
}

.service-image{
  width:50%;
  flex: 1;
  text-align: center;
  padding-right: 10px;
}

.service-title{
  flex: 1;
  text-align: left;
  font-size: 12px;
  width: 50%;
}

.mobile-break-service{
  display: none;
}

.line-break {
  width: 100%;
}

.padding-lr{
  padding: 0 5%;
}

.padding-r{
  padding-right: 20px;
}

.footer-copyright{
    background-color: #eb1b23;
    color: white;
    padding-top: 8px;
    padding-bottom: 8px;
}

@media only screen and (max-width: 768px) {
 .footer-items-menu .brands{
  display: inline-grid;
  /* grid-template-rows: repeat(5, auto); */
  grid-auto-flow: column;
  text-align:left;
}

.footer-items-menu .categories{
  display: inline-grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  text-align:left;
}

.footer-items-menu .quick-link{
  display: inline-grid;
  grid-template-rows: repeat(7, auto);
  grid-auto-flow: column;
  text-align:left;
}

.footer-items-menu h5{
  text-align:left;
}

.footer-items-menu ul{
  float:left;
}

.footer-items-menu ul li{
  text-align:left;
}

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

.service-container{
  text-align: center;
  width: 40%;
  padding: 10px 5px;
}

.mobile-break-service{
  display: block;
}

}

 @media only screen and (min-width: 768px) and (max-width: 1080px) {

.footer-items-menu .brands .footer-listing{
  display: inline-grid;
  grid-template-rows: repeat(16, auto);
  grid-auto-flow: column;
  text-align:left;
}

.footer-items-menu .categories .footer-listing{
  display: inline-grid;
  grid-template-rows: repeat(100, auto);
  grid-auto-flow: column;
  text-align:left;
}

.footer-items-menu .quick-link .footer-listing{
  display: inline-grid;
  grid-template-rows: repeat(100, auto);
  grid-auto-flow: column;
  text-align:left;
}
}

/*footer css*/


.inner-product-category-list{
    list-style-type:none;
    padding: 0;
    height:212px;
    overflow: auto;
}

.category-sub-navigation-content{
    margin-left: 15px;
}

.inner-product-brand-list{
    list-style-type:none;
    padding: 0;
    height:310px;
    overflow: auto;
}

.brand-sub-navigation-content{
    margin-left: 15px;
}

.product-title{
    margin-top: 10px;
    margin-bottom: 5px;
}

/*.pagination > .active{
    background-color: #ed1c24;
    color:white;
}*/

.page-item.active > a{
  color: white;
}

/*.pagination > .page-item{
    padding:10px 20px;
    margin:35px 10px 20px 0px;
}*/

/* .navigation-arrow{
    padding:10px 20px;
} */

#container_product_detail > a {
    color: initial;

}

#container_product_detail > a:hover {
     text-decoration: none;
}

.product-sub-image-container{
    height:100px;
}

.product-detail-title{
    font-size:24px;
}

.product-tmt-ori-price,
span#price_tag{
  font-family: 'ProximaNova-Bold', sans-serif;
}

.pwp-product-title{
  font-size:16px;
  font-family:'ProximaNova-Bold', sans-serif;
}

.pwp-lable-text{
  font-size: 14px;
  display: flex;
  align-items: baseline;
}

input[type="radio"], input[type="checkbox"]{
  margin: 10px 10px 10px 0px;
}

.round-background{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: inline-block;
}

.round-background.active{
    border:6px solid #ED1B23;
}

.round-background > input{
    display: none;
}

.description-title{
    border-color:#fff #fff #dee2e6 !important;
}

#product_tab_description{
    overflow: hidden;
}

.product_description_height{
    height: 2000px;

}

.description-read-more:hover{
    cursor: pointer;
}

.product-brand > div > a{
    color:initial;
}

.product-brand > div > a:hover {
     text-decoration: none;
}

.btn-view-more{
    background-color: #ed1c24;
    color:#fff;
}

.text-uppercase{
    text-transform: uppercase !important;
}

.brand-upper-text{
    position: absolute;
    top: 20%;
    left: 0;
    bottom: 0;
    right: 0;
    margin : auto;
    z-index: 50;
}

.brand-upper-text > btn {
    border: groove;
    border-radius: 5px;
}


.brand-lower-text{
    position: absolute;
    top:23%;
    left: 0;
    bottom: 0;
    right: 0;
    margin : auto;
    z-index: 50;
}

.brand-lower-text > btn {
    border: groove;
    border-radius: 5px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
    border-radius:20px;
}

.ui-slider-range.ui-corner-all.ui-widget-header {
    background-color: #333;
}

#accordion_category > li{
    cursor: pointer;
}

#accordion_category > li input{
    cursor: pointer;
}

#accordion_brand > li{
    cursor: pointer;
}

#accordion_brand > li input{
    cursor: pointer;
}

.collection-title{
    cursor: pointer;
}

.padding-lr > .row{
    margin: 0;
}


.shipping_error.red{
    background-color: transparent!important;
    color: red !important;
    font-size: 14px;
    font-style: italic;
    margin-top: 25px;
}

.footer-listing{
    padding-left: 0;
    list-style: none;
}

.owl-carousel .owl-item{
    overflow-x: unset !important;
}

/*price range*/
.form-price-range-filter{
  /*display: none;*/
}

.form-price-range-filter .slider-range {
    width: 98%;
    margin-left: 5px;
    height: 7px;
    background-color: #2c2c2c;
    position: relative;
    border-radius: 50px;
}
.form-price-range-filter .slider-range .ui-slider-range {
  position: absolute;
  height: 100%;
  top: 0;
  background-color: #333;
}
.form-price-range-filter .slider-range .ui-slider-handle {
  background-color: #333;
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50px;
  display: block;
  top: -5px;
  transition: none;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.15);
}
.form-price-range-filter input {
  border: none;
  font-size: 14px;
  color: #777;
  font-weight: 500;
}

.form-price-range-filter .slider-range-mobile {
  width: 96%;
  height: 7px;
  margin: 7px 0;
  background-color: #2c2c2c;
  position: relative;
  border-radius: 50px;
}
.form-price-range-filter .slider-range-mobile .ui-slider-range-mobile {
  position: absolute;
  height: 100%;
  top: 0;
  background-color: #333;
}
.form-price-range-filter .slider-range-mobile .ui-slider-handle {
  background-color: #333;
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50px;
  display: block;
  top: -5px;
  transition: none;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.15);
}


@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .form-price-range-filter input {
    width: 100%;
    font-size: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .form-price-range-filter input {
    width: 100%;
    font-size: 8px;
  }
}

.form-price-range-filter .price-range-button {
  float: right;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  text-transform: uppercase;
}

.mobile-price-amount{
    width: 100%;
}

/* Tooltip container */
.tooltip-message {
  position: relative;
  display: inline-block;
   /*border-bottom: 1px dotted black; If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip-message .tooltiptext {
  visibility: hidden;
  width: width:100%;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  font-size: 12px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-message:hover .tooltiptext {
    transition: visibility  0s linear 3s;
  visibility: visible;
}

.order-details-inner .delivery-title {
    display: flex;
    justify-content: space-between;
}

.background-red {
    color: #ed1c24 !important;
}

.payment-gateway-total-payment{
    font-size: 15px;
}

.payment-gateway-total-payment tr td{
    padding:10px;
}

.custom-top-border{
    border-top :1px solid #bfbfbf !important;
}

.add-margin-btm{
    margin-bottom: 20px;
}

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

@media (max-width:767px){
    .payment-method-label{
        width: 100%
    }
}