* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
:root {
  --primary: #efeaae;
  --logo-color: var(--theme);
}
.bg-color,
.bg-pri {
  background-color: var(--primary) !important;
}
.logo-bg,
.bg-sec {
  background-color: var(--logo-color) !important;
}
.fs-30 {
  font-size: 30px;
}
.fs-20 {
  font-size: 20px;
}
.fw-600 {
  font-weight: 600;
}
.pd-10 {
  padding: 10px !important;
}
.pd-15 {
  padding: 15px;
}
.pdlr {
  padding: 0 10px;
}
.bb-2 {
  border-bottom: 2px solid #000;
}
.bt-2 {
  border-top: 2px solid #000;
}
h1 {
  text-align: center;
}
.stick {
  width: 100%;
  position: sticky;
  background-color: var(--logo-color);
  padding: 10px;
  top: 0px;
  color: white;
  z-index: 999;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .stick,
  .min {
    font-size: 15px;
  }
  .code {
    display: none;
  }
}
@media (max-width: 768px) {
  .table td {
    font-size: 15px !important;
  }
  .inp {
    width: 100px;
  }
  .table-headings th {
    font-size: 15px !important;
  }
  .table th {
    padding: 0;
  }
  .table tr img {
    max-width: 30px;
    max-height: 30px;
  }
}
@media (max-width: 576px) {
  .logobar {
    margin: 0 !important;
    padding: 0 !important;
  }
  .stick {
    font-size: 10px;
  }
  p {
    margin: 0;
  }
  .table > :not(caption) > * > * {
    padding: 0 !important;
  }
  .table td {
    font-size: 10px !important;
  }
  .inp {
    width: 50px;
  }
  .table-headings th {
    font-size: 10px !important;
  }
  .table td input {
    padding: 5px;
  }
}
@media (max-width: 370px) {
  .table-headings th {
    font-size: 8px !important;
  }
  .table td {
    font-size: 8px !important;
  }
  .table td input {
    padding: 0 !important;
  }
  .inp {
    width: 30px;
  }
  .overtotal {
    font-size: 15px;
  }
}
.flex {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.js {
  justify-content: space-between;
}

/* product - popup */
.thumbnail {
  max-width: 50px;
  max-height: 50px;
  cursor: pointer;
}
.icon {
  font-size: 40px;
  cursor: pointer;
  color: #ff0000;
}

/* Search item section */
#filterPrd,
.filterPrd {
  padding: 5px 10px;
  border-radius: 10px;
  width: 100%;
}
.filterCat {
  border-width: 2px;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
}
.listitem {
  display: none;
  position: absolute;
  margin-top: 5px;
  right: 15px;
  max-width: 40%;
  background-color: #fff;
  color: #000;
  overflow: auto;
  height: 50vh;
  z-index: 9999;
  list-style: none;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 10px;
}
.itemlist {
  display: none;
  width: 30%;
  background-color: #fff;
  color: #000;
  overflow: auto;
  height: 50vh;
  z-index: 9999;
  list-style: none;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  border: 1px solid #000;
}
@media (max-width: 992px) {
  .filterCat option,
  .itemlist {
    width: 40%;
  }
}
@media (max-width: 576px) {
  .itemlist {
    width: 80%;
  }
}

/* tabel css */
.table-headings th {
  background: var(--logo-color) !important;
  color: #fff;
  text-align: center;
}
.table {
  width: 100%;
  vertical-align: middle;
  margin: 0;
}
.table th {
  padding: 10px;
  border: 1px solid #fff;
  vertical-align: middle;
}
.table td {
  text-align: center;
  border: 1px solid #000;
}
.table td input {
  text-align: center;
  padding: 10px;
  border: none;
  background-color: #c3d5f5;
  border-radius: 10px;
}
.cat {
  background-color: var(--primary) !important;
}
.table tr img {
  max-width: 50px;
  max-height: 50px;
  cursor: pointer;
}
.overtotal {
  text-align: center;
  background-color: var(--logo-color);
  font-weight: 600;
  margin: 0;
}

/* pop up */
.popupsec {
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: 999;
  background-color: rgba(146, 145, 145, 0.5);
}
.pop {
  display: block;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
}
.pop button {
  cursor: pointer;
  border: none;
  background: none;
  font-size: 30px;
  color: #626262;
  margin: 10px;
}
.pop iframe {
  width: 560px;
  height: 320px;
}
@media (max-width: 560px) {
  .pop iframe {
    width: 360px;
    height: 220px;
  }
}
@media (max-width: 420px) {
  .pop iframe {
    width: 250px;
    height: 150px;
  }
}

/* cart page  */
.details input,
.details textarea,
.details select{
    width: 300px;
    padding: 10px;
    font-size: 20px;
    border-radius: 10px;
}
.details label{
  width: 150px;
}
#hpc{
  width: 250px;
}
.cr-footer-links p {
  color: #000 !important;
}

