/* CSS Document */


/*********************************
2. Body and some general stuff
*********************************/

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

body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  background: #ffffff;
  color: #1e1e27;
  overflow-x: hidden;
}

html .container {
  width: 100%;
  max-width: 1380px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  position: relative;
  float: none;
}


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

p {
  font-size: 14px;
  line-height: 1.5;
  color: #574e4e;
}

a {
  text-decoration: none;
  color: #0090bd;
}

a:focus-visible {
  outline: 0 none;
}

.trans_300 {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

form .form-control,
form .form-select {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 0;
  height: 38px;
}

form textarea {
  resize: none;
}

.form-control:focus,
.form-select:focus,
.btn-close:focus,
.accordion-button:focus {
  box-shadow: none !important;
  border-color: #dee2e6 !important;
}

.btn:focus {
  box-shadow: none !important;
  border-color: none !important;
}

.form-label {
  margin-bottom: 5px;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield;
}

/* Scrollbar Styling */

::-webkit-scrollbar {
  width: 5px;
  margin-right: 15px;
}

::-webkit-scrollbar-track {
  margin: 10px 10px 10px 0;
  padding-right: 10px;
  background-color: #ddd;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-color: #77c9e3;
}

/*********************************
1. Header
*********************************/

.cont-cw {
  padding: 0 55px;
}

/* .main_nav_container {
  padding: 5px 0;
} */

.logo_container .logo {
  width: 230px;
  transition: all 0.3s ease;
}

/* navbar css */

/* offcanvas css */

@media (min-width: 992px) {
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }

  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }

}

button.navbar-toggler.btn-header {
  border: 1px solid #f2ecec;
  padding: 0;
  font-size: 32px;
  width: 43px;
  height: 35px;
  background: #00bde5;
  color: #fff;
}

nav.navbar.navbar-expand-lg.navbar-light {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding: 5px 0px;
}

.navbar-light .navbar-nav .nav-link {
  color: black !important;
  font-size: 16.5px;
  font-weight: 700;
  margin-left: 10px;
  position: relative;
  transition: color 0.5s;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #0090bd !important;
}

.offcanvas.show .navbar-nav .nav-link {
  color: #292b2c !important;
  padding: 0;
  display: inline-block;
}

/****/

/* Button css */

.get-quote-btn {
  padding: 2px 10px;
  font-size: 14px;
  color: white;
  background-color: #ea1934;
  border: none;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease;
}

.get-quote-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  z-index: 0;
}

.get-quote-btn:hover::before {
  left: 0;
}

.side_logo img {
  width: 190px;
}

.get-quote-btn:hover {
  background-color: #2857a5;
}

.lbz-btn {
  padding: 4px 16px;
  font-size: 14px;
  color: white;
  background-color: #ea1934;
  border: none;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease;
}

.lbz-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  z-index: 0;
}

.lbz-btn:hover::before {
  left: 0;
}

.lbz-btn:hover {
  background-color: #00bde5;
}

/* Start header-bottom CSS */

.header-bottom {
  background-color: #2857a5;
}

/* dropdown of header */

.dropdown {
  position: relative;

}

.dropdown-toggle:focus-visible {
  outline: 0 none;
}

.dropdown-toggle {
  background-color: #2252a2;
  border-right: 1px solid #ffffff !important;
  border-left: 1px solid #ffffff !important;
  color: white;
  padding: 10px 18px;
  border: none;
  /* border: none; */
  cursor: pointer;
  font-weight: 700;
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.dropdown-toggle .list-icon {
  font-size: 16px;
}

.dropdown-toggle::after {
  display: none;
}

.drop_main.show {
  border: 1px solid #e2e2e2;
  border-top: 0;
  min-height: 290px;
  visibility: visible;
  z-index: 99;
  animation: dropdownFade 0.3s ease forwards;
}

.drop_profile.show {
  border: 1px solid #e2e2e2;
  border-top: 0;
  min-height: 96px;
  visibility: visible;
  z-index: 99;
  animation: dropdownFade 0.3s ease forwards;
}

.drop_profile {
  animation: dropdownFadeOut 0.2s ease forwards;
}

/* Optional reverse when hiding */
.drop_main.hide {
  animation: dropdownFadeOut 0.2s ease forwards;
}

/* Show keyframes */
@keyframes dropdownFade {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Hide keyframes */
@keyframes dropdownFadeOut {
  0% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: scaleY(0);
  }
}

.dropdown-menu .dropdown-menu-list {
  overflow: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  height: 275px;
  padding: 0 10px;
  margin-right: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100% !important;
  left: 0;
  background-color: white;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  visibility: hidden;
  z-index: 10;
  border-radius: 0;
  transform-origin: top;
  transform: scaleY(0);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 7px 5px;
  font-weight: 700;
  color: #2252a2;
  border-bottom: 1px solid #ada1a159;
  font-size: 14px;
  line-height: 17px;
  transition: color 0.5s;
}


/**/

/* Search box CSS */

.search-container {
  position: relative;
}

.search-box {
  width: 100%;
  padding: 10px 40px 10px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 2px;
  height: 38px;
}

.search-box:focus-visible {
  outline: 0 none;
}

input::placeholder {
  font-size: 13px;
}

.search-icon {
  color: #01295c;
  font-size: 17px;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 5px;
  cursor: pointer;
}

.search-icon:hover {
  color: #0248b3;
}

.search-results {
  display: none;
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  animation: slideDown 0.3s ease;
  z-index: 10;
}

.results-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.results-column {
  flex: 1;
  padding: 10px 15px 15px 15px;
  border-right: 1px solid #eee;
}

.results-column:last-child {
  border-right: none;
}

.results-column .results-header {
  display: block;
  color: #2252a2;
  font-size: 16px;
  font-weight: 800;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 8px;
}

.results-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 260px;
  overflow-y: auto;
  margin-right: 8px;
}

.results-column li {
  margin-bottom: 2px;
  cursor: pointer;
  padding: 2px 0px;
  border-radius: 4px;
  line-height: 18px;
  font-size: 13.5px;
}

.results-column li a {
  color: #383535;
  transition: color 0.5s;
}

