@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
    margin: 0;
    padding: 0;
}

:root {
  --primary-color: #2a3177;
  --gray-light: #f7f7f7;
  --danger-color: #bf2131;

  /* typography  */

  --f-size-34: 34px;
  --f-size-28: 28px;
  --f-size-14: 14px;
  --f-size-13: 13px;
  --f-size-12: 12px;
  --f-size-16: 16px;
  --f-size-18: 18px;
  --f-size-10: 10px;

  /* spacing  */

  --space-single-60: 60px;
  --space-60: 60px 0;
  --space-30: 30px 0;
  --space-single-30: 30px;
  --space-single-90: 90px;
  --space-90: 90px 0;
  --space-single-25: 25px;
  --space-25: 25px 0;
}

.container-lg {
  max-width: 1358px;
  margin: auto;
}

/* colors classes  */

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-danger {
  background-color: var(--danger-color) !important;
}

.bg-gray-light { 
    background-color: var(--gray-light) !important;
}

.color-danger { 
color: var(--danger-color);
}

/* font size clasases  */

.f-size-34 {
  font-size: var(--f-size-34);
}

.f-size-28 {
  font-size: var(--f-size-28);
}

.f-size-14 {
  font-size: var(--f-size-14);
}

.f-size-13 {
  font-size: var(--f-size-13);
}

.f-size-12 {
    font-size: var(--f-size-12);
  }
  

.f-size-16 {
  font-size: var(--f-size-16);
}

.f-size-18 {
  font-size: var(--f-size-18);
}

.f-size-10 {
  font-size: var(--f-size-10);
}

/* spacing classes  */

.space-60 {
  padding: var(--space-60);
}

.space-pt-60 {
  padding-top: var(--space-single-60);
}

.space-30 {
  padding: var(--space-30);
}

.space-mt-30 { 
    margin-top: 30px;
}

.space-pt-30 {
  padding-top: var(--space-single-30);
}

.space-90 {
  padding: var(--space-90);
}

.space-pt-90 {
  padding-top: var(--space-single-90);
}

.space-25 {
  padding: var(--space-25);
}

.space-m-25 {
    margin: var(--space-25);
  }

.space-pt-25 {
  padding-top: var(--space-single-25);
}

/* font family classes  */

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* sign in page css  */

#signin .logo {
  width: 356px;
}

.sign-in-form {
  border-radius: 55px;
  padding: 42px 52px 70px 52px;
  width: 618px;
  margin: auto;
}

.sign-in-form h4 {
  text-transform: uppercase;
}

.sign-in-form .form-group input {
  box-shadow: 0 0 25% #333333;
  height: 56px;
  color: #636364;
  border-radius: 12px;
}

.sign-in-form button {
  border-radius: 12px;
  height: 56px;
}

/* product page css   */

#product-page a:hover {
  text-decoration: none;
}

#product-page .border-left {
  border-left: 2px solid var(--primary) !important;
}

#product-page .sidebar {
  top: 0;
  left: 0;
  z-index: 100;
  overflow-y: auto;
}

#product-page .sidebar::-webkit-scrollbar { 
    display: none;
}

#product-page .overlay {
  background-color: rgb(0 0 0 / 45%);
  z-index: 99;
}



/* sidebar css  */

#sidebar { 
    padding: 30px 14px;
    max-width: 264px;
}

.sidebar-logo { 
    width: 204px;
    margin: auto;
}

.product-panel { 
    border-radius: 10px;
    height: 44px;
    padding-left: 25px;
}

.product-panel img { 
    width: 22px;
    height: 22px;
    margin-right: 30px;
}

#accordionCategories .myaccordion .form-check-input  {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    width: 14px;
    height: 14px;
}

#accordionCategories .card-header  { 
    padding: 0 !important;
    background-color: var(--primary-color);
    
}

.sidebar-accordion .card {
    margin-bottom: 0px;
}

.sidebar-accordion .card .btn-link  { 
    padding-left: 15px !important;
}  

.sidebar-accordion .card .sidebar-innerButton { 
    padding-left: 0 !important;
    text-align: left;
}

