@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-size: 16px;
  line-height: 1.6;
  color: #1C1C1C;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:"slnt" 0;
}

a {
  outline: none;
  display: block;
}

p {
  color: #1C1C1C;
  font-weight: 400;
}

img {
  max-width: 100%;
}

a,
a:hover {
  text-decoration: none;
  transition: all 0.3s;
}

button,
select {
  outline: none;
  transition: all 0.3s;
}

ul,
ol {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0 0 15px;
}

a,
button {
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.container {
  max-width: 1570px;
}
.header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin: 0;
}
.search-col {
    width: 58%;
    padding: 0 25px;
}
.search-top {
    display: flex;
}
.search-btn {
    border: none;
    background: #1C1C1C;
    color: #fff;
    height: 48px;
    width: 133px;
    text-align: center;
    outline: none;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}
.search-top .form-select {
    width: 190px;
    border: 1px solid #1C1C1C;
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
}
.search-top input[type="text"] {
    width: calc(100% - 230px);
    border: 1px solid #1C1C1C;
    outline: none;
    border-radius: 8px 0 0 8px;
    padding: 0 15px;
    margin-right: -1px;
}
.right-col p {
    margin: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.right-col p i {
    vertical-align: middle;
    margin-right: 7px;
}
.right-col p a {
    color: #1C1C1C;
}

/* normal menu css */

.main_menu > ul > li {
  display: inline-block;
  position: relative;
  margin: 0 -2px;
}
.main_menu ul li {
  position: relative;
}

.main_menu ul li a {
  font-size: 16px;
  color: #1C1C1C;
  padding: 18px 25px;
  display: block;
  font-weight: 400;
}

/*.main_menu ul li .active,
.main_menu ul li:hover > a {
  color: var(--hover-color);
}*/
/* Normal Dropdown menu */
.main_menu ul li ul {
  width: 200px;
  background: #fff;
  transition: 0.5s;
  box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
}

.main_menu ul li ul li a {
  padding: 10px 25px;
  font-size: 15px;
}
.main_menu ul li ul li a i {
  float: right;
}

.main_menu ul li ul li ul {
  left: 100%;
  top: 0;
}

/* mega menu css */
.mega_menu_dropdown {
  position: static !important;
}
.mega_menu {
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  transition: 0.5s;
}
.mega_menu_item {
  width: 25%;
  padding: 30px 20px;
}
.main_menu ul li .mega_menu_item a {
  padding: 10px 0;
}

.main_menu ul li .mega_menu_item a:hover {
  color: var(--hover-color);
}
.mega_menu_item h3 {
  margin-bottom: 15px;
  font-size: 22px;
}
.mega_menu_item img {
  width: 100%;
}

/* demo_2 css */
.mega_menu_demo_2 .mega_menu {
  left: 50%;
  transform: translateX(-50%);
  width: 1140px;
}

.mobile_btn {
  display: none;
}

/* responsive css */
/* @media (min-width: 992px) and (max-width: 1199.98px) {
  .mega_menu_demo_2 .mega_menu {
    width: 940px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    width: 720px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 700px;
  }
  .main_menu ul li a {
    font-size: 15px;
    padding: 20px 16px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
} */
@media (min-width: 992px) {
  .main_menu ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 5px;
  }
  .main_menu ul li .mega_menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 0;
  }
  .main_menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    z-index: 99;
  }
  .main_menu ul li:hover > .mega_menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    z-index: 99;
  }
}

@media (max-width: 991px) {
  .mega_menu_demo_2 .mega_menu,
  .container {
    width: 100%;
  }

  nav {
    padding: 15px;
  }
  .mobile_btn {
    cursor: pointer;
    display: block;
  }
 
  .main_menu {
    display: none;
    width: 100%;
  }

  .main_menu ul li {
    border-bottom: 1px solid #ddd;    
    display: block;
  }
  .main_menu ul li a i {
    position: absolute;
    width: 10%;
    text-align: end;
    right: 0px;
    height: 20px;
  }
  .main_menu ul li a {
    position: relative;
    width: 95%;
    /*border-bottom: 1px solid #ddd;*/
  }
  .main_menu ul li ul {
    width: 100%;
  }
  .main_menu ul li ul li ul {
    left: 0;
    top: auto;
  }

  .mega_menu .mega_menu_item {
    width: 50%;
  }
  .main_menu ul li ul {
    display: none;
    transition: none;
  }
  .main_menu ul li .mega_menu {
    display: none;
    transition: none;
  }

  .mega_menu_demo_2 .mega_menu {
    transform: translateX(0);
  }
  .banner-sec {
    padding-top: 90px;
}
.search-col {
    width: 100%;
    padding: 0;
}
.main_menu ul li a{
  width: 100%;
}
}

