* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

html body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  padding-left: 0;
  margin: 0;
  list-style-type: none;
}

.topnav {
  background: #2e6bb5;
  padding: 5px 0;
  font-weight: 600;
}

.topsearch {
  width: 45%;
}

.topemail {
  width: 55%;
  display: flex;
  justify-content: flex-end;
}

.toplogo {
  width: 30%;
}

.topmenu {
  width: 60%;
}

.top-details {
  width: 10%;
  display: flex;
  justify-content: flex-end;
}

.mobiletop {
  display: none;
}

.menu-profile {
  position: relative;
  cursor: pointer;
  font-weight: 500;
  color: #003fa7;
  padding: 5px 15px;
  transition: background-color 0.3s ease;
  user-select: none;
  display: none;
  text-align: left;
  font-size: 15px;
}

.responsive-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  z-index: 1000;
  flex-direction: column;
  margin: 0px 12px;

}

.responsive-dropdown a {
  padding: 10px 15px;
  color: #09347a;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.responsive-dropdown a:hover {
  background-color: #f0f0f0;
  color: #f26523;
}

.top-profile i {
  font-size: 23px;
  border: 2px solid #2da345;
  border-radius: 50%;
  padding: 2px 6px;
  color: #0543a8;
  font-weight: 900;
}

.top-profile {
  position: relative;
  margin-bottom: 2px;
}

.top-addtocart i {
  font-size: 25px;
  color: #0543a8;
  margin-left: 20px;
}

.profile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #2da345;
  padding: 6px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 100px;
  border-radius: 4px;
  text-align: start;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 15px;
}

.profile-dropdown i {
  font-size: 15px;
  font-weight: 500;
}

.Addtocart {
  font-size: 15px;
  background: #fff;
  color: #2e3895;
  border-radius: 3px;
  line-height: 27px;
  transition: 0.5s all;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid #2f3990;
}

.profile-dropdown i {
  color: #003fa7;
}

.top-profile:hover .profile-dropdown {
  display: block;
  transform: translateY(0);
  pointer-events: auto;
}

.top-addtocart {
  cursor: pointer;
  position: relative;

}

.top-addtocart .cart-count {
  position: absolute;
  top: -2px;
  right: -8px;
  background: red;
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-content: center;
  left: auto;
  bottom: auto;
}

