@charset "UTF-8";
body {
  background-color: #fff;
}

:root {
  --x: 50%;
  --y: 50%;
}

.bg-darkblue {
  background-color: #002f5f;
}

img.zoom-hover {
  --zoom: 1; /* Set initial zoom level */
  transform: scale(var(--zoom));
  transform-origin: var(--x) var(--y);
  -webkit-clip-path: inset(calc((1 - 1 / var(--zoom)) * (var(--y))) calc((1 - 1 / var(--zoom)) * (100% - var(--x))) calc((1 - 1 / var(--zoom)) * (100% - var(--y))) calc((1 - 1 / var(--zoom)) * (var(--x))));
          clip-path: inset(calc((1 - 1 / var(--zoom)) * (var(--y))) calc((1 - 1 / var(--zoom)) * (100% - var(--x))) calc((1 - 1 / var(--zoom)) * (100% - var(--y))) calc((1 - 1 / var(--zoom)) * (var(--x))));
  width: 200px;
  cursor: zoom-in;
}
img.zoom-hover:hover {
  --zoom: 2;
}

.search-field {
  width: 60vw;
  max-width: 300px;
}

.fixed-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 3;
  background: var(--bs-body-bg);
}

.announcement-container * {
  margin: 0px;
}

.icons {
  width: 1.4rem;
  height: 1.4rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.logo {
  width: 120px;
}

.heading {
  position: relative;
  font-weight: bold;
  font-size: clamp(20px, 5vw, 30px);
  text-transform: uppercase;
}
.heading:after {
  content: "";
  width: 30px;
  background: var(--theme-color);
  height: 5px;
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translate(-50%, 0);
}

#children-menu li a.hover-theme {
  color: var(--bs-dark);
}
#children-menu li a.hover-theme:hover {
  color: var(--theme-color);
}

.navbar-nav .nav-item a:hover {
  color: var(--theme-color);
}

.heading-left {
  position: relative;
}
.heading-left:after {
  content: "";
  width: 20px;
  /*background: var(--theme-color);*/
  height: 3px;
  position: absolute;
  bottom: -10px;
  left: 0;
}

a.pages-header {
  color: var(--bs-dark);
  text-wrap: nowrap;
}
a.pages-header:hover {
  color: var(--theme-color);
}

.landing-banner {
  width: 100%;
  display: inline-block;
}

.banner-description-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-description-container * {
  color: #ffffff;
}
.banner-description-container .banner-title {
  font-size: clamp(50px, 5vw, 75px);
  font-weight: 200;
  margin-bottom: 4rem;
}
.banner-description-container .banner-subtitle {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
}
.banner-description-container .banner-desc {
  font-size: clamp(18px, 5vw, 27px);
  font-weight: 500;
  text-transform: capitalize;
}

