body {
  font-family: "Roboto Condensed", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.text-accent {
  color: #be1e2d;
}

.text-great {
  color: #890101;
}

.bg-accent {
  background-color: #be1e2d;
}

.bg-great {
  background-color: #be1e2d;
}
.bg-great:hover {
  background-color: #890101;
}

.navbar {
  padding: 0;
  height: 4.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.navbar .container-xl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .container-xl .navbar-brand {
  width: 123px;
}
.navbar .container-xl .navbar-brand .logo {
  height: 2em;
}
.navbar .container-xl .search-box {
  width: 350px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.navbar .container-xl .search-box .form-control {
  height: 2.5em;
  border-radius: 0.75em 0 0 0.75em;
}
.navbar .container-xl .search-box .btn {
  display: flex;
  align-items: center;
  height: 2.5em;
  border-radius: 0 0.75em 0.75em 0;
  color: #fff;
  background-color: #be1e2d;
}
.navbar .container-xl .search-box .btn:hover {
  background-color: #af0a0f;
}
.navbar .container-xl .navbar-action-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
}
.navbar .container-xl .navbar-action-box .nab-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  height: 2.5em;
  min-width: 2.5em;
  padding: 0.5em 1em;
  border: 1px solid #ededed;
  border-radius: 1em;
  color: #333;
  cursor: pointer;
}
.navbar .container-xl .navbar-action-box .nab-icon:hover {
  color: #be1e2d;
  border: 1px solid #be1e2d;
}
.navbar .container-xl .navbar-action-box .nab-icon:active {
  color: #890101;
  border: 1px solid #890101;
}
.navbar .container-xl .navbar-action-box .nab-shop {
  color: #be1e2d;
  border: 1px solid #be1e2d;
}
.navbar .container-xl .navbar-nav .nav-item .nav-link {
  color: #be1e2d;
}

.menubar {
  display: flex;
  align-items: center;
  padding: 0;
  height: 2.5em;
  background-color: #890101;
}
.menubar .menubar-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.menubar .menubar-nav .nav-list {
  list-style: none;
  line-height: auto;
}
.menubar .menubar-nav .nav-list .nav-link {
  height: 2.5em;
  line-height: 2.5em;
  color: #fff;
  padding: 0;
  padding-left: 1em;
  padding-right: 1em;
  transition: 0.125s;
}
.menubar .menubar-nav .nav-list .nav-link:hover {
  background-color: #af0a0f;
}

.hero {
  background-color: #be1e2d;
}
.hero .container-xl {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .hero .container-xl {
    padding: 0;
  }
}
.hero .container-xl .categories {
  height: 20em;
  width: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hero .container-xl .categories::-webkit-scrollbar {
  display: none;
}
.hero .container-xl .categories .item {
  list-style: none;
}
.hero .container-xl .categories .item .link {
  font-size: 15px;
  padding: 0.5em 1em;
  display: block;
  background-color: #fff;
  color: #666;
  border-bottom: 1px solid #f9f9f9;
  transition: 0.125s;
}
.hero .container-xl .categories .item .link:hover {
  color: #fff;
  background-color: #af0a0f;
}
.hero .container-xl .carousel {
  width: 100%;
}
.hero .container-xl .carousel .carousel-inner .carousel-item {
  height: 20em;
}
@media screen and (max-width: 767px) {
  .hero .container-xl .carousel .carousel-inner .carousel-item {
    height: 233.31px;
  }
}
.hero .container-xl .carousel .carousel-inner .carousel-item img {
  height: 100%;
}
.hero .container-xl .carousel .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  left: 5%;
  top: 50%;
  bottom: auto;
  padding: 0;
  transform: translateY(-50%);
  color: #000;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .hero .container-xl .carousel .carousel-inner .carousel-item .carousel-caption {
    right: 50%;
  }
}
.hero .container-xl .carousel .carousel-inner .carousel-item .carousel-caption .title {
  color: #333;
  font-size: 1.5em;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .hero .container-xl .carousel .carousel-inner .carousel-item .carousel-caption .title {
    font-size: 50px;
  }
}
.hero .container-xl .carousel .carousel-inner .carousel-item .carousel-caption .text {
  color: #444;
  font-size: 1em;
}
.hero .container-xl .carousel .carousel-indicators {
  position: absolute;
  bottom: 0;
}
.hero .container-xl .carousel .carousel-indicators li {
  background-color: transparent;
  border: 5px solid #be1e2d;
  height: 1em;
  width: 1em;
  border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  -moz-border-radius: 0.5em;
}
.hero .container-xl .carousel .carousel-indicators .active {
  background-color: transparent;
}
.hero .container-xl .carousel .carousel-control-next,
.hero .container-xl .carousel .carousel-control-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3em;
  width: 3em;
  border-radius: 0 50% 50% 0;
  background-color: #000;
  color: #000;
  text-align: center;
  opacity: 0;
  transition: 0.125s;
}
.hero .container-xl .carousel .carousel-control-next .carousel-control-prev-icon,
.hero .container-xl .carousel .carousel-control-next .carousel-control-next-icon,
.hero .container-xl .carousel .carousel-control-prev .carousel-control-prev-icon,
.hero .container-xl .carousel .carousel-control-prev .carousel-control-next-icon {
  filter: none;
}
.hero .container-xl .carousel .carousel-control-next:hover,
.hero .container-xl .carousel .carousel-control-prev:hover {
  opacity: 0.75;
}
.hero .container-xl .carousel:hover .carousel-control-next,
.hero .container-xl .carousel:hover .carousel-control-prev {
  opacity: 0.5;
}
.hero .container-xl .carousel:hover .carousel-control-next:hover,
.hero .container-xl .carousel:hover .carousel-control-prev:hover {
  opacity: 1;
  background-color: #be1e2d;
}
.hero .container-xl .carousel .carousel-control-next {
  border-radius: 50% 0 0 50%;
}