/* .sidebar-accordion .card .btn-link.collapsed .accordion-dropIcon {
    transform: rotate(0deg);
} */

.product-status::after{
    display: none;
}

/* .sidebar-accordion  {
    width: 254px;
} */

.accordion-dropIcon {
    width: 18px;
    
}

#accordionCategories .myaccordion [type="radio"]:checked+label:after {
    background-color: red;
    border: 2px solid red;
    
  }



.breadcrumb a {
    color: #333333;
}

#pe_products-page-section .pe_product-wrap-middle-txt p {
    font-weight: 600;
    font-size: 18px;
}

#pe_products-page-section .pe_shop-by {
    padding: 0 0 16px 0;
}

#pe_products-page-section .pe_shop-by p {
    font-size: 20px;
    font-weight: 500;
    position: relative;
    
    color: var(--primary-color);
}

.sidebar-items {
    margin-bottom: 0;
}

.sidebar-items a {
    padding-left: 20px !important;
}


#pe_products-page-section .pe_price {
    padding: 20px 0 0 0;
}

#pe_products-page-section .pe_price p {
    font-size: 30px;
    font-weight: 700;
}

#pe_products-page-section .pe_search p {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2dfdd;
}

#pe_products-page-section .pe_home a:hover {
    color: #bf1e2e;
}

#pe_products-page-section .fa-angle-right::before {
    content: "\f105";
}

#pe_products-page-section .pe_home li p {
    text-transform: uppercase;
}

#pe_products-page-section .dark-btn2 {
    background: #bf1e2e;
    border-color: #bf1e2e;
    padding: 10px 22px;
    border-radius: 10px;
}

#pe_products-page-section .dark-btn2:hover {
    color: #fff;
    background-color: #e35664;
    border-color: #e35664;

}

#pe_products-page-section .dark-btn2:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #bf1e2e;
    border-color: #bf1e2e;
}

#pe_products-page-section .dark-btn2:focus {
    color: #fff;
    background-color: #bf1e2e;
    border-color: #bf1e2e;
    box-shadow: none;
}

#pe_products-page-section .dark-btn2:not(:disabled):not(.disabled):active:focus {
    box-shadow: none;
}

#pe_products-page-section .btn:focus {
    outline: 0;
    box-shadow: none;
}

#pe_products-page-section .pe_home a {
    font-weight: 600;
}

#pe_products-page-section .pe_home {
    padding: 20px 0;
}

#pe_products-page-section .pe_product-head {
    border-bottom: 10px solid #cccccc2e;
}

#pe_products-page-section .pe_product-head h6 {
    text-align: center;
    font-weight: 700;
    line-height: 25px;
    padding: 10px 0;
    background: #ccc;
    border-radius: 8px 8px 0 0;
}

#pe_products-page-section .myaccordion {
    width: 100%;
    box-shadow: none;
    border: transparent;
    border-radius: 8px;
}

/*#pe_products-page-section .collapse.show {
            padding: 0 15px;
        }*/

#pe_products-page-section .myaccordion .card-body {
    padding: 10px 15px;
}

#pe_products-page-section .myaccordion .card:last-child .card-header {
    border: none;
}
/*#pe_products-page-section .myaccordion .search-brand {
text-transform: uppercase;
}*/
#pe_products-page-section .myaccordion .card {
  border: none;
  border-radius: 10px;
    overflow: hidden;

}

#pe_products-page-section .myaccordion .card-header {
    border-bottom-color: transparent;
    background: transparent;
    padding: 10px 15px;

	
}
/*#accordionCategories.myaccordion .card:nth-child(2) {
    display: none;
}
*/
#pe_products-page-section .myaccordion .card-header-1 {
    border-bottom: 1px solid #ced4da;
    background: transparent;
    padding: 10px 15px;
}

.myaccordion .btn-link:hover,
.myaccordion .btn-link:focus {
    text-decoration: none;
}

#pe_products-page-section .myaccordion li+li {
    margin-top: 10px;
}

