:root {
  --olight-primary: #003138;
  --olight-primary-2: #013841;
  --olight-primary-dark: #00272b;
  --olight-accent: #006271;
  --olight-accent-strong: #004e59;
  --olight-surface: #fbfbfb;
  --olight-border: #eaeaea;
  --olight-text: #333;
  --olight-muted: #666;
}
body {
  width: 100%;
  min-height: 100%;
  color: var(--olight-muted);
}
a {
  color: #010101;
}
a:hover, a:focus {
  color: var(--olight-accent);
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  color: #444;
}
legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
label {
  font-size: 12px;
  font-weight: 400;
}
button:focus {
  outline: none !important;
}
/* layout */
#container {
  position: relative;
  width: 100%;
  min-height: 100%;
}
#content, #column-left, #column-right {
  padding-bottom: 0;
}
/* alert */
#alert {
  position: fixed;
  top: 30%;
  left: 50%;
  z-index: 9999;
  width: 400px;
  margin-left: -200px;
}
@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
#alert .alert {
  margin-bottom: 15px;
}
#alert .alert-primary {
  box-shadow: 0 0 0 5px rgb(var(--bs-primary-rgb), 0.1);
}
#alert .alert-secondary {
  box-shadow: 0 0 0 5px rgb(var(--bs-secondary-rgb), 0.1);
}
#alert .alert-success {
  box-shadow: 0 0 0 5px rgb(var(--bs-success-rgb), 0.1);
}
#alert .alert-warning {
  box-shadow: 0 0 0 5px rgb(var(--bs-warning-rgb), 0.1);
}
#alert .alert-danger {
  box-shadow: 0 0 0 5px rgb(var(--bs-danger-rgb), 0.1);
}
#alert .alert-info {
  box-shadow: 0 0 0 5px rgb(var(--bs-info-rgb), 0.1);
}
#alert .alert-light {
  box-shadow: 0 0 0 5px rgb(var(--bs-light-rgb), 0.1);
}
#alert .alert-dark {
  box-shadow: 0 0 0 5px rgb(var(--bs-dark-rgb), 0.1);
}
/* top */
#top {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 5px;
  background: linear-gradient(to bottom, var(--olight-primary-2), var(--olight-primary));
  border-bottom: 1px solid var(--olight-primary-dark);
}
#top ul.list-inline {
  margin-bottom: 0;
}
#top .list-inline-item > a, #top .list-inline-item .dropdown > a {
  padding: 10px 0 5px;
  font-size: 1.1em;
  line-height: 40px;
  vertical-align: middle;
  color: var(--bs-gray-600);
}
/* logo */
#logo {
  margin: 7px 0;
  padding: 10px 0;
  text-align: center;
}
#logo img, header #logo img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
}
@media (min-width: 768px) {
  #logo {
    text-align: left;
  }
}
@media (max-width: 991.98px) {
  #logo img, header #logo img {
    max-width: 320px;
  }
}
@media (max-width: 575.98px) {
  #logo img, header #logo img {
    max-width: 240px;
  }
}
/* search */
#search, .search-bar, #cart {
  margin-top: 34px;
  margin-bottom: 10px;
}
#search .form-control-lg {
  height: 40px;
  padding: 0 10px;
  font-size: 12px;
  line-height: 20px;
}
#search .btn-lg {
  padding: 0.57rem 35px;
  font-size: 15px;
  line-height: 18px;
  text-shadow: 0 1px 0 #fff;
}
/* cart */
#cart .img-thumbnail {
  min-width: 100px;
}
#cart .btn-lg {
  padding: 14px 35px;
  font-size: 15px;
  line-height: 18px;
}
#cart .dropdown-menu {
  background: #eee;
}
#cart .dropdown-menu li {
  min-width: 300px;
}
@media (max-width: 768px) {
  #cart .dropdown-menu li {
    min-width: 100%;
  }
}
/* menu */
#menu, .top-bar, .navbar, header .navbar {
  background: linear-gradient(to bottom, var(--olight-primary-2), var(--olight-primary));
  border-color: var(--olight-primary-dark);
}
#menu {
  min-height: 40px;
  margin-bottom: 20px;
  padding: 0 1rem;
  border: 1px solid var(--olight-primary-dark);
  border-radius: 4px;
}
#menu .navbar-nav > li > a {
  padding: 10px 15px;
  background-color: transparent;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
