body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #666;
  font-size: 12px;
  line-height: 20px;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  color: #313030;
  font-family: 'Jost', sans-serif;
}

/* Override the bootstrap defaults */
h1 {
  font-size: 2rem; 
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

footer h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.9rem;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  h4 {
    font-size: 1.4rem;
  }

  footer h5 {
    font-size: 1.2rem;
  }

  h6 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  h4 {
    font-size: 1rem;
  }

  footer h5 {
    font-size: 0.9rem;
  }

  h6 {
    font-size: 0.8rem;
  }
}

a {
  color: #313030;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--main-theme-color);
}

ul {
  margin-bottom: 0;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(0, 0, 0);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.3171875rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.015625rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.015625rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 0.25rem;
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-size: 14px;
  --bs-nav-link-font-weight: 600;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0.5rem;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 0.8125rem;
  --bs-dropdown-color: #ffffff;
  --bs-dropdown-bg: var(--main-theme-color-transparent);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: 0.25rem;
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-inner-border-radius: calc(0.25rem - 1px);
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: var(--main-theme-color);
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-link-hover-bg: var(--main-theme-color-transparent);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: var(--main-theme-color);
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  margin-top: 0px;
  font-size: var(--bs-dropdown-font-size);
  color: var(--main-theme-color);
  text-align: left;
  list-style: none;
  background-color: #000000cf;
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: #ccc;
  --bs-nav-link-hover-color: #fff;
  --bs-nav-link-disabled-color: #6c757d;
  list-style: none;
}
.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: var(--bs-body-bg);
  --bs-list-group-border-color: var(--bs-border-color);
  --bs-list-group-border-width: var(--bs-border-width);
  --bs-list-group-border-radius: var(--bs-border-radius);
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: var(--bs-body-bg);
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: var(--main-theme-color);
  --bs-list-group-active-border-color: var(--main-theme-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}
.right-menu-items .navbar-nav {
  flex-direction: unset;
}

.right-menu-items .nav-item {
  margin-right: 4px;
  margin-left: 4px;
}

/* Chrome border line */
button:focus {
  outline: none !important;
}

legend {
  font-size: 18px;
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--main-theme-color-transparent);
}

label {
  font-size: 12px;
  font-weight: normal;
}

.list-unstyled a {
  text-decoration: none;
}

.nav-tabs {
  margin-bottom: 15px;
}

div.required .col-form-label:before,
div.required .form-label:before {
  content: "* ";
  color: #F00;
  font-weight: bold;
}

.form-switch-lg {
  font-size: 20px;
  min-height: 30px;
  line-height: 30px;
}

@media (min-width: 768px) {
  .col-form-label {
    text-align: right;
  }
}
#alert {
  z-index: 9999;
  position: fixed;
  top: 30%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
}
@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1140px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1320px) {
  #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 {
  background: var(--main-theme-color-transparent);
  position: relative;
  height: 32px;
  width: 100%;
  z-index: 3;
  padding: 5px 0 5px 0;
}

#top .nav>.list-inline>.list-inline-item,
#top .nav>.list-inline .list-inline-item>a,
#top .nav>.list-inline .list-inline-item .dropdown>a {
  color: #fff;

}

#top .btn-link {
  color: #fff;
  text-decoration: none;
}

#top .btn-link:hover {
  color: #fff;
}

#top a {
  font-size: 1.1em;
  text-decoration: none;
}

.dropdown .dropdown-toggle i {
  margin-left: 3px;
}

header {
  height: 60px;
  background: rgba(244, 244, 244, 1);
  border-radius: 0px 0px 8px 8px;
  position: relative;
  width: 100%;
  z-index: 2;
  display: inline-table;
}

@media (max-width: 768px) {

  #top,
  header {
    position: relative;
    top: 0;
  }
}

footer a {
  font-size: 1.1em;
  text-decoration: none;
}

/* logo */
#logo_header {
  display: flex;
  align-items: center;
  justify-content: center;
}

#logo {
  margin: 0;
}

#logo img {
  max-width: 200px;
}

@media (max-width: 768px) {
  #logo img {
    max-width: 120px;
  }
}

/* search */
#search {
  margin-bottom: 10px;
}

#search .form-control-lg {
  height: 40px;
  font-size: 12px;
  line-height: 20px;
  padding: 0 10px;
}