.section {
  padding-top: 3em;
}
.section .sec-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5em;
  padding: 0.5em 1em;
}
.section .sec-head .sec-title {
  text-transform: capitalize;
  font-size: 1.5em;
}
.section .sec-head a {
  color: #333;
}
.section .sec-head .sec-link {
  text-transform: capitalize;
  transition: 0.125s;
}
.section .sec-head .sec-link:hover {
  opacity: 0.75;
}

.category {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  display: block;
  box-shadow: 3px 3px 3px #ededed;
  border-radius: 1em;
  overflow: hidden;
}
.category .image-wrapper {
  height: 283px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .category .image-wrapper {
    height: 150px;
  }
}
.category .image-wrapper .image {
  height: 100%;
  transition: 0.125s;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.category:hover .image-wrapper .image {
  transform: scale(1.15);
}
.category:hover .info {
  bottom: 0;
}
.category:hover .info .label {
  margin-bottom: 0;
}
.category:hover .info .qty {
  opacity: 1;
}
.category .info {
  position: absolute;
  bottom: -15%;
  left: 0;
  z-index: 1;
  padding: 1em;
  transition: 0.125s;
}
.category .info .label {
  color: #3f3f3f;
  text-transform: uppercase;
  font-size: 1.25em;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5em;
  transition: 0.125s;
}
.category .info .qty {
  color: #2d2a2a;
  opacity: 0;
  transition: 0.125s;
}

.com_product {
  height: 100%;
  background-color: #fbfbfb;
  border: 1px solid #ededed;
  overflow: hidden;
}
.com_product .pro_actions {
  text-align: center;
  background-color: #fff;
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.25);
  border-radius: 1em;
  opacity: 0;
  transition: 0.125s;
  z-index: 1;
}
.com_product .pro_actions .pro_icon {
  color: #333;
  padding: 15px;
  transition: 0.125s;
}
.com_product .pro_actions .pro_icon:hover {
  color: #ff7346;
}
.com_product:hover .pro_actions {
  right: 10px;
  transform: translateX(0);
  opacity: 1;
}
.com_product .pro_title {
  color: #333;
  font-weight: bold;
  text-transform: capitalize;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  max-height: 1.25em;
  line-height: 1.25em;
  transition: 0.125s;
}
.com_product .pro_title:hover {
  color: #888;
}
.com_product .pro_category {
  color: #9e9e9e;
}
.com_product .pro_category:hover {
  color: #818181;
}
.com_product .pro_image {
  margin: 1em 0;
  border: 1px solid #ededed;
  border-radius: 1em;
  overflow: hidden;
  transition: 0.125s;
}
.com_product .pro_image img {
  width: 100%;
  transition: 0.125s;
}
.com_product .pro_price {
  color: #be1e2d;
  font-weight: bold;
}
.com_product:hover .pro_image img {
  transform: scale(1.125);
}