#pe_products-page-section .myaccordion .btn {
    width: 100%;
    font-weight: 500;
    color: #000;
    padding: 0;
    /* font-size: 18px; */
}

#pe_products-page-section .myaccordion .card button.btn.btn-link.collapsed,
#pe_products-page-section .myaccordion .card button.btn.btn-link {
    display: block !important;
    text-align: right;
    width: 20%;
}

#pe_products-page-section .myaccordion .btn:not(.collapsed) .fa-angle-down:before {
    content: "\f106"
}

.card-header .btn {
    font-size: 16px;
}

#pe_products-page-section .myaccordion .light-btn {
    color: #313373;
    font-weight: 600;
}

#pe_products-page-section .myaccordion .fa-stack {
    font-size: 16px;
    color: transparent;
}

#pe_products-page-section .fa-inverse {
    color: #000;
    font-size: 25px;
}

#pe_products-page-section .fa-inverse:hover {
    color: #bf1e2e;
}

#pe_products-page-section .sidebar-items-style {
    border-bottom: 1px solid #F0F0F0 !important;
    padding: 0 12px !important;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: var(--gray-light) !important;
    
}

#pe_products-page-section .sidebar-items-style a { 
    padding-left: 0 !important;
    
}

.sidebar-items-style  a img { 
    height: 22px;
    width: 22px;
    object-fit: contain;
    display: inline-block;
}

.sidebar-items-style  a  p { 
    display: inline-block;
    margin-left: 20px;
}

#pe_products-page-section .card-header h2 { 
    width: 100% !important;
	padding:0 0 0 10px;
	align-items: center;
    justify-content: center;
}
#pe_products-page-section .card-header h2 input[type="checkbox"] {
    margin-right: 5px;
}



#pe_products-page-section .card-body {
    background: transparent;

}

#pe_products-page-section .card-body a {
    font-family: 'Poppins', sans-serif;
    color: #7e7c7c;
    font-size: 16px;
    /*font-weight: 500;*/
}

.sideNavaccordion-border  {
    position: relative;
    padding: 0 0 30px 0;    
    width: 100%;
}

.sideNavaccordion-border::after { 
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #D9D9D9;
    width: 253px;
    z-index: 999;
}

.product-wrap  {
    padding: 0;
    margin-top: 30px;
    border-radius: 10px;
}

.sideMainCategory { 
    width: 100%;
}


.product-description  {
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 14px 23px;
}

.product-description .product-title {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 7px;
}
 
.product-description .product-desc-content { 
   font-size: 14px;
   font-weight: 400;
   line-height: 25px;
}

.product-description .product-img {
  width: 72px;
}

.product-description .product-img img { 
    width: 100%;
    object-fit: cover;
}


.pe_product-sort-icon {
    padding-top: 5px;
    margin: 0 10px;
}

.pe_product-sort-icon a { 
    margin-right: 7px;
}

.pe_product-sort-icon img {
    width: 30px;
}

.pe_product-sort .form-inline {
    justify-content: end;
    margin-right: 10px;
}

#pe_products-page-section .pe_product-sort-icon .fa-th-large {
    font-size: 20px;
}

#pe_products-page-section .pe_product-sort-icon .fa-th-list {
    font-size: 20px;
    padding: 0 25px 0 10px;
}

.product-filter-bar {
    border: 1px solid #D9D9D9;
    padding: 10px 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.product-filter-bar .col-md-2,
.product-filter-bar .col-md-10 { 
    padding: 0;
}

.product-filter-bar .form-group  {
    margin-bottom: 0;
}

.product-filter-bar .form-control {
    border: 1px solid #D9D9D9 !important;
    border-radius: 5px !important;
    margin-left: 9px;
    height: 27px;
    padding-top: 0;
    width: 157px;
    padding-bottom: 0;
} 

.product-filter-bar .form-inline { 
    margin-left: 20px;
}


.product-page-wrap .card { 
   padding-top: 27px;
}

#product-pagination .pagination  {
    width: 100%;
    background-color: #fff;
    
    border: 1px solid #D8D8D8;
    border-radius: 6px;
    padding: 6px 0;
    margin-bottom: 30px;
}