#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 0.57rem 35px;
  text-shadow: 0 1px 0 #FFF;
}

/* OST search */
#ost_search_form button {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ost_search_list {
  list-style: none;
}

.ost_search_list h5 {
  color: var(--main-theme-color);
}

.ost_search_list h6 {
  font-size: 12px;
}

.spinner-border {
  border-color: var(--main-theme-color);
  border-right-color: transparent;
}

/* ost slider*/
.ost_slider {
  width: 100%;
}

.ost_slider .swiper-slide {
  background-size: cover;
  background-position: center;
  padding: 0 !important;
}

.ost_slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ost_slider .slider-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.slider-content>.container {
  height: 100%;
}

.slider-content>.container .inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-content .content {
  text-align: center;
  color: #ffffff;
}

.slider-content .content .slider-item-title h3,
.slider-content .content .slider-item-sub-title h3 {
  color: #ffffff;
  text-transform: none;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.08;
  margin: 0;
}

.slider-content .content .slider-item-sub-title h3 {
  margin-bottom: 2.2rem;
}

.slider-content .content .slider-item-description {
  text-transform: capitalize;
  margin-top: 0;
  font-size: 1.2rem;
  letter-spacing: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1;
}

.slider-content .content .slider-item-readmore a {
  display: inline-block;
  vertical-align: top;
  text-transform: capitalize;
  color: var(--main-theme-color);
  background: rgba(255, 255, 255, 0.3);
  font-size: 1.6rem;
  margin-top: 53px;
  pointer-events: visible;
  line-height: 26px;
  padding: 10px 38px;
  border: 2px solid var(--main-theme-color);
  opacity: 1;
  text-decoration: none;
}

.slider-content .content .slider-item-readmore a:hover {
  background: var(--main-theme-color);
  color: #fff;
  border-color: var(--main-theme-color-transparent);
}

.swiper-scrollbar-drag {
  background: var(--main-theme-color);
}

.swiper-pagination {
  bottom: 15px;
}

.swiper-pagination-bullet-active {
  background: var(--main-theme-color);
}

.swiper-pagination-bullet {
  background: var(--main-theme-color-transparent);
  width: 15px;
  height: 15px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--main-theme-color);
}

.btn.mrbutton {
  padding: 5px 50px;
  margin-left: 20px;
  border-radius: 5px;
  color: black;
  background: var(--main-theme-color-transparent);
  margin: 5px;
  border-color: #dddddd #dddddd #b3b3b3 #b7b7b7;
}

.btn.mrbutton:hover {
  color: var(--main-theme-color-transparent);
  background: #000000;
  border-color: #dddddd #dddddd #b3b3b3 #b7b7b7;
}

/* social */
.ost_social {
  list-style: none;
  display: flex;
}

.ost_social li {
  margin-right: 5px;
}

.ost_social li a {
  text-decoration: none;
}

/* cart */
.cart_menu {
  position: relative;
}

.cart_total {
  position: absolute;
  top: 0px;
  right: 0px;
  background: white;
  width: 15px;
  border-radius: 3px;
  height: 15px;
  text-align: center;
  font-size: 12px;
  color: red;
  line-height: 15px;
  font-weight: 300;
  display: none;
}

#header-cart .offcanvas-title {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

#header-cart .shopping-cart-total {
  position: absolute;
  top: 0px;
  right: -30px;
  background: var(--main-theme-color);
  width: 25px;
  border-radius: 50%;
  height: 25px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  line-height: 25px;
  font-weight: 300;
  display: none;
}

#header-cart .cart_buttons {
  margin: 5px;
  text-align: center;
  margin-top: 25px;
}

#header-cart .cart_buttons a {
  padding: 10px 20px;
  background: var(--main-theme-color);
  color: white;
  border-radius: 5px;
  border: 1px solid var(--main-theme-color);
}

#header-cart .cart_buttons a:hover {
  color: #000;
}

#header-cart .table-striped>tbody>tr,
#header-cart .table-striped>tbody>tr:nth-of-type(2n+1) {
  background-color: transparent;
  border: none;
}

#header-cart .table-bordered {
  border-color: none;
}

#header-cart .img-thumbnail {
  border: none;
}

#header-cart .product-name:hover a {
  color: var(--main-theme-color);
}

#header-cart .btn-danger {
  color: #000000;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-image: none;
  background-repeat: none;
  border-color: transparent;
  background: transparent;
}