.results-column li a:hover {
  color: #0090bd;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/***/

.header-email {
  display: inline-flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
}

.email_h {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}

.email_h i {
  font-size: 15px;
  margin-right: 6px;
}

/*** Home page css ***/

.content1 {
  padding-top: 22px;
}

.content1 p {
  text-align: justify;
  line-height: 20px;
}

section {
  padding: 35px 0 35px;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  text-align: center;
  font-size: 30px;
  color: #2252a2;
  font-weight: 800;
  position: relative;
}

.section-about p {
  text-align: center;
  line-height: 20px;
}

.pg-tp {
  padding-top: 10px;
}

/* Start Lab equipment section CSS */

.ice-row {
  display: flex;
  flex-wrap: wrap;
}

.ice-box {
  width: 20%;
  padding: 0 4px;
  margin-bottom: 9px;
  display: flex;
  height: inherit;
  flex-direction: column;
}

.category-area {
  text-align: center;
  padding: 12px;
  border: 1px solid #48608782;
  border-radius: 5px;
  height: 100%;
}

.category-image img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.category-info h2,
.category-info h3,
.category-info h4,
.category-info h5,
.category-info h6,
.category-info p {
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 0px;
  color: black;
}

.label-link {
  position: relative;
  margin-top: 10px;
}

.category-area .label-link .category-item {
  background-color: #2252a2bf;
  color: #ffffff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* .category-area:hover .label-link .category-item {
  opacity: 0;
  visibility: hidden;
} */
.category-area .label-link .category-item span {
  display: inline-block;
}

.category-area .label-link .shop-link {
  color: #0090bd;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid #0090bd;
  line-height: 1;
  position: absolute;
  bottom: 25%;
  transform: translateY(50%);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.category-area:hover .label-link .shop-link {
  opacity: 1;
  visibility: visible;
}

/* Responsive CSS lab-categories section */

@media only screen and (min-width: 991px) and (max-width: 1170px) {
  .ice-box {
    width: 25%;
  }
}

@media only screen and (min-width: 670px) and (max-width: 991px) {
  .ice-box {
    width: 33.33%;
  }

}

@media only screen and (min-width: 420px) and (max-width: 670px) {
  .ice-box {
    width: 50%;
  }
}

@media only screen and (max-width: 420px) {
  .ice-box {
    width: 100%;
  }
}


/* modal-dialog */

.modal-dialog .modal-header {
  background-color: #0090bd;
  padding: 14px 14px;
  color: #222;
  position: relative;
}

.modal-header .modal-title {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.modal-dialog .btn-close {
  font-size: 8px;
  border: 1px solid #d2d2d2;
  border-radius: 50%;
  padding: 8px;
  background-color: #f5f5f5;
  opacity: 1;
  margin-right: 1px;
}

.modal-dialog .download-catlog {
  display: inline-block;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #dbdbdb;
  background: #fff;
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
  color: #010f1c;
  border-left: 3px solid #00bde5;
}

.modal-dialog .download-catlog .download-icon {
  padding-left: 4px;
  font-size: 13px;
  color: #686767;
}

/* Start Chromatograph section CSS */

.product-card {
  background: #fff;
  position: relative;
  height: 100%;
  border: 1px solid #62789d6b;
  padding: 10px;
  box-shadow: 0px 1px 5px #8080805e;
}

.product-image {
  background: #f3f6f9;
  overflow: hidden;
  text-align: center;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.product-image img {
  width: 198px;
  height: 198px;
  object-fit: contain;
  transition: all 0.3s 0s ease-out;
}

.product-image:hover img {
  transform: scale(1.1);
}

/* .product-info {
  padding-top: 10px;
  border-top: 1px solid #eee;
} */

.product-title {
  margin-bottom: 6px;
}

.product-title h2,
.product-title h3,
.product-title h4,
.product-title h5,
.product-title h6,
.product-title p {
  font-size: 16px;
  font-weight: 800;
  color: #2252a2;
  line-height: 18px;
  margin-bottom: 0px;
}

.product-specs ul {
  overflow: hidden;
  padding-right: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 96px;
}

.product-specs li {
  color: #0a0a0a;
  font-size: 13px;
  position: relative;
  line-height: 18px;
  margin-bottom: 4px;
  background-color: #fff;
  border: 1px solid #c1baba;
  border-left: 2px solid #2252a2a3;
  padding: 4px 8px;
}

.product-specs li span {
  color: black;
  font-weight: 700;
}

.product-card .pro-ftr {
  padding-top: 10px;
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
}

.pro-ftr .get-btn {
  color: #164ead;
  font-size: 13px;
  outline: none;
  border: 1px solid #ea1934;
  padding: 2px 9px;
  font-weight: 700;
  line-height: 20px;
  /* border-radius: 6px; */
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pro-ftr .get-btn i {
  font-size: 14px;
  margin-right: 7px;
}

.pro-ftr .get-btn:hover {
  background: #0090bd;
  color: #fff;
}

.pro-ftr .cat-btn {
  display: none;
  color: #01295c;
  padding: 1px 5px;
  transition: all 0.3s ease;
}

.pro-ftr .cat-btn i {
  font-size: 12px;
  margin-right: 4px;
}

.pro-ftr .cat-btn:hover {
  color: #004aad;
}

@media only screen and (min-width: 440px) and (max-width: 500px) {
  .product-specs ul {
    height: 118px;
  }
}

/* Start baths-section section */

.baths-item {
  display: flex;
  background-color: #fff;
  border-radius: 0px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 16%);
  overflow: hidden;
  height: 100%;
  border: 1px solid #3a698f73;
}

.baths-img {
  flex: 0 0 160px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #eee;
}

.baths-img img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.baths-info {
  flex: 1;
  padding: 12px 14px;
}

.baths-info h2,
.baths-info h3,
.baths-info h4,
.baths-info h5,
.baths-info h6,
.baths-info p {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 5px;
  color: #134497;
}

.baths-info ul {
  overflow: hidden;
  padding-right: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 80px;
}

.baths-info li {
  color: #606060;
  font-size: 13.4px;
  line-height: 18px;
  margin-bottom: 4px;
}

.baths-info li span {
  color: black;
  font-weight: 600;
}

.button-row {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0px;
  border-top: 1px solid #2651a157;
  padding-top: 10px;

}

.button-row button,
.button-row a {
  padding: 0px 8px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;


}

.button-row button {
  color: #fff;
  transition: all 0.3s ease;
}

.button-row a {
  font-weight: 700;
  color: #01295c;
  border: 1px solid #ea1934;
  transition: all 0.3s ease;
}

.button-row a:hover {
  color: #0090bd;
}

.quote-btn {
  background-color: #2252a2;
  color: white;
  border: none;
}

.view-catalog {
  color: #0090bd;
  background: none;
  border: none;
  font-weight: 600;
}

@media only screen and (min-width: 1199px) and (max-width: 1400px) {
  .baths-img {
    flex: 0 0 105px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  .baths-item {
    flex-direction: column;
  }

  .baths-img {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .baths-info {
    padding: 20px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 576px) {
  .baths-section .col-sm-6 {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .baths-item {
    flex-direction: column;
  }

  .baths-img {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .baths-info {
    padding: 20px;
  }
}



/* Start Footer section */

.footer {
  position: relative;
  background-color: #f3f6fb;
  background-image: linear-gradient(90deg, rgb(247 247 247) 0%, rgb(41 87 164 / 21%) 100%);
}



.footer-items {
  padding: 100px 0 20px 0;
  position: relative;
}

.footer-items::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  border-radius: 0 0 35% 35%;
}

.ftr-logo img {
  width: 240px;
}

.ftr-item p {
  color: black;
  text-align: justify;
  line-height: 19px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-items .ftr-header {
  font-size: 19px;
  color: #0c439f;
  font-weight: 800;
  margin-bottom: 0px;
  position: relative;
  padding-bottom: 30px;
}

.footer-items .ftr-header::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 40px;
  background-color: #ea1934;
  bottom: 22px;
  left: 0;
}

.ftr-item li {
  margin-bottom: 8px;
  line-height: 18px;
  color: black;
  font-weight: 600;
}

.ftr-item li a {
  color: black;
  font-size: 14px;
  transition: all 0.3s ease;
}

.ftr-item li a:hover {
  color: #0090bd;
}

.ftr-contact-info li i {
  display: inline-block;
  margin-right: 10px;
  margin-top: 4px;
  font-size: 16px;
  vertical-align: top;
  color: #0c439f;
}

.ftr-contact-info li p,
.ftr-contact-info li a {
  color: #1e1e1e;
  line-height: 20px;
  transition: all 0.3s ease;
}

.ftr-contact-info li a:hover {
  color: #005490;
}

.ftr-contact-info i+* {
  overflow: hidden;
  font-size: 14px;
  color: #687188;
  line-height: 26px;
  margin: 0;
  vertical-align: middle;
  max-width: 78%;
  display: inline-block;
}

.footer-items .fixed_flex {
  display: flex;
  padding: 0;
  position: relative;
}

.fixed_flex input {
  background-color: #fff;
  border: 0;
  padding: 6px 10px;
  outline: 0;
  border-radius: 5px;
  width: 100%;
  height: 40px;
}

.fixed_flex .btn_2 {
  position: absolute;
  top: 5px;
  right: 5px;
  border: 0;
  outline: 0;
  background-color: #ea1934;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  height: 30px;
  font-weight: 600;
  line-height: 20px;
}

.copyright-footer {
  font-size: 14px;
  padding: 10px 16px;
  color: #fff;
  text-align: center;
  background: #2957a4;
}

/***/

/* breadcrumb section css */

.breadcrumb {
  display: flex;
  box-shadow: 0px 15px 10px -15px #cfcbcb;
  padding: 12px 0;
}

.breadcrumb-links {
  display: flex;
  column-gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-box {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  color: #9ca3af;
}

.breadcrumb-box:hover>*:not(.breadcrumb-icon) {
  color: #00bde5;
}

.breadcrumb-icon,
.breadcrumb-icon-home {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: #48494a;
}

.breadcrumb-links li:first-child .breadcrumb-text {
  display: none;
}

.breadcrumb-box .breadcrumb-text {
  margin-left: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #48494a;
}

.breadcrumb-box .active {
  color: #01295c;
}

@media (min-width: 640px) {
  .breadcrumb-links>li:nth-child(n + 4) {
    display: block;
  }

  .breadcrumb-links li:first-child .breadcrumb-text {
    display: block;
  }
}

/**/

.page-header {
  text-align: center;
  padding: 8px 0;
}

.page-header h1,
.page-header h2 {
  font-size: 27px;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  color: #2352a0;
  font-weight: 800;
}

/* Start Lab Equipment page */

.lab-row {
  display: flex;
  flex-wrap: wrap;
}

.lab-box {
  width: 20%;
  padding: 0 5px;
  margin-bottom: 10px;
  display: flex;
  height: inherit;
  flex-direction: column;
}

.laboratory-item {
  padding: 12px 12px;
  border: 1px solid #5c6a817a;
  height: 100%;
  text-align: center;
  box-shadow: 0 0 4px 2px transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.laboratory-img {
  margin-bottom: 10px;
  background-color: #f3f6f9;
}

.laboratory-img img {
  width: 165px;
  height: 165px;
  object-fit: contain;
}

.laborat-name h2,
.laborat-name h3,
.laborat-name h4,
.laborat-name h5,
.laborat-name h6,
.laborat-name p {
  font-size: 17px;
  font-weight: 800;
  color: #16489b;
  line-height: 20px;
  margin: 0;
  transition: all 0.35s ease-in-out;
}

/* Responsive CSS Lab Iceflakers page */

@media only screen and (min-width: 991px) and (max-width: 1170px) {
  .lab-box {
    width: 25%;
  }
}

@media only screen and (min-width: 670px) and (max-width: 991px) {
  .lab-box {
    width: 33.33%;
  }
}

@media only screen and (min-width: 420px) and (max-width: 670px) {
  .lab-box {
    width: 50%;
  }
}

@media only screen and (max-width: 420px) {
  .lab-box {
    width: 100%;
  }
}

/* Start Sub Product Categories */

.lab-content {
  text-align: center;
}

.btn-tabs-row .btn-tabs {
  color: #01295c;
  display: inline-block;
  border: 1px solid #2857a5;
  padding: 4px 12px;
  margin-bottom: 6px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-tabs-row .btn-tabs:hover {
  background: #01295c;
  color: #fff;
}

.btn-tabs-row .btn-tabs h2 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 700;
}

.product-card .compare {
  position: absolute;
  top: 8px;
  right: 8px;
}


/**===============================- Compare -=================================-**/

.compare_bttn {
  background-color: #235a66;
}

.action--compare-add {
  color: #4170b5;
}

.action--compare-add:hover .action__text--invisible,
.action--download:hover .action__text--invisible {
  color: #ddd;
  font-size: 16px;
  letter-spacing: 0;
  background: #2f3035;
  border-radius: 2px;
  padding: 3px 5px;
}

.action--compare-add .fa-check,
.action--compare-add input[type="checkbox"]:checked~.fa-plus {
  display: none;
}

.action--compare-add input[type="checkbox"]:checked~.fa-check {
  display: inherit;
  color: #4170b5;
  cursor: pointer;
}

.check-hidden {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.cpp i {
  padding-right: 4px;
}

.action {
  display: inline-block;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: center;
  text-transform: capitalize;
}

.action:focus {
  outline: none;
}

.action__text {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.813em;
  vertical-align: middle;
  display: inline-block;
}

.action__text--invisible {
  position: absolute;
  top: 100%;
  opacity: 0;
  pointer-events: none;
}

.compare-top {
  position: fixed;
  top: 265px;
  right: 30px;
  z-index: 99;
}

.btn-compare,
.btn-compare:hover {
  background-color: #0090bd;
  color: #fff !important;
  font-size: 14px;
  border-radius: 0;
  border: 1px solid #0090bd;
}

.col-md-2-5.col-lg-2-5 {
  width: 20%;
}

.leftfl::before,
.rightfl::before {
  font-size: 25px;
}

/* .cpp {
  display: inline-block;
  height: 34px;
  width: 34px;
  text-align: center;
  border: 0;
  padding: 0;
} */

.cpp {
  color: #666;
  border: none;
  cursor: pointer;
}

.cpp:focus {
  outline: 0 none;
}

/******/

/* Start faq section */

.accordion {
  margin-top: 12px;
}

.accordion .accordion-item {
  padding: 0 20px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #e5e5e5;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #024aa8;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: #0090bd;
}

.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.accordion button[aria-expanded="true"]+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  color: #222;
  font-size: 14px;
  font-weight: 300;
  margin: 5px 0;
  line-height: 18px;
}

/***/

/* Compare-section */

.compare-section .table-responsive {
  overflow-x: auto;
  overflow-y: visible;
  /* Important! */
  max-height: 600px;
  padding-right: 6px;
}

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


.compare-section .table th {
  vertical-align: middle;
  line-height: 20px;
  padding: 15px 15px;
  width: 150px;
  font-weight: 500;
  color: #01295c;
}

.compare-section .table tr td {
  padding: 15px 15px;
  vertical-align: middle;
}

.compare-section .table tr td a {
  color: #121416;
}

.compare-section .table .compare-img {
  text-align: center;
  padding-top: 20px;
}

.compare-section .table .compare-img img {
  width: 170px;
  padding: 10px;
}

.compare-section .table .compare-img h2,
.compare-section .table .compare-img h3,
.compare-section .table .compare-img h4,
.compare-section .table .compare-img h5,
.compare-section .table .compare-img h6 {
  font-size: 16px;
  color: #2252a2;
  margin: 28px 0 0;
  text-align: left;
  font-weight: 800;
}

.compare-section .table .compare-img .remove {
  position: absolute;
  top: 8px;
  right: 16px;
}

.compare-section .table .compare-img .remove a {
  color: #f70e0e;
}

/***/

/* Start Product by categories page */

.side-area {
  margin-bottom: 30px;
  box-shadow: 0px 10px 10px 0px rgba(153, 153, 153, 0.2);
  border-left: 1px solid #0090bd;
}

.side-area .side-title {
  position: relative;
  background: #eef4fd;
  padding: 6px 14px;
  margin-bottom: 5px;
}

.side-title p {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 0;
  color: #004aad;
  line-height: 30px;
}

.product-side .side-content {
  border-bottom: 1px solid #eee;
}

.product-side .side-content:last-child {
  border-bottom: 0px;
}

.product-side .side-header {
  font-size: 15px;
  font-weight: 600;
  color: #01295c;
  margin-bottom: 5px;
}

.product-side .content-item {
  border-top: 1px solid #eee;
  padding: 12px 14px;
}

.product-side .content-item:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0px solid transparent;
}

.product-side .list {
  overflow: hidden;
  padding-right: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
  margin: 0;
}

.product-side .list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  cursor: pointer;
  line-height: 18px;
  transition: 0.5s;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  cursor: pointer;
}

.product-side .list li span {
  font-size: 14px;
  font-weight: normal;
  color: #606060;
  position: relative;
  margin-left: 6px;
}

/* Start Product description page */

.main-image-xl {
  position: sticky !important;
  top: 12px;
  margin: 0px !important;
  text-align: left;
}

.main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  border: 1px solid #c5f1ff;
  height: 300px;
}

.main-image img {
  width: 230px;
  height: 230px;
  object-fit: contain;
  padding: 20px;
  transition: all 0.3s ease;
}

.more-images-slider {
  margin-top: 22px;
}

.more-images-slider .more-imge-item {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fefefe;
  border: 1px solid #e8e8e8;
  height: 110px;
  transition: all 0.3s;
}

.more-images-slider .more-imge-item:hover {
  border: 1px solid #4170b5;
}

.more-images-slider .more-imge-item.active {
  border-color: #e8782f;
}

.more-imge-item img {
  width: 90px !important;
  padding: 10px;
}

/* Start owl slider css */

.owl-carousel .owl-dots {
  display: none;
}

.more-images-slider .owl-carousel .owl-nav button {
  color: #44464a !important;
  transform: translateY(-20px);
  background: #b9aca5;
  height: 25px;
  width: 25px;
  text-align: center;
  border-radius: 50%;
}

.more-images-slider .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: -17px;
}

.more-images-slider .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: -17px;
}

.more-images-slider .owl-nav button span {
  font-family: FontAwesome;
  display: inline-block;
  vertical-align: middle;
  content: "\f095";
  font-size: 12px;
  color: #fff;
  padding: 0;
}

/****/

.product-about {
  margin-bottom: 0px;
}

.product-title h1 {
  font-size: 23px;
  color: #194793;
  font-weight: 800;
  margin-bottom: 0;
}

.product-about .about {
  text-align: justify;
  color: #262626;
  line-height: 19px;
}

.product-actions {
  display: inline-flex;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 15px;
  gap: 18px;
  align-items: center;
}

.s-catlog-btn {
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #0090bd;
  background-color: #fff;
  border: 2px solid #0090bd;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.s-catlog-btn i {
  font-size: 13px;
  padding-right: 5px;
}

.s-catlog-btn:hover {
  color: #00bde5;
  border: 2px solid #00bde5;
}

.product-details .table tbody th {
  font-size: 14px;
  font-weight: 500;
  background: #fdfdfd;
}

.product-details .table tbody th,
.product-details .table tbody td {
  padding: 6px 12px;
  color: #262626;
}

.product-details .accordion-button {
  background-color: #e5e5e5;
  font-weight: 500;
}

.product-details .features-item li {
  font-size: 14px;
  line-height: 19px;
  position: relative;
  padding-left: 25px;
  color: #262626;
  margin-bottom: 6px;
}

.product-details .features-item li::before {
  position: absolute;
  left: 3px;
  top: 0px;
  font-family: "bootstrap-icons";
  display: inline-block;
  vertical-align: middle;
  content: "\F633";
  font-size: 14px;
  color: #545050;
}

.product-details .download-catalog a {
  border: 1px dashed #91dbf1;
  padding: 5px 12px;
  color: #302f2f;
  display: inline-block;
  line-height: 20px;
}

.product-spec {
  border: 1px solid #dee2e6;
  padding: 10px 0;
}

.spec-item {
  padding: 0px 15px;
  margin-bottom: 10px;
}

.spec-header {
  display: inline-block;
  color: #2957a4;
  padding: 2px 0px;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 18px;
  text-align: center;
  border-bottom: 2px solid #ea1934;
}

/* Start Catalog page */

.catalog-item {
  border: 1px solid #e5e5e5;
  height: 100%;
}

.catalog-title {
  background: #f2f6ff;
  padding: 0px 20px;
  border-bottom: 1px solid #dbdde3;
}

.catalog-title h2,
.catalog-title h3,
.catalog-title h4,
.catalog-title h5,
.catalog-title h6,
.catalog-title p {
  font-size: 16px;
  margin-bottom: 0;
  color: #2857a5;
  line-height: 40px;
  font-weight: 800;
}

.catalog-img {
  text-align: center;
  padding: 10px;
}

.catalog-img img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.catalog-content {
  padding: 5px 12px;
}

.catalog-lists ul {
  overflow: hidden;
  padding-right: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 85px;
  margin-right: 8px;
}

.catalog-lists li {
  border-left: 2px solid #0090bd;
  padding: 0px 8px;
  line-height: 18px;
  margin-bottom: 8px;
}

.catalog-lists li:last-child {
  border-bottom: 0;
}

.catalog-lists li a {
  color: black;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.catalog-lists li a:hover {
  color: #0090bd;
}


/* Start single catalog page */

.download-text h1 {
  font-size: 22px;
  margin-bottom: 30px;
  color: #2857a5;
  font-weight: 800;
}

.s-catalog-item {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

.s-catalog-item .catalog-cover {
  background-image: url(../images/catalog-bg.png);
  background-size: 100% 100%;
  background-position: center;
  height: auto;
  box-shadow: rgba(145, 139, 139, 0.2) 0px 12px 28px 0px, rgb(255, 255, 255) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  position: relative;
  background-repeat: no-repeat;
}

.cat-logo {
  position: absolute;
  top: 11%;
  right: 10%;
}

.cat-logo img {
  width: 220px;
}

.main-wrapper {
  text-align: center;
  padding: 28% 20px 20%;
}

.main-wrapper img {
  max-width: 100%;
}

.main-wrapper .cat-name {
  margin: 0px 0 10px;
}

.cat-name h2 {
  font-size: 21px;
  color: #2252a2;
  font-weight: 800;
}

.catalog-body {
  background-color: #fff;
  box-shadow: rgba(145, 139, 139, 0.2) 0px 12px 28px 0px, rgb(255, 255, 255) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  padding: 25px 25px;
}

.body-item {
  margin-bottom: 28px;
}

.catalog-head {
  margin-bottom: 12px;
}

.catalog-head h3,
.catalog-head h4,
.catalog-head h5,
.catalog-head h6 {
  font-size: 19px;
  color: #2252a2;
  display: inline-block;
  font-weight: 800;
  padding-bottom: 2px;
  margin-bottom: 0;
  border-bottom: 1px solid #ea1934;
}

.body-item p,
.body-item li {
  font-size: 14px;
  text-align: justify;
  line-height: 18px;
  color: black;
  font-weight: 500;
}

.body-item li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.catalog-body .table tbody th,
.catalog-body .table tbody td {
  padding: 10px 14px;
  font-size: 13px;
  line-height: 18px;
}

.catalog-body .table tbody th {
  vertical-align: middle;
  font-weight: 500;
}

.catalog-footer {
  text-align: center;
  padding-top: 10px;
}

.catalog-footer img {
  width: 180px;
}

.catalog-footer ul {
  padding-top: 14px;
}

.catalog-footer li {
  text-align: center;
  line-height: 22px;
  font-size: 14px;
}

.catalog-footer li a {
  color: #0090bd;
  transition: all 0.3s ease;
}

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

.catalog_contact {
  margin-bottom: 5px;
  color: #01295c;
  font-size: 15px;
  font-weight: 500;
}

.catalog_contact a {
  color: #2c2c2c;
  font-size: 14px;
}


/* Start Sitemap section */

.sitemap-section .sitemap-header {
  padding: 10px 0 20px;
  color: #222;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 0;
}

.sitemap-header .med-title {
  color: #32cd32;
}

.sitemap-header .sico-title {
  color: #36454f;
}

.sitemap ul>li>a.l0bg {
  color: #ffffff;
  background: #0090bd;
  border: 2px solid #0090bd;
}

.sitemap ul>li>a {
  display: inline-block;
  max-width: 500px;
  padding: 8px 10px;
  border: 1px solid #00bde5;
  color: #00bde5;
  font-size: 14px;
  border-radius: 5px;
  text-overflow: ellipsis;
  margin: 5px 0;
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  line-height: 18px;
}

.sitemap ul>li {
  border-left: 1px solid #5c5956;
  padding-left: 30px;
}

.sitemap ul>li>a:before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  margin-top: -1px;
  height: 1px;
  width: 30px;
  background: #5c5956;
}

.sitemap ul>li>.l1bg {
  color: #ffffff;
  background: #00bde5;
  border: 2px solid #00bde5;
}


/* Start Terms and conditions page */

.policy-head {
  color: #222;
  font-weight: 600;
}


/* Start Contact Us page */

.contact-container {
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 50px 30px 40px;
  border: 1px solid #dfdede;
  margin: 0 auto;
}

.contact-container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}

.content .left-side::before {
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}

.content .left-side .details {
  margin: 14px;
  text-align: center;
}

.content .left-side .details i {
  font-size: 30px;
  color: #0090bd;
  margin-bottom: 10px;
}

.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}

.content .left-side .details .text-one,
.content .left-side .details .text-one a {
  font-size: 14px;
  color: #565656;
  line-height: 20px;
}

.content .right-side {
  width: 75%;
  margin-left: 75px;
}

.content .right-side h2 {
  font-size: 23px;
  font-weight: 600;
  color: #01295c;
  margin-bottom: 8px;
}

.content .right-side p {
  line-height: 18px;
  color: #565656;
  margin-bottom: 10px;
}

.right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}

.capcha-row {
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
}

.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: 1px solid #dbdbdb;
  outline: none;
  font-size: 14px;
  background: #fdfdfd;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

.right-side .capcha-input {
  width: auto;
  height: 40px;
}

.right-side .capcha-input input {
  width: 220px;
}

.right-side .message-box {
  min-height: 110px;
}

.right-side .input-box textarea {
  padding-top: 10px;
}

.right-side .button {
  display: inline-block;
  margin-top: 12px;
}

.right-side .button input[type="button"] {
  color: #fff;
  font-size: 16px;
  outline: none;
  border: none;
  padding: 8px 16px;
  line-height: 20px;
  border-radius: 6px;
  background: #0090bd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input[type="button"]:hover {
  background: #00bde5;
}

@media (max-width: 950px) {
  .contact-container {
    width: 90%;
    padding: 30px 40px 40px 35px;
  }

  .contact-container .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}

@media (max-width: 820px) {
  .contact-container {
    height: 100%;
    width: 86%;
  }

  .contact-container .content {
    flex-direction: column-reverse;
  }

  .contact-container .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-container .content .left-side::before {
    display: none;
  }

  .contact-container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}


.desk_cart {
  margin-right: 24px;
}



.desk_cart a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
}

.cart_imge {
  width: 31px;
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -6px;
  height: 14px;
  width: 14px;
  display: flex;
  background-color: #ea1934;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 8px;
  font-weight: bold;
  /* padding: 2px 6px; */
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
  transition: background-color 0.3s;
}

.desk_cart:hover .cart-badge {
  background-color: #084298;
}

.user_Ac {
  margin-bottom: 0px;
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-right: 1px solid white;
  padding-right: 10px;
  margin-right: 12px;
  cursor: pointer;
}

.cart {
  display: flex;
  align-items: center;
  background: none;
  font-size: 13px;
  padding: 0px 6px;
  border: 1px solid #2252a2;
  color: #003895;
  font-weight: 700;
}

.cart_imge2 {
 width: 14px;
 height:14px;

    margin-right: 3px;
    position: relative;
    top: -1px;
}

.price-home {
  margin-bottom: 0px !important;
  font-size: 13.3px !important;
  color: #ef4308 !important;
  font-weight: 800 !important;
}

.cart2 {
  background: #2957a4;
  font-size: 13px !important;
  padding: 1px 8px !important;
  font-size: 12px !important;
  border: none;
  border-radius: 0px !important;
  color: white !important;
  font-weight: 700 !important;
}

.price-desc {
  margin-bottom: 0px !important;
  font-size: 16.3px !important;
  color: #ef4308 !important;
  font-weight: 800 !important;
}

.cart_desc {
  background: #2957a4;
  font-size: 14px !important;
  padding: 2px 10px !important;
  font-size: 12px !important;
  border: none;
  border-radius: 0px !important;
  color: white !important;
  font-weight: 700 !important;
}

.quantity-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Segoe UI', sans-serif;
  margin: 15px 0;
}

.qty-label {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.quantity-box {
  display: flex;
  align-items: center;
  border: 1px solid #2857a5;
  /* border-radius: 8px; */
  overflow: hidden;
  width: max-content;
}

.qty-btn {
  background-color: white;
  border: none;
  color: #2957a4;
  border-radius: 0px !important;
  font-size: 18px;
  font-weight: 700;
  width: 28px;
  height: 27px;
  cursor: pointer;
  transition: background-color 0.3s;
}

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

.quantity-box input[type="number"] {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 16px;
  color: #333;
  outline: none;
  -moz-appearance: textfield;
}

.quantity-box input::-webkit-outer-spin-button,
.quantity-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* Container Styling */
.custom-auth-container {
  max-width: 500px;
  margin: 50px auto;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;

}

/* Card Styling */
.custom-auth-card {
  padding: 23px;
}

/* Tabs */
.custom-auth-tabs {
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 20px;
}

.custom-auth-tabs .nav-item {
  width: 50%;
  text-align: center;
}

.custom-auth-tabs .nav-link {
  padding: 7px;
  font-size: 17px;
  font-weight: 800;
  color: #2857a5;
  background-color: #2857a50d;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s;
}

.custom-auth-tabs .nav-link.active {
  background-color: #2857a5;
  color: #fff;
}

/* Form Description */
.custom-auth-description {
  font-size: 15px;
  margin-bottom: 20px;
  color: #333;
}

/* Form Group */
.custom-form-group {
  margin-bottom: 18px;
}

.custom-form-group label {
  display: block;
  font-weight: 600;
  /* margin-bottom: 6px; */
  color: black;
  position: relative;
  top: -2px;
}

.custom-form-group label span {
  color: red;
  margin-left: 2px;
}

/* Input Fields */
.custom-form-input,
.form-control {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #ced4da;
  /* border-radius: 8px; */
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.custom-form-input:focus,
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
  outline: none;
}

/* Checkbox Group */
.custom-checkbox-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

/* Buttons */
.custom-auth-btn {
  background-color: #2857a5;
  color: #fff;
  padding: 7px 16px;
  font-weight: 600;
  font-size: 17px;
  border: none;
  /* border-radius: 8px; */
  width: 100%;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.custom-auth-btn:hover {
  background-color: #084298;
}

/* Footer Text */
.custom-auth-footer-text {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 600;
}

.custom-auth-footer-text a {
  color: #2857a5;
  text-decoration: none;
}

.custom-auth-footer-text a:hover {
  text-decoration: underline;
}

.email_h:hover {
  color: white;
}

/* Captcha Section */
.captcha_image {
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 6px;
  display: inline-block;
}

.refresh_captcha {
  display: inline-block;
  font-size: 13px;
  color: #0d6efd;
  text-decoration: none;
  margin-top: 4px;
}

.refresh_captcha i {
  margin-right: 4px;
}

/* Responsive */
@media (max-width: 576px) {
  .custom-auth-container {
    margin: 20px;
    padding: 20px;
  }

  .custom-auth-tabs .nav-item {
    width: 100%;
  }

  .col-lg-12.d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .col-lg-6.inputbox {
    width: 100%;
  }
}


.forgot-password {
  background: linear-gradient(135deg, #e9f2f9, #fefefe);
  padding: 46px 0;
}

.container_for2 {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  text-align: center;
}

.forgot-heading h1 {
  font-size: 28px;
  font-weight: 670;
  color: #0e6ba8;
  margin-bottom: 2px;
  text-decoration: none;
}

.para-reset {
  font-size: 15px;
  color: #444;
  margin-bottom: 25px;

}

.forgot-p {
  text-align: left;
}

.forgot-p label {
  font-size: 15px;
  font-weight: 600;
  color: black;
  display: block;
  margin-bottom: 3px;
}

.forgot-p label span {
  color: red;
}

.forgot-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s;
}

.forgot-input:focus {
  border-color: #0e6ba8;
}

.forgot-text {
  font-size: 13px;
  margin-top: 10px;
  color: #666;
}

.forgot-text a {
  color: #0e6ba8;
  text-decoration: none;
  font-weight: 500;
}

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

.reset-btn {
  margin-top: 13px;
  width: 100%;
  padding: 8px 0;
  background-color: #2857a5;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.reset-btn:hover {
  background-color: #0a588f;
}






.Myaccount-sec {
  background: linear-gradient(to right, #eef2f3, #ffffff);
  padding: 28px 0;
}

.myaccount-main-btn .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #3067c3;
  font-weight: 700;
  border-left: 4px solid #ea1934 !important;
}

.myaccount-main-btn:hover,
.myaccount-main-btn.active {
  border-left: 4px solid #ea1934 !important;
  background-color: #2464c3 !important;
}

.main-title h1 {
  font-size: 31px;
  color: #2252a2;
  font-weight: 800;
  text-align: center;
  margin-bottom: 17px;
  text-transform: capitalize;
}

.card-body {
  padding: 0px !important;
}

/* Navigation Panel */
.Myac-1-btns {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.07);
  width: 260px;
  position: sticky;
  top: 100px;
}

.myaccount-main-btn {
  background: transparent;
  border: none;
  padding: 9px 14px;
  color: #333;
  /* border-left: 4px solid transparent; */
  border-radius: 4px;
  font-weight: 700;
  border: 1px solid #80808061 !important;
  margin-bottom: 10px;
  text-align: left;
  transition: all 0.3s ease;
}

.myaccount-main-btn:hover,
.myaccount-main-btn.active {
  background: #f0f8ff;
  color: #004e7c;
  border-left: 4px solid #004e7c;
}

/* Main Tab Content Area */
.myac-1-content {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.05);
  flex-grow: 1;
  margin-left: 14px;
  overflow: hidden;
}

.my-ac-heading p,
.myacnt-subheading p {
  font-size: 22px;
  color: #114bad;
  font-weight: 700;
  margin-bottom: 27px;
  position: relative;
}

.my-ac-heading p::after,
.myacnt-subheading p::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: #ea1934;
  left: 0;
  bottom: -5px;
}