.about-us-section {
  background-image: url("/images/img-home-about.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.about-us-section .container {
  width: 80%;
  margin: auto;
}

.header-pages-header-bg {
  background-image: url("/images/bg-title.jpg");
  background-repeat: no-repeat;
  max-height: 300px;
  background-size: cover;
  background-position: center;
  padding: 5rem;
}

.leaf-container {
  position: relative;
}
.leaf-container .leaf-svg {
  width: 75%;
  margin: auto;
}
.leaf-container .leaf-words {
  position: absolute;
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(8px, 2vw, 23px);
  max-width: 75%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.brand-slider .slick-prev:before, .brand-slider .slick-next:before {
  font-size: 45px;
  line-height: 0;
}

.work-together-section {
  background-image: url("/images/img-equiry.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.work-together-section .container {
  max-width: 60%;
}

.home-icon {
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.error {
  color: red;
}

.mw-100 {
  min-width: 100px;
}

#subscribe-us .modal-content {
  background-image: url(../../../images/shop_newsletter_popup.jpeg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}

.btn-primary, .btn-secondary {
  border-radius: 5px;
  min-width: 120px;
  font-weight: 500;
  text-transform: uppercase;
}

.btn-success {
  background-color: #0DB14B;
}

.text-gray {
  color: var(--gray);
}

.text-green {
  color: var(--green);
}

.sm-font-size {
  font-size: 0.8rem;
}

.fs-title {
  font-size: 15px;
}

.btn-add-wishlist.filled svg {
  fill: red;
}
.btn-add-wishlist svg {
  fill: #000;
}

.product-container {
  cursor: pointer;
}
.product-container:hover .prd-img-container .hover-container {
  visibility: visible;
}
.product-container .prd-img-container {
  height: 245px;
  position: relative;
}
.product-container .prd-img-container .hover-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
}
.product-container .prd-img-container .hover-container .view-btn {
  background-color: rgba(55, 67, 77, 0.9019607843);
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: var(--theme-color);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.product-container .prd-img-container .hover-container .view-btn:hover {
  background-color: var(--theme-color);
  color: #fff;
}
.product-container .prd-img-container .hover-container .wishlist-btn, .product-container .prd-img-container .hover-container .addcart-btn {
  text-decoration: none;
  position: absolute;
  right: 10px;
  bottom: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
}
.product-container .prd-img-container .hover-container .wishlist-btn.filled svg, .product-container .prd-img-container .hover-container .addcart-btn.filled svg {
  fill: red;
}
.product-container .prd-img-container .hover-container .wishlist-btn:hover, .product-container .prd-img-container .hover-container .addcart-btn:hover {
  background-color: red;
}
.product-container .prd-img-container .hover-container .wishlist-btn:hover svg, .product-container .prd-img-container .hover-container .addcart-btn:hover svg {
  fill: #fff;
}
.product-container .prd-img-container .hover-container .addcart-btn {
  bottom: 100px;
}
.product-container .prd-img-container .hover-container .addcart-btn:hover {
  background-color: var(--theme-color);
}
.product-container .prd-img-container .hover-container .addcart-btn:hover svg {
  color: #fff;
  fill: none;
}
.product-container .prd-img-container img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #ffffff;
  padding: 10px;
}
.product-container .prd-desc-container {
  margin: 0.5rem;
}
.product-container .prd-desc-container h5 {
  margin-bottom: 0;
  font-weight: bold;
}

.btn-variant {
  color: #000;
  border: 1px solid #000;
  background-color: #fff;
}
.btn-variant:hover {
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
  background-color: #fff;
}
.btn-variant.selected {
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
}

.small-product-container {
  height: 160px;
}
.small-product-container img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #f4f4f4;
}

.ratings {
  color: #c3c5c9;
}

[data-star] {
  text-align: left;
  font-style: normal;
  display: inline-block;
  position: relative;
  unicode-bidi: bidi-override;
}

[data-star]::before {
  display: block;
  content: "\f005\f005\f005\f005\f005";
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  min-width: 80px;
  color: #c3c5c9;
}

[data-star]::after {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f005\f005\f005\f005\f005";
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  width: 0;
  color: #ff8c00;
  overflow: hidden;
  height: 100%;
}

[data-star^="0.1"]::after {
  width: 2%;
}

[data-star^="0.2"]::after {
  width: 4%;
}

[data-star^="0.3"]::after {
  width: 6%;
}

[data-star^="0.4"]::after {
  width: 8%;
}

[data-star^="0.5"]::after {
  width: 10%;
}

[data-star^="0.6"]::after {
  width: 12%;
}

[data-star^="0.7"]::after {
  width: 14%;
}

[data-star^="0.8"]::after {
  width: 16%;
}

[data-star^="0.9"]::after {
  width: 18%;
}

[data-star^="1"]::after {
  width: 20%;
}

[data-star^="1.1"]::after {
  width: 22%;
}

[data-star^="1.2"]::after {
  width: 24%;
}

[data-star^="1.3"]::after {
  width: 26%;
}

[data-star^="1.4"]::after {
  width: 28%;
}

[data-star^="1.5"]::after {
  width: 30%;
}

[data-star^="1.6"]::after {
  width: 32%;
}

[data-star^="1.7"]::after {
  width: 34%;
}

[data-star^="1.8"]::after {
  width: 36%;
}

[data-star^="1.9"]::after {
  width: 38%;
}

[data-star^="2"]::after {
  width: 40%;
}

[data-star^="2.1"]::after {
  width: 42%;
}

[data-star^="2.2"]::after {
  width: 44%;
}

[data-star^="2.3"]::after {
  width: 46%;
}

[data-star^="2.4"]::after {
  width: 48%;
}

[data-star^="2.5"]::after {
  width: 50%;
}

[data-star^="2.6"]::after {
  width: 52%;
}

[data-star^="2.7"]::after {
  width: 54%;
}

[data-star^="2.8"]::after {
  width: 56%;
}

[data-star^="2.9"]::after {
  width: 58%;
}

[data-star^="3"]::after {
  width: 60%;
}

[data-star^="3.1"]::after {
  width: 62%;
}

[data-star^="3.2"]::after {
  width: 64%;
}

[data-star^="3.3"]::after {
  width: 66%;
}

[data-star^="3.4"]::after {
  width: 68%;
}

[data-star^="3.5"]::after {
  width: 70%;
}

[data-star^="3.6"]::after {
  width: 72%;
}

[data-star^="3.7"]::after {
  width: 74%;
}

[data-star^="3.8"]::after {
  width: 76%;
}

[data-star^="3.9"]::after {
  width: 78%;
}

[data-star^="4"]::after {
  width: 80%;
}

[data-star^="4.1"]::after {
  width: 82%;
}

[data-star^="4.2"]::after {
  width: 84%;
}

[data-star^="4.3"]::after {
  width: 86%;
}

[data-star^="4.4"]::after {
  width: 88%;
}

[data-star^="4.5"]::after {
  width: 90%;
}

[data-star^="4.6"]::after {
  width: 92%;
}

[data-star^="4.7"]::after {
  width: 94%;
}

[data-star^="4.8"]::after {
  width: 96%;
}

[data-star^="4.9"]::after {
  width: 98%;
}

[data-star^="5"]::after {
  width: 100%;
}

.discount {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 5px;
  color: #fff;
  background-color: #EF8282;
  font-size: 0.7rem;
  z-index: 2;
}

footer {
  color: #fff;
}

@media (max-width: 1199px) {
  .prd-info {
    flex-direction: column !important;
    text-align: center;
  }
  .prd-info img {
    margin-bottom: 5px;
  }
}
.qty-input {
  margin-left: auto;
  color: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.qty-input .product-qty,
.qty-input .qty-count {
  background: transparent;
  color: inherit;
  font-weight: bold;
  font-size: inherit;
  border: none;
  display: inline-block;
  min-width: 0;
  height: 2.5rem;
  line-height: 1;
  background: #fff;
  border: 1px solid #e2e2e2;
}
.qty-input .product-qty:focus,
.qty-input .qty-count:focus {
  outline: none;
}
.qty-input .product-qty {
  width: 50px;
  min-width: 0;
  display: inline-block;
  text-align: center;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.qty-input .product-qty::-webkit-outer-spin-button, .qty-input .product-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.qty-input .qty-count {
  padding: 0;
  cursor: pointer;
  width: 2.5rem;
  font-size: 1.25em;
  text-indent: -100px;
  overflow: hidden;
  position: relative;
}
.qty-input .qty-count:before, .qty-input .qty-count:after {
  content: "";
  height: 2px;
  width: 10px;
  position: absolute;
  display: block;
  background: #000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.qty-input .qty-count--minus {
  border-right: 1px solid #e2e2e2;
}
.qty-input .qty-count--add {
  border-left: 1px solid #e2e2e2;
}
.qty-input .qty-count--add:after {
  transform: rotate(90deg);
}
.qty-input .qty-count:disabled {
  color: #ccc;
  background: #f2f2f2;
  cursor: not-allowed;
  border-color: transparent;
}
.qty-input .qty-count:disabled:before, .qty-input .qty-count:disabled:after {
  background: #ccc;
}

.courier-img {
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus {
  box-shadow: 0 0 0 3px rgba(200, 100, 100, 0.5) !important;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 60px;
  margin-bottom: 0.8rem;
  font-weight: bold;
}

.stars i {
  font-size: 30px;
  transition: all 0.2s;
  cursor: pointer;
}
.stars i svg {
  fill: #b5b8b1;
}
.stars i.active {
  transform: scale(1.2);
}
.stars i.active svg {
  fill: #ffb851;
}

.print-area {
  width: 220mm;
  margin: auto;
}

.scroll-top-btn {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--secondary-theme-color);
  cursor: pointer;
  padding: 8px 13px;
  border-radius: 4px 4px 0px 0px;
}
.scroll-top-btn svg {
  fill: #fff;
}

.flash-nav .nav-link {
  background-color: var(--bs-dark);
  color: #fff;
  border-radius: 0;
}

.dropdown-menu.category-menu-container {
  width: 100vw;
  left: 5vw;
}

.payment-avatar {
  width: 53px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 8px;
  margin-bottom: 8px;
}

.social-icons {
  width: 2rem;
}

.avatar-sm-img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}

.avatar-img {
  width: 190px;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .product-container .prd-img-container {
    height: 164px;
  }
  .small-product-container {
    height: 135px;
  }
  .leaf-container .leaf-svg {
    width: 100%;
  }
  .work-together-section .container {
    max-width: 80%;
  }
}
@media (max-width: 576px) {
  .scroll-top-btn {
    bottom: 3.5rem;
  }
}
.nav-text {
  color: white;
  cursor: pointer;
  text-align: right;
  margin: 0;
  margin-right: 100px;
  padding: 10px;
  text-transform: capitalize;
}

input[type=email]:focus, input[type=password]:focus, input[type=text]:focus {
  border-color: #1d7039; /* Change border color when focused */
  outline: none; /* Remove default outline */
}

.forgot-password-link, .first_time-link a {
  margin-right: 60px !important;
  color: #0DB14B !important;
}

.forgot-password-link a, .first-time-link a {
  color: #0DB14B !important;
  text-decoration: none;
}

.forgot-password-link a:hover, .first-time-link a:hover {
  text-decoration: underline;
}

.sign-up-link a {
  text-align: center !important; /* Center the text */
  margin-top: 15px; /* Add some spacing from the buttons above */
  text-decoration: none;
}

.sign-up-link {
  text-align: center; /* Center the content horizontally */
}

.remember-me {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.remember-me input[type=checkbox] {
  margin-right: 8px;
  transform: scale(1.2); /* Make the checkbox slightly larger */
}

.modal-backdrop {
  display: none !important;
}

/* Green background for the active tab */
.nav-tabs .nav-link.active {
  color: green;
}

/* Default styling for inactive tabs */
.nav-tabs .nav-link {
  background-color: transparent;
  color: black;
  border-color: transparent;
}

/* Optional: Add hover effect for inactive tabs */
.nav-tabs .nav-link:hover {
  background-color: #e7e7e7; /* Light gray */
}

.gnc-color {
  color: #0DB14B;
}

.border-column {
  border-right: 2px solid white; /* Add vertical line */
}

.btn-register {
  font-size: 11px !important;
  background-color: #28a745;
}

.btn-buy-now {
  top: 921px;
  left: 118px;
  width: 172px;
  height: 42px;
  background: #0DB14B 0% 0% no-repeat padding-box;
  border-radius: 5px;
  opacity: 1;
  background-color: #28a745;
  color: #FFFFFF;
  font-size: 16px !important;
  text-align: center;
  white-space: nowrap; /* Prevent text from wrapping */
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-add-cart {
  top: 921px;
  left: 307px;
  width: 172px;
  height: 42px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #0DB14B;
  color: #0DB14B;
  border-radius: 5px;
  opacity: 1;
  margin-left: 1.5rem;
  white-space: nowrap; /* Prevents text from wrapping */
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-actions {
  display: flex;
  align-items: center; /* Aligns buttons vertically */
  gap: 10px; /* Adds spacing between buttons */
}

/* Stack the buttons vertically only between 768px and 845px */
@media (min-width: 768px) and (max-width: 1199px) {
  .btn-grp {
    display: flex;
    justify-content: space-between;
  }
  .btn-grp {
    flex-direction: column;
    gap: 10px; /* Adds spacing between buttons */
  }
  .btn-grp a {
    width: 100%;
    margin-left: 0; /* Ensures no left margin */
  }
}
/*@media (max-width: 991px) {
  .border-column {
      border: none !important; 
  }
}*/
.product-image {
  width: 528px;
  height: 528px;
  max-width: 100%;
}

@media (max-width: 767px) {
  .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .product-img {
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: 500px;
    height: auto;
  }
}
.product-title {
  font-size: 32px;
}

.product-pc {
  font-size: 16px;
  color: #3A526A;
}

.tnc {
  color: #0080FF;
  text-decoration: underline;
}

.btn-shopping {
  border: 2px solid #0DB14B;
  color: #0DB14B;
  border-radius: 5px;
}

.profile-nav {
  border: 1px solid #000000;
}

.prd_img {
  width: 400px;
  height: 400px;
}

.flag-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
}

.circle-flag {
  font-size: 19px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  display: inline-block;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.footer-opacity {
  opacity: 0.6;
  color: #FFFFFF;
}

.appimg {
  margin: 0;
  margin-right: 8px;
  display: inline-block;
  width: 130px !important;
}

.term-back {
  width: 126px;
  background: #0DB14B 0% 0% no-repeat padding-box;
  border-radius: 5px;
  opacity: 1;
  color: #FFFFFF;
}

.term-back:hover {
  border: 1px solid #0DB14B;
}

.term-ordr {
  width: 126px;
  background: #FF8D8D 0% 0% no-repeat padding-box;
  border-radius: 5px;
  opacity: 1;
}

.pdf-btn {
  display: inline-block;
  max-width: 300px;
  background-color: #0080FF;
  border-radius: 5px;
  opacity: 1;
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding: 7px 20px;
  white-space: nowrap; /* Prevent wrapping */
}

.card-text {
  margin-bottom: -5px;
}

.dts-img {
  width: 100px;
  height: 100px;
}

@media (max-width: 991px) {
  .nav-link {
    margin-left: 1rem !important;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding-bottom: 5rem !important; /* Increase bottom padding */
    height: 80px; /* Optional: Increase navbar height */
  }
  input[type=email],
  input[type=password] {
    font-size: 14px !important;
  }
  .btn-modal {
    font-size: 14px !important;
    padding: 10px !important;
    margin-bottom: 10px;
  }
}
.btn-modal {
  display: block; /* Ensure it can be centered */
  width: 60%; /* Or 100% if inside a centered container */
  margin: 0 auto 20px auto; /* Center horizontally + add bottom spacing */
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #28a745; /* Optional: Add a background color */
  color: white; /* Optional: Text color */
  transition: background-color 0.3s ease;
}

.btn-login {
  background-color: #ffa31a;
  color: white;
  width: 40%;
}

.btn-reset {
  background-color: #0DB14B;
  color: white;
  width: 40%;
}

.btn-cancel {
  background-color: gray;
  color: #FFFFFF;
  width: 40%;
}

.btn-login:hover {
  background-color: #ffa31a;
}

.btn-cancel:hover {
  background-color: #e53935;
}

.btn-order {
  background-color: #0DB14B;
  color: #FFFFFF;
  border-radius: 5px;
}

.btn-order:hover {
  border: 1px solid #0DB14B;
}

.btn-termt {
  background-color: #FF8D8D;
  color: #FFFFFF;
  border-radius: 5px;
  width: 126px;
}

.btn-termt:hover {
  border: 1px solid #FF8D8D;
}

@media (max-width: 1024px) {
  .row-cols-lg-4 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 540px) {
  .row-cols-lg-4 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.zoom-hover {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 520px; /* Adjust as needed */
  cursor: crosshair;
}

.zoom-hover img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
  transform-origin: var(--x, 50%) var(--y, 50%);
}

.zoom-hover:hover img {
  transform: scale(2); /* Adjust zoom level */
}

.modal-header-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0.75rem 1rem;
  border-bottom: none;
  background-color: #0DB14B;
}

.modal-header-custom .modal-title {
  flex-grow: 1;
  text-align: center;
  margin: 0;
  color: white;
  font-weight: bold;
}

.modal-header-custom .btn-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.modal-content p {
  color: black !important;
  font-size: 16px;
  text-align: center;
  margin: 20px 0;
}

#hasMIDBtn,
#noMIDBtn,
#hasAMOBtn,
#noAMOBtn,
#verifyAMOBtn {
  border-radius: 5px;
  padding: 10px 24px;
  font-weight: bold;
}

.rmb-me {
  margin-left: 55px;
}

@media (max-width: 767px) {
  .logo-placement {
    z-index: 1050;
    margin-top: 50px;
  }
  .btn-sign-up {
    margin-right: -50px;
  }
  .banner-section {
    margin-top: 50px;
  }
}
.banner-slider {
  position: relative;
}

.banner-slider .slick-dots {
  position: static;
  margin-top: 10px;
  text-align: center;
  padding-bottom: 20px;
}

.cart-prd-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3em;
  line-height: 1.5em;
}

.combo-text {
  color: #3195c7;
}

.success-icon {
  border: none;
  background-color: transparent !important;
}

.my-swiper {
  width: 100%;
  height: 300px;
  margin: 0 auto;
}

.swiper-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: white;
  opacity: 1;
}

.custom-hr {
  border: none;
  border-top: 2px solid #797b7d; /* Or any color */
  width: 100vw; /* Full viewport width */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 20px 0;
}

.cvv-inside-icon {
  position: absolute;
  right: 15px;
  top: 70%;
  transform: translateY(-50%);
  color: grey;
  background-color: transparent;
  padding: 2px 4px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.amo-title {
  margin-bottom: 0;
}

.amo-desc {
  text-align: left;
}

.amo-desc p {
  margin-bottom: 0px;
}

.amo-agree {
  text-align: justify;
  color: #000000;
  margin-bottom: 0px;
}

@media (min-width: 1201px) {
  .amo-agree-top {
    margin-top: -60px;
  }
}
.cust-info {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 15px;
}

.odr-dts {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 15px;
}

.pyt-mthd {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: -20px;
}

.tick-box {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  margin-right: 6px;
  position: relative;
}

.tick-box.ticked::after {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 3px;
  font-size: 14px;
  color: #000000;
}

.col-9.d-flex > div + span {
  margin-right: 15px;
}

.declaration {
  font-size: 12px;
}

.office-use {
  border: 1px solid #000;
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
}

.bottom-right-text {
  text-align: right;
  font-size: 10px;
  color: #555;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .amo-title {
    font-size: 1rem;
    text-align: left;
  }
  .amo-desc p {
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
  }
  .tick-box {
    min-width: 16px;
    min-height: 16px;
    border: 1px solid #000;
    display: inline-block;
  }
  .form-label {
    margin-bottom: 0.2rem;
  }
  .amo-agree {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  .cust-info, .odr-dts {
    font-size: 1rem;
  }
  .table th, .table td {
    padding: 0.3rem;
    font-size: 0.8rem;
  }
  .declaration p, .office-use p {
    margin-bottom: 0.5rem;
  }
  .bottom-right-text {
    font-size: 0.7rem;
  }
}
.logo-img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 576px) {
  .logo-img {
    max-width: 60px;
  }
}
.red-line {
  position: relative;
  display: inline-block;
  color: black;
}

.red-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 30%;
  right: 30%;
  height: 2px;
  background-color: red;
  transform: translateY(-50%);
}

@media print {
  .logo-img {
    height: auto !important;
  }
}
.btn-print {
  color: #FFFFFF;
  background-color: #002f5f;
}
.btn-print:hover {
  color: #FFFFFF;
  background-color: #002f5f;
}

.custom-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1040;
}

#stepAmotnc ol li {
  margin-bottom: 1rem;
}/*# sourceMappingURL=custom.css.map */