#accordionCategories .collapsed .accordion-dropIcon { 
    transform: rotate(-90deg);
}

#accordionCategories  .accordion-dropIcon { 
    transform: rotate(-180deg);
}


#product-pagination .pagination .page-link {
    border: none;
    width: 30px;
    height: 28px;
    color: #333333;
    border-radius: 3px;
    background-color: #F4F4F4;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}

.pagination-active { 
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

#product-pagination .pagination .page-item {
    margin: 0 5px;
}

#product-pagination .pagination .pagination-prev,
#product-pagination .pagination .pagination-next {
   width: auto;

}


#pe_products-page-section .product-sidebarAccordion .sidebar-main-panel { 
    background-color: var(--primary-color);
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 40px;
    padding: 0 15px !important;
}

#pe_products-page-section .product-sidebarAccordion .sidebar-main-panel p { 
    color: #fff !important;
}

.checkbox-wrap { 
    background-color: var(--gray-light);
    padding: 0 12px;
    height: 52px;
    border-radius: 10px;
}



.checkbox-wrap label { 
    color: #494949 !important;
    margin-left: 20px ;
}

.checkbox-wrap input {
  width: 16px;
  height: 16px;
  
}

#checkbox-filter {
	flex-wrap: wrap;
	height:auto
}

#checkbox-filter.checkbox-wrap label {
margin-left:4px
}

.sidebar-items input { 
    width: 16px;
    height: 16px;
}

.brand-sidepanel .form-check-label {
    margin-left: 26px;
}

.brand-sidepanel {
    padding-bottom: 30px;
}

.content-panel {
    max-width: calc( 100% - 280px);
    
}

.content-wrap { 
    padding: 34px;
}

#open-sidebar img {
    width: 24px;
    height: 18px;
}

.header-search { 
    min-width: 360px;
    width: 100%;
    position: relative;
}

.header-search  input  {
    width: 100% !important;
    background-color: #F4F4F4;
    border-radius: 20px;
    border: none;
    margin-right: 0 !important;
}

.header-search img { 
    width: 20px;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
}


.cart-icon { 
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center  ;
  margin: 0 20px;
  background-color: var(--danger-color);
}

.cart-icon img { 
    width: 20px;
}

.logout-btn  {
    background: none;
    border: none;
    color: #8F8F8F;

}


.logout-btn img { 
    width: 19px;
    margin-right: 6px;
}

.filterbar {
    padding: 10px 10px 10px 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,5%);
    border-radius: 10px;
} 

.filterbar  .form-check-input { 
    width: 20px;
    height: 20px;
}

.filterbar h5 {
    margin-bottom: 0;
}


.filterbar .form-control { 
    width: 123px;
    height: 23px;
    padding: 0;
    border: 1px solid #222;
}

.filterbar .form-check-label {
 line-height: 30px;
}

.filterbar .selectbox { 
    margin-left: 30px;
}

.filterbar .selectbox label { 
    margin-bottom: 2px;
}

.filterbar .selectbox .form-control { 
    /*color: #C5C5C5;*/
    font-size: 12px;
}

.product-card-wrap { 
    margin-top: 27px;
    
}

.product-card-wrap .col-lg-3 { 
    margin-bottom: 28px;
}


.product-card-wrap .card { 
    border: 2px solid var(--primary-color);
    border-radius: 15px;
	overflow:hidden
}