/* Forms Styling */
.form-group {
  margin-bottom: 25px;
}



.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1dbe5;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
  background-color: #fdfdfd;
}

.form-control:focus {
  border-color: #004e7c;
  box-shadow: 0 0 0 3px rgba(0, 78, 124, 0.1);
}

.Submit button,
.addres-btn {
  background: #1b55b5;
  color: #fff;
  padding: 6px 28px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.Submit button:hover,
.addres-btn:hover {
  background: #003459;
}

/* Address Box Layout */
.addres-bx-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.addres-wrap {
  background: #f7f9fb;
  border: 1px solid #dde4ea;
  border-radius: 12px;
  padding: 20px 25px;
  flex: 1 1 calc(50% - 20px);
  position: relative;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
}

.addres-wrap address,
.addres-wrap p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 8px;
}

.Edit-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #004e7c;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  border: none;
  transition: background 0.3s;
  cursor: pointer;
}

.Edit-btn:hover {
  background: #002b4f;
}

/* Order Table */
.order-title,
.order-table {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 12px 20px;
  text-align: center;
}

.order-title {
  background: #e6f1f8;
  border-radius: 8px;
  color: #004e7c;
  font-weight: 600;
}

.order-card {
  background: #fff;
  border: 1px solid #d9e3ea;
  border-radius: 10px;
  margin: 16px 0;
  padding: 12px 20px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.view-1-btn {
  background: #004e7c;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-1-btn:hover {
  background: #002b4f;
}

/* Order Tracking Steps */
.track {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px dashed #ccc;
  margin-top: 12px;
}

.step {
  text-align: center;
  flex: 1;
}

.step .icon {
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 6px;
  display: inline-block;
}

.step.active .icon {
  color: #004e7c;
}

.step .text {
  font-size: 13px;
  color: #555;
}

/* Password Note Styling */
.password-des {
  background: #f0f6fc;
  border-left: 4px solid #004e7c;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.note-txt {
  font-weight: 600;
  color: #004e7c;
  margin-bottom: 10px;
  font-size: 15px;
}

.deta-pwd {
  list-style: disc;
  padding-left: 20px;
  color: #444;
  font-size: 14px;
}

.deta-pwd li {
  margin-bottom: 6px;
}

/* Add New Address Form Section */
.Addres-frm {
  background: #f8fbfd;
  padding: 25px;
  border: 1px solid #dbe5ee;
  border-radius: 16px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.Addresss-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px 30px;
}

.Addresss-form p {
  margin: 0;
}

.Addresss-form label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
  display: block;
}

