﻿body {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: #212529;
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

header {
  background: #00245D;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
  padding: 0;
  transition: 0.3s;
  transform: none;
  min-height: min-content;
  width: 100vw;
}
header .top-bar {
  height: 45px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 575.95px) {
  header .top-bar {
    min-height: 60px;
  }
}
header .top-bar .owner-info, header .top-bar .bi, header .top-bar a {
  font-size: 12px;
}
header .navbar {
  min-height: 60px;
  background: #00245D;
  color: white;
}
header .navbar .nav-item, header .navbar .nav-link, header .navbar .navbar-toggler {
  color: white;
  font-size: 18px;
}
header .navbar-content {
  width: 80vw;
  margin: 0px auto;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-between;
  max-height: 47px;
  min-height: 23px;
}
@media (max-width: 1199.98px) {
  header .navbar-content {
    width: 100vw;
    padding: 0 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  header .navbar-content {
    width: 90vw;
  }
}

main {
  width: 100vw;
}

a {
  cursor: pointer;
}

p, a {
  font-size: 16px;
  color: #212529;
}

.link-underline {
  text-decoration: underline;
  color: #212529;
}

.clear-both {
  display: block;
  clear: both;
  padding: 120px 0px;
}
@media (max-width: 991.98px) {
  .clear-both {
    padding: 60px 0px;
  }
}

ul, .list-type-none {
  list-style-type: none;
}

@media (max-width: 991.98px) {
  .container {
    width: 100vw;
  }
}

span.delete, a.delete, button.delete {
  cursor: pointer;
  color: #00245D;
  font-weight: 700;
  margin: 5px;
  padding: 5px;
}

h1 {
  font-size: 2.5rem;
  line-height: 4.5rem;
  font-weight: 500;
}

h2 {
  font-size: 2.25rem;
  line-height: 3rem;
  font-weight: 500;
}

h3 {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 500;
}

h4 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
}

img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.img-card {
  max-height: 306px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background: whitesmoke;
}

::-webkit-scrollbar-thumb {
  background: #00245D;
  width: 4px;
  height: 0px;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00245D;
}

#page-container {
  position: relative;
  min-height: 40vh;
}

.footer {
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  background-color: rgb(46, 51, 54);
  color: white;
  overflow-x: hidden;
  white-space: normal;
  position: absolute;
}
@media (max-width: 766px) {
  .footer {
    position: relative;
  }
}
.footer p, .footer a, .footer span {
  color: white;
}
.footer .h-32 {
  height: 8rem;
}
.footer .w-32 {
  width: 8rem;
}
.footer .text-xs {
  font-size: 0.75rem;
}
.footer .f-blue-text {
  color: rgb(120, 166, 214);
}

.inputContainer {
  position: relative;
  margin-bottom: 10px;
}
.inputContainer input, .inputContainer select {
  width: 100%;
  border: solid 1px #ced4da;
  border-radius: 4px;
  padding: 15px;
  height: 50px;
  outline: none;
  box-shadow: none;
}
.inputContainer .place_holder {
  position: absolute;
  left: 14px;
  top: 7px;
  pointer-events: none;
  font-size: 16px;
  font-weight: 300;
  padding: 2px 4px;
  text-transform: capitalize;
  transition: 0.5s;
}
.inputContainer .place_holder.shown {
  transform: translateX(1px) translateY(-8px);
  top: 5px;
  font-size: 0.8rem;
  background: white;
  font-weight: 400;
  line-height: 5px;
}
.inputContainer input:not(:placeholder-shown) ~ .place_holder,
.inputContainer input:focus ~ .place_holder,
.inputContainer select:not(:placeholder-shown) ~ .place_holder,
.inputContainer select:focus ~ .place_holder {
  transform: translateX(1px) translateY(-8px);
  top: 5px;
  font-size: 0.8rem;
  background: white;
  font-weight: 400;
  line-height: 5px;
}
.inputContainer i {
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 20px;
}
.inputContainer .input-group-text {
  min-width: 50px;
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}
.inputContainer .input-group-text i {
  right: 16px;
}

.indicator-progress {
  display: none;
}

.field-validation-error {
  color: #c1133c;
}