.product-card-wrap .card-image { 
   width: auto;
    height: 157px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.product-card-wrap .card-image  img { 
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.product-card-wrap  .card-body { 
    border-top: 1.5px solid #E5E5E5;
    padding: 10px;
}

.product-card-wrap .card-title { 
    color: #333333;
	min-height:42px;
}

.product-card-wrap .card-text { 
    color: #333333;

}

.product-card-wrap .card-text span { 
    color: #636364;
}

.mobile-logo {
    display: none;
}

.navbar-wrap .header-search .form-control { 
    height: 48px;
    background-color: #EFEFEF;
    border-radius: 50px;
    padding: 0 18px;
}

 .mobile-search { 
    display: none;
} 

.product-card-select {
    margin-top: 10px;
}

.product-card-select .form-control {
  width: 48%;
  height: 22px;
  font-size: 10px;
  padding: 0;
  background-color: #FAFAFA;
  border: 0.5px solid #B1B1B1;
}

.add-cart-button { 
    background-color: var(--primary-color);
    color: #fff;
    width: 100%;
    border: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    height: 39px;
}


/* pagination  */

.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}

.pe_pagination .pagination {
    padding-top: 13px;
}

 .pe_pagination .page-item a.active {
    background: var(--danger-color);
    border-radius: 5px;
}

.pe_pagination .page-item {
    margin-left: 10px;
    margin-right: 10px;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.pe_pagination .page-item  a{ 
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.pe_pagination .page-item img { 
    width: 13px;
}



/* add cart css  */

#addCart .navbar-wrap .logo { 
    width: 204px;
} 


#addCart .product-header {
    padding: 16px 48px;
    clear: both;
    margin-top: 20px;
    background-color: #F3F3F3;
}

.prod-cont {
    display: flex;
    background: none;
    align-items: center;
    align-items: center;
    border-radius: 5px 5px 0 0;
}

.prod-cont ul {
    padding: 0;
    margin: 0;
    display: flex;
}

.prod-cont .blue-buttons {
    padding-right: 10px;
}

.prod-search {
    width: 40%;
}

.prod-title h3 {
    color: #D01F26;
    font-size: 36px
}

.prod-search input {
    border-radius: 50px;
    border: none;
    padding: 10px 20px;
    min-width: 300px;
    width: 60%;
}

.prod-search input:focus {
    border: none;
    outline: 0;
}

.page-search {
    margin-top: 15px;
}

.page-search #kws-search-box {
    border: 1px solid #555;
    border-radius: 5px;
    min-height: 40px;
    padding: 5px 10px;
}

#loadProducts_wrapper #loadProducts_filter,
#loadProducts_wrapper #loadProducts_info {
    text-align: left !important
}

#loadProducts_wrapper .row {
    align-items: center !important;
}

.table .bg-danger {
    background: #D01F26 !important
}

.table input[type="text"] {
    min-height: 40px;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: #fff;
    margin-bottom: 10px;
}


/* Category Tags */
.category-tags {
    text-align: center;
    padding: 50px 0 40px
}

.category-tags a {
    display: inline-block;
    cursor: pointer;
    font-weight: 500;
    padding: 5px 10px;
    line-height: 10px;
    color: #000;
    border-right: 1px solid #000
}

.category-tags a:last-child {
    border-right: none
}

.category-tags a:hover {
    color: #37539f
}


.add-cart-buttons {
    background-color: var(--primary-color);
    padding: 9px 19px;
    border-radius: 10px;
    color: #fff;
    text-transform: uppercase;
}

.add-cart-buttons:hover { 
    color: #fff;
}


.add-cart-table-head tr{ 
    background-color: var(--danger-color);
    box-shadow: none !important;
}

.add-cart-table-head tr th { 
    color: #fff;
    padding: 8px 0;
    
}

#addCart table {
    border-collapse: collapse;
}

.add-cart-table-head th {
    border: none !important ;
}

#addCart .mycart-table td:first-child,
#addCart .mycart-table th:first-child {
  border-radius: 10px 0 0 10px;
}
#addCart .mycart-table td:last-child,
#addCart .mycart-table th:last-child {
  border-radius: 0 10px 10px 0;
}
#addCart table .delete-icon {
    width: 23px;
    height: 23px;
}

#addCart table  tbody tr{ 
   background-color: #fff;
   border: 1px solid #E5E5E5;
}

#addCart table  tbody tr td { 
    vertical-align: middle;
}

/* Listing page */


#addCart tr {
    box-shadow: 0 2px 10px rgba(194, 190, 190, 0.2);
    -webkit-box-shadow: 0 2px 10px rgba(194, 190, 190, 0.2);
    -moz-box-shadow: 0 2px 10px rgba(194, 190, 190, 0.2);
    border-radius: 24px;
}