#header-cart .btn-danger:hover {
  background: var(--main-theme-color);
  color: #fff;
  border-color: transparent;
}
#header-cart .offcanvas-header .btn-close {
  margin: 0;
}

/* menu */

.navbar-nav .dropdown-menu {
  position: absolute;
  right: 0;
  left: auto;
}
@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200%;
    z-index: 1050;
    background: rgba(244, 244, 244, 1);
    padding:15px;
  }
}
@media (min-width: 768px) {}

@media (max-width: 767px) {}

/* content */
.container {
  width: 100%;
  max-width: 100%;
}

#content {
  min-height: 600px;
  margin-top: 20px;
  width: 95%;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.page-section {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.main-title {
  padding: 20px;
  font-size: 18px;
  color: var(--main-theme-color);
  text-align: center;
}

.main-title h2 {
  color: var(--main-theme-color) !important;
  border-radius: 10px;
  padding: 5px;
  display: flex;
  align-items: center;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
}

.main-title h2::before,
.main-title h2::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--main-theme-color);
}

.main-title h2:not(:empty)::before {
  margin-right: .25em;
}

.main-title h2:not(:empty)::after {
  margin-left: .25em;
}

.main-title-2 {
  font-size: 18px;
  color: var(--main-theme-color);
  text-align: center;
}

.main-title-2 h2 {
  color: var(--main-theme-color) !important;
  text-transform: capitalize;
  margin: 0;
  margin-top: 7px;
  margin-bottom: 2px;
}

.main-title p,
.main-title-2 p {
  font-size: 14px;
  color: black;
}



/* footer */
footer {
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 1px;
  background-color: #303030;
  border-top: 1px solid #ddd;
  color: #e2e2e2;
}

footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}

footer a {
  color: #ccc;
}

footer a:hover {
  color: #fff;
}

footer h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: var(--main-theme-color);
  border: 1px solid var(--main-theme-color);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  z-index: 20;
  color: #fff;

}

.back-to-top:hover {
  color: #000;
}

/* breadcrumb */
.breadcrumbs {
  padding: 67px 0;
  background: #f0f0f0;
  text-align: center;
  position: relative;
  border: 0;
}

.breadcrumbs.has-image {
  position: relative;
  border: 0;
  padding: 0;
  min-height: 180px;
}

.breadcrumbs.has-image>.container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.breadcrumbs .content {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff9c;
  min-width: 200px;
  margin: 0 auto;
  border-radius: 10px;
  align-items: center;
}

.breadcrumb {
  margin: 0;
  padding: 11px 0;
  /*margin-bottom: 30px;*/
  border: 0;
  background: transparent;
}

.breadcrumb>li {
  position: relative;
  vertical-align: top;
}

.breadcrumb>.breadcrumb-item+.breadcrumb-item::before {
  content: '\f061';
  color: #454545;
  font-family: "Font Awesome 6 Free";
  margin: 0 9px;
  font-size: 10px;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
}

.breadcrumb>li>a {
  text-transform: capitalize;
  color: var(--main-theme-color);
}

.breadcrumb>li>a:hover,
.breadcrumb>li:last-child>a,
.breadcrumb>li:last-child {
  color: #000000;
}

.breadcrumbs .banner-image .img-thumbnail {
  border: none;
}

.breadcrumbs .banner-image::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #0000003b;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;

}

@media (max-width: 1199px) {
  .breadcrumbs.has-image .banner-image .img-thumbnail {
    min-height: 25rem;
    object-fit: cover;
  }
}

@media (max-width: 767px) {

  .breadcrumbs.has-image .banner-image .img-thumbnail {
    min-height: 15rem;
  }
}

/*Pagenation*/
.pagination {
  margin: 0;
  margin-top: 20px;
}

.pagination {
  --bs-pagination-color: #000;
  --bs-pagination-bg: #fff;
  --bs-pagination-border-width: 1px;
  --bs-pagination-border-color: var(--main-theme-color);
  --bs-pagination-border-radius: 0.25rem;
  --bs-pagination-hover-color: #fff;
  --bs-pagination-hover-bg: var(--main-theme-color);
  --bs-pagination-hover-border-color: var(--main-theme-color);
  --bs-pagination-focus-color: var(--main-theme-color);
  --bs-pagination-focus-bg: #000000;
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem var(--main-theme-color-transparent);
  --bs-pagination-active-color: #000;
  --bs-pagination-active-bg: var(--main-theme-color);
  --bs-pagination-active-border-color: var(--main-theme-color-transparent);
  --bs-pagination-disabled-color: #555353;
  --bs-pagination-disabled-bg: #fff;
  --bs-pagination-disabled-border-color: var(--main-theme-color);
}