.Addresss-form input[type="text"],
.Addresss-form input[type="email"],
.Addresss-form input[type="tel"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccd6df;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.Addresss-form input:focus {
  border-color: #004e7c;
  box-shadow: 0 0 0 3px rgba(0, 78, 124, 0.1);
  outline: none;
}

.Addresss-form .submit {
  grid-column: span 2;
  text-align: right;
}

.addres-btn {
  background: #004e7c;
  color: #fff;
  padding: 12px 30px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.addres-btn:hover {
  background: #003459;
}

@media(min-width:300px) and (max-width:991px) {
  .Addresss-form {
    display: block !important;
  }

  .categ_drpn {
    display: none !important;
  }
}


/* Account Details Form */
.card-body form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px 30px;
}

.card-body .form-group {
  margin: 0;
  /* reset bottom margin for grid layout */
  display: flex;
  flex-direction: column;
}

.card-body label {
  font-size: 14px;
  font-weight: 600;
  color: black;
  margin-bottom: 4px;
  display: block;
}

.card-body input.form-control {
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccd6df;
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.card-body input.form-control:focus {
  border-color: #004e7c;
  box-shadow: 0 0 0 3px rgba(0, 78, 124, 0.1);
  outline: none;
}

.card-body .Submit {
  grid-column: span 2;
}


.shop-checkout-area {
  background: #f9fafb;
  padding: 29px 20px;

  color: #333;
}

.your-order-product {
  background: #f7f9fb;
  border: 1px solid #dde4ea;
  border-radius: 12px;
  padding: 4px 13px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
}

.your-order-product ul {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid #e3e9ef;
}

.your-order-product ul:last-child {
  border-bottom: none;
}

.your-order-product li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.your-order-product li span {
  color: #004e7c;
  font-weight: 600;
  font-size: 14px;
}

/* Container Setup */
.container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Billing Heading */
.billing-heading h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2857a5;
  /* margin-bottom: 25px; */
  /* border-bottom: 3px solid #004e7c; */
  padding-bottom: 8px;
  text-transform: capitalize;
}

/* Billing Info Wrap */
.billing-info-wrap {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

/* Address Display */
.check-address p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

/* Ship to Different Address Checkbox */
.checkout-toggle {
  display: none;
}

.shipcheck {
  display: inline-block;

  font-weight: 600;
  cursor: pointer;
  user-select: none;
  color: #004e7c;
  position: relative;
  padding-left: 28px;
  font-size: 16px;
}

.shipcheck::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid #004e7c;
  border-radius: 4px;
  background: #fff;
  transition: background 0.3s, border-color 0.3s;
}

.checkout-toggle:checked+.shipcheck::before {
  background: #004e7c;
  border-color: #004e7c;
}

.checkout-toggle:checked+.shipcheck::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 1px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
}