.dmail {
  font-size: 15px;
  color: #fff;
  display: block;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dmail i {
  font-size: 20px;
}

.searchInput {
  background: #fff;
  width: 100%;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.searchInput input {
  height: 38px;
  width: 100%;
  outline: none;
  border: none;
  padding: 0 60px 0 10px;
  font-size: 14px;
  border-radius: 3px;
}

.searchInput .icon {
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: #2da345;
  color: #fff;
  border: none;
  height: 32px;
  padding: 0 15px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}

.searchInput .resultBox {
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.searchInput.active .resultBox {
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
  position: absolute;
  background: white;
  border: 1px solid #e5e5e5;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 1110;
  border-radius: 0 0 5px 5px;
}

.resultBox li {
  padding: 8px 12px;
  cursor: pointer;
  display: none;
}

.searchInput.active .resultBox li {
  display: block;
  font-weight: 500;
}

.resultBox li:hover {
  background: #efefef;
}

.playbtn {
  width: 50px;
  height: 50px;
  position: fixed;
  display: inline-block;
  padding: 8px;
  color: #fff;
  transition: 0.5s;
  font-weight: 800;
  overflow: hidden;
  border-radius: 50%;
  background: #2e6bb5;
  border: 2px solid #003fa7;
  font-size: 10px;
  line-height: 100%;
  right: 10px;
  top: 70%;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.playbtn:hover {
  color: #fff;
  background-color: #2e6bb5;
  border-color: #003fa7;
}

/******** Play Button *********/
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(45, 163, 69, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(254, 154, 29, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(254, 154, 29, 0);
  }
}

/********************** main headr *****************************/
.navbarbox {
  padding: 7px 0;
  border-bottom: 1px solid #e2e1e1;
}

.navbarbox>.row {
  justify-content: space-between;
  padding: 0 12px;
}

.dlogo {
  width: 150px;
  height: auto;
  object-fit: contain;
}

/* Main Navbar */
.navwebste {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
}

.navwebste li {
  margin-right: 20px;
}

.navwebste li a {
  position: relative;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 9px;
  text-transform: capitalize;
  display: inline-block;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.navwebste li a:hover {
  color: #003fa7;
}

.navwebste li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 999;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #003fa7;
  border-radius: 3px;
  transition: 0.3s ease;
}

.close-menu {
  display: none;
}

@keyframes slideIn {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideOut {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}



.modal.right .modal-dialog {
  position: fixed;
  right: 10px;
  margin: 0;
  bottom: 10px;
  max-width: 400px;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

.modal.right.show .modal-dialog {
  transform: translateX(0);
}

.modal-content {
  height: 100%;
  border-radius: 0;
}

.popupw {
  width: 350px;
  border-radius: 4px;
  padding: 10px;
}

.noh {
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 0;
	background: #2e6bb5;
	border-radius: 0;
	font-weight: 600;
}

.modal-footer {
  border-top: none;
  padding: 0;
  margin: 0;
}

.footer-end p a {
  font-size: 15px;
}

.po-in-la label {
	font-size: 14px;
	color: #003fa7;
	font-weight: 600;
	margin-top: 7px;
	margin-bottom: 4px;
}

.po-in-la input {
  padding: 3px 10px;
  border-radius: 2px;
}

.qtclose,
.qtsend {
  padding: 2px 14px;
  font-size: 13px;
  border-radius: 2px;
  font-weight: 500;
}

.qtclose {
  background: #fff;
  border: 1px solid #9f0404;
  color: #9f0404;
}

.qtclose:hover {
  background: #9f0404;
  color: #fff;
}

.qtsend {
  border: 1px solid #003fa7;
  background: #003fa7;
  color: #fff;

}

.qtsend:hover {
  background: #fff;
  color: #003fa7;
}


/********************** main headr end*****************************/
.banner-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

.des-ce {
  margin-top: 20px;
}

.dil-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
}



/******************************* Autoclave Equipment 1st sc home page start **************************/
.main-title h1,
.main-title h2,
.main-title h3,
.main-title h4,
.main-title h5,
.main-title h6 {
  font-size: 28px;
  text-align: start;
  margin: 82px 0 3px;
  color: #2e6bb5;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
}

.main-title-main {
  font-size: 15px;
  line-height: 140%;
  padding-bottom: 10px;
  text-align: left;
  position: relative;
}

.main-title p {
	color: #141414c7;
	font-family: "Poppins", serif;
	font-size: 14px;
	line-height: 140%;
	padding: 5px 0 0 0;
	text-align: justify;
	font-weight: 400;
}

/******************************* Autoclave Equipment 1st sc home page start **************************/
/*******************************  Home page 2nd section start **************************/
.labmi-row {
  margin-left: -3px;
  margin-right: -3px;
}

.incubator-main-box {
  width: 33.33% !important;
  padding: 5px;
  display: flex;
  flex-direction: column;
  height: inherit;

}

.incubator {
  border-top: 1px solid #aabddf;
  padding: 10px;
  box-shadow: 0 0 2px 0 #b5bdd4;
  display: flex;
  flex-direction: column;
  height: inherit;
  flex: 1;
  border-radius: 3px;
}

.incubator h2,
.incubator h3,
.incubator h4,
.incubator h5,
.incubator h6 {
  color: #0543a8;
  font-family: "Poppins", serif;
  font-size: 16px;
  line-height: 130%;
  font-weight: 600;
  text-align: left;
}

.incubator-he {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.autoclave {
  width: 60%;
}

.incubator-he img {
  width: 155px;
  height: 155px;
  object-fit: contain;
}

/* .table-con {
  padding-left: 10px;
} */

.elect-spe {
  color: #4f4c4c;
  scrollbar-width: thin;
  scrollbar-color: #ccc #a9a9a9;
  overflow-y: auto;
  height: 90px;
  margin-top: 5px;
}

.elect-spe li {
  padding: 5px 10px;
  border-bottom: 1px solid #004aad2e;
  color: #333;
  font-size: 13px;
  text-align: left;
  font-weight: 400;
}

.elect-spe li:last-child {
  border: 0;
}


.elect-spe li:nth-child(2n+1) {
  background-color: #fbfbfb;
}

.elect-spe li:nth-child(even) {
  background-color: #ffffff;
}

/* .label-electro {
  font-size: 10px;
  font-weight: 500;
} */

.elect-spe span {
  font-weight: 600;
  color: #333;
}

/* .table-container {
  overflow-y: auto;
  height: 100px;
}

.table-striped>tbody>tr>.tdbold {
  font-weight: 700;
  color: #000;
  font-size: 14px !important;
}

.table-striped>tbody>tr>.tdspan {
  color: #353434;
  font-size: 14px;
  font-weight: 500;
}

.table-striped>tbody>tr>.tdbold,
.table-striped>tbody>tr>.tdspan {
  padding: 2px 8px;
}

.table-scroll .table-striped {
  scrollbar-width: thin;
  scrollbar-color: #ccc #fff;
  height: 90px;
  overflow-y: auto;
} */
.addtocart button,
.addtocart button:hover {
  background: transparent;
  color: #003fa7;
  border: 1px solid #003fa7;
  padding: 0px 9px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 2px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-family: "Poppins", serif;
  font-weight: 500;
}

.addtocart button i {
  font-size: 18px;
}

.button-container1 a,
.button-cont a {
  color: #9f0404;
  border: 1px solid #9f0404;
  padding: 3px 8px;
  font-size: 12.5px;
  border-radius: 2px;
  text-align: center;
  transition: 1s;

}

.button-container1 a:hover,
.button-cont a:hover {
  color: #fff;
  background: #9f0404;
}

.button-container1 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.button-container1 button {
  background: transparent;
  color: #003fa7;
  border: 1px solid #003fa7;
  padding: 2px 8px;
  font-size: 11.5px;
  cursor: pointer;
  border-radius: 2px;
  text-align: center;
  margin-right: 10px;
}

.compare-add {
  display: flex;
  justify-content: flex-start !important;
}

.compare-checkbox {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border: 1px solid #003fa7;
  cursor: pointer;
  border-radius: 2px;
}

.compare-checkbox input[type="checkbox"] {
  display: none;
}

.compare-checkbox i {
  font-size: 18px;
  color: #2da345;
  transition: transform 0.2s, color 0.2s;
}


#compare-btn-wrapper {
  display: none;
  position: fixed;
  top: 150px;
  right: 20px;
  z-index: 9999;
}

#compare-btn {
  background: #2da345;
}

#compare-btn:hover {
  color: #fff !important;
}

.cart-row .Addtocart i {
  color: #0543a8;
  font-size: 20px;
  margin-right: 5px;
}

.Addtocart a {
  color: #2f3990;
}

.price span {
  font-size: 16px;
  padding-bottom: 0;
  color: #2da345;
  padding-top: 0;
  font-weight: 600;
}

.star-rating {
  display: inline-block;
  font-size: 18px;
  position: relative;
  unicode-bidi: bidi-override;
  color: #ccc;
}

.star-rating::before {
  content: "★★★★★";
}

.star-rating::after {
  content: "★★★★";
  position: absolute;
  top: 0;
  left: 0;
  color: #f2b01e;
  overflow: hidden;
}

.Addtocart {
  font-size: 15px;
  background: #fff;
  color: #2e3895;
  border-radius: 3px;
  line-height: 27px;
  transition: 0.5s all;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid #2f3990;
  padding: 0 4px;
}

.autoclave {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-row,
.cart-row-start {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  border-top: 1px solid #eceff9;
  padding-top: 10px;
}

/******************************* Home page 2nd section end **************************/

/******************************* home page 3rd section start **************************/

.dl-im h2,
.dl-im h3,
.dl-im h4,
.dl-im h5,
.dl-im h6 {
  color: #0543a8;
  font-family: "Poppins", serif;
  font-size: 16px;
  line-height: 130%;
  font-weight: 600;
  text-align: left;
}

.cataphfl {
  margin-right: -2px;
  margin-left: -2px;
}

.con-img-car {
  width: 25%;
  padding: 5px !important;
  display: flex;
  flex-direction: column;
  height: inherit;
}

.in-au-eq {
  padding: 10px;
  box-shadow: 0 0 1px 0 #9daeb9;
  border-left: 1px solid #aabddf;
  display: flex;
  flex-direction: column;
  height: inherit;
  flex: 1;
  border-radius: 3px;
}

.dl-im img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.dl-dil-cin {
  font-size: 14px;
  color: #444444;
  text-align: start;
  scrollbar-width: thin;
  scrollbar-color: #ccc #fff;
  height: 90px;
  overflow-y: auto;
  border: 1px solid #ccc;
}

.hover-icons {
  position: absolute;
  top: 50px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;

}

.con-img-car,
.sec-img-con {
  position: relative;
}

.con-img-car:hover .hover-icons,
.sec-img-con:hover .hover-icons {
  opacity: 1;
}

.hover-icons a,
.hover-icons button {
  background: transparent !important;
  border-radius: 4px;
  padding: 1px 5px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-size: 16 px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: none;
}

.hover-icons button {

  border: 1px solid #003fa7;
  color: #4b7dce;
}

.hover-icons a {
  border: 1px solid #9f0404;
  color: #9f0404;
  background: transparent;
}



/******************************* home page 3rd section  end **************************/

/******************************* home page 4th start **************************/
/******************************* General Styles ******************************/
.incu-box-hd h2,
.incu-box-hd h3,
.incu-box-hd h4,
.incu-box-hd h5,
.incu-box-hd h6 {
  font-size: 17px;
  color: #0d0d0d;
  text-decoration: none;
  font-size: 16.5px;
  color: #033976;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 7px;
}

.sub-box h2,
.sub-box h3,
.sub-box h4,
.sub-box h5,
.sub-box h6 {
  font-size: 17px;
  color: #0d0d0d;
  text-decoration: none;
  font-size: 16.5px;
  color: #033976;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 7px;
  padding-left: 10px;
}

.sub-cat-gory {
  margin-top: 10px;
}

.incubator-main {

  margin-bottom: 17px;
}

.incu-box-hd span {
  font-size: 10.5px;
  color: #ccc;
}

.incu-img img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #fff;
}

.text-warning,
.button-cont {
  margin-top: 10px;
}

/******************************* home page 4th end **************************/
/******************************* home page 5th start **************************/
.product-img {
  position: relative;
  overflow: hidden;
  background: #ecebe7;
}

.product-img img {
  width: 180px;
  height: 180px;
  display: block;
  margin: 0 auto;
}

.option-btn {
  background: none;
  color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 500;
  border-radius: 4px;
  border: none;
}

.product-info {
  margin-top: 10px;
}

.product-info h2,
.product-info h3,
.product-info h4,
.product-info h5,
.product-info h6 {
  font-size: 17px;
  margin-bottom: 5px;
  color: #161616;
}

.category {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
}

.stars {
  color: #f0c040;
  font-size: 8px;
}

/******************************* Autoclave Equipment page start **************************/
.category-icon h2,
.category-icon h3,
.category-icon h4,
.category-icon h5,
.category-icon h6 {
  font-size: 15px;
  height: 37px;
  font-weight: 500;
  margin-bottom: 3px;
  margin-top: 7px;
  color: #111;
  align-items: center;
  justify-content: center;
  display: flex;
  font-family: "Poppins", serif;
}

.category-icon {
  text-align: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.category-icon img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border: #e5e5e5 solid 1px;
  background: linear-gradient(to bottom, #f0f6ff, #fbfbfd);
}

.boxp-1 {
  padding: 3px !important;
  width: 16.66%;
}


/**************************** footer start ************************/
.footer {
  border-top: 4px solid #033976;
  color: #f1724b;
  padding: 70px 0 0;
  margin-top: 100px;
}

.contact-info {
  width: 25%;
  margin-bottom: 20px;
}

.contact-info img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.contact-info span {
  font-size: 20px;
  font-weight: 600;
  color: #209d43;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}

.contact-info ul li {
  margin-bottom: 6px;
}

.contact-info ul li a {
  font-size: 14px;
  color: #000;
  transition: color 0.3s;
  font-weight: 400;
}

.contact-info ul li a:hover {
  color: #42a844;
}

.contact-info p {
  margin: 10px 0;
  font-size: 15px;
  color: #0743a9;
  font-weight: 800;
}

.subscribe {
  margin-top: 12px;
}

.footer-col p span {
  font-size: 14px;
  color: #000;
}

.footer-col span {
  font-weight: 400;
}

.subscribe-form input {
  width: 100%;
  flex: 1;
  padding: 0 5px;
  border: none;
  outline: none;
  background: transparent;
  color: #000;
  border: 1px solid #ccc;
  font-size: 14.5px;
  border-radius: 2px;
}

.subscribe-form .footer-btn {
  background: #000;
  border: none;
  color: #fff;
  cursor: pointer;
  height: auto;
  border-radius: 0 2px 2px 0;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  -ms-border-radius: 0 2px 2px 0;
  -o-border-radius: 0 2px 2px 0;
}

.footer-end p {
  color: #000;
  border-top: 1px solid #ccc;
  text-align: center;
  padding: 10px;
  margin: 0;
  font-size: 15px;
  margin-top: 30px;
}

.subscribe-form {
  display: flex;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 50px 0 0 50px;
}

.subscribe-form input[type="email"]::placeholder {
  color: #aaa;
}

.subscribe-form .footer-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 0 20px;
  height: 100%;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.subscribe-form .footer-btn:hover {
  background: #0056b3;
}

.subscribe-form .footer-btn i {
  font-size: 18px;
}



/******************************* footer end ****************************/


/******************************Contact  PAGE  Start*******************************/
.contact-con {
  width: 991px;
}

.row.cont-cont {
  margin-top: 60px;
}

.left-side,
.right-side {
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-top: 2px solid #a5c7eb;
  margin-left: 10px;
}

.left-side {
  flex: 1;
  width: 25%;
  text-align: center;
}

.right-side {
  flex: 2;
  width: 75%;
  padding: 20px;
}

.details {
  margin: 10px;
}

.details i {
  font-size: 30px;
  color: #2e6bb5;
  margin-bottom: 10px;
}

.details h2,
.details h3,
.details h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #209d43;
  font-weight: 700;
}

.details p {
  font-size: 14px;
  color: #2c2c2c;
}

.details a {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.details a:hover {
  text-decoration: underline;
}

.right-side h5 {
  font-size: 18px;
  text-align: start;
  color: #209d43;
  font-weight: 600;
}

.right-side p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact-con form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-box-con input,
.input-box-con textarea {
  width: 100%;
  padding: 5px 10px;
  font-size: 14px;
  border: 1px solid #a5c7eb;
  border-radius: 2px;
}

.input-box-con textarea {
  height: 120px;
  resize: none;
}

.input-box-con input:focus,
.input-box-con textarea:focus {
  outline: #007bff;
  box-shadow: 0 0 2px 0 #007bff;
}

.con-btn-Send {
  width: 15%;
  background-color: #2e6bb5;
  color: #fff;
  border: none;
  padding: 5px;
  font-size: 13px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  font-weight: 500;
}

.con-btn:hover {
  background-color: #2e6bb5;
}

/******************************Contact  PAGE  End*******************************/

/**************************** Error page start ************************************/
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page .content-er {
  margin: 50px 0;
  max-width: 600px;
  text-align: center;
}

.content-er h1 {
  font-size: 18vh;
  line-height: 1em;
}

.content-er .page-not {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #000;
  max-width: 700px;
  font-size: 1.5em;
}

.content-er .page-pr {
  font-size: 1em;
  color: #0d0d0d;

}

.content-er .err-btns {
  margin: 15px 0;
  display: inline-flex;
}

.content-er .err-btns a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  border: 2px solid #ff5722;
  color: #ff5722 !important;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 25px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.content-er .err-btns a:hover {
  background: #ff5722;
  color: #fff !important;
}


/******************************Error PAGE End*******************************/

.card-img-top {
  height: 180px;
  object-fit: contain;
  width: 180px;
}

.card-body {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.card-text {
  flex-grow: 1;
  overflow: hidden;
}

.card table {
  font-size: 14px;
  margin-bottom: 10px;
}

.btn {
  align-self: start;
  padding: 4px 12px;
  font-size: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
}

.card-text strong {
  color: #383737;
  font-weight: 500;
}

.card-text p {
  font-size: 14px;
}

.btn-cat {
  border: 1px solid #4c8677;
  color: #4c8677;
  padding: 6px 16px;
  border-radius: 4px;
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cat:hover {
  background-color: #4c8677;
  color: #fff;
  text-decoration: none;
}

.colorful-card {
  color: #0056b3;
  border-radius: 2px;
  padding: 20px;
}

/******************************Single-Catalog PAGE Start*******************************/
.body1_part1, .body2, .body3 {
	box-shadow: 0 0 0 #37b8fe29;
	margin-bottom: 10px;
	border: 1px solid #37b8fe29;
}

.cat_mtop {
  margin-top: 50px
}

.catalog_body {
  max-width: 700px;
  height: auto;
  margin: auto auto 50px;
  background-color: #fff
}

.download_box {
  padding-left: 50px;
  width: 350px;
  height: 0;
  border-radius: .2rem;
  margin: 10px 0 30px
}

.download_btn, .download_btn:hover {
	background-color: #2e6bb5;
	border: none;
	color: #fff;
	padding: 12px 30px;
	cursor: pointer;
	font-size: 17px;
	margin-top: 20px;
	text-decoration: none;
	font-weight: 700;
}

.catalog_head,
.check_icon,
.download_1,
.fa-chevron-circle-right {
  color: #2f8e94
}

.download_1 {
  font-size: 17px;
  padding-top: 25px
}

.text-name h1 {
  margin-bottom: 0
}

.body1_part1 {
  height: 840px;
  position: relative
}

.catalog_cover {
  background-image: url(../images/catalog-bg.png);
  background-size: cover;
  max-width: 100%;
  height: 840px;
  margin: auto
}

.catalog_logo {
  width: 23%;
  float: right;
  margin: 30px 30px 0 0;
}

.catalog_img {
  width: 45%;
  margin-top: 50px;
  vertical-align: middle
}

.catalog_head {
  font-size: 32px;
  text-shadow: 1px 0 #5f6788;
  font-weight: 700;
  margin: 60px 30px 0 20px;
  line-height: 49px
}

.single-catalog .text-center h1 {
	font-family: "Mulish", sans-serif;
	font-size: 25px;
	font-weight: 700;
	position: relative;
	display: block;
	letter-spacing: 0.3px;
	color: #2e6bb5;
}

.body2,
.body3 {
  height: auto
}

.body_center {
  margin: 0 25px
}

.catalog_subhead {
	color: #1a63be;
	font-size: 21px;
	font-weight: 700;
	padding: 40px 0 4px 0px;
}
.catalog_text {
	margin: 0 10px;
	line-height: 1.6rem;
	font-size: 15px;
}

.table,
td,
th {
  border: 1px solid #5f6788;
  margin-top: 5px
}

.mobile_bottom {
  padding-bottom: 15px
}

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

.catalog_footerlog {
  width: 25%;
  margin-top: 230px
}

.table > tbody > tr > td {
	font-size: 14px;
	line-height: 27px;
	padding: 5px !important;
	color: #363636;
}

.single-catalog .text-center h1 {
	font-family: "Mulish", sans-serif;
	font-size: 25px;
	font-weight: 700;
	position: relative;
	display: block;
	letter-spacing: 0.3px;
	color: #2e6bb5;
	margin-bottom: 15px;
}

.single-catalog .download_btn,
.download_btn:hover {
  padding: 7px 22px;
  font-size: 15px;
  margin-top: 10px;
  margin: 10px 0 30px !important;
}

.single-catalog .catalog_footerlog {
  width: 23%;
  margin-top: 50px;
  margin-bottom: 10px;
}

.single-catalog .mobile_bottom {
  padding-bottom: 30px !important;
}

.single-catalog .catalog_head {
  font-size: 24px;
  line-height: 130%;
}

.single-catalog>.row {
  display: flex;
}

.catalog_head, .check_icon, .download_1, .fa-chevron-circle-right {
	color: #2e6bb5;
	font-weight: 600;
	text-shadow: none;
}

html .container.single-catalog a {
  display: unset;
  text-shadow: none;
}

.mobile_bottom a,
.catalog_contact a {
  color: black;

}
li.catalog_text {
	position: relative;
	padding-left: 0;
	font-size: 15px;
}

li.catalog_text::before {
  position: absolute;
  left: -2px;
  top: 0;
  bottom: auto;
  right: auto;
  font-family: bootstrap-icons;
  font-size: 14px;
  color: #2679a6;
  content: "";
  display: none;
}


/*************************** Lab Equipment start *****************************/
.breadcrumb-sec .breadcrumb {
  margin: 0;
}

.fa-solid,
.fas {
  font-weight: 900;
  color: #2da345;
}

.breadcrumb-item.active {
  color: #0543a8 !important;
  font-weight: 600;
}

.breadcrumb-item a {
  color: #363636;
  text-decoration: none;
}

.breadcrumb-sec {
  background: transparent;
  padding: 8px 0;
  border: 1px solid #e7edf3;
  border-top: 0;
  font-size: 13px;

}

.lab-title h1,
.lab-title h2,
.lab-title h3,
.lab-title h4,
.lab-title h5,
.lab-title h6 {
  font-size: 28px;
  text-align: start;
  margin: 55px 0 3px;
  color: #2da345;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
}

.lab-title p {
	font-size: 14px;
	text-align: justify;
	margin-bottom: 8px;
	font-family: "Poppins", serif;
	font-weight: 400;
	color: #141414c7;
}

.list-cont h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  background: #d6eaff;
  padding: 10px;
}

.list-cont .li-icon {
  list-style: none;
}

.list-cont .li-icon li {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;
  z-index: 0;
}

.li-icon i {
  margin-right: 10px;
  color: #0866a5;
  transition: color 0.3s ease;
}

.list-cont .li-icon li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #f1724b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}

.list-cont .li-icon li:hover::before {
  transform: scaleX(1);
}

.list-cont .li-icon li:hover {
  color: #fff;
}

.list-cont .li-icon li:hover i {
  color: #fff;
}

.bio-fre h2,
.bio-fre h3,
.bio-fre h4,
.bio-fre h5,
.bio-fre h6 {
  text-align: start;
}



/******************* Lab Equipment end ******************/

/******************* Sub Category Start *****************/

.dl-sub-cat a {
  display: inline-block;
  border: 1px solid #87ace8;
  padding: 2px 10px;
  text-decoration: none;
  color: #0543a8;
  font-size: 13.5px;
  letter-spacing: .8px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 600 !important;
  margin-bottom: 10px;
}

/******************* Sub Category end *****************/

/******************* setion page start ******************/
.incubator-main-Gauge {
  width: 50%;
}

.filter-ts-er {
  width: 20%;
  padding: 5px;

}

.scs-pg-ri {
  width: 80%;
}

.sec-img-con {
  width: 33.33%;
  padding: 3px;
  display: flex;
  flex-direction: column;
  height: inherit;
}

.sec-au-eq {
  padding: 10px;
  margin-top: 16px;
  box-shadow: 0 0 2px 0 #9daeb9;
  border-top: 1px solid #c6dceb;
  display: flex;
  flex-direction: column;
  height: inherit;
  flex: 1;
  border-radius: 3px;
}

.filter-list {
  margin-top: 15px;
  box-shadow: 0 2px 5px #ccc;
  padding: 10px;
  border-top: 3px solid #c6daf9;
  border-radius: 3px;
}

.Filt-wr {
  padding: 10px;
  background: #fff;
}

.sub-sec-tog p {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.fil-chck {
  padding-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

.fil-chck span {
  font-size: 13px;
  line-height: 120%;
  padding-left: 3px;
  color: #3a3a3a;
}

/******************* setion page end ******************/
/****************** product detils page start  *************************/
.pr-img-box {
  position: sticky;
  top: 10px;
  align-self: start;
  z-index: 1;
  margin: 0;
}

.main-image {
  max-height: 350px;
  max-width: 100%;
  object-fit: contain;
}

.small-image-container {
  padding: 10px 5px;
}

.image-box {
  height: 80px;
  width: 80px;
  cursor: pointer;
  border: 1px solid #d9e9ee;
  border-radius: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.image-box .image {
  height: 80px;
  width: 80px;
  object-fit: contain;
}

.detl-btn-bx {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}
.hover-icons .getQuote {
  display: none;
}
.detl-btn-bx .getQuote {
  border: 1px solid #003fa7 !important;
  color: #fff !important;
  background-color: #003fa7 !important;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 600;
  display: none;
}

.detl-btn-bx .getQuote:hover {
  background: #003fa7;
  color: fff;
}

.detl-btn-bx button i,
.detl-btn-bx a i {
  margin-right: 3px;
  font-size: 18px;
}

.lab-title-detl h1 {
  font-size: 25px;
  text-align: start;
  margin-top: 30px;
  color: #2e6bb5;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
}

.lab-title-detl p {
	font-size: 14px;
	text-align: justify;
	font-family: "Poppins", serif;
	font-weight: 400;
	color: #141414c7;
}

.detl-btn-bx a {
  border: 1px solid #8e0422;
  padding: 4px 10px;
  text-align: center;
  color: #fff;
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 600;
  background: #8e0422;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 0px;
  padding: 3px 0px;
  font-weight: 500;
}

.spec-table h2,
.spec-table h3,
.spec-table h4,
.spec-table h5,
.spec-table h6 {
  font-size: 20px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #003fa7;
  font-weight: 500;
  position: relative;
  padding-left: 10px;
}

.spec-table h2::before,
.spec-table h3::before,
.spec-table h4::before,
.spec-table h5::before,
.spec-table h6::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  border-left: 2px solid #ec8e18;

}

.spec-table th {
  background-color: #2aa6a6;
  color: white;
  padding: 10px;
  text-align: left;
  font-size: 14px;
}

.spec-table tr> :first-child {
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
}

.spec-table tr> :last-child {
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 14px;
  font-weight: 400;
}

.spec-table tr:nth-child(even) td {
  background-color: #f9f9f9;
}

.features-section ul {
  padding: 10px 15px;
  margin: 0;
}

.features-section ul li {
  margin-bottom: 6px;
  color: #333;
  font-size: 12.5px;
}

.spec-table .spec-tablesubh {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 2px;
  background: #2e6bb5;
  width: 100%;
  color: #fff;
  padding: 2px 10px;
  font-weight: 600;
}

.spec-ul-li li {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  margin-top: 5px;
}

.prodetail {
  margin-top: 35px;
}

.spec-table p {
  font-weight: 400;
  color: #333;
  padding: 0;
  margin-bottom: 6px;
  font-size: 15px;
}

.spec-ul-li li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #069546;
  font-size: 18px;
  top: -5px;
}

.grid-link__title h2,
.grid-link__title h3,
.grid-link__title h4,
.grid-link__title h5,
.grid-link__title h6 {
  color: #0543a8;
  font-family: "Poppins", serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 4px;
  margin-top: 4px;
}


/****************** product detils page end  ***************************/
/******************* catalogs start **********************/


.cata-box-wrap {
  width: 25%;
  padding: 3px;
  display: flex;
  flex-direction: column;
  height: inherit;
}

.cata-box {
  border-radius: 2px;
  border: 1px solid #d0e9f0;
  box-shadow: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  height: inherit;
  flex: 1;
}

.cata-title h2,
.cata-title h3,
.cata-title h4,
.cata-title h5,
.cata-title h6 {
  font-size: 16px;
  font-weight: 600;
  color: #0543a8;
  padding: 10px;
  text-align: start;
  transition: 0.5s all;
  font-family: "Poppins", sans-serif;
}

.cata-des-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.cata-img-wrap {
  height: 145px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image-box {
  text-align: center;
}

.cata-img-wrap img {
  object-fit: cover;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.cata-des-wrap .cata-sub-list {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.cata-des-wrap .cata-sub-list ul li .sub-cata-btn {
  text-align: left;
  font-size: 14px;
  line-height: 135%;
  text-transform: capitalize;
  letter-spacing: 0;
  background: transparent;
  margin: 0 10px;
  color: #222;
  font-weight: 500;
  position: relative;
  padding: 3px 0px;
  border: 0;
}

.cata-des-wrap .cata-sub-list ul li:not(:last-child) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
  padding-top: 1px;
}

.cata-des-wrap .cata-sub-list ul li {
  line-height: 100%;
}

.cata-des-wrap .cata-sub-list ul li:last-child .sub-cata-btn {
  padding-bottom: 0;
}

.cata-des-wrap .cata-sub-list ul {
  max-height: 85px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #f0f0f0;
  border-radius: 10px;
}

.cata-popup-wrap .modal-dialog {
  max-width: 680px;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.popu-wrap .modal-header {
  justify-content: center;
  padding: 10px;
}

.cata-popup-wrap .modal-body {
  padding: 30px 20px;
}

.cata-pop-wrap {
  height: 150px;
  overflow-y: auto;
  scrollbar-width: none;
}

.cata-pop-wrap ul {
  display: flex;
  flex-wrap: wrap;
}

.cata-pop-wrap ul li {
  width: 50%;
}

.pop-cata-btn {
	color: #015bb3;
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 120%;
	border: 1px solid #2da345;
	display: block;
	text-align: left;
	border-radius: 3px;
	transition: 0.5s all;
	padding: 6px 10px 6px 29px;
	margin: 15px 7px 0;
	background-color: #fff;
	position: relative;
	letter-spacing: 0.3px;
}

.pop-cata-btn::before {
	font-family: bootstrap-icons;
	font-size: 18px;
	transition: 0.5s all;
	position: absolute;
	top: 13px;
	left: 7px;
	right: auto;
	bottom: auto;
	content: "\f63e";
	color: #de0404;
	font-weight: 700;
}

.popu-wrap .modal-title {
  font-weight: 700;
  line-height: 100%;
  display: block;
  position: relative;
  margin-bottom: 0px;
  text-transform: capitalize;
  font-size: 23px;
  text-align: center;
  letter-spacing: 0.3px;
  background: -webkit-linear-gradient(0deg, #0155b5 0%, #0067B0 16%, #4e9bf2 98%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.popu-wrap .btn-close {
  background: #ed223d;
  opacity: 1;
  border: 1px solid #ed223d;
  border-radius: 50%;
  position: absolute;
  left: auto;
  right: -13px;
  bottom: auto;
  top: -9px;
  width: 25px;
  height: 25px;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.pop-cata-btn:hover {
	background: #fff;
	color: #015bb3;
}

.popu-wrap .btn-close:hover {
  background: #fff;
  color: Red;
}

.catalog-modal {
  border: 2px solid #0543a8;
  border-radius: 6px;
}

.catalog-content {
  border: 1px solid #015bb3;
  border-radius: 5px;
}

.modal-body {
  padding: 0 !important;
}

.catalog-header {
  background: #015bb3;
  color: #fff;
  font-weight: 700;
  border-radius: 0;
  padding: 7px 10px;
}

/******************* catalogs start **********************/
/**************************** About PAGE CSS Start **************************/
.abpgcnt p {
	font-size: 14px;
	text-align: justify;
	margin-bottom: 10px;
	font-weight: 400;
	color: #141414c7;
	font-family: "Poppins", serif;
}

.abpgcnt p b {
  font-weight: 600;
  color: #000;
}

.abpgcnt .why-cho {
  /* margin-top: 20px; */
  font-size: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  letter-spacing: 0.3px;
  color: #0140a8;
  padding-bottom: 0;
}

/**************************** About PAGE CSS END **************************/

/* **************************************SUB CATEGORY START********************************* */
.category-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Product grid */
.sub-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.sub-category-product {
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.sub-category-product img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.sub-category-product .price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.add-to-cart {
  background-color: #2ecc71;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 0 0 4px 4px;
}

.sub-category-img h2,
.sub-category-img h3,
.sub-category-img h4,
.sub-category-img h5,
.sub-category-img h6 {

  font-size: 17px;
  margin: 0.5rem 0;
}

/* Subscription Section Styles */
.subscription {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: left;
  height: 120px;
  overflow-y: scroll;
}

.subscription h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.subscription ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subscription ul li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #555;
}

@media (max-width: 768px) {
  .sub-category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sub-category-product h3 {
    font-size: 1rem;
  }

  .sub-category-product .price {
    font-size: 1rem;
  }

  .add-to-cart {
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .sub-category-grid {
    grid-template-columns: 1fr;
  }

  .sub-category-product h3 {
    font-size: 1rem;
  }

  .sub-category-product .price {
    font-size: 0.9rem;
  }
}

/* **************************************SUB CATEGORY END********************************* */
/* *******************************PRODUCT-DETEALIS START*********************************** */






.carousel-button.prev {
  left: 5px;
}

.carousel-button.next {
  right: 5px;
}

.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.product-thumbnails {
  display: flex;
  overflow-x: auto;
  margin-top: 10px;
}

.product-thumbnails img {
  width: 60px;
  height: 60px;
  margin: 0 10px;
  cursor: pointer;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

.product-thumbnails img:hover {
  opacity: 0.7;
}

.product-details h2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.product-description {
  margin-bottom: 15px;
  color: #555;
}

.product-price {
  font-size: 1.5rem;
  color: #e60000;
  margin-bottom: 20px;
}

.detl-btn-bx button, .detl-btn-bx button:hover {
	padding: 5px 11px;
	font-size: 15px;
	background-color: transparent;
	color: #2da345;
	border: 1px solid #ccc;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border-radius: 1px;
	font-weight: 500;
}

.catalog-section,
.specifications,
.faq-section {
  margin-top: 30px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.catalog-section a {
  display: block;
  color: #007bff;
  text-decoration: none;
  margin-bottom: 10px;
}

.catalog-section a:hover {
  text-decoration: underline;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 1.2rem;
  cursor: pointer;
  color: #007bff;
}

.faq-item p {
  display: none;
  margin-top: 10px;
}

.faq-item h3:hover {
  text-decoration: underline;
}

.similar-products {
  margin-top: 30px;
}

.similar-products h2 {
  margin-bottom: 20px;
}

.similar-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: 10px;
  width: 95%;
}

.similar-product-card {

  text-align: center;
  padding: 15px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.similar-product-card img {
  max-width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

.similar-product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.similar-product-card p {
  font-size: 1rem;
  color: #e60000;
  margin-bottom: 15px;
}

.similar-product-card button {
  padding: 10px;
  font-size: 0.9rem;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.similar-product-card button:hover {
  background-color: #0056b3;
}

.similar-product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-cont {
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 10px;
}

*/
/* *******************************PRODUCT-DETEALIS END*********************************** */

/*******************************Compare page CSS Start*******************************/
.compare-page .table th {
  color: #0558b6;
  font-size: 15px;
  line-height: 160%;
  margin: 0 0;
  padding: 5px 10px;
  font-weight: 400;
  font-weight: 500;
}

.compare-page .table>tbody>tr>td,
.compare-page .table>tbody>tr>td a {
  color: #333333;
  font-size: 14px !important;
  line-height: 140%;
  text-align: left;
  font-weight: 400;
  padding: 5px 10px !important;
}

.compare-page .table>tbody>tr>td a {
  padding: 0 !important;
}

.compare-cart-btn.addToCartBtn {
  background: #f49149;
  background-color: #f49149;
  border-radius: 20px;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  line-height: 100%;
  padding: 8px 15px 8px 15px;
  font-size: 13px;
  border: 1px solid #33333361;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.3px;
}

.compare-cart-btn.addToCartBtn:hover {
  background: transparent;
  color: #333;
  border-color: #333;
}

.cart-compare>.detl-btn-bx>button {
  text-align: center;
}

.compare-page .trash_icon {
  position: absolute;
  top: 10px;
  left: auto;
  right: 10px;
  bottom: auto;
}

.compare-page .trash_icon .remove-compare1 {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  color: red;
  width: 20px;
  height: 20px;
}

.compare-page .trash_icon .remove-compare1::before {
  font-size: 15px;
  transition: 0.5s all;
  line-height: 100%;
  font-family: bootstrap-icons;
  font-weight: 400;
  content: "\f78b";
}

.table,
td,
th {
  border: 1px solid #5f6788;
  margin-top: 5px;
}

.compare-page .table>tbody>tr>td a .featured-image {
  height: 120px;
}

/*******************************Compare page CSS End*******************************/

/*******************************Compare page CSS Start*******************************/

.compare-page .table th {
  font-size: 15px;
  padding: 3px 8px;
  font-weight: 500;
}

.compare-page .table>tbody>tr>td {
  font-size: 12px;
  padding: 3px 8px !important;
}

.compare-cart-btn.addToCartBtn {
  padding: 4px 8px 4px 8px;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.compare-page .table {
  width: 100%;
  margin: 5px 0;
}

/*******************************Sitemap page CSS Start*******************************/
.indian {
  color: #2f8e94;
  font-size: 30px;
  font-weight: 700
}

.heating {
  color: #2e2d2d;
  font-size: 30px;
  font-weight: 700
}

.sitemap ul>li>a.l0bg {
  background: #2da345;
}

.l1bg {
  background-color: #2da345 !important;
}

.sitemap ul>li>a.l2bg {
  background-color: #0155b5 !important;
  color: #fff;
}

.sitemap ul {
  list-style: none;
  padding-left: 20px;
  margin: 0
}

.sitemap ul>li {
  border-left: solid #efefef 2px;
  padding-left: 25px;
  font-size: 14px;
}

.sitemap ul>li>a {
  display: inline-block;
  max-width: 500px;
  padding: 5px 10px;
  background: #047285;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  text-overflow: ellipsis;
  margin: 5px 0;
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, .2);
  position: relative;
  font-weight: 500;
  font-size: 14px;
}

.sitemap ul>li>a:hover {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5)
}

.sitemap ul>li:before {
  content: "" !important
}

.sitemap ul>li>a::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  width: 25px;
  background: #efefef;
}



.quantity-box {
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 2px;
}

.qty-btn {
  background-color: transparent;
  color: #003fa7;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
  padding: 0 12px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.qty-btn:hover {
  color: #fff;
}

.button-addtocart .addpro,
.button-addtocart .addpro:hover {
  color: #fff;
  font-size: 16px;
  border: 1px solid #2e6bb5 ;
  background: #2e6bb5;
  border-radius: 2px;
  padding: 4px 13px;
  display: block;
  font-weight: 500;
}

.qty-count {
  min-width: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.modal-content {
	position: relative;
	border-radius: 10px;
	border: 2px solid #2e6bb5;
}
.custom-close-btn, .custom-close-btn:hover {
	border: none;
	color: #fff;
	position: absolute;
	top: -4px;
	right: -4px;
	background: red;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	text-align: center;
	font-size: 12px;
	border: 1px solid #fff;
}

/*******************************Sitemap page CSS End*******************************/

.lab-title h1,
.lab-title h2,
.lab-title h3,
.lab-title h4,
.lab-title h5,
.lab-title h6 {
  font-size: 28px;
  text-align: start;
  margin: 55px 0 3px;
  color: #2e6bb5;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
}

.ecomm-title h1,
.ecomm-title h2,
.ecomm-title h3,
.ecomm-title h4,
.ecomm-title h5,
.ecomm-title h6 {
  font-size: 28px;
  text-align: center;
  margin: 50px 0 10px;
  color: #2e6bb5;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
}

.wrapper-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.wrapper {
  width: 420px;
  color: #0543a8;
  border: 1px solid #0543a8;
  border-radius: 10px;
  padding: 30px 40px;
}

.wrapper h1 {
  font-size: 28px;
  text-align: center;
  color: #2e6bb5;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  margin-bottom: 35px;
}

.wrapper .input-box {
  width: 100%;
  height: 50px;
  margin: 8px 0;
  position: relative;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  border: 1px solid #9bc0fb;
  border-radius: 4px;
  font-size: 16px;
  color: #0543a8;
  padding: 0 33px 0 20px;
}

.input-box input::placeholder {
  color: #333;
}

.input-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.wrapper .remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin: 15px 0;
}

.remember-forgot label input {
  accent-color: #0543a8;
  margin-right: 6px;
}

.remember-forgot a {
  color: #555;

}

.remember-forgot a:hover {
  color: #0543a8;
}

.wrapper .login-btn {
  width: 100%;
  height: 45px;
  background: #2e6bb5;
  border: none;
  outline: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.wrapper .register-link {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}

.wrapper .register-link p a {
  color: #0543a8;
  text-decoration: none;
  font-weight: 700;
}

.wrapper .register-link p a:hover {
  color: #2da345;
}

.input-box div .captcha_image {
  margin-right: 10px;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.otp-box {
  width: 40px;
  height: 50px;
  font-size: 18px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s;
}

.otp-box:focus {
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/****************************** Tracking Page CSS Start*******************************/

.title-wrap h1,
.title-wrap h2,
.title-wrap h3,
.title-wrap h4,
.title-wrap h5,
.title-wrap h6 {
  font-size: 30px;
  font-weight: 600;
  color: #e77c32;
  margin: 0;
}

.title-wrap {
  display: block;
  padding-bottom: 20px;
}

.track-order-box {
  border: 1px solid #ebeaea;
  padding: 0 0 30px;
  border-radius: 5px;
}

.track-order-box .tracking-id {
  padding: 12px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  background: #f4f5f6;
  color: #2e6bb5;
  border: 1px solid #2e6bb5;
}

.track-order-box .tracking-id span {
  color: #2e6bb5;
  font-weight: 500;
}

.tracking-det {
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.tracking-det div {
  font-size: 15px;
  color: #959595;
}

.tracking-det div span {
  color: #333;
  font-size: 16px;
}

.track-order-box {
  max-width: 1100px;
  margin: 0 auto 40px;
}

/* Tracking Section CSS Start*/
.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.10rem;
}

.card-header:first-child {
  border-radius: calc(0.37rem - 1px) calc(0.37rem - 1px) 0 0;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.track {
  position: relative;
  background-color: #ddd;
  height: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  margin-top: 35px;
}

.track-icon {
  position: relative;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  margin-top: 35px;
}

.track .step,
.track-icon .step {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 25%;
  margin-top: -18px;
  text-align: center;
  position: relative;
}

.track .step.active::before {
  background: #2e6bb5;
}

.track .step::before {
  height: 5px;
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  top: 18px;
}

.track .step.active .icon {
  background: #2e6bb5;
  color: #fff;
}

.track .icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  position: relative;
  border-radius: 100%;
  background: #ddd;
}

.track-icon .icon i {
  font-size: 30px;
  color: #2e6bb5;
}

.track .step.active .text {
  font-weight: 400;
  color: #959595;
  font-size: 14px;
}

.track .text {
  display: block;
  margin-top: 7px;
  font-size: 14px;
}

.itemside {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.itemside .aside {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.img-sm {
  width: 80px;
  height: 80px;
  padding: 7px
}

ul.row,
ul.row-sm {
  list-style: none;
  padding: 0;
}

.itemside .info {
  padding-left: 15px;
  padding-right: 7px;
}

.itemside .title {
  display: block;
  margin-bottom: 5px;
  color: #212529;
}

p {
  margin-top: 0;
}

.order-card .track-div {
  display: none;
}

.order-card .track-div.tracking-show {
  display: block;
  padding: 0 30px;
}

.Tracking-section .track-order .track:first-child {
  margin-top: 50px;
}

.order-table {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-card,
.order-title {
  border-bottom: 1px solid #dee2e6;
}

.order-card.tracking-show {
  background: #e8e8e85e;
}

.order-card.tracking-show>.order-table {
  background: #fff;
}

/* Tracking Section CSS End*/

/****************************** Tracking Page CSS End*******************************/
/****************************** My Account Page CSS Start *******************************/
.acount-boder {
  border: 1px solid #ccc;
  padding: 20px 15px;
  border-radius: 4px;
}

.prfi-img {
  width: 100px;
  height: 100px;
  display: block;
  border-radius: 50%;
  background: #e4e6e7;
  overflow: hidden;
  margin: 0 auto;
}

.accntu-page img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.accntu-page .ac-username {
  color: #333;
  font-size: 16px;
  padding: 10px 0 3px 0;
  font-weight: 700;
  margin: 0;
  display: block;
  text-align: start;
  letter-spacing: 0.4px;
}

.accntu-page .ac-Mail {
  color: #858788;
  font-size: 13px;
  padding: 0;
  font-weight: 400;
  margin: 0;
  display: block;
  text-align: start;
}

/* .accntu-page .butn-tab {
	border: 1px solid #0543a8;
	padding: 30px 15px 10px;
	border-radius: 4px;

} */
.accntu-page {
  padding: 50px 0;
}

.img-profile-ud {
  padding-bottom: 15px;
}

.accntu-page .myaccount-man-btn {
  border: 1px solid #2e6bb5;
  margin-bottom: 10px;
  color: #333;
  font-size: 15px;
  padding: 7px 8px 7px 10px;
  position: relative;
  text-align: left;
  text-decoration: none;
  border-radius: 5px;
}

.accntu-page .myaccount-man-btn.active {
  background: #2e6bb5;
  color: #fff;
}

.accntu-page .tab-content {
  border: 1px solid #2e6bb5;
  border-radius: 4px;
}

.accntu-page .myacnt-heading {
  padding: 10px;
  border-bottom: 1px solid #2e6bb5;
  padding-left: 20px;
}

.myacnt-heading h1,
.myacnt-heading h2,
.myacnt-heading h3,
.myacnt-heading h4,
.myacnt-heading h5,
.myacnt-heading h6,
.myacnt-heading p {
  color: #2e6bb5;
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  font-family: "Mulish", sans-serif;
  text-align: center;
}

.accntu-page .cad-body {
  padding: 30px 15px 30px;
}

.accntu-page .cad-body p {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 120%;
  padding: 0;
  font-weight: 400;
  margin: 0;
}

.accntu-page .cad-body form {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

.accntu-page .cad-body .form-group {
  width: 30%;
  padding: 0 10px 20px;
  position: relative;
}

.accntu-page .cad-body p a {
  color: #0543a8;
  font-weight: 600;
}

.accntu-page .cad-body .form-group input.form-control {
  padding: 0 10px;
  height: 35px;
  font-size: 14px;
}

.accntu-page .cad-body .form-group input.form-control {
  padding: 0 10px;
  height: 35px;
  font-size: 14px;
  box-shadow: none;
  line-height: 120%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.accntu-page .cad-body .Submit {
  width: 100%;
}

.accntu-page .cad-body .Submit .btn,.submit .addres-btn {
  background: #2e6bb5;
  color: #fff;
  border-radius: 4px;
  line-height: 35px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 10px;
  border: 1px solid #0543a8;
  transition: 0.5s all;
}

.accntu-page .cad-body .Submit .btn:hover,.submit .addres-btn:hover {
  background: transparent;
  color: #2e6bb5;
}

.accntu-page .ordr-card .trck-btn a:hover,
.accntu-page .cad-body .Edit-btn:hover {
  background-color: transparent;
  color: #2e6bb5;
}

.accntu-page .cad-body address {
  margin: 0;
  padding-bottom: 9px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.accntu-page .cad-body .Edit-btn {
  padding: 0 15px;
  border: 1px solid #0543a8;
  background: #2e6bb5;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: 0.5s all;
  line-height: 27px;
  margin-top: 11px;
}

.myacnt-subheading h2,
.myacnt-subheading h3,
.myacnt-subheading h4,
.myacnt-subheading h5,
.myacnt-subheading h6,
.myacnt-subheading p {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 120%;
  padding: 10px 15px 30px;
  font-weight: 500;
  margin: 0;
  display: block;
  text-align: left;
  letter-spacing: 0.4px;
}

.accntu-page .addres-bx-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.accntu-page .addres-bx-wrap .addres-wrap {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 4px;
}

.accntu-page .Addres-frm {
  padding: 0 15px 25px;
}

.accntu-page .Addres-frm form {
  display: flex;
  flex-wrap: wrap;
}

.accntu-page .Addres-frm form p {
  padding: 5px 10px;
  width: 50%;
}

.accntu-page .Addres-frm form p label {
  display: block;
}

.accntu-page .Addres-frm form p {
  margin: 0 auto;
  width: 50%;
  padding: 0 10px 20px;
  position: relative;
}

.accntu-page .Addres-frm form p input {
  background: #fff;
  color: #212529;
  font-weight: 400;
  width: 100%;
  display: block;
  padding: 0 10px;
  height: 35px;
  font-size: 14px;
  box-shadow: none;
  line-height: 120%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.accntu-page .Addres-frm form p label,
.Edit-address .Addresss-form label {
  display: block;
  text-transform: capitalize;
  position: absolute;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  top: -5px;
  left: 18px;
  color: #0e9ac8;
  background: #fff;
  line-height: 100%;
  padding: 0 5px;
}
.edit-header {
	background: #015bb3;
	color: #fff;
	font-weight: 500;
	font-size: 11px;
	padding: 11px;
	border-radius: 8px 8px 0 0;
}
.accntu-page .Addres-frm form p.phone input,
.accntu-page .Addres-frm form p.Pincode input,
.Edit-address .Addresss-form p.phone input,
.Edit-address .Addresss-form p.Pincode input {
  -moz-appearance: textfield;
}

.accntu-page .Addres-frm form .submit {
  text-align: center;
  margin-top: 20px;
  width: 100%;
}

.accntu-page .Addres-frm form p .addres-btn, .Edit-address .Addresss-form p.submit input {
	padding: 0 15px;
	border: 1px solid #0543a8;
	background: #2e6bb5;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 500;
	transition: 0.5s all;
	line-height: 35px;
	margin-top: 11px;
}

.accntu-page .Addres-frm form p .addres-btn {
  margin: 0;
}

.accntu-page .Addres-frm form p .addres-btn:hover,
.Edit-address .Addresss-form p.submit input:hover {
  background-color: transparent;
  color: #0543a8;
}

.Edit-address .Addresss-form p {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}

body .Edit-address .Addresss-form label {
  left: 11px;
}

.Edit-address .Addresss-form input {
  height: 38px;
  width: 100%;
  background: transparent;
  border: 1px solid #CCCCCC;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  color: #0000005e;
  margin: 0;
}

.Edit-address .modal-dialog {
  max-width: 650px;
}

.Edit-address .Addresss-form p.submit {
  margin: 0;
}

.Edit-address .modal-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #0e9ac8;
  letter-spacing: 0.3px;
}

.password-des {
  padding-top: 20px;
}

.accntu-page .cad-body p.note-txt {
  font-size: 20px;
  line-height: 120%;
  padding: 10px 15px;
  font-weight: 500;
  margin: 0;
  display: block;
  text-align: left;
  letter-spacing: 0.4px;
}

.password-des .deta-pwd {
  margin: 0;
  padding: 0;
}

.password-des .deta-pwd li {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 120%;
  padding: 0 0 0 28px;
  font-weight: 400;
  margin: 0 0 6px 0;
  position: relative;
}

.password-des .deta-pwd li::marker {
  font-size: 0;
}

.password-des .deta-pwd li::before {
  position: absolute;
  top: 5px;
  right: auto;
  bottom: auto;
  width: 10px;
  height: 50%;
  background: #38a646;
  content: "";
  left: 16px;
}



/****************************** My Account Page CSS End*******************************/
/************************** Cart Page CSS Start**************************/
.cartpage {
  padding: 50px 0;
}

.single-pr-tit h1,
.single-pr-tit h2,
.single-pr-tit h3,
.single-pr-tit h4,
.single-pr-tit h5,
.single-pr-tit h6 {
  color: #046bb5;
  font-size: 16px;
  line-height: 130%;
  font-weight: 600;
  margin: 0;
  display: inline-block;
  text-align: left;
  letter-spacing: 0;
  padding: 0;
}

.cart-page-ro {
  padding-top: 10px;
}

.cart-title-wrap {
  align-items: center;
  background: #f4f5f6;
  padding: 13px 10px;
  border: 1px solid #0363aa;
}

.cart-para-tit {
  margin: 0;
  color: #0363aa;
  font-size: 16px;
  position: relative;
  text-align: left;
  line-height: 120%;
  font-weight: 600;
}

.pr-ct-im img {
  height: 130px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  background: #f3f3f3;
  border-radius: 10px;
}

.Pr-cart-wr {
  padding: 20px 0;
  position: relative;
  align-items: center;
  border: 1px solid #0363aa;
  margin-top: 10px;
}

.single-pr-tit {
  margin-bottom: 10px;
  text-decoration: none;
  display: inline-block;
}

.ct-pr-des {
  margin: 0;
  padding: 0;
  max-height: 80px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #0363aa #dfdfdfb2;
  margin-right: 10px;
}

.single-pr-tit h1,
.single-pr-tit h2,
.single-pr-tit h3,
.single-pr-tit h4,
.single-pr-tit h5,
.single-pr-tit h6 {
  color: #0543a8;
  font-size: 16px;
  line-height: 130%;
  font-weight: 600;
  margin: 0;
  display: inline-block;
  text-align: left;
  letter-spacing: 0;
  padding: 0;
}

.ct-pr-des li {
  color: #6c6c6c;
  font-size: 14px;
  text-align: left;
  font-weight: 400;
  padding: 0 0 7px 0;
}

.ct-pr-des li span {
  color: #333;
  font-weight: 500;
}

.Pr-cart-wr::before {
  content: "";
  position: absolute;
  width: calc(100% - 30px);
  height: 1px;
  /* background: #ccc9; */
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.pr-ct-pri span {
  display: block;
  text-align: start;
  font-size: 16px;
  font-family: 'poppins';
  font-weight: 600;
  color: #2da345;
  padding-bottom: 3px;
}

.pr-ct-pri span.rp {
  color: #9a9a9a;
  font-size: 14px;
  line-height: 100%;
  text-decoration: line-through;
  font-weight: 400;
}

.rem {
  position: absolute;
  left: auto;
  right: 0;
  width: auto;
  padding: 0;
  z-index: 9;
  background: red;
  padding: 2px 7px;
  border-radius: 2px;
  top: 0;
  bottom: auto;
}

.cart-remove {
  color: #fff;
  border: 0;
  background: transparent;
}


.ct-quantity button {
  background-color: transparent;
  color: #2d2d2d;
  /* font-size: 20px; */
  transition: background-color .2s;
  box-shadow: none;
  pointer-events: all;
  cursor: pointer;
  border: 1px solid #ccc;
  padding: 0 8px;
  border-radius: 4px;
}

.ct-quantity .input-box {
  width: 40px;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  height: auto;
  border: none;
  border-top: 0;
  border-bottom: 0;
  -moz-appearance: textfield;
  font-family: 'poppins';
}

.Pr-cart-wr:last-child::before {
  display: none;
}

.ct-price-box {
  border: 1px solid #0363aa;
}

.ct-price-box h2,
.ct-price-box h3,
.ct-price-box h4,
.ct-price-box h5,
.ct-price-box h6,
.ct-price-box h1 {
  color: #0363aa;
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
  margin: 0;
  display: block;
  text-align: center;
  letter-spacing: 0.5px;
  padding: 10px;
  border-bottom: 1px solid #0363aa;
  background: #f4f5f6;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.ct-price-item {
  display: flex;
  justify-content: space-between;
  margin: 0 20px;
}

.ct-price-item p,
.ct-price-item span {
  text-align: left;
  font-size: 16px;
  line-height: 120%;
  text-transform: capitalize;
  margin: 0;
  color: #333;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.ct-price-item.ct-sub-total p,
.ct-price-item.ct-sub-total span {
  font-weight: 700;
  margin-top: 20px;
}

.ct-Buy {
  background: #0363aa;
  color: #fff;
  border-radius: 4px;
  line-height: 35px;
  padding: 0px 40px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 10px;
  border: 1px solid #0363aa;
  transition: 0.5s all;
  /* display: block; */
  text-decoration: none;
}

.ct-Buy:hover {
  background-color: #fff;
  color: #0363aa;
}

.ct-btn-wrap {
  margin: 20px 0 30px;
  text-align: center;
}

/************************** Cart Page CSS End**************************/
/************************** Checkout Page CSS Start**************************/
.checkoutpage {
  padding: 50px 0;
}

.chct-page-ro {
  max-width: 1100px;
  margin: 30px auto 0;
}

.chct-cnt-wra {
  border: 1px solid #ccc;
  padding: 30px 25px;
  border-radius: 4px;
}

.chct-det-pr-wr {
  padding-top: 20px;
}

.chct-addres-wrap address,
.chct-country,
.chct-numb {
  color: #333;
  line-height: 120%;
  font-weight: 400;
  display: block;
  text-align: left;
  letter-spacing: 0;
  padding: 0 0 5px 0;
  margin: 0;
  font-size: 15px;
}

.chct-country,
.chct-numb {
  font-size: 15px;
}

.adre-name {
  color: #333;
  font-size: 18px;
  line-height: 120%;
  font-weight: 600;
  margin: 0;
  display: block;
  text-align: left;
  letter-spacing: 0;
  padding: 0 0 15px 0;
}

.chct-addres-wrap {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}

.chct-Edit-btn {
  padding: 0 15px;
  border: 1px solid #0363aa;
  background-color: #0363aa;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.5s all;
  line-height: 27px;
  margin-top: 11px;
}

.chct-Edit-btn:hover {
  background-color: transparent;
  color: #0363aa;
}

.chct-subheading h3,
.chct-subheading h2,
.chct-subheading h4,
.chct-subheading h5,
.chct-subheading h6,
.chct-subheading h1,
.chct-subheading .adduod-tit {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 120%;
  padding: 0 15px 30px;
  font-weight: 500;
  margin: 0;
  display: block;
  text-align: left;
  letter-spacing: 0.4px;
}

.chct-Addres-frm form {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 0 30px;
  border-radius: 4px;
}

.chct-Addres-frm p {
	margin: 0;
	width: 50%;
	padding: 0 10px;
	position: relative;
}

.chct-Addres-frm p label {
	display: block;
	text-transform: capitalize;
	font-size: 14px;
	color: #2e6bb5;
	padding: 0 5px;
	margin-bottom: 3px;
	margin-top: 10px;
}

.chct-Addres-frm p input {
  background: #fff;
  color: #212529;
  font-weight: 400;
  width: 100%;
  display: block;
  padding: 0 10px;
  height: 35px;
  font-size: 14px;
  box-shadow: none;
  line-height: 120%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.pin,
.phone {
  -moz-appearance: textfield;
}

.po-wrap {
  display: flex;
  flex-wrap: wrap;
}

.chct-addres-btn {
  background: #0363aa;
  color: #fff;
  border-radius: 4px;
  line-height: 35px;
  padding: 0px 40px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 10px;
  border: 1px solid #0363aa;
  transition: 0.5s all;
  display: inline-block;
  text-decoration: none;
}

.chct-addres-btn:hover {
  background-color: transparent;
  color: #0363aa;
}

.chct-Addres-frm p.submit {
	width: 100%;
	text-align: center;
	margin-top: 15px;
}
.chct-price-box h2,
.chct-price-box h3,
.chct-price-box h4,
.chct-price-box h5,
.chct-price-box h6,
.chct-price-box h3,
.chct-price-box p.chcekot-tit {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  display: block;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 0px;
  text-transform: capitalize;
  color: #353543;
  text-align: left;
  font-family: "Poppins", sans-serif;
}

.chct-price-item {
  display: flex;
  justify-content: space-between;
}

.chct-price-item.chect-dis-pr p,
.chct-price-item.chect-dis-pr span {
  color: #038d63;
  margin-top: 15px;
}

.chct-total-order {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #ccc;
}

.chct-price-box {
  margin-left: 20px;
}

.chct-price-item p,
.chct-price-item span,
.chct-total-order p,
.chct-total-order span {
  text-align: left;
  font-size: 15px;
  line-height: 120%;
  text-transform: capitalize;
  margin: 0;
  color: #333;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.chct-total-order p,
.chct-total-order span {
  font-weight: 600;
  font-size: 16px;
}

/************************** Checkout Page CSS End**************************/
/****************************** Order Page CSS Start*******************************/
.details-order-page {
  padding: 50px 0;
}

.detor-bx {
  margin: 30px 0 0 0;
  border: 1px solid #ccc;
}

.detbsor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0543a8;
  padding: 10px;
}

.detbsor .detracking-id {
  margin: 0px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  position: relative;
  text-align: left;
  line-height: 120%;
  font-weight: 600;
  text-transform: uppercase;
}

.detbsor .detracking-id span {
  text-transform: inherit;
  padding-left: 4px;
  font-weight: 500;
  color: #e77c32;
}

.detor-bx .pr-ct-im img {
  padding: 10px;
  height: 160px;
}

.trackgopag {
  color: #2da345;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 4px 8px 7px;
  font-size: 15px;
  line-height: 100%;
  background: #fff;
  font-weight: 600;
  border-radius: 3px;
}

.trackgopag:hover {
  color: #fff;
  background: transparent;
}

.ofrd-det {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.ofrd-det>div {
  color: #8a8787;
  font-size: 16px;
  text-align: left;
  line-height: 120%;
  font-weight: 500;
}

.ofrd-det>div span {
  color: #333;
  font-weight: 500;
}

.detor-bx .Pr-cart-wr.row {
  border: 0;
  padding: 10px 0 20px;
}

.accories-txt {
  color: #333;
  font-size: 14px;
  line-height: 100%;
  text-align: left;
  font-weight: 600;
  padding: 0 0 9px 0;
  margin: 0;
}

.ct-pr-des li span.pdt-take {
  color: #6c6c6c;
  font-size: 13px;
  padding-left: 10px;
  font-weight: 400;
}

.detor-bx .ct-pr-des li {
  font-size: 14px;
  line-height: 110%;
  padding: 0 0 5px 0;
}

.trackgopagmob {
  display: none;
}

@media (max-width: 991px) {
  .hover-icons {
    opacity: 1;
  }

  .lab-title h1,
  .lab-title h2,
  .lab-title h3,
  .lab-title h4,
  .lab-title h5,
  .lab-title h6 {
    font-size: 23px !important;
    text-align: center !important;
    margin-top: 50px !important;
    color: #2e6bb5;
    font-family: "Mulish", sans-serif;
    font-weight: 800;
    margin-bottom: 10px !important;
  }

  .main-title h1,
  .main-title h2,
  .main-title h3,
  .main-title h4,
  .main-title h5,
  .main-title h6 {
    font-size: 23px !important;
    text-align: center !important;
    margin-top: 40px !important;
    color: #2e6bb5;
    font-family: "Mulish", sans-serif;
    font-weight: 800;
    margin-bottom: 10px !important;
  }

  .lab-title-detl h1 {
    font-size: 23px !important;
    text-align: start;
    margin-top: 20px !important;
    color: #2e6bb5;
    font-family: "Mulish", sans-serif;
    font-weight: 700 !important;
    /* margin-bottom: 10px; */
  }

  .playbtn {
    width: 45px;
    height: 45px;
    position: fixed;
    display: inline-block;
    padding: 8px;
    color: #fff;
    transition: 0.5s;
    font-weight: 600;
    overflow: hidden;
    border-radius: 50%;
    background: #003fa7;
    border: 2px solid #003fa7;
    font-size: 10px;
    line-height: 100%;
    right: 11px;
    bottom: 0;
    z-index: 1000;
    animation: pulse 2s infinite;
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .dlogo {
    width: 170px;
    padding-top: 0;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }



  .navwebste.active {
    display: block;
    animation: slideIn 0.5s ease forwards;
  }

  .navwebste li {
    margin: 0;
  }

  .navwebste li a {
    padding: 5px 15px;
    display: block;
    text-align: left;
    border-bottom: 1px solid #ccc;
    color: #003fa7;
  }

  .close-menu {
    width: 37px;
    height: 37px;
    position: absolute;
    top: 10px;
    left: auto;
    font-size: 30px;
    color: #003fa7;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: block;
    padding: 0;
    right: 10px;
  }

  .navbarbox {
    position: relative;
  }

  .breadcrumb-sec {
    display: none;
  }
}

/********************************************* Responsive Start *********************************************/
@media only screen and (min-width:992px) and (max-width:1200px) {

  /************************** Checkout Page CSS Start**************************/
  .chct-addres-wrap {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .chct-Addres-frm p label {
    font-size: 12px;
    left: 11px;
  }

  .chct-Addres-frm p {
    padding: 0 5px 17px;
  }

  .chct-subheading h3,
  .chct-subheading h2,
  .chct-subheading h4,
  .chct-subheading h5,
  .chct-subheading h6,
  .chct-subheading h1,
  .chct-subheading .adduod-tit {
    padding: 0 15px 25px;
  }

  /************************** Checkout Page CSS End**************************/
  /************************** Cart Page CSS Start**************************/
  .ct-price-box {
    margin-left: 20px;
  }

  /************************** Cart Page CSS End**************************/

  /****************************** My Account Page CSS Start*******************************/
  .accntu-page .addres-bx-wrap {
    grid-gap: 15px;
  }

  .accntu-page .cad-body {
    padding: 20px 10px 15px;
  }

  .myacnt-subheading h2,
  .myacnt-subheading h3,
  .myacnt-subheading h4,
  .myacnt-subheading h5,
  .myacnt-subheading h6,
  .myacnt-subheading p {
    font-size: 18px;
    padding: 10px 10px 14px;
    letter-spacing: 0;
  }

  .accntu-page .Addres-frm form p {
    padding: 0 0 15px;
    width: 100%;
    margin: 0 auto;
  }

  .accntu-page .Addres-frm form .submit {
    margin-top: 10px;
  }

  .accntu-page .Addres-frm form p label,
  .Edit-address .Addresss-form label {
    left: 10px;
  }

  .accntu-page .Addres-frm {
    padding: 20px 15px 25px;
  }

  /****************************** My Account Page CSS End*******************************/
  /****************************** Tracking Page CSS Start*******************************/
  .Track-order-page .tracking-det div span {
    font-size: 14px;
  }

  .Track-order-page .track-order-box .tracking-id {
    padding: 10px 15px;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .Track-order-page .tracking-det {
    margin-bottom: 50px;
  }

  /****************************** Tracking Page CSS End*******************************/


}

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

  /************************** Checkout Page CSS Start**************************/
  .chct-cnt-wra {
    padding-top: 20px;
    padding-right: 12px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .chct-addres-btn {
    padding: 0px 20px;
    font-size: 15px;
  }

  .chct-addres-wrap {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .chct-Addres-frm p label {
    font-size: 12px;
    left: 11px;
  }

  .chct-Addres-frm p {
    padding: 0 5px 17px;
  }

  .chct-price-box {
    margin-left: 0;
  }

  /************************** Checkout Page CSS End**************************/
  /************************** Cart Page CSS Start**************************/
  .ct-price-box {
    margin: 30px 0 0 0;
  }

  .ct-price-box h2,
  .ct-price-box h3,
  .ct-price-box h4,
  .ct-price-box h5,
  .ct-price-box h6,
  .ct-price-box h1 {
    margin-bottom: 30px;
  }

  /************************** Cart Page CSS End**************************/
  /****************************** Sign in Page CSS Start*******************************/
  .lg-content-wr {
    padding: 50px 30px 30px;
  }

  .lg-sub-btn,
  .Regi-btn {
    line-height: 30px;
    padding: 0 15px;
    font-size: 14px;
    width: auto;
    display: inline-block;
  }

  .lg-com-title h2,
  .lg-com-title h3,
  .lg-com-title h4,
  .lg-com-title h5,
  .lg-com-title h6,
  .lg-com-title h1 {
    font-size: 20px;
  }

  /****************************** Sign in Page CSS End*******************************/
  /****************************** Register Page CSS Start*******************************/
  .lg-content-wr.rg-content-wr {
    padding: 50px 30px 30px;
  }

  /****************************** Register Page CSS End*******************************/
  /****************************** My Account Page CSS Start*******************************/
  .accntu-page .butn-tab {
    margin: 0 auto 20px !important;
  }

  .img-profile-ud {
    padding-bottom: 20px;
  }

  .accntu-page .cad-body {
    padding: 20px 15px 20px;
  }

  .myacnt-heading h1,
  .myacnt-heading h2,
  .myacnt-heading h3,
  .myacnt-heading h4,
  .myacnt-heading h5,
  .myacnt-heading h6,
  .myacnt-heading p {
    font-size: 21px;
  }

  .accntu-page .Addres-frm form p label,
  .Edit-address .Addresss-form label {
    font-size: 13px;
  }

  .accntu-page .Addres-frm form p {
    padding: 0 5px 15px;
  }

  .accntu-page .Addres-frm form p label,
  .Edit-address .Addresss-form label {
    font-size: 12px;
    left: 10px;
  }

  .accntu-page .Addres-frm {
    padding: 20px 10px 25px;
  }

  .myacnt-subheading h2,
  .myacnt-subheading h3,
  .myacnt-subheading h4,
  .myacnt-subheading h5,
  .myacnt-subheading h6,
  .myacnt-subheading p {
    padding: 10px 15px 10px;
  }

  .password-des {
    padding-top: 0;
  }

  .password-des .deta-pwd li {
    font-size: 14px;
  }

  .password-des .deta-pwd li::before {
    height: 100%;
  }

  /****************************** My Account Page CSS End*******************************/

  /****************************** Tracking Page CSS Start*******************************/
  .title-wrap h1,
  .title-wrap h2,
  .title-wrap h3,
  .title-wrap h4,
  .title-wrap h5,
  .title-wrap h6 {
    font-size: 25px;
  }

  .Track-order-page .tracking-det div span {
    font-size: 13px;
  }

  .Track-order-page .track-order-box .tracking-id {
    padding: 10px 15px;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .Track-order-page .tracking-det {
    margin-bottom: 50px;
  }

  .Track-order-page .tracking-det div {
    font-size: 13px;
  }

  .Track-order-page .track-order-box .tracking-id {
    padding: 7px 15px;
    font-size: 15px;
  }

  .Track-order-page .track .step {
    margin-top: -12px;
  }

  .Track-order-page .track .step::before {
    top: 12px;
  }

  .Track-order-page .track .icon {
    width: 28px;
    height: 28px;
    line-height: 27px;
    font-size: 12px;
  }

  .Track-order-page .track-order-box {
    padding: 0 0 20px;
  }

  /****************************** Tracking Page CSS End*******************************/
  /****************************** Order Page CSS Start*******************************/
  .ofrd-det>div {
    font-size: 14px;
  }

  .ct-pr-des {
    max-height: 100%;
  }

  /****************************** Order Page CSS End*******************************/


}

@media only screen and (min-width:586px) and (max-width:767px) {

  /************************** Cart Page CSS Start**************************/
  .ct-price-box {
    margin: 25px 0 0 0;
  }

  .ct-price-box h2,
  .ct-price-box h3,
  .ct-price-box h4,
  .ct-price-box h5,
  .ct-price-box h6,
  .ct-price-box h1 {
    margin-bottom: 20px;
  }

  .cart-title-wrap {
    display: none;
  }

  .cart-para-cen {
    text-align: left;
  }

  .pr-ct-pri span.rp {
    display: none;
  }

  .pr-ct-pri span {
    font-size: 16px;
    padding: 0;
    text-align: left;
  }

  .pr-ct-qua,
  .pr-ct-pri {
    margin-top: 20px;
  }

  .single-pr-tit {
    margin-top: 10px;
  }

  .Pr-cart-wr {
    border: 1px solid #ccc;
    margin-bottom: 20px;
  }

  .Pr-cart-wr::before {
    display: none;
  }

  .rem {
    right: 10px;
    top: 10px;
  }

  /************************** Cart Page CSS End**************************/
  /****************************** Sign in Page CSS Start*******************************/
  .lg-content-wr {
    padding: 50px 30px 30px;
  }

  .lg-sub-btn,
  .Regi-btn {
    line-height: 30px;
    padding: 0 15px;
    font-size: 14px;
    width: auto;
    display: inline-block;
  }

  .lg-com-title h2,
  .lg-com-title h3,
  .lg-com-title h4,
  .lg-com-title h5,
  .lg-com-title h6,
  .lg-com-title h1 {
    font-size: 20px;
  }

  /****************************** Sign in Page CSS End*******************************/
  /****************************** Register Page CSS Start*******************************/
  .lg-content-wr.rg-content-wr {
    padding: 50px 30px 30px;
  }

  /****************************** Register Page CSS End*******************************/
  /****************************** My Account Page CSS Start*******************************/
  .accntu-page .butn-tab {
    margin: 0 auto 20px !important;
    padding: 20px 10px;
  }

  .img-profile-ud {
    display: none;
  }

  .accntu-page .cad-body {
    padding: 15px 15px 20px;
  }

  .myacnt-heading h1,
  .myacnt-heading h2,
  .myacnt-heading h3,
  .myacnt-heading h4,
  .myacnt-heading h5,
  .myacnt-heading h6,
  .myacnt-heading p {
    font-size: 19px;
  }

  .accntu-page .cad-body p {
    font-size: 14px;
  }

  .accntu-page .Addres-frm form p label,
  .Edit-address .Addresss-form label {
    font-size: 12px;
    left: 11px;
  }

  .accntu-page .Addres-frm form p {
    padding: 0 5px 15px;
    width: 100%;
  }

  .accntu-page .Addres-frm {
    padding: 20px 10px 25px;
  }

  .myacnt-subheading h2,
  .myacnt-subheading h3,
  .myacnt-subheading h4,
  .myacnt-subheading h5,
  .myacnt-subheading h6,
  .myacnt-subheading p {
    padding: 10px 15px 10px;
  }

  .accntu-page .cad-body .form-group {
    width: 50%;
    padding: 0 5px 15px;
  }

  .accntu-page .cad-body form {
    margin-top: 30px;
  }

  .accntu-page .cad-body .Submit {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }

  .accntu-page .cad-body address {
    font-size: 14px;
  }

  .accntu-page .addres-bx-wrap .addres-wrap {
    padding: 10px;
  }

  .accntu-page .addres-bx-wrap {
    grid-gap: 10px;
  }

  .accntu-page .Addres-frm form .submit {
    margin-top: 10px;
  }

  .accntu-page .ordr-wrap {
    padding: 20px 10px 15px;
  }

  .accntu-page .ordr-wrap .order-title,
  .accntu-page .ordr-table {
    padding-bottom: 8px;
    padding-top: 10px;
  }

  .accntu-page .ordr-table {
    padding: 14px 0;
  }

  .accntu-page .order-title p {
    font-size: 15px;
  }

  .accntu-page .ordr-card .ordr-table p {
    font-size: 13px;
  }

  .accntu-page .ordr-card .trck-btn a {
    padding: 3px 10px;
    font-size: 14px;
  }

  .accntu-page .myaccount-man-btn {
    margin-bottom: 10px;
    font-size: 14px;
    padding: 6px 8px 6px 17px;
  }

  .accntu-page .cad-body .form-group label {
    font-size: 12px;
    left: 11px;
  }

  .password-des {
    padding-top: 0;
  }

  .password-des .deta-pwd li {
    font-size: 14px;
  }

  .password-des .deta-pwd li::before {
    height: 100%;
  }

  /****************************** My Account Page CSS End*******************************/
  /****************************** Tracking Page CSS Start*******************************/
  .title-wrap h1,
  .title-wrap h2,
  .title-wrap h3,
  .title-wrap h4,
  .title-wrap h5,
  .title-wrap h6 {
    font-size: 25px;
  }

  .Track-order-page .tracking-det div span {
    font-size: 13px;
  }

  .Track-order-page .track-order-box .tracking-id {
    padding: 10px 15px;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .Track-order-page .tracking-det {
    margin-bottom: 30px;
  }

  .Track-order-page .tracking-det div {
    font-size: 13px;
  }

  .Track-order-page .track-order-box .tracking-id {
    padding: 7px 15px;
    font-size: 15px;
    width: 710px;
  }

  .Track-order-page .track .step {
    margin-top: -12px;
  }

  .Track-order-page .track .step::before {
    top: 12px;
  }

  .Track-order-page .track .icon {
    width: 28px;
    height: 28px;
    line-height: 27px;
    font-size: 12px;
  }

  .Track-order-page .track-order-box {
    padding: 0 0 20px;
  }

  .Track-order-page .track-order-box {
    overflow-x: auto;
  }

  .Track-order-page .tracking-det {
    width: 710px;
  }

  .Track-order-page .track {
    width: 710px;
  }

  .Track-order-page .track .step.active .text {
    font-size: 13px;
  }

  /****************************** Tracking Page CSS End*******************************/
  /************************** Checkout Page CSS Start**************************/
  .chct-cnt-wra {
    padding-top: 20px;
    padding-right: 12px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .chct-addres-btn {
    padding: 0px 20px;
    font-size: 15px;
  }

  .chct-addres-wrap {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .chct-Addres-frm p label {
    font-size: 12px;
    left: 11px;
  }

  .chct-Addres-frm p {
    padding: 0 5px 17px;
  }

  .chct-price-box {
    margin-left: 0;
  }

  .adre-name {
    font-size: 16px;
    padding: 0 0 10px 0;
  }

  .chct-addres-wrap address,
  .chct-country,
  .chct-numb {
    font-size: 14px;
  }

  .chct-country,
  .chct-numb {
    font-size: 15px;
  }

  .chct-subheading h3,
  .chct-subheading h2,
  .chct-subheading h4,
  .chct-subheading h5,
  .chct-subheading h6,
  .chct-subheading h1,
  .chct-subheading .adduod-tit {
    padding: 0 15px 24px;
  }

  .chct-price-box h2,
  .chct-price-box h3,
  .chct-price-box h4,
  .chct-price-box h5,
  .chct-price-box h6,
  .chct-price-box h3,
  .chct-price-box p.chcekot-tit {
    font-size: 14px;
    padding-bottom: 15px;
  }

  .chct-price-item.chect-dis-pr p,
  .chct-price-item.chect-dis-pr span {
    margin-top: 11px;
  }

  .chct-price-item p,
  .chct-price-item span,
  .chct-total-order p,
  .chct-total-order span {
    font-size: 14px;
  }

  .chct-total-order {
    padding-top: 14px;
    margin-top: 14px;
  }

  /************************** Checkout Page CSS End**************************/
  /****************************** Order Page CSS Start*******************************/
  .ofrd-det>div {
    font-size: 14px;
  }

  .ct-pr-des {
    max-height: 100%;
  }

  .detor-bx .pr-ct-im {
    display: none;
  }

  .ofrd-det {
    flex-wrap: wrap;
  }

  .ofrd-det div {
    width: 50%;
    padding-bottom: 10px;
    text-align: center;
  }

  .detor-bx .single-pr-tit {
    margin-top: 0;
    display: block;
    padding: 0 15px;
  }

  .detor-bx .ct-pr-des {
    max-height: 100%;
    margin: 0;
    padding: 0 15px;
  }

  .detor-bx .ct-pr-des li::marker {
    font-size: 0;
  }

  .accories-txt {
    font-size: 15px;
  }

  .detor-bx .ct-pr-des li {
    padding: 0 0 3px 0;
  }

  .detor-bx .Pr-cart-wr.row {
    border: 0;
    padding: 10px 0 0;
  }

  /****************************** Order Page CSS End*******************************/


  /* Mobile View Tracking details CSS Start */
  .Track-order-page .track {
    width: 100%;
    background: transparent;
    margin-bottom: 0;
    padding-left: 20px;
  }

  .Track-order-page .track {
    flex-direction: column;
    height: auto;
    align-items: center;
    margin-top: 10px;
  }

  .Track-order-page .track .step {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .Track-order-page .track .step::before {
    width: 5px;
    height: 100%;
    left: 13px;
    top: 30px;
    background: #858c9330;
  }

  .Track-order-page .track .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .Track-order-page .track .text {
    font-size: 14px;
  }

  .Track-order-page .track .step {
    margin-top: 10px;
  }

  .Track-order-page .track .step.active::before {
    background: #0e9ac8;

  }

  .Track-order-page .tracking-det {
    width: 100%;
    display: block;
    margin: 0;
  }

  .Track-order-page .tracking-det div {
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 5px;
  }

  .Track-order-page .track-order-box .tracking-id {
    font-size: 16px;
    font-weight: 600;
    width: 100%;
  }

  .Track-order-page .tracking-det div span {
    font-size: 14px;
  }

  .Track-order-page .track .step:last-child {
    margin-bottom: 0;
  }

  .Track-order-page .track .step:last-child::before {
    background: none;
  }

  .Track-order-page .track-order-box {
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-height: 100%;
  }

  /* Mobile View Tracking details CSS End*/
  /****************************** Ask Expert CSS Start*******************************/

  .ask-expert .modal-dialog {
    max-width: 560px;
  }

  /****************************** Ask Expert CSS End*******************************/
}

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

  /************************** Checkout Page CSS Start**************************/
  .chct-cnt-wra {
    padding-top: 20px;
    padding-right: 12px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .chct-addres-btn {
    padding: 0px 20px;
    font-size: 15px;
  }

  .chct-addres-wrap {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .chct-Addres-frm p label {
    font-size: 12px;
    left: 11px;
  }

  .chct-Addres-frm p {
    padding: 0 5px 17px;
  }

  .chct-price-box {
    margin-left: 0;
  }

  .adre-name {
    font-size: 16px;
    padding: 0 0 10px 0;
  }

  .chct-addres-wrap address,
  .chct-country,
  .chct-numb {
    font-size: 14px;
  }

  .chct-country,
  .chct-numb {
    font-size: 15px;
  }

  .chct-subheading h3,
  .chct-subheading h2,
  .chct-subheading h4,
  .chct-subheading h5,
  .chct-subheading h6,
  .chct-subheading h1,
  .chct-subheading .adduod-tit {
    padding: 0 15px 24px;
  }

  .chct-price-box h2,
  .chct-price-box h3,
  .chct-price-box h4,
  .chct-price-box h5,
  .chct-price-box h6,
  .chct-price-box h3,
  .chct-price-box p.chcekot-tit {
    font-size: 14px;
    padding-bottom: 15px;
  }

  .chct-price-item.chect-dis-pr p,
  .chct-price-item.chect-dis-pr span {
    margin-top: 11px;
  }

  .chct-price-item p,
  .chct-price-item span,
  .chct-total-order p,
  .chct-total-order span {
    font-size: 14px;
  }

  .chct-total-order {
    padding-top: 14px;
    margin-top: 14px;
  }

  .chct-Addres-frm p {
    padding: 0 0 17px;
    width: 100%;
  }

  /************************** Checkout Page CSS End**************************/
  /************************** Cart Page CSS Start**************************/
  .ct-price-box {
    margin: 25px 0 0 0;
  }

  .ct-price-box h2,
  .ct-price-box h3,
  .ct-price-box h4,
  .ct-price-box h5,
  .ct-price-box h6,
  .ct-price-box h1 {
    margin-bottom: 20px;
  }

  .cart-title-wrap {
    display: none;
  }

  .cart-para-cen {
    text-align: left;
  }

  .pr-ct-pri span.rp {
    display: none;
  }

  .pr-ct-pri span {
    font-size: 16px;
    padding: 0;
    text-align: left;
  }

  .pr-ct-qua,
  .pr-ct-pri {
    margin-top: 20px;
  }

  .single-pr-tit {
    margin-top: 10px;
  }

  .Pr-cart-wr {
    border: 1px solid #ccc;
    margin-bottom: 20px;
  }

  .Pr-cart-wr::before {
    display: none;
  }

  .rem {
    right: 10px;
    top: 10px;
  }

  .Pr-cart-wr {
    border: 1px solid #ccc;
    margin: 15px 10px;
  }

  .single-pr-tit h1,
  .single-pr-tit h2,
  .single-pr-tit h3,
  .single-pr-tit h4,
  .single-pr-tit h5,
  .single-pr-tit h6 {
    font-size: 15px;
  }

  .pr-ct-qua,
  .pr-ct-pri {
    margin-top: 15px;
  }

  /************************** Cart Page CSS End**************************/
  /****************************** Sign in Page CSS Start*******************************/
  .lg-sub-btn,
  .Regi-btn {
    line-height: 30px;
    padding: 0 15px;
    font-size: 14px;
    width: 100%;
    display: block;
    max-width: 200px;
  }

  .lg-com-title h2,
  .lg-com-title h3,
  .lg-com-title h4,
  .lg-com-title h5,
  .lg-com-title h6,
  .lg-com-title h1 {
    font-size: 20px;
  }

  .lg-content-wr {
    padding: 40px 15px 30px;
  }

  /****************************** Sign in Page CSS End*******************************/
  /****************************** Register Page CSS Start*******************************/
  .lg-content-wr.rg-content-wr {
    padding: 40px 15px 30px;
  }

  /****************************** Register Page CSS End*******************************/
  /****************************** Register Page CSS Start*******************************/
  .register-page-form .lg-form-wr {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  /****************************** Register Page CSS End*******************************/
  /****************************** My Account Page CSS Start*******************************/
  .accntu-page .butn-tab {
    margin: 0 auto 20px !important;
    padding: 20px 10px;
  }

  .img-profile-ud {
    display: none;
  }

  .accntu-page .cad-body {
    padding: 15px 15px 20px;
  }

  .myacnt-heading h1,
  .myacnt-heading h2,
  .myacnt-heading h3,
  .myacnt-heading h4,
  .myacnt-heading h5,
  .myacnt-heading h6,
  .myacnt-heading p {
    font-size: 19px;
  }

  .accntu-page .cad-body p {
    font-size: 14px;
  }

  .accntu-page .Addres-frm form p label,
  .Edit-address .Addresss-form label {
    font-size: 12px;
    left: 8px;
  }

  .accntu-page .Addres-frm form p {
    padding: 0 0 15px;
    width: 100%;
  }

  .accntu-page .Addres-frm {
    padding: 20px 10px 25px;
  }

  .myacnt-subheading h2,
  .myacnt-subheading h3,
  .myacnt-subheading h4,
  .myacnt-subheading h5,
  .myacnt-subheading h6,
  .myacnt-subheading p {
    padding: 10px 15px 10px;
  }

  .accntu-page .cad-body .form-group {
    width: 50%;
    padding: 0 5px 5px;
  }

  .accntu-page .cad-body form {
    margin-top: 30px;
  }

  .accntu-page .cad-body .Submit {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }

  .accntu-page .cad-body address {
    font-size: 14px;
  }

  .accntu-page .addres-bx-wrap .addres-wrap {
    padding: 10px;
  }

  .accntu-page .addres-bx-wrap {
    grid-gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }

  .accntu-page .Addres-frm form .submit {
    margin-top: 10px;
  }

  .accntu-page .ordr-wrap {
    padding: 20px 10px 15px;
    overflow-x: auto;
  }

  .accntu-page .ordr-wrap .order-title,
  .accntu-page .ordr-table {
    padding-bottom: 8px;
    padding-top: 10px;
  }

  .accntu-page .ordr-table {
    padding: 14px 0;
  }

  .accntu-page .order-title p {
    font-size: 15px;
  }

  .accntu-page .ordr-card .ordr-table p {
    font-size: 13px;
  }

  .accntu-page .cad-body .form-group label {
    font-size: 12px;
    left: 11px;
  }

  .accntu-page .ordr-card .trck-btn a {
    padding: 3px 10px;
    font-size: 14px;
  }

  .accntu-page .myaccount-man-btn {
    margin-bottom: 10px;
    font-size: 14px;
    padding: 6px 8px 6px 17px;
  }

  .accntu-page .cad-body .form-group {
    width: 100%;
    padding: 0 5px 15px;
  }

  .accntu-page .ordr-wrap .order-title,
  .accntu-page .ordr-wrap .ordr-card {
    width: 585px;
  }

  .password-des .deta-pwd li {
    font-size: 14px;
  }

  .password-des .deta-pwd li::before {
    height: 100%;
  }

  .password-des {
    padding-top: 0;
  }

  /****************************** My Account Page CSS End*******************************/

  /****************************** Tracking Page CSS Start*******************************/
  .title-wrap h1,
  .title-wrap h2,
  .title-wrap h3,
  .title-wrap h4,
  .title-wrap h5,
  .title-wrap h6 {
    font-size: 25px;
  }

  .Track-order-page .tracking-det div span {
    font-size: 13px;
  }

  .Track-order-page .track-order-box .tracking-id {
    padding: 10px 15px;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .Track-order-page .tracking-det {
    margin-bottom: 30px;
  }

  .Track-order-page .tracking-det div {
    font-size: 13px;
  }

  .Track-order-page .track-order-box .tracking-id {
    padding: 7px 15px;
    font-size: 15px;
    width: 710px;
  }

  .Track-order-page .track .step {
    margin-top: -12px;
  }

  .Track-order-page .track .step::before {
    top: 12px;
  }

  .Track-order-page .track .icon {
    width: 28px;
    height: 28px;
    line-height: 27px;
    font-size: 12px;
  }

  .Track-order-page .track-order-box {
    padding: 0 0 20px;
  }

  .Track-order-page .track-order-box {
    overflow-x: auto;
  }

  .Track-order-page .tracking-det {
    width: 710px;
  }

  .Track-order-page .track {
    width: 710px;
  }

  .Track-order-page .track .step.active .text {
    font-size: 13px;
  }

  .Track-order-page .track-order-box {
    margin: 0 auto 20px;
  }

  /****************************** Tracking Page CSS End*******************************/

  /****************************** Order Page CSS Start*******************************/
  .ofrd-det>div {
    font-size: 14px;
  }

  .ct-pr-des {
    max-height: 100%;
  }

  .detor-bx .pr-ct-im {
    display: none;
  }

  .ofrd-det {
    flex-wrap: wrap;
  }

  .ofrd-det div {
    width: 100%;
    padding-bottom: 10px;
    text-align: left;
  }

  .detor-bx .single-pr-tit {
    margin-top: 0;
    display: block;
    padding: 0;
  }

  .detor-bx .ct-pr-des {
    max-height: 100%;
    margin: 0;
    padding: 0;
  }

  .detor-bx .ct-pr-des li::marker {
    font-size: 0;
  }

  .accories-txt {
    font-size: 15px;
  }

  .detor-bx .ct-pr-des li {
    padding: 0 0 3px 0;
  }

  .detor-bx .Pr-cart-wr.row {
    border: 0;
    padding: 10px 0 0;
    margin: 0 0 10px 0;
  }

  .trackgopag {
    display: none;
  }

  .trackgopagmob,
  .trackgopagmob:hover {
    display: inline-block;
    border: 1px solid #0e9ac8;
    margin: 10px 0;
    font-size: 14px;
    color: #0e9ac8;
  }

  /****************************** Order Page CSS End*******************************/
  /************************** Career Page CSS Start**************************/
  .Join-team-form .box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0 15px;
  }

  .jon-form-inner {
    margin: 20px auto 0;
    padding: 20px 10px;
    border-radius: 10px;
  }

  /************************** Career Page CSS End**************************/

  /* Mobile View Tracking details CSS Start */
  .Track-order-page .track {
    width: 100%;
    background: transparent;
    margin-bottom: 0;
    padding-left: 20px;
  }

  .Track-order-page .track {
    flex-direction: column;
    height: auto;
    align-items: center;
    margin-top: 10px;
  }

  .Track-order-page .track .step {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .Track-order-page .track .step::before {
    width: 5px;
    height: 100%;
    left: 13px;
    top: 30px;
    background: #858c9330;
  }

  .Track-order-page .track .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .Track-order-page .track .text {
    font-size: 14px;
  }

  .Track-order-page .track .step {
    margin-top: 10px;
  }

  .Track-order-page .track .step.active::before {
    background: #0e9ac8;

  }

  .Track-order-page .tracking-det {
    width: 100%;
    display: block;
    margin: 0;
  }

  .Track-order-page .tracking-det div {
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 5px;
  }

  .Track-order-page .track-order-box .tracking-id {
    font-size: 16px;
    font-weight: 600;
    width: 100%;
  }

  .Track-order-page .tracking-det div span {
    font-size: 14px;
  }

  .Track-order-page .track .step:last-child {
    margin-bottom: 0;
  }

  .Track-order-page .track .step:last-child::before {
    background: none;
  }

  .Track-order-page .track-order-box {
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-height: 100%;
  }

  /* Mobile View Tracking details CSS End*/

  /****************************** Ask Expert CSS Start*******************************/
  .ask-expert .modal-body>p {
    font-size: 15px;
    padding-bottom: 25px;
  }

  .ask-expert .btn-close {
    right: 10px;
    top: 10px;
  }

  .ask-expert-form .form-group {
    width: 100%;
    padding: 0 0 20px 0 !important;
  }

  .ask-expert .modal-dialog {
    max-width: 100%;
  }

  /****************************** Ask Expert CSS End*******************************/
}