@media (max-width: 575.98px) {
  .mega_menu .mega_menu_item {
    width: 100%;
  }
}
/* ----------------menu css end----------- */
.top-menu {
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #2d271c;
}
.main_menu > ul > li {
  /*border-left: 1px solid #E0E0E0;*/
}
.main_menu > ul > li:first-child {
  border-left: none;
}
.main_menu > ul > li:first-child > a {
  padding-left: 0;
}
.main_menu > ul > li:first-child > a i {
  margin-right: 7px;
}
.body-bg {
  background: url(../images/body-bg.png) no-repeat center top #202020;
  background-attachment: fixed;
  padding-top: 0px !important;
}
.sec {
  padding: 40px 0;
}
.banner-sec {
  padding-top: 60px;
}
.banner-box {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}
.banner-left {
  padding: 10px;
  width: 22.5%;
  overflow: hidden;
}
.banner-cen {
  padding: 10px;
  width: 59%;
  position: relative;
  overflow: hidden;
}
.banner-right {
  width: 18.5%;
  overflow: hidden;
}
.banner-right-in {
  padding: 10px;
}
.banner-cen img, .banner-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
}
.banner-right-in img {
  width: 100%;
  transition: 0.3s;
  cursor: pointer;
}
.banner-right-in img:hover, .banner-cen img:hover, .banner-left img:hover {
  opacity: 0.8;
  transform: scale(1.03);
}
.items-sec h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 20px;
}
.items-box {
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(65.94deg, #FDBA36 1.56%, #FFF599 48.19%, #C78C0E 100%);
  overflow: hidden;
}
.items-pro {
  width: calc(16.66% - 2px);
  padding: 25px;
  text-align: center;
  background: #fff;
  margin-left: 2px;
}
.items-pro:first-child {
  width: 16.66%;
  margin-left: 0;
}
.view-btn {
  background: linear-gradient(90deg, #00B517 0%, #008B12 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  padding: 8px;
  border-radius: 8px;
  margin: 15px 0;
}
.view-btn:hover {
  background: linear-gradient(90deg, #008B12 0%, #00B517 100%);
  color: #fff;
}
.cen-caps {
  position: absolute;
  right: 7%;
  top: 40%;
  text-align: center;
}
.pro-box-in img {
  border: 1px solid #FFF599;
  background: #fff;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.pro-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.pro-box-right {
  width: 33%;
  padding: 0;
}
.pro-box-left {
  width: 67%;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
}
.pro-box-left .pro-box-in {
  width: 50%;
  height: 344px;
  padding: 15px;
}
.pro-box-right .pro-box-in {
  padding: 20px 10px;
}
.pro-box-left .pro-box-in a {
  height: 100%;
}
.rec-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1%;
}
.rec-pro {
  width: 18%;
  margin: 0 1% 25px;
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s;
}
.rec-pro .items-pro-img {
  margin-bottom: 15px;
}
.rec-pro a {
  color: #1C1C1C;
}
.slider-img img {
  border: 1px solid #fdc64b;
  border-radius: 8px;
}
.footer {
  background: #1C1C1C;
  padding-top: 50px;
}
.footer-left p {
  color: #fff;
  max-width: 300px;
  margin: 15px 0;
  font-size: 14px;
}
ul.social-link {
  display: flex;
  column-gap: 12px;
}
ul.social-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #BDC4CD;
  color: #1C1C1C;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
}
.footer h4 {
  font-size: 16px;
  color: #FFBF41;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 15px;
}
ul.footer-nav {
  font-size: 14px;
  color: #fff;
}
ul.footer-nav a {
  font-size: 14px;
  color: #fff;
  line-height: 2;
}
.footer-bottom {
  background: #242424;
  padding: 15px 0;
  margin-top: 30px;
}
.footer-bottom p {
  margin: 0;
  color: #8B96A5;
  text-align: center;
}
.custom-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 25px;
}
.custom-head h3 {
  margin: 0;
}
.custom-btn {
  color: #1C1C1C;
  background: linear-gradient(65.94deg, #FDBA36 1.56%, #FFF599 48.19%, #C78C0E 100%);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
}
.custom-btn:hover {
  color: #1C1C1C;
  background: linear-gradient(65.94deg, #C78C0E 1.56%, #FFF599 48.19%, #FDBA36 100%);
}
.main_menu ul li a:hover {
  color: #FFBF41;
}
ul.footer-nav a:hover {
  color: #FFBF41;
}
ul.social-link a:hover {
  background: #FFBF41;
}
.items-pro-img, .pro-box-left .pro-box-in a {
  overflow: hidden;
}
.items-pro-img img, .pro-box-left .pro-box-in a img, .pro-box-in img, .img-lg img {
  transition: 0.3s;
}
.items-pro-img img:hover {
  transform: scale(1.1);
}
.pro-box-left .pro-box-in a img:hover, .pro-box-in img:hover {
  opacity: 0.6;
}
.pro-box-left .pro-box-in a:hover, .pro-box-right .pro-box-in img:hover, .img-lg img:hover {
  transform: scale(1.03);
}
.img-lg {
  position: relative;
}
.img-lg:after {
  position: absolute;
  content: "";
  width: 130px;
  height: 8px;
  background: #585858;
  border-radius: 50%;
  opacity: 1;
  filter: opacity(0.5);
  box-shadow: 0 0 12px rgb(255 255 255 / 50%);
  bottom: 25px;
  right: 17%;
}
.bredcrumb ul {
  display: flex;
  column-gap: 25px;
  margin: 0 0 10px;
}
.bredcrumb ul li {
  position: relative;
}
.bredcrumb ul li a {
  color: #DEE2E7;
}
.bredcrumb ul li a:hover {
  color: #FFBF41;
}
.bredcrumb ul li:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  transform: rotate(-45deg);
  right: -15px;
  top: 8px;
}
.bredcrumb ul li:last-child:after {
  display: none;
}
.rec-pro:hover {
  box-shadow: 0 0 16px rgb(255 191 65 / 80%);
}
.items-sec h3 span {
  color: #FFBF41;
}
.bredcrumb {
  margin: 0 0 35px;
}
.pagination ul {
  display: flex;
  column-gap: 15px;
  justify-content: center;
  margin: 0 auto;
}
.pagination ul li a {
  border: 1px solid #BDC4CD;
  color: #BDC4CD;
  padding: 4px 13px;
  font-size: 18px;
  border-radius: 6px;
  min-width: 40px;
  text-align: center;
}
.pagination ul li a.active, .pagination ul li a:hover {
  background: #FFBF41;
  border-color: #FFBF41;
  color: #1C1C1C;
}
.pagination {
  padding-top: 10px;
}
.rec-pro p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}