/* Different Address Form */
.different-address {
  margin-top: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  display: block;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}



.checkout-d label.small {
  font-weight: 600;
  color: black;
  margin-bottom: 8px;
  font-size: 14px;
}

.checkout-d input.form-control {
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fefefe;
}

.checkout-d input.form-control:focus {
  border-color: #004e7c;
  box-shadow: 0 0 6px rgba(0, 78, 124, 0.3);
  outline: none;
}

/* For rows with two inputs */


/* Update Profile Button */
.btn-update {
  grid-column: 1 / -1;
  background-color: #2857a5;
  color: #fff;
  border: none;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 700;

  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 10px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.btn-update:hover {
  background-color: #002b4f;
}

/* Payment Order Details Section */
.payment-order-details {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

/* Your Order Heading */
.your-order-area h2 {
  font-size: 22px;
  font-weight: 700;
  color: #2857a5;
  border-bottom: 1px solid #306bcd59;
  padding-bottom: 8px;
  margin-bottom: 25px;
  text-transform: capitalize;
}

/* Order Wrap */
.your-order-wrap {
  font-size: 16px;
  color: #444;
}

/* Order Title */
.your-order-title h4 {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  /* border-bottom: 2px solid #cbd5e1; */
  /* padding-bottom: 12px; */
  /* margin-bottom: 20px; */
  color: #ea1934;
  text-transform: uppercase;
}

/* Order Product List */
.your-order-product ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.your-order-product ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e4e7eb;
  font-weight: 500;
}

.your-order-product ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Accessories styling */
.your-order-product ul li[style] {
  font-weight: 400;
  font-size: 14px;
  padding-left: 20px;
  color: #666;
}

/* Subtotal and Total */
.your-order-subtotal h3,
.your-order-total h3 {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  padding-top: 10px;
  color: #004e7c;
  border-top: 2px solid #cbd5e1;
  margin-top: 10px;
}

/* Payment Method */
.payment-method {
  margin-top: 30px;
  font-size: 15px;
  color: #555;
}

.payment-mode {
  font-weight: 600;
  color: #004e7c;
  cursor: pointer;
  user-select: none;
  display: block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}

.payment-mode::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border: 2px solid #004e7c;
  border-radius: 50%;
  background: #fff;
  transition: background 0.3s, border-color 0.3s;
}