/* nav-cart */
.noprd{
  background-color: var(--logo-color);
  border-radius: 50%;
  color: #fff !important;
  padding: 5px;
  margin-bottom: 20px;
}
.final tr td{
  font-weight: 600;
}

/* Order Preview page */
.download {
  display: flex;
  justify-content: space-around;
}
.bottom {
  padding: 10px;
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 1111;
}
.bottom input {
  background-color: var(--logo-color);
  color: #fff;
}

/* pdf layout */
.brd {
  border: 1px solid black;
}
.abrd {
  border-top: 2px soild black;
  border-right: 1px soild black;
  border-left: 1px soild black;
}
.rbd td {
  border: 2px solid black;
  text-align: center;
}
.bold {
  font-weight: bold;
}

/* tablet view */
.bg-box1 {
  background-color: #a8cbf4;
}
.bg-box2 {
  background-color: #c3d5f5;
}
.prdcard {
  position: relative;
}
.acode {
  position: absolute;
  border: 1px solid #000;
  background-color: var(--logo-color);
  padding-inline: 6px !important;
  color: #fff;
  border-top-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.cimg {
  width: 90px;
  height: 90px;
}
.pinp {
  width: 50px;
  text-align: center;
  border-radius: 5px;
}
.pstotal {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 30px;
  border: none;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 0.375rem;
  text-align: center;
}
.fixed {
  position: fixed;
  bottom: 50px;
  z-index: 99999;
  width: 100%;
}
.fixed .fdiv {
  background-color: var(--logo-color);
  padding: 5px 10px;
  color: #fff;
  border-radius: 15px;
}

/* nav-cart */
.div1prd {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: var(--logo-color);
  border-radius: 50%;
  color: #fff !important;
  padding: 5px;
}
.div2prd {
  position: absolute;
  top: -20px;
  background-color: var(--primary);
  border-radius: 50%;
  color: #000 !important;
  padding: 5px;
}

/* fixed icons */
.whatsapp{
  position: fixed;
  bottom: 50px;
  left: 50px;
  z-index: 9999999;
  background-color: #28f000;
  border-radius: 10%;
  padding: 5px;
}
.whatsapp img{
  width: 50px;
  height: 50px;
}
 .pricelist{
  position: fixed;
  bottom: 150px;
  right: 50px;
  z-index: 9999999;
}
.pricelist img{
  width: 80px;
  height: 80px;
  transform: rotate(-30deg);
} 
.estbtn{
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 9999999;
}
.estbtn img{
  width: 80px;
  height: 80px;
}

/* cart */
.cr-table-content table {
  width: 100%;
  /* border: 1px solid #000; */
  border-radius: 5px;
  overflow: hidden;
}
.cr-table-content table thead tr {
  border: 1px solid #e9e9e9;
}
.cr-table-content table thead tr th {
  padding: 15px;
  border-top: medium none;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0;
  background-color: var(--logo-color);
}
.cr-table-content table tbody tr {
  border-bottom: 1px solid #e9e9e9;
}
.cr-table-content table tbody tr .cr-cart-name {
  width: 40%;
}
.cr-table-content table tbody tr .cr-cart-name a {
  color: #444;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  letter-spacing: 0.6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cr-table-content table tbody tr .cr-cart-price {
  color: #555;
  font-size: 15px;
  font-weight: 500;
}
.cr-table-content table tbody tr .cr-cart-subtotal {
  color: #555;
  font-weight: 500;
  font-size: 15px;
}
.cr-table-content table tbody tr .cr-cart-remove {
  width: 90px;
  text-align: right;
}
.cr-table-content table tbody tr .cr-cart-remove a {
  margin: 0 auto;
  color: #555;
}
.cr-table-content table tbody tr .cr-cart-remove a:hover {
  color: var(--logo-color);
}
.cr-table-content table tbody tr .cr-cart-remove a i {
  font-size: 22px;
}
.cr-table-content table tbody tr td {
  padding: 25px 14px;
  color: #444;
  font-size: 16px;
  text-align: left;
  background-color: #f7f7f8;
  border: 1px solid #000;
}
.cr-table-content table tbody tr td .cr-cart-img {
  width: 60px;
  margin-right: 20px;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
}

.cr-cart-qty {
  text-align: center;
}
.cr-cart-qty .cart-qty-plus-minus {
  width: 80px;
  height: 30px;
  margin: 0 auto;
  position: relative;
  display: inline-block;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cr-cart-qty .cart-qty-plus-minus input {
  width: 30px;
  margin: 0;
  padding: 0;
  background: transparent none repeat scroll 0 0;
  color: #444;
  border: medium none;
  float: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 38px;
  height: auto;
  text-align: center;
  outline: none;
}
.cr-cart-qty .cart-qty-plus-minus button {
  height: 25px;
  width: 25px;
  margin-top: -2px;
  border: none;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cr-cart-update-bottom {
  padding: 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cr-cart-update-bottom a.cr-links {
  color: #444;
  display: inline-block;
  text-decoration: underline;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

/* Responsive */
@media only screen and (max-width: 767px) {
  .cr-cart-content {
    overflow-x: scroll;
  }
  .cr-cart-content .row {
    width: 700px;
  }
}
@media only screen and (max-width: 575px) {
  .cr-cart-view .cr-cart-inner {
    width: 300px;
  }
}
@media only screen and (max-width: 360px) {
  .cr-cart-view .cr-cart-inner {
    width: 280px;
  }
}
.cr-button {
  height: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 8px 22px;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: bold;
  text-transform: capitalize;
  line-height: 1.2;
  background-color: var(--logo-color);
  color: #fff;
  border: 1px solid var(--logo-color);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cr-button:hover {
  background-color: #000;
  border-color: #000;
}
.flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mins {
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 50%;
    margin-right: 5px;
    background: #fff;
    width: 20px;
    height: 20px;
    font-size: 30px;
    padding-bottom: 4px;
}
.plus {
    border: 1px solid #000;
    border-radius: 50%;
    margin-left: 5px;
    background: #fff;
    width: 20px;
    height: 20px;
    font-size: 20px;
    font-weight: bolder;
    cursor: pointer;
}
.flex {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* pop up */
.popupsec {
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: 9999;
  background-color: rgba(146, 145, 145, 0.5);
}
.pop {
  width: 50%;
  display: block;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
}
.pop p {
    font-size: 16px;
    text-transform: uppercase;
}
.pop button {
  cursor: pointer;
  border: none;
  background: none;
  font-size: 30px;
  color: #626262;
  margin: 10px !important;
}
.pop iframe {
  width: 560px;
  height: 320px;
}
.thumbnail {
  max-width: 75px;
  max-height: 50px;
  cursor: pointer;
}
.vicon {
  width: 60px;
  cursor: pointer;
  fill: #ff0000;
}
.swiper-wrapper {
  align-items: center;
}
.imgdiv img {
  max-width: 450px;
  max-height: 450px;
}
.swiper-button-next,
.swiper-button-prev {
  scale: 0.7;
}
@media (max-width: 991px) {
  .pop { 
      width:90%;
  }
}