#sync2 .item {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
}
#sync1 .item {
  border-radius: 8px;
  overflow: hidden;
}


#sync1.owl-theme {
  position: relative;
}
#sync1.owl-theme .owl-next, #sync1.owl-theme .owl-prev {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
}
#sync1.owl-theme .owl-prev {
  left: 10px;
}
#sync1.owl-theme .owl-next {
  right: 10px;
}
.pro-details {
  padding-left: 30px;
}
.pro-dl-box {
  background: #3C3B37;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.pro-dl-row {
  display: flex;
  border-bottom: 1px solid #8B96A5;
}
.pro-dl-row:last-child {
  border-bottom: none;
}
.pro-dl-row span {
  width: 50%;
  color: #fff;
  padding: 10px 0;
}
.pro-drc-box h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 15px;
}
.pro-drc-box {
  border-bottom: 1px solid #8B96A5;
  margin: 0 0 15px;
  position: relative;
  max-height: 475px;
  overflow: hidden;
}
.pro-drc-box li {
  color: #fff;
  margin: 0 0 25px;
  list-style: disc;
}
.pro-drc-box ul {
  padding-left: 20px;
}
.more-dl {
  color: #FFBF41;
  font-weight: 500;
  margin-bottom: 12px;
  /*display: inline-block;*/
}
.pro-drc-box:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(360deg, #202020 29.1%, rgba(34, 33, 32, 0) 100%);
  height: 140px;
}
h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 30px;
}
.rel-items {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}
.rel-items p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rel-items a {
  color: #1C1C1C;
}
.rel-items .items-pro-img {
  margin: 0 10px 10px;
}
.rel-item .owl-next {
  color: #1C1C1C;
  position: absolute;
}
.rel-item .owl-next {
  color: #1C1C1C;
  position: absolute;
  right: 3px;
  top: 50%;
  font-size: 40px !important;
  margin-top: -50px !important;
}
.rel-item .owl-prev {
  color: #1C1C1C;
  position: absolute;
  left: 3px;
  top: 50%;
  font-size: 40px !important;
  margin-top: -50px !important;
}
.show-more-height {
  max-height: inherit;
}
.show-more-height:after {
display: none;
}
.pagination ul li a span {
  margin: 0 6px;
}
.mega_menu_item h3 {
  color: #000;
}
ul.footer-nav li i {
  width: 18px;
  text-align: center;
  margin-right: 3px;
}
.items-pro-img img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}
.items-pro a {
  color: #1C1C1C;
}
.items-pro .items-pro-img img {
  height: 150px;
  width: auto;
}
.rec-pro .items-pro-img img {
  height: 205px;
  width: 100%;
  object-fit: cover;
}
#sync1 .item {
    padding: 15px;
    background: #fff;
}
#sync2 .item {
    padding: 10px;
    background: #fff;
}