#menu .navbar-nav > li > a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.navbar a, .navbar .nav-link, #menu a, #menu .nav-link, header .navbar a, header .navbar .nav-link {
  color: #333;
  font-size: 16px;
}
.navbar a:hover, .navbar .nav-link:hover, .navbar .nav-link:focus, #menu a:hover, #menu .nav-link:hover, header .navbar a:hover, header .navbar .nav-link:hover {
  color: #fff;
  background-color: var(--olight-accent);
}
#menu .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#menu .dropdown-inner {
  display: flex;
  flex-direction: column;
}
#menu .dropdown-inner ul {
  width: 100%;
  min-width: 200px;
}
#menu .dropdown-menu, #menu .dropdown-inner, #menu .dropdown-inner ul, #menu .dropdown-inner ul li a {
  background: #fff !important;
  color: #333 !important;
}
#menu .dropdown-inner ul li a:hover {
  background: var(--olight-accent) !important;
  color: #fff !important;
}
#category {
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
#menu .navbar-toggler i {
  font-size: 0.9em;
  color: #fff;
  border-color: #fff;
}
@media (min-width: 960px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
  #menu .dropdown-inner {
    flex-direction: row;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-2 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -600px;
  }
}
/* bootstrap tweaks */
div.required .col-form-label:before, div.required .form-label:before {
  content: "* ";
  color: #f00;
  font-weight: 700;
}
.form-switch-lg {
  min-height: 30px;
  font-size: 20px;
  line-height: 30px;
}
.form-check .form-check-input {
  margin-top: 0.25rem;
}
.nav-tabs {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .col-form-label {
    text-align: right;
  }
}
/* breadcrumb */
.breadcrumb {
  margin: 0 0 20px;
  padding: 8px 0;
  background-color: var(--olight-surface);
  border: 1px solid var(--olight-border);
  border-radius: var(--bs-border-radius);
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li.breadcrumb-item {
  position: relative;
  padding: 0 20px;
  white-space: nowrap;
  text-shadow: 0 1px 0 #fff;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
  color: var(--olight-accent);
}
.breadcrumb > li.breadcrumb-item:after {
  content: "";
  position: absolute;
  top: -3px;
  right: -5px;
  display: block;
  width: 29px;
  height: 29px;
  border-right: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  transform: rotate(-45deg);
}
.breadcrumb > li.breadcrumb-item + li:before {
  content: "";
  padding: 0;
}
/* products */
.product-thumb {
  position: relative;
  height: 100%;
  border: 1px solid #ddd;
}
.product-thumb .image {
  text-align: center;
}
.product-thumb .image a:hover {
  opacity: 0.8;
}
.product-thumb .description {
  margin-bottom: 45px;
  padding: 15px;
}
.product-thumb .description h4, .blog-thumb h4 {
  font-weight: 700;
}
.product-thumb .button {
  position: absolute;
  bottom: 0;
  display: flex;
  width: 100%;
}
.product-thumb .button button {
  width: 33.33%;
  line-height: 38px;
  text-align: center;
  color: var(--bs-gray-600);
  background-color: var(--bs-tertiary-bg);
  border: none;
  border-top: 1px solid var(--bs-border-color);
}
.product-thumb .button button:hover {
  cursor: pointer;
  color: var(--bs-gray-600);
  text-decoration: none;
  background-color: #ddd;
}
.product-thumb .button button + button {
  border-left: 1px solid var(--bs-border-color);
}
@media (min-width: 960px) {
  .product-list .product-thumb {
    display: flex;
  }
  .product-list .product-thumb .image {
    flex-direction: column;
    margin-bottom: 0;
  }
  .product-list .product-thumb .content {
    position: relative;
    flex: 75%;
    flex-direction: column;
  }
  .product-list .product-thumb .button {
    width: calc(100% - 15px);
    margin-left: 15px;
    border-left: 1px solid #ddd;
  }
}
/* rating */
.rating .fa-stack {
  width: 20px;
}
.rating .fa-star {
  font-size: 15px;
  color: #fc0;
}
.rating .fa-star + .fa-star {
  color: #e69500;
}
/* prices */
.price {
  color: var(--olight-accent);
}
.price-new {
  font-weight: 600;
  color: var(--olight-accent);
}
.price-old {
  color: #dc512c;
  text-decoration: line-through;
}
.price-tax {
  display: block;
  font-size: 12px;
  color: #999;
}
/* blog */
.blog-thumb {
  margin-bottom: 15px;
  border: 1px solid #ddd;
}
.blog-thumb .image {
  margin-bottom: 15px;
  text-align: center;
}
.blog-thumb .image a:hover {
  opacity: 0.8;
}
.blog-thumb .description {
  padding: 15px;
}
/* generic theme */
.btn-primary, .btn.btn-primary, button.btn-primary, input.btn-primary {
  color: #fff;
  background: linear-gradient(to bottom, var(--olight-primary-2), var(--olight-primary));
  border-color: var(--olight-primary-dark);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active {
  color: #fff;
  background: var(--olight-accent);
  border-color: var(--olight-accent-strong);
}
.btn-outline-primary {
  color: var(--olight-accent);
  border-color: var(--olight-accent);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  color: #fff;
  background: var(--olight-accent);
  border-color: var(--olight-accent);
}
.dropdown-menu {
  border-color: var(--olight-border);
}
.dropdown-item:hover, .dropdown-item:focus, .dropdown-menu a:hover {
  color: #fff;
  background: var(--olight-accent);
}
.card, .product-thumb, .product-layout .card, .list-group-item, .table-bordered, .pagination .page-link {
  border-color: var(--olight-border);
}
.list-group-item.active, .page-item.active .page-link, .pagination .active .page-link {
  color: #fff;
  background: linear-gradient(to bottom, var(--olight-primary-2), var(--olight-primary));
  border-color: var(--olight-primary-dark);
}
/* footer */
footer, .footer, .site-footer {
  position: relative;
  clear: both;
  margin: 24px 0 0;
  padding: 28px 0 34px;
  overflow: hidden;
  color: var(--olight-text);
  background: var(--olight-surface);
  border-top: 5px solid var(--olight-border);
  border-bottom: 5px solid var(--olight-border);
}
footer a, .footer a, .site-footer a {
  color: var(--olight-text);
  text-decoration: none;
}
footer a:hover, .footer a:hover, .site-footer a:hover {
  color: var(--olight-accent);
}
footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}
.site-footer .footer-col {
  margin-bottom: 24px;
}
.site-footer h5 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  color: #2f2f2f;
}
.site-footer .footer-list {
  margin: 0;
  padding: 0;
}
.site-footer .footer-list li {
  margin: 0 0 14px;
  padding: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  border-bottom: 1px solid #e6e6e6;
}
.site-footer .footer-list li:last-child {
  margin-bottom: 0;
}
.site-footer .footer-address-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.site-footer .footer-address-row strong {
  flex: 0 0 auto;
}
.site-footer .footer-address {
  display: block;
  margin: 0;
}
.site-footer .footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}
.site-footer .footer-social-label {
  font-weight: 700;
}
.site-footer .footer-social a {
  font-size: 22px;
  line-height: 1;
  color: #2f4b59;
}
.site-footer .footer-social a:hover {
  color: #000;
}
@media (max-width: 767.98px) {
  .site-footer {
    padding: 24px 0;
  }
  .site-footer h5 {
    margin-bottom: 14px;
  }
  .site-footer .footer-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .site-footer .footer-address-row {
    display: block;
  }
  .site-footer .footer-address {
    margin-top: 6px;
  }
}
/* homepage banner */
.common-home .swiper-viewport, .common-home .swiper, .common-home .slideshow {
  max-width: 1340px;
  margin: 0 auto 24px;
}
.common-home .swiper-viewport {
  height: auto !important;
  min-height: 0;
}
.common-home .swiper-wrapper, .common-home .swiper-slide {
  height: auto;
}
.common-home .swiper-slide img, .common-home .slideshow img {
  display: block;
  width: 100%;
  max-width: 1340px;
  height: auto;
  margin: 0 auto;
}
/* misc */
.carousel {
  box-shadow: none;
}
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 150px;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}
#cookie div {
  font-size: 16px;
  color: #fff;
}
.search-bar .input-group {
  margin-bottom: 0;
}
.header-icons {
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}
.header-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--olight-accent);
  font-size: 18px;
  text-decoration: none;
}
.header-icon-link:hover {
  color: var(--olight-primary);
}
.menu-cart-row {
  margin-bottom: 24px;
}
.menu-cart-row #menu {
  margin-bottom: 0;
  padding-right: 260px;
}
.menu-cart {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  min-width: 240px;
}
.menu-cart #cart {
  margin-bottom: 0;
}
.menu-cart .btn-lg, .menu-cart .dropdown-toggle, .menu-cart button {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 40px;
  border: 0;
  background: var(--olight-primary);
  box-shadow: none;
}
.menu-cart #cart, .menu-cart #cart * {
  color: #fff;
}
@media (max-width: 991.98px) {
  #category.d-block.d-sm-block.d-lg-none {
    display: none !important;
  }
  #menu .navbar-toggler {
    margin-left: auto;
    display: block;
  }
  .menu-cart-row #menu {
    padding-right: 1rem;
  }
  .menu-cart {
    position: static;
    transform: none;
    margin-top: 12px;
  }
  .header-icons {
    justify-content: flex-start;
    margin-top: 12px;
  }
}
header .container, .menu-cart-row {
  max-width: 1660px;
  margin-left: auto;
  margin-right: auto;
}
.header-main-row {
  justify-content: center;
}
#logo {
  display: flex;
  justify-content: center;
}
.search-bar {
  display: flex;
  justify-content: center;
}
.header-icons {
  justify-content: flex-start;
}
.menu-cart, .menu-cart #cart, .menu-cart .dropdown {
  z-index: 1050;
}
.menu-cart .dropdown-menu {
  z-index: 1060;
}
.common-home .swiper-viewport, .common-home .swiper, .common-home .slideshow {
  z-index: 1;
}
.header-icons .dropdown > .header-icon-link {
  position: relative;
  top: 2px;
}

/* account dropdown over header cart */
.header-icons .dropdown,
.header-icons .dropdown-menu.dropdown-menu-end,
.header-icons .dropdown-menu.dropdown-menu-end.show {
  z-index: 3000 !important;
}