.mycart-table tr {
    box-shadow: 0 2px 10px rgba(194, 190, 190, 0.2);
    -webkit-box-shadow: 0 2px 10px rgba(194, 190, 190, 0.2);
    -moz-box-shadow: 0 2px 10px rgba(194, 190, 190, 0.2);
    border-radius: 24px;
    border: 1px solid #E5E5E5 !important;
    margin-bottom: 20px;
}

#addCart tr td {
    background: #fff;
    
    border: none;
}

.mycart-table tr td {
    background: #fff;
    color: #222;
    white-space: nowrap;
}

.mycart-table.enquiry-table tr td {
    white-space: normal;
}

#addCart tr td:first-child,
.mycart-table tr td:first-child,
.mycart-table tr th:first-child {
    border-radius: 20px 0 0 20px;
    border: none;
}

#addCart tr td:last-child,
.mycart-table tr td:last-child,
.mycart-table tr th:last-child {
    border-radius: 0 20px 20px 0;
}

#addCart tr td:nth-child(1) {
    background: #fff;
    max-width: 100px
}

.mycart-table tr th {
    background: #D01F26;
    color: #fff;
}

.mycart-table tr th {
    background: #D01F26;
    color: #fff;
    padding: 20px 10px;
}

#addCart .mycart-table {
    border-collapse: separate;
    border-spacing: 0 30px;
    padding: 0 40px;
}

.total-cart {
    padding: 0 40px;
}

/* table sm css  */

.table-sm-show { 
    display: none;
}


.table-sm-show .card-image img {
    width: 100%;
    object-fit: contain; 
}

.table-sm-show .card { 
    display: flex;
    border: none;
}

.table-sm-show .card-image { 
    width: 29%;
    border-right: 1px solid #2A3177;
}


.table-sm-show .card-body { 
    width: 69%;
    
}

.table-sm-show .card-border { 
    border: 1px solid var(--primary-color);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top: none;
    overflow: hidden;
}

.table-sm-show .card-body p {
    margin-bottom: 8px;
    
}

.table-sm-show .card-body span { 
    color: #636364;
}

.text-divider { 
    width: 2px;
    height: 16px;
    background-color: #333333;
    margin: 0 6px;
    margin-bottom: 8px;
}

.table-sm-show .card-title {
    background-color: var(--danger-color);
    color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.table-sm-show .delete-icon { 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    z-index: 1;
    width: 33px;
    height: 33px;
}

.prmo-bar.poppins-medium {
       position: absolute;
    background: #bf2131;
    color: #fff;
    padding: 3px 10px;
    font-size: 15px;
    line-height: 20px;
}

.product-card-wrap .card.prom-card { border-color:#bf2131}
.product-card-wrap .card.prom-card .add-cart-button {background:#bf2131}

#product-page .product-card-wrap .card-title{
	-webkit-line-clamp: 2;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    min-height: 40px;
}

.bg-primary-clear {
	background:var(--danger-color) !important;
	display: inline-block;
    padding: 10px 20px;
    color: #fff;
    border-radius: 9px;
    text-transform: capitalize;
	font-size:14px;
}
.bg-primary-clear:hover {
	color: #fff;
}
.cart-icon {
	position:relative
}
#cartCount {
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    text-align: center;
    color: #222;
    line-height: 19px;
    font-size: 13px;
    position: absolute;
    top: -10px;
    right: -2px;
    border: 1px solid #2a3177;
}

div#myModal .modal-content {
    max-width: 600px;
    margin: auto;
	position:relative;
	    border-radius: 15px;
    overflow: hidden;
}

div#myModal .modal-content span.close.modal-close {
    position: absolute;
    right: 10px;
}

/* Filter Options */

.pe-tag {
    background: #ddd9d9;
    padding: 2px 6px;
    border-radius: 5px;
    color: #000;
    margin: 0 4px 10px 0px !important;
    font-size: 12px;
    display: inline-block;
  }

.filter-options {
    max-width: 50%;
    padding: 0;
}