.order-now-button{ 
    background-color: #000000;
    color: #FFBF41; 
    padding: 10px 20px; 
    border-radius: 5px; 
    text-decoration: none; 
    display: inline-block; 
    font-size: 16px; 
    font-weight: bold;
}

.modalContent .btn-close {
    position: absolute;
    right: 20px;
}
.modalContent .modal-header {
    justify-content: center;
    border: none;
}
.modalContent .modal-title {
    font-weight: 700;
    color: #cc5500;
    margin-top: 10px;
}
.modalContent .modal-body {
    padding: 20px 70px 25px;
}

.modalContent .form-control {
    padding: 0.6rem 0.75rem;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 900px;
    }
}


a.order-now-button:hover {
    background-color: aliceblue;
    color: #d48d00;
}

a.custom-btn-product {
    color: #1C1C1C;
    background: linear-gradient(65.94deg, #FDBA36 1.56%, #FFF599 48.19%, #C78C0E 100%);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    display: inline-block;
}


a.custom-btn-product:hover {
  color: #1C1C1C;
  background: linear-gradient(65.94deg, #C78C0E 1.56%, #FFF599 48.19%, #FDBA36 100%);

}
.custom-btn-product {
    color: #1C1C1C;
    background: linear-gradient(65.94deg, #FDBA36 1.56%, #FFF599 48.19%, #C78C0E 100%);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    display: inline-block;
}
.custom-btn-product:hover {
  color: #1C1C1C;
  background: linear-gradient(65.94deg, #C78C0E 1.56%, #FFF599 48.19%, #FDBA36 100%);
}
i.fas.fa-angle-down {
    margin-left: 10PX;
}

 .contact_form {
        max-width: 600px; 
        margin: 0 auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .contact_form label {
        display: block;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .contact_form input[type="text"],
    .contact_form input[type="email"],
    .contact_form input[type="tel"],
    .contact_form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }

    .contact_form textarea {
        resize: vertical;
    }

    .contact_form [type="submit"] {
        background-color: #FFBF41;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

.contact_form_heading {
  text-align: center;
   color: white;

}

textarea.wpcf7-form-control.wpcf7-textarea.message_text {
    height: 100px;
}

.contact_us_sec{
  padding: 0 0 40px 0; 
}

h2.form_title:hover {
    color: #c78c0e;
}
.quantity input[type="number"] {
    width: 45px; 
    height: 40px; 
    font-size: 16px; 
    text-align: center;
}


.quantity-and-button-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quantity {
    margin-right: 10px; 
}

article#post-12 {
    background-color: white;
    padding: 40px 0;
}
.wc-block-cart__submit.wp-block-woocommerce-proceed-to-checkout-block.proceed_to_checkout {
    display: none;
}

h1.entry-title {
    margin-left: 135px;
}
.footer-nav li.cart-menu-item {
  display: none;
}

span.cart-count {
    align-items: center;
    border-radius: 1em;
    box-sizing: border-box;
    font-size: 0.875em;
    font-weight: 600;
    height: 1.4285714286em;
    justify-content: center;
    left: 100%;
    margin-left: -40%;
    min-width: 1.4285714286em;
    padding: 0 0.4em;
    position: absolute;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 1;
    background-color: rgb(17, 17, 17);
    color: rgb(249, 249, 249);
}

.fa-shopping-cart:before {
    font-size: 22px;
}


article#post-489 {
    background-color: white;
}
#post-489 h1.entry-title{
display: none;
}

#post-489 .form-control{
  width: 90% !important;
} 
.wp-block-column.product_detail.is-layout-flow.wp-block-column-is-layout-flow {
    margin-left: 15px;
}

.add_to_cart {
    visibility: hidden;
    opacity: 0;
}
.trigger_down {
    position: absolute;
    right: 0;
    top: 23px;
    width: 100px;
    text-align: end;
    display: flex;
    justify-content: flex-end;
    height: 20px;
    color: #000;
}
#myInput {  background-image: url('/wp-content/themes/capo/assest/images/searchicon.png'); 
background-position: 10px 10px;  background-repeat: no-repeat; 
width: 100%;  
font-size: 16px;
padding: 12px 20px 12px 40px;  border: 1px solid #ddd; 
margin-bottom: 12px;
}

#orderItemsTable {  
border-collapse: collapse;  width: 100%;  border: 1px solid #ddd;  font-size: 18px;
}
#orderItemsTable th, #orderItemsTable td {  
text-align: left;  padding: 12px;
}
#orderItemsTable tr {  
border-bottom: 1px solid #ddd;
}
#orderItemsTable tr .header, #orderItemsTable tr:hover { 
 background-color: gray;}