.pagination .page-item {
  margin-left: 5px;
  margin-right: 5px;
}

/* buttons */
.btn-light {
  color: #777;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background: transparent;
  border-color: var(--main-theme-color);
  margin-right: 5px;
  margin-left: 5px !important;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active,
.btn-light.active,
.btn-light.disabled,
.btn-light[disabled] {
  color: #ffffff;
  background: var(--main-theme-color);
  border-color: var(--main-theme-color);

}

.btn-primary {
  --bs-btn-color: #000;
  --bs-btn-bg: var(--main-theme-color);
  --bs-btn-border-color: var(--main-theme-color);
  --bs-btn-hover-color: var(--main-theme-color);
  --bs-btn-hover-bg: #000;
  --bs-btn-hover-border-color: var(--main-theme-color-transparent);
  --bs-btn-focus-shadow-rgb: 0, 0, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: var(--main-theme-color-transparent);
  --bs-btn-active-border-color: var(--main-theme-color-transparent);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: var(--main-theme-color);
  --bs-btn-disabled-border-color: var(--main-theme-color);
}

.btn-primary {
  color: #ffffff;
  text-shadow: none;
  background: var(--main-theme-color);
  border-color: var(--main-theme-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background: var(--main-theme-color);
  color: #ffffff;
  border-color: var(--main-theme-color);
}

.btn-warning {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  border-color: #f89406 #f89406 #ad6704;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-danger {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  border-color: #bd362f #bd362f #802420;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-success {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  border-color: #51a351 #51a351 #387038;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: var(--main-theme-color);
  --bs-btn-border-color: var(--main-theme-color);
  --bs-btn-hover-color: var(--main-theme-color);
  --bs-btn-hover-bg: #000;
  --bs-btn-hover-border-color: var(--main-theme-color-transparent);
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: var(--main-theme-color-transparent);
  --bs-btn-active-border-color: var(--main-theme-color-transparent);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: var(--main-theme-color);
  --bs-btn-disabled-border-color: var(--main-theme-color);
}

.btn-info {
  color: #000;
  text-shadow: none;
  background-image: linear-gradient(to bottom, var(--main-theme-color-transparent), var(--main-theme-color));
  background-repeat: repeat-x;
  border-color: var(--main-theme-color-transparent);
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-image: none;
  background-color: var(--main-theme-color-transparent);
}

.btn-link {
  border-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: #595959;
  border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  box-shadow: none;
}

.btn-inverse {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #363636;
  background-image: linear-gradient(to bottom, #444444, #222222);
  background-repeat: repeat-x;
  border-color: #222222 #222222 #000000;
}

.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background-color: #222222;
  background-image: linear-gradient(to bottom, #333333, #111111);
}

.accordion {
  --bs-accordion-color: #212529;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.25rem;
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #212529;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23711cdd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: var(--main-theme-color-transparent);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem var(--main-theme-color-transparent);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #000000;
  --bs-accordion-active-bg: var(--main-theme-color-transparent);
}

.table {
  --bs-table-border-color: var(--main-theme-color-transparent);
}

.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: var(--main-theme-color-transparent);
  --bs-nav-tabs-border-radius: 0.25rem;
  --bs-nav-tabs-link-hover-border-color: #000;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #fff;
  --bs-nav-tabs-link-active-border-color: var(--main-theme-color-transparent) var(--main-theme-color-transparent) #fff;
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

/* forms style*/
.ost_form_box {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  position: relative;
}

.ost_form_box::before {
  content: '';
  width: 25%;
  position: absolute;
  left: -10px;
  bottom: -10px;
  height: 25%;
  background: transparent;
  border-radius: 5px;
  z-index: -1;
  border-left: 10px solid var(--main-theme-color);
  border-bottom: 10px solid var(--main-theme-color);
}

.ost_form_box::after {
  content: '';
  width: 25%;
  position: absolute;
  right: -10px;
  top: -10px;
  height: 25%;
  background: transparent;
  border-radius: 5px;
  z-index: -1;
  border-right: 10px solid var(--main-theme-color);
  border-top: 10px solid var(--main-theme-color);
}

.ost_form_box h2 {
  text-align: center;
}

.form-control {
  line-height: 30px;
  border: 1px solid var(--main-theme-color-transparent);
  border-radius: 0;
}

.input-group-text {
  color: #ffffff;
  background-color: var(--main-theme-color);
  border: 1px solid var(--main-theme-color-transparent);
}

.form-select {
  background-color: #fff;
  border: 1px solid var(--main-theme-color-transparent);
}

.form-control:focus {
  color: #ddd;
  background-color: #fff;
  border-color: var(--main-theme-color-transparent);
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--main-theme-color-transparent);
}

.form-select:focus {
  border-color: var(--main-theme-color-transparent);
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--main-theme-color-transparent);
}

.form-check-input:focus {
  border-color: var(--main-theme-color-transparent);
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--main-theme-color-transparent);
}