.input-radio {
  display: none;
}

.input-radio:checked+.payment-mode::before {
  background: #004e7c;
  border-color: #004e7c;
}

.input-radio:checked+.payment-mode::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

/* Place Order Button */
.place-order {
  margin-top: 30px;
  text-align: center;
}

.place-order button {
  background-color: #2857a5;
  border: none;
  padding: 6px 40px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  width: 100%;
  border-radius: 0px;
  cursor: pointer;
  letter-spacing: 1.2px;
  transition: background-color 0.3s ease;
  text-transform: capitalize;
}

.place-order button:hover {
  background-color: #002b4f;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .checkout-d {
    grid-template-columns: 1fr !important;
  }

  .row.gx-3 {
    grid-template-columns: 1fr !important;
  }

  .payment-order-details {
    margin-top: 40px;
  }


}

@media (max-width: 1200px) {
  #profile_disp {
    display: block !important;
  }

  .user_A {
    color: #000000d1;
    padding-left: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
  }

  .drop_disp {
    display: none;
  }

}


/* --- General resets and typography --- */
.cart-section {
  padding: 12px 0;

}

.cart-heading {
  display: block;
  margin-bottom: 22px;
  text-decoration: none;
  color: #0d6efd;
  transition: color 0.3s ease;
}

.cart-heading h1 {
  font-weight: 700;
  font-size: 29px;
  margin: 0;
  color: #2252a2;
}