.infinite-ribbon {
  width: 100vw;
  min-height: 60px;
  height: max-content;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.infinite-ribbon .ribbon {
  display: flex;
  align-items: center;
}
.infinite-ribbon .text {
  color: #212529;
  text-transform: uppercase;
  font-weight: 300;
  width: max-content;
  font-size: 16px;
  display: inline-block;
}
.infinite-ribbon .separator {
  border: solid 1px #212529;
  height: 2px;
  padding: 0px 15px;
  margin: 0px 25px;
  display: inline-block;
}
.infinite-ribbon .image {
  height: 300px;
  width: 300px;
  padding: 5px;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
.text-separator {
  margin: 15px auto;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  gap: 10px;
  width: 100%;
  height: 30px;
}
.text-separator .text {
  background-color: white;
  color: #212529;
  position: absolute;
  padding: 0px 10px;
}
.text-separator .separator {
  border-top: solid 1px gray;
  position: absolute;
  top: 15px;
  height: 1px;
  width: 40%;
}

section.container-fluid {
  width: 100vw;
}
section.container-fluid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 991.98px) {
  .flex-col-sm-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (max-width: 991.98px) {
  .position-sm-left {
    object-position: left !important;
  }
}

@media (max-width: 991.98px) {
  .position-sm-right {
    object-position: right !important;
  }
}

.dropdown-menu {
  z-index: 10;
}

#shopping_cart.offcanvas.offcanvas-end {
  max-height: 100vh;
}
#shopping_cart.offcanvas.offcanvas-end .shopping_cart_body {
  max-height: calc(100vh - 180px);
  overflow-y: auto;
}

.accordion.accordion-simple .accordion-item {
  border: none;
}
.accordion.accordion-simple .accordion-item .accordion-button {
  padding: 7px;
}
.accordion.accordion-simple .accordion-item .accordion-button:focus, .accordion.accordion-simple .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
  border: none;
  background-color: transparent;
}
.accordion.accordion-simple .accordion-body {
  padding: 0px 0px 7px 7px;
}
.accordion.accordion-simple ul, .accordion.accordion-simple li {
  border: none;
  border-radius: 0;
}
.accordion.accordion-simple .list-group-item.active {
  background-color: #3399FF;
}

#item-search .item-search-btn {
  top: 10px;
  cursor: pointer;
  z-index: 99;
}
#item-search a.dropdown-item {
  white-space: break-spaces;
}

#item-detail-view h2 {
  color: #00245D;
  font-weight: 600;
}
#item-detail-view .breadcrumbs {
  color: #3399FF;
  text-transform: uppercase;
  font-size: 15px !important;
}

.product-overlay {
  position: absolute;
  width: 100%;
  height: 124px;
  line-height: 40px;
  top: auto;
  bottom: -126px;
  left: 0;
  z-index: 6;
  overflow: hidden;
}

@media (max-width: 767.9px) {
  .product-overlay {
    display: block;
  }
}
.product-overlay.product-withautoorder {
  height: 99px;
  bottom: -99px;
}

.product-overlay.group-master {
  height: 33px;
  bottom: -33px;
}

body:not(.device-touch):not(.device-sm):not(.device-xs) .product-overlay {
  -webkit-transition: bottom 0.3s ease-in-out;
  -o-transition: bottom 0.3s ease-in-out;
  transition: bottom 0.3s ease-in-out;
}

.product:hover .product-overlay {
  bottom: 0;
}

.product-overlay a {
  /*display: block;*/
  float: left;
  width: 100%;
  font-size: 13px;
  color: #333;
  background-color: #f5f5f5;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 7;
  cursor: pointer;
}

body:not(.device-touch):not(.device-sm):not(.device-xs) .product-overlay a {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-overlay a:hover {
  background-color: #333;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.privacy-view h3, .privacy-view h4, .terms-view h3, .terms-view h4, .returnpolicy-view h3, .returnpolicy-view h4 {
  color: #0ca6b6;
  font-size: 21px;
}
.privacy-view p, .terms-view p, .returnpolicy-view p {
  color: #636466;
}

.subcategory {
  padding-left: 5%;
}
.subcategory a {
  font-size: 13px;
}

input[readonly] {
  background-color: #e9ecef;
}

#whatsapp-button {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 9999;
  padding: 10px 16px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: background-color 0.3s ease;
}
#whatsapp-button .bi-whatsapp {
  font-size: 25px;
}

#whatsapp-button:hover {
  background-color: #128c7e;
}

.promotion-message {
  font-weight: bold;
  color: red;
  font-size: larger;
}