.form-check-input:checked {
  background-color: var(--main-theme-color);
  border-color: var(--main-theme-color-transparent);
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23711cdd'/%3e%3c/svg%3e");
}

/* category page*/
.category-page-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.category-page-list li,
.category-page-list-2 li {
  margin-right: 10px;
  margin-left: 10px;
  padding: 0 18px;
  background: var(--main-theme-color);
  color: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
}

.category-page-list li a,
.category-page-list-2 li a {
  cursor: pointer;
}

.category-page-list li a:hover,
.category-page-list-2 li a:hover {
  color: #fff;
}

.category-page-list-2 {
  list-style: none;
  display: grid;
  gap: 10px;
}


/*OST Category*/
.ost_special_category {
  margin-top: 30px;
  margin-bottom: 30px;
}

.ost_category {
  height: 100%;
}

.ost_category_item {
  background: #701cdd21;
  border-radius: 10px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  height: auto;
}

.col-md-3.ost_category_item {
  margin: 5px;
}

.ost_category_item img {
  width: 60px;
}

.ost_category_item h4 {
  font-family: 'Courier New', Courier, monospace;
  margin-top: 5px;
  color: black;
}

.ost_category_item a {
  color: black;
}

.child-featured-categories {
  list-style: none;
  padding-left: 0;
  padding: 10px;
  background: var(--main-theme-color-transparent);
  border-radius: 5px;
}

.ost_category .view-more {
  display: none;
}

/*manufacturers*/
.manufacturers-list {
  padding: 0 25px;
}

.manufacturers-list .manufacturer-item {
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid var(--main-theme-color-transparent);
  border-radius: 5px;
}

.manufacturers-list .manufacturer-item img {
  width: 90px;
}

.manufacturers-list .manufacturer-item:hover {
  -webkit-transform: scale(1.035) rotate(0.05deg);
  transform: scale(1.035) rotate(0.05deg);
}

.manufacturers-list .manufacturer-item:hover a,
.manufacturers-list .manufacturer-item:hover h5 {
  color: var(--main-theme-color);
}

/* product item */
.swiper-slide {
  padding: 0 1.5rem;
}

.product-thumb {
  position: relative;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid var(--main-theme-color-transparent);
}

.product-thumb:hover {
  z-index: 5;

}

.product-thumb:hover .button-group {
  z-index: 5;
}