.cart-heading:hover {
  color: #084298;
}

/* --- Cart container and cards --- */
.cart-container {
  width: 50%;
  padding: 0px 6px;
  margin-bottom: 12px;
}

.cart-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.07);
  overflow: hidden;
  border: 1px solid #5f77a157;
  transition: box-shadow 0.3s ease;
  height: 100%;
}

.cart-specifications {
  font-size: 11.7px;
  color: #4f4d4d;
  margin-bottom: 2px;
  height: 69px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #5a7eba #fff;
}

.cart-card:hover {
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.12);
}

/* Image section */
.cart-image-section {

  overflow: hidden;
  background-color: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-product-image {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

/* Details section */
.cart-details-section {
  flex: 1;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Header with title and delete */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0px;
}

.cart-product-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: #0d6efd;
  text-decoration: none;
  line-height: 1.3;
  flex: 1;
}

.cart-product-title:hover {
  color: #084298;
}

.cart-delete {
  color: #dc3545;
  font-size: 10px;
  padding-left: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-delete:hover {
  color: #a71d2a;
}

/* Specifications */
.cart-specifications p {
  margin: 2px 0;
  font-size: 13.3px;
  color: #495057;
}

.cart-specifications strong {
  color: #212529;
  font-size: 13.3px;
}

/* Rating & price & quantity section */
.cart-rating-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.cart-price {
  font-weight: 700;
  font-size: 14px;
  color: #f1560a;
  margin-bottom: 0px;
}

.cart-quantity {
  display: flex;
  align-items: center;
  gap: 6px;
}

.quantity-btn {
  border: none;
  background: #2857a58c;
  color: #fff;
  font-size: 15px;
  width: 20px;
  height: 21px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quantity-btn:hover {
  background-color: #084298;
}

.quantity-input1 {
  width: 36px;
  height: 22px;
  text-align: center;
  font-weight: 600;
  font-size: 11px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background-color: white;
  pointer-events: none;
}

/* Accessories section */
.accessories-main {
  margin-top: 20px;
  border-top: 1px solid #dee2e6;
  padding-top: 15px;
}

.acce-main-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acce-main-h h5 {
  font-weight: 600;
  font-size: 1rem;
  color: #343a40;
  margin: 0;
}

.access-b {
  background-color: #0d6efd;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.access-b:hover {
  background-color: #084298;
}

/* Cart totals sidebar */
.cart-details-totals {
  background-color: #fff;
  padding: 17px 21px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.08);
  /* margin-top: 15px; */
  min-height: fit-content;
}

.subtotals-cart {
  width: 100%;
}

.sub-cart {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  border-bottom: 1px solid #dee2e6;
}

.sub-cart h3.cart-hea {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 7px;
  color: #2857a5;
}

.cart-s,
.cart-pi {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  padding: 10px 0;
  border-bottom: 1px solid #f1f3f5;
}

.cart-s span,
.cart-pi span {
  font-weight: 700;
  color: #ea1934;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.btn-cart-totals {
  margin-top: 10px;
}

.tp-cart-checkout-proceed {
  width: 100%;
}

.tp-cart-checkout-btn {
  background-color: #285fad;
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 6px 0;
  /* border-radius: 8px; */
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 15px rgb(25 135 84 / 0.4);
}

.tp-cart-checkout-btn:hover {
  background-color: #146c43;
}

.cart-product-title h2,
.cart-product-title h3,
.cart-product-title h4,
.cart-product-title h5,
.cart-product-title h6 {
  font-size: 15.7px;
  font-weight: 700;
  color: #2857a5;
  margin-bottom: 0px;
}

/* Responsive tweaks */
@media (max-width:540px) {
  .cart-card {
    flex-direction: column;
  }

  .cart-image-section {
    flex: none;
    width: 100%;

    background-color: transparent;
  }

  .cart-product-image {
    max-height: 250px;
  }

  .cart-details-section {
    padding: 15px 10px;
  }

  .cart-container {
    width: 50%;
  }
}

@media(min-width:540px) and (max-width:991px) {
  .cart-card {
    flex-direction: column;
  }

  .cart-image-section {
    flex: none;
    width: 100%;

    background-color: transparent;
  }

  .cart-product-image {
    max-height: 250px;
  }

  .cart-details-section {
    padding: 15px 10px;
  }

  .cart-container {
    width: 50%;
  }
}

@media (max-width: 539px) {
  .cart-price {
    font-size: 1rem;
  }

  .cart-product-title {
    font-size: 1.1rem;
  }

  .cart-container {
    width: 100%;
  }
}



/* order tracking */
.order_number {
  font-size: 18px;
  font-weight: 800;
}


.tracking-wrapper {
  width: 90%;
  margin: 38px auto;
  padding: 0;
}

.tracking-page {
  margin-top: 40px;
}

.tracking * {
  padding: 0;
  margin: 0;
}

.tracking {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.tracking .empty-bar {
  background: #dddddd;
  position: absolute;
  width: 100%;
  height: 20%;
  top: 40%;
}

.tracking .color-bar {
  background: #0082d2;
  position: absolute;
  height: 20%;
  top: 40%;
  /* margin-left: 5%; */
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.tracking ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.tracking ul>li {
  background: #ddd;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 1;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  display: inline-block;
  position: relative;
  width: 31px;
  height: 31px;
}


.tracking ul>li .el {
  position: relative;
  margin-top: 100%;
}

.tracking ul>li .el i {
  position: absolute;
  bottom: 2px;
  left: 9px;
  margin-bottom: 22%;
  color: #fff;
  font-size: 13px;
}

.tracking ul>li .txt {
  color: #999;
  position: absolute;
  top: 141%;
  left: -59px;
  text-align: center;
  width: 150px !important;
  font-size: 0.75rem;
}

.bullet-2 {
  background: #2857a5 !important;
}

.tracking .progress-0 .color-bar {
  width: 00%;
}

.order_pointer span {
  color: black;
  font-size: 15px;
  font-weight: 800;
}

.tracking .progress-1 .color-bar {
  width: 15%;
  background-color: red !important;
}

.tracking .progress-2 .color-bar {
  width: 25%;
}

.tracking .progress-3 .color-bar {
  width: 35%;
}

.tracking .progress-4 .color-bar {
  width: 50%;
}

.tracking .progress-5 .color-bar {
  width: 75%;
}

.card-tracking {
  border: 1px solid #dddddd;
  padding: 30px 27px;
}

.tracking .progress-6 .color-bar {
  width: 90%;
}

.tracking .progress-7 .color-bar {
  width: 100%;
}

.tracking .progress-0>ul>li.bullet-1,
.tracking .progress-1>ul>li.bullet-1,
.tracking .progress-2>ul>li.bullet-1,
.tracking .progress-3>ul>li.bullet-1,
.tracking .progress-4>ul>li.bullet-1,
.tracking .progress-5>ul>li.bullet-1,
.tracking .progress-6>ul>li.bullet-1,
.tracking .progress-7>ul>li.bullet-1 {
  background: #046272;
}

.tracking .progress-2>ul>li.bullet-2,
.tracking .progress-3>ul>li.bullet-2,
.tracking .progress-4>ul>li.bullet-2,
.tracking .progress-5>ul>li.bullet-2,
.tracking .progress-6>ul>li.bullet-2,
.tracking .progress-7>ul>li.bullet-2 {
  background: #046272;
}

.tracking .progress-4>ul>li.bullet-3,
.tracking .progress-5>ul>li.bullet-3,
.tracking .progress-6>ul>li.bullet-3,
.tracking .progress-7>ul>li.bullet-3 {
  background: #046272;
}

.tracking .progress-6>ul>li.bullet-4,
.tracking .progress-7>ul>li.bullet-4 {
  background: #046272;
}

.tracking .progress-7>ul>li.bullet-4 {
  background: #046272;
}

.tracking .progress-1>ul>li.bullet-1 .el i,
.tracking .progress-2>ul>li.bullet-1 .el i,
.tracking .progress-3>ul>li.bullet-1 .el i,
.tracking .progress-4>ul>li.bullet-1 .el i,
.tracking .progress-5>ul>li.bullet-1 .el i,
.tracking .progress-6>ul>li.bullet-1 .el i,
.tracking .progress-7>ul>li.bullet-1 .el i {
  display: block;
}

.tracking .progress-3>ul>li.bullet-2 .el i,
.tracking .progress-4>ul>li.bullet-2 .el i,
.tracking .progress-5>ul>li.bullet-2 .el i,
.tracking .progress-6>ul>li.bullet-2 .el i,
.tracking .progress-7>ul>li.bullet-2 .el i {
  display: block;
}

.tracking .progress-5>ul>li.bullet-3 .el i,
.tracking .progress-6>ul>li.bullet-3 .el i,
.tracking .progress-7>ul>li.bullet-3 .el i {
  display: block;
}

.tracking .progress-7>ul>li.bullet-4 .el i {
  display: block;
}

.tracking .progress-1>ul>li.bullet-1 .txt,
.tracking .progress-2>ul>li.bullet-1 .txt,
.tracking .progress-3>ul>li.bullet-1 .txt,
.tracking .progress-4>ul>li.bullet-1 .txt,
.tracking .progress-5>ul>li.bullet-1 .txt,
.tracking .progress-6>ul>li.bullet-1 .txt,
.tracking .progress-7>ul>li.bullet-1 .txt {
  color: #074c81;

}

.tracking .progress-3>ul>li.bullet-2 .txt,
.tracking .progress-4>ul>li.bullet-2 .txt,
.tracking .progress-5>ul>li.bullet-2 .txt,
.tracking .progress-6>ul>li.bullet-2 .txt,
.tracking .progress-7>ul>li.bullet-2 .txt {
  color: #074c81;
}

.tracking .progress-5>ul>li.bullet-3 .txt,
.tracking .progress-6>ul>li.bullet-3 .txt,
.tracking .progress-7>ul>li.bullet-3 .txt {
  color: #074c81;
}

.tracking .progress-7>ul>li.bullet-4 .txt {
  color: #074c81;
}

.order_pointer.mt-2 {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 16px;

  font-weight: 500;
  background: #74409b1c;
  padding: 8px 15px;
}

.tracking ul>li .el i {
  position: absolute;
  bottom: 2px;
  left: 9px;
  margin-bottom: 22%;
  color: #fff;
  font-size: 13px;
  margin-bottom: 3px !important;
}

span.pf_text {
  color: #2252a2;
  font-weight: 800;
  font-size: 17px;
}


.order_number {
  font-size: 16px;
  font-weight: 800;
}

@media(min-width:300px) and (max-width:768px) {

  .order_pointer.mt-2 {

    display: block;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 500;
    background: #e8e8e8ad;
    padding: 19px 15px;
    line-height: 1.8;
  }

  .cart_head a {
    color: #333;
    font-size: 16px;

  }

  .cart_contend {

    padding: 0px 10px 10px 10px;
  }

}

@media (min-width:300px) and (max-width: 500px) {
  .tracking ul {
    display: flex;
    flex-flow: column;
  }

  .tracking ul>li {
    margin-top: 56px;
  }

  .tracking .empty-bar {
    width: 1%;
    height: 80%;
    left: 15px;
    top: 62px;
    display: flex;
  }

  .tracking ul>li .txt {
    color: #000000;
    position: absolute;
    top: 20%;
    left: 22px;
    text-align: center;
    width: 150px !important;
    font-size: 13px;
  }

  .tracking-wrapper {
    margin: 0px auto !important;
  }

}

.order-summary-container {

  padding: 17px 20px;
  margin: 32px auto;
  max-width: 1000px;
  box-shadow: 0px 1px 5px #c5cfdb;
}

/* Order Header Section */
.order-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #bcc2cb;
  margin-bottom: 12px;
  text-align: left;
}

.order-id-section h2 {
  font-size: 17.5px;
  color: #57118c;
  font-weight: 700;
  margin: 0;
}

.order-id-section .order-date {
  font-size: 13px;
  padding-top: 3px;
  color: #666;
}

.track-btn {
  background-color: #fe8f00e3;
  font-size: 13px;
  color: white;
  padding: 6px 10px;
  font-weight: 800;
  text-decoration: none;
  margin-right: 36px;
  border-radius: 0px;
  transition: background-color 0.3s ease;
}

.track-btn:hover {
  background-color: #3682b7;
  color: white;
}

/* Product Rows */
.order-product-row {
  display: grid;
  grid-template-columns: 0fr 2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 13px 0;
}


.order-titlee h2,
.order-titlee h3,
.order-titlee h4,
.order-titlee h5,
.order-titlee h6 {
  font-size: 16.5px;
  color: #74409b;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 5px;
  display: block;
}

.order-title {
  text-decoration: none;
}

.product-image_order img {
  height: 98px;
  width: 98px;
  object-fit: contain;
  border: 1px solid #8080806e;
}

.product-quantity {
  color: #333;
  margin-bottom: 5px;
  font-size: 12px;
}

.product-price {
  color: #f37506;
  font-size: 13px;
  font-weight: 600;
}

.order-status-section h4,
.order-total-section h4 {
  font-size: 16px;
  color: #3e0e62;
  margin-bottom: 5px;
  font-weight: 600;
}

.order-status-section p,
.order-total-section p {
  font-size: 13px;
  font-weight: 400;
  color: #333;
  margin-bottom: 0px;
}

.order-review-section .review-btn {
  border: 1px solid #74409b;
  font-size: 13px;
  color: #033252;
  font-weight: 600;
  padding: 4px 15px;
  text-decoration: none;
  /* border-radius: 5px; */
  transition: background-color 0.3s ease;
}


.order-review-section .review-btn:hover {
  background-color: #3682b7;
  color: #ffff;
}

/* Responsive Design */
@media (min-width:320px) and (max-width:469px) {

  .order-product-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .order-status-section,
  .order-total-section,
  .order-review-section {
    text-align: center;
  }

  .order-header {
    display: block;
  }

  .track-btn {
    margin-bottom: 13px !important;
    display: inline-block;
  }
}

@media (min-width:991px) and (max-width:1200px) {

  .oredr-main {
    margin-top: 57px !important;
  }
}

@media (min-width:768px) and (max-width:990px) {}

@media (min-width:320px) and (max-width:768px) {
  .order-review-section .review-btn {
    padding: 3px 5px !important;
    font-size: 10.2px !important;
  }
}

.product-image-section img {

  height: 100px;
  padding: 5px;
  border: 1px solid #80808042;
}

.itr {
  background: #0090bd;
  color: white;
  padding: 2px 16px;
  font-weight: 700;
}
.itr:hover{
  color:white;
}
.modal-body {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.Address-form p {
  width: 100%;
  margin: 0;
}

.Address-form .first-name,
.Address-form .phone,
.Address-form .House,
.Address-form .Road,
.Address-form .Pincode,
.Address-form .city,
.Address-form .state,
.Address-form .landmark {
  flex: 1 1 48%;
}

.Address-form .po-wrap {
  display: flex;
  gap: 16px;
  width: 100%;
}

.Address-form input[type="text"],
.Address-form input[type="tel"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
  background: #f9f9f9;
  margin-bottom: 9px;
}

.Address-form input[type="text"]:focus,
.Address-form input[type="tel"]:focus {
  border-color: #7a5cff;
  outline: none;
  background: #fff;
}

.Address-form .submit {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.Address-form .sub_btn {
  background: #0090bd;
  color: #fff;
  padding: 6px 30px;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.Address-form .sub_btn:hover {
  background: #684bd6;
}

.thank-you-container {
     background: #2857a50f;
    max-width: 600px;
    margin: 80px auto;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgb(166 124 82 / 0%);
}

.thank-you-container h1 {
color: #2857a5;
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 20px;
}

.img-thick {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.thanku-p {
  color: #5a4637;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-t {
      background: #2857a5;
    color: white;
    border: none;
    padding: 6px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
    box-shadow: 0 4px 10px rgba(166, 124, 82, 0.3);
}

.btn-t:hover {
  background: #8b6842;
}

@media (max-width: 576px) {
  .thank-you-container {
    padding: 30px 20px;
  }
  .thank-you-container h1 {
    font-size: 28px;
  }
  .img-thick {
    font-size: 50px;
  }
}