.productShow .header {
  display: flex;
  justify-content: space-between;
  gap: 0.75em;
}
.productShow .header .image {
  height: 25em;
}
.productShow .header .image .image-wrapper {
  height: 25em;
  width: 25em;
  overflow: hidden;
  border: 1px solid #ededed;
  transition: 0.125s;
}
.productShow .header .image .image-wrapper img {
  height: 100%;
  width: 100%;
}
.productShow .header .informations {
  flex-grow: 1;
  height: auto;
  transition: 0.125s;
}
.productShow .header .informations .title {
  text-transform: capitalize;
  font-weight: bold;
  color: #333;
}
.productShow .header .informations .price {
  margin: 1em 0;
  font-weight: bold;
}
.productShow .header .informations .overview {
  color: #666;
}
.productShow .header .benefits {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5em;
}
.productShow .header .benefits .item {
  min-width: 292px;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 1.125em 1em;
  border: 1px solid #ededed;
  transition: 0.125s;
}
.productShow .header .benefits .item:hover {
  border: 1px solid #890101;
}
.productShow .header .benefits .item:hover .info .title {
  color: #890101;
}
.productShow .header .benefits .item:hover .info .sub-title {
  color: #333;
}
.productShow .header .benefits .item .icon {
  color: #890101;
}
.productShow .header .benefits .item .info .title {
  color: #333;
  font-size: 0.85em;
  font-weight: bold;
}
.productShow .header .benefits .item .info .sub-title {
  color: #666;
  font-size: 15px;
}

.productInfo {
  background-color: #fff;
  border: 1px solid #ededed;
  margin-top: 1.5em;
  padding: 1em;
  width: 100%;
  /* Product Review */
}
.productInfo .tab-content {
  margin-top: 1em;
}
.productInfo .tab-content .productReview {
  background-color: #fff;
}
.productInfo .tab-content .productReview * {
  border-radius: 0;
}
.productInfo #nav-tab a {
  color: #000;
}

.pointer {
  cursor: pointer;
}

/* Product Rating CSS */
.star-rating {
  direction: rtl;
  display: inline-block;
  padding: 0;
}

.star-rating input[type=radio] {
  display: none;
}

.star-rating label {
  color: #bbb;
  font-size: 18px;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type=radio]:checked ~ label {
  color: #0060a7;
}

.rateActive {
  color: #0060a7;
}

.productReview .card-body {
  padding: 0;
}

.accordion .accordion-item {
  border: 1px dotted #d0d0d0;
  background-color: #fbfbfb;
  margin-bottom: 1em;
  overflow: hidden;
}
.accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #890101;
  background-color: #fff;
  box-shadow: none;
}
.accordion .accordion-item .accordion-body {
  background-color: #fff;
}

.footer {
  color: #ededed;
  background-color: #be1e2d;
  padding: 4em 1em;
}
.footer .foo-list {
  list-style: none;
}
.footer a {
  color: #ededed;
}

.copyright {
  display: flex;
  align-items: center;
  height: 50px;
  color: #9ca9be;
  background-color: #444444;
  border-top: 1px solid #2c3542;
}/*# sourceMappingURL=base.css.map */