/* first section */
.product-thumb .image {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.product-thumb .image a {
  display: block;
  position: relative;
  opacity: 1;
}

.product-thumb .image .pro-label {
  color: #000;
  background-color: #fff;
  text-transform: capitalize;
  font-size: 14px;
  z-index: 2;
  text-align: center;
  line-height: 20px;
  padding: 0 5px;
  position: absolute;
  left: 20px;
  top: 20px;
  min-width: 48px;
  border-radius: 2px;
}

.product-thumb .image .pro-label.sale {
  color: #e74343;
}

.product-thumb .image .pro-label.new {
  background-color: #ca1a1a;
  color: #fff;
  display: block;
}

.product-thumb .image .box-label>div:nth-child(2)>span {
  top: 43px;
}

@media (max-width: 479px) {
  .product-thumb .image .pro-label {
    top: 10px;
    left: 10px;
  }
}


.product-thumb .image .countdown-box-flex {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.quantity-progress {
  display: block;
  position: absolute;
  right: 10px;
  left: 10px;
  bottom: 0;
}

.product-available,
.product-sold {
  float: left;
  margin-top: 5px;
  margin-left: 5px;
  text-transform: capitalize;
  color: #585d5f;
  margin-bottom: 0;
}

.product-available span,
.product-sold span {
  margin-left: 2px;
}

.product-available {
  float: right;
}

.bar-percent {
  height: 6px;
  background: #ebebeb;
  width: 100%;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.available-percent {
  position: absolute;
  height: 100%;
  left: 0;
  background: var(--main-theme-color);
}

.text-countdown {
  margin-bottom: 0;
  margin-top: 24px;
  color: #777;
  display: none;
}

.countdown-box {
  margin-bottom: 0;
  margin-top: 9px;
}

.countdown-box>.inner {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.countdown-box .box {
  position: relative;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  width: 54px;
  background: #ffffffcf;
  height: 60px;
  align-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
}

.countdown-box .box:last-child {
  margin: 0;
}

.countdown-box .box:last-child b:after {
  opacity: 0;
}

.countdown-box .box b {
  font-size: 16px;
  color: #313030;
  display: block;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1px;
  position: relative;
}

.countdown-box .box span {
  display: block;
  font-size: 12px;
  text-transform: capitalize;
  line-height: 1;
  color: #707070;
}


/* secound section */
.product-thumb .content {
  text-align: left;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 21px 0 0 0;
}

.product-thumb .content>.description {
  position: relative;
  padding-right: 40px;
  padding-left: 10px;
  padding-bottom: 20px;
}

.product-thumb .content .price {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
}

.product-thumb .content .product-description {
  margin-top: 9px;
}

.product-thumb .content .rating {
  display: inline-block;
  margin-bottom: 10px;
  vertical-align: top;
  /*display: none;*/
}

.product-thumb .content .manufacture-product {
  line-height: 1;
  display: block;
}

.product-thumb .content .manufacture-product a {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
}

.product-thumb .manufacture-product a:hover {
  color: var(--main-theme-color);
}

.product-thumb .content h4 {
  margin-bottom: 8px;
  clear: both;
  margin-top: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.product-thumb .content h4 a {
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 1.4rem;
  display: block;
  text-decoration: none;
}

.product-thumb .content h4 a:hover {
  color: var(--main-theme-color);
}

.product-thumb .image .button-group {
  position: absolute;
  right: 20px;
  top: 20px;
  text-align: center;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  pointer-events: none;
  z-index: 4;
}

.product-thumb .image:hover .button-group {
  pointer-events: visible;
}

.product-thumb .button-group {
  display: inline-block;
  vertical-align: top;
}

.product-thumb:hover button {
  opacity: 1;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.product-thumb button {
  width: 36px;
  height: 36px;
  line-height: 36px;
  float: none;
  display: block;
  opacity: 0;
  color: #707070;
  background: #fff;
  border: 0;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  font-size: 14px;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  pointer-events: visible;
  margin-bottom: 10px;
  -moz-transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -o-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
}

.product-thumb button:last-child {
  margin: 0;
}


.product-thumb .content button.button-cart {
  box-shadow: none;
  border: 0;
  line-height: 32px;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  font-weight: 400;
  margin: 0;
  border: 2px solid #313030;
  background: #fff;
  color: #313030;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -18px;
}

.product-thumb button:hover {
  background: var(--main-theme-color);
  color: #fff;
}

.product-thumb .content button.button-cart:hover {
  background: var(--main-theme-color);
  color: #fff;
  border-color: var(--main-theme-color);
}

.product-thumb .box-price {
  line-height: 1;
}

.product-item-list .product-thumb {
  display: flex;
  align-items: center;
}

.product-item-list .product-thumb .image {
  max-width: 25%;
}

.product-item-list .product-thumb .content {
  max-width: 75%;
  padding: 5px 0;
  padding-left: 18px;
}

.product-item-list .product-thumb .content button.button-cart {
  position: relative;
  right: 0;
  top: 0;
}

.product-item-list .product-thumb .content .button-group {
  position: absolute;
  right: 10px;
  top: 0;
  padding-top: 35px;
}

.product-item-list .product-thumb .content .countdown-box-flex {
  position: absolute;
  bottom: 40px;
  right: 0;
  left: 0;
}

.product-item-list .product-thumb .content>.description {
  padding-bottom: 80px;
}

.product-item-list .product-thumb .countdown-box .box {
  border: 1px solid var(--main-theme-color);
  width: 40px;
  height: 40px;
}

/*Large */
.ost_large_item_images {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}

.ost_large_item_gallery {
  width: 100%;
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.ost_large_item_images .swiper-slide,
.ost_large_item_gallery .swiper-slide {
  background-size: cover;
  background-position: center;
}

.ost_large_item_gallery .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.ost_large_item_gallery .swiper-slide-thumb-active {
  opacity: 1;
}

.ost_large_item_images img,
.ost_large_item_gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ost_product_large_item .product-thumb .image .countdown-box-flex {
  bottom: 100px;
  z-index: 2;
}

.ost_product_large_item .quantity-progress {
  bottom: 60px;
  z-index: 2;
}

@media (max-width: 767px) {
  .ost_product_large_item .product-thumb .image .countdown-box-flex {
    bottom: 130px;
  }

  .ost_product_large_item .quantity-progress {
    bottom: 80px;
  }
}

/* ost speical product */
.ost_product {
  margin-top: 30px;
  margin-bottom: 30px;
}

.ost_product_single_swiper {
  height: 100%;
  padding-bottom: 30px;
}


.main_image_item .image,
.main_image_item .image a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
}

.main_image_item .image img {
  width: 100%;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.main_image_item .image a:hover img {
  -webkit-transform: scale(1.035) rotate(0.05deg);
  transform: scale(1.035) rotate(0.05deg);
}

@media (max-width: 767px) {
  .main_image_item {
    margin-bottom: 30px;
  }

  .ost_product_main {
    margin-bottom: 30px;
  }
}

.ost_product_multitab {
  height: 100%;
  padding-bottom: 30px;
}


.ost-product-tabs {
  display: block;
  text-align: center;
  margin-bottom: 25px;
}

.ost-product-tabs .nav-tabs {
  margin: 0;
  border: 0;
  justify-content: center;
}

.ost-product-tabs .nav-tabs>li {
  float: none;
  margin: 0 5px 0 0;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  padding: 5px 0;
}

.ost-product-tabs .nav-tabs>li:last-child {
  margin: 0;
}

.ost-product-tabs .nav-tabs>li:last-child:after {
  opacity: 0;
  display: none;
}

.ost-product-tabs .nav-tabs>li>a {
  margin: 0;
  color: #253237;
  position: relative;
  padding: 0 18px;
  border: 0;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 28px;
  font-family: 'Courier New', Courier, monospace;
  border-radius: 20px;
}

.ost-product-tabs .nav-tabs>li>a>.image-thumb {
  margin: auto;
  text-align: center;
  margin-bottom: 10px;
}

.ost-product-tabs .nav-tabs>li>a>.image-thumb>span {
  flex: auto;
}

.ost-product-tabs .nav-tabs>li>a>span {
  display: block;
}

.ost-product-tabs .nav-tabs>li>a:hover,
.ost-product-tabs .nav-tabs>li>a.active {
  color: #fff;
  background: var(--main-theme-color);
}

/*End Large*/

.reviews-section .user-avatar {
  display: flex;
  align-items: center;
}

.reviews-section .user-avatar i {
  font-size: 35px;
  margin-right: 20px;
  color: var(--main-theme-color);
}

.rating {
  padding-bottom: 10px;
}

.rating .fa-stack {
  width: 20px;
}

.rating.fa-star {
  color: #999;
  font-size: 15px;
}

.rating .fa-star {
  color: var(--main-theme-color);
  font-size: 15px;
}

.rating .fa-star+.fa-star {
  color: var(--main-theme-color);
}

/* product list */
/* prodct page */

.product-item-images {
  width: 100%;
  margin-bottom: 20px;
}

.product-item-images-gallery {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 20px 0;
  margin-bottom: 20px;
}

.product-item-images .swiper-slide,
.product-item-images-gallery .swiper-slide {
  background-size: cover;
  background-position: center;
}

.product-item-images-gallery .swiper-slide {
  height: 100%;
  opacity: 0.4;
}

.product-item-images-gallery .swiper-slide-thumb-active {
  opacity: 1;
}

.product-item-images img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-item-images img,
.product-item-images-gallery img {
  border-radius: 5px;
}

.product-cart-add-section #input-quantity {
  text-align: center;
}

.price {
  color: #707070;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}

.price .price-tax {
  display: none;
}

.price .price-old {
  color: #999;
  font-weight: normal;
  font-size: 16px;
  vertical-align: baseline;
  display: inline-block;
  line-height: 1;
  position: relative;
  margin-left: 3px;
  text-decoration: line-through;
  margin-left: 5px;
}

.price-tax {
  color: #b3b3b3;
  font-size: 14px;
  display: block;
}

.product-tags {
  margin-bottom: 20px;
  margin-top: 20px;
}

/* quick view*/

.ost_quick_view_modal .modal-header {
  border-bottom: none;
}

/*account pages*/
.ost_account_panel {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 0;
}

.ost_panel_section {
  width: 100%;
  padding: 20px;
  border: 1px solid var(--main-theme-color);
  margin-bottom: 15px;
  border-radius: 5px;
}

.ost_panel_section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ost_panel_section li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.ost_panel_section li a i {
  font-size: 30px;
  margin-bottom: 15px;
}

/* BS4 Changes */
.navbar-light .navbar-toggler {
  font-size: 15px;
  font-stretch: expanded;
  color: #FFF;
  padding: 6px 12px;
  background-color: #000000;
  background-image: linear-gradient(to bottom, #23a1d1, #595959);
  background-repeat: repeat-x;
  border-color: #595959 #595959 #145e7a;
}

.form-check .form-check-input {
  margin-top: 0.25rem;
}

/* Theme Custom CSS */
#display-control #compare-total.a {
  margin-top: -2px;
  padding: 0.35rem 0.565rem;
}

#product-product h1 {
  margin-top: 20px;
  margin-bottom: 10px;
}

#information-contact .card {
  margin-bottom: 20px;
  border: 1px solid var(--main-theme-color);
}
#information-contact i{
  color: var(--main-theme-color);
}
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}

#cookie div {
  font-size: 16px;
  color: #FFFFFF;
}


/* ost_newsletter */
.ost_newsletter .modal-header {
  border-bottom: none;
}

.ost_newsletter .modal-body,
.ost_newsletter {
  text-align: center;
}

.ost_newsletter .subtitle {
  font-size: 14px;
  font-weight: 800;
}

.ost_newsletter .ost_newsletter_form {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.ost_newsletter .ost_newsletter_form input {
  border: 3px solid var(--main-theme-color);
}

.ost_newsletter .ost_newsletter_form button {
  background: var(--main-theme-color);
  border: 1px solid var(--main-theme-color);
  color: #fff;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.ost_newsletter .form-check .form-check-input {
  float: none;
}


/* ost testimonial*/

.ost_testimonial {
  margin-top: 30px;
  margin-bottom: 30px;
}

.ost_testimonial_block {
  height: 100%;
  padding: 25px 0;
  margin-top: -25px;
  margin-bottom: -25px;
}

.ost_testimonial_item {
  border-radius: 10px;
  height: auto;
  position: relative;
  padding: 25px 50px;
  background: #711cdd20;
  border-bottom-left-radius: 60px;
  border-top-right-radius: 60px;
}

.ost_testimonial_item .profile-img {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.ost_testimonial_item .profile-img::after {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-size: 40px;
  color: var(--main-theme-color);
  text-align: right;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  flex: 1 1 auto;
}

.ost_testimonial_item .profile-img img {
  width: 60px;
}

.ost_testimonial_item .comment {
  line-height: 22px;
  position: relative;
  color: #313030;
  font-size: 1.2rem;
  letter-spacing: 0;
  margin-bottom: 0;
  margin-top: 15px;
  font-weight: 400;
  display: flex;

}

.ost_testimonial_item .comment::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-size: 40px;
  color: var(--main-theme-color);
  text-align: left;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  margin-right: 20px;
}

.ost_testimonial_item .author {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-left: 15px;
  text-transform: capitalize;
}

/* blog */
.blog-thumb {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.blog-thumb h4 {
  font-weight: bold;
}
.blog-thumb .image {
  text-align: center;
  margin-bottom: 15px;
}
.blog-thumb .image a:hover {
  opacity: 0.8;
}
.blog-thumb .description {
  padding: 15px;
}
/* Theme Custom CSS */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}
#cookie div {
  font-size: 16px;
  color: #FFFFFF;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0;
}