.option-heading {
	color:white;
}

#orderItemsTable th, #orderItemsTable td {
  text-align: left;
  padding: 12px;
  cursor: pointer; 
}
.wc-block-cart-item__product {  
color: #000 !important;
}

#myInput {  
background-image: url('/wp-content/themes/capo/assest/images/searchicon.png'); 
background-position: 10px 10px;
background-repeat:
no-repeat;
width: 100%; 
font-size: 16px;
padding: 12px 20px 12px 40px; 
 border: 1px solid #ddd;
 margin-bottom: 12px;
 }

#orderItemsTable { 
 border-collapse: collapse; 
 width: 100%; 
 border: 1px solid #ddd; 
 font-size: 18px;
}

#orderItemsTable tr {  
 border-top: 1px solid #ddd;
 }

#orderItemsTable tr .header, #myTable tr:hover { 
  background-color: gray;
  } 

.option-heading {	
 	color:white;
  }

#orderItemsTable th, #orderItemsTable td {  
  text-align: left;  
  padding: 12px;  
  cursor: pointer; 
  color:white;
  }

.wc-block-cart-item__product { 
   color: #000 !important;
   }

.arrow { display: inline-block;  width: 0;  height: 0;  margin-left: 5px;  vertical-align: middle;  content: "";}
.arrow.up {  border-left: 5px solid transparent;  border-right: 5px solid transparent;  border-bottom: 5px solid black;}
.arrow.down {  border-left: 5px solid transparent;  border-right: 5px solid transparent;  border-top: 5px solid black;}

.product_selection {
  color: white !important;
}

#orderItemsTable tr.child td:first-child {
	padding-left: 70px;
}

#orderItemsTable tr.child td:first-child i {
	margin-right: 10px;
	font-size: 17px;
}

#orderItemsTable tr.child {
	border-top: 0.1px solid #ddd;
	border-color: #787878;
}

#orderItemsTable tr.divider {
	border-top: 3px solid #ddd;
}
#orderItemsTable tr.has-quantity {
	background-color: #424b43;
}
.hidden {
	display: none !important;
}
.wp-block-woocommerce-cart-order-summary-totals-block {
	color: #e8e8e8;
}