@charset "UTF-8";
/* @import url(https://fonts.googleapis.com/css?family=Roboto:300,regular,500,600,700,800,900&display:swap);
@import url(https://fonts.googleapis.com/css?family=Oswald:300,regular,500,600,700&display:swap);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,regular,500,600,700,800,900&display:swap); */

body {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(249, 245, 233, 0.5)), to(#fff));
  background: linear-gradient(to top, rgba(249, 245, 233, 0.5), #fff);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #535353;
  font-size: 14px;
  width: 100%;
  min-height: 320px;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0 !important;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}

a {
  color: #23a1d1;
  outline: none !important;
}

a:hover {
  text-decoration: none;
}

.btn {
  border-radius: 0;
  outline: none !important;
}

*:hover {
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
}

legend {
  font-size: 18px;
  padding: 7px 0px;
}

label {
  font-size: 12px;
  font-weight: normal;
}

select.form-control,
textarea.form-control,
input[type=text].form-control,
input[type=password].form-control,
input[type=datetime].form-control,
input[type=datetime-local].form-control,
input[type=date].form-control,
input[type=month].form-control,
input[type=time].form-control,
input[type=week].form-control,
input[type=number].form-control,
input[type=email].form-control,
input[type=url].form-control,
input[type=search].form-control,
input[type=tel].form-control,
input[type=color].form-control {
  font-size: 12px;
  border-radius: 0 !important;
}

.input-group input,
.input-group select,
.input-group .dropdown-menu,
.input-group .popover {
  font-size: 12px;
  border-radius: 0 !important;
}

.input-group .input-group-addon {
  font-size: 12px;
  height: 30px;
}

/* Fix some bootstrap issues */
span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
  display: inline;
}

.nav-tabs {
  margin-bottom: 15px;
}

div.required .control-label:before {
  content: "* ";
  color: #F00;
  font-weight: bold;
}

/* Gradent to all drop down menus */
.dropdown-menu {
  border-radius: 0;
}

.dropdown-menu li>a {
  border: none !important;
  color: #535353 !important;
  font-size: 13px;
}

.dropdown-menu li>a:hover {
  text-decoration: none;
  background-color: orange !important;
}

.alert {
  padding: 5px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 0;
}

.alert-dismissible .close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  top: -2px;
  right: 0 !important;
}

/* top */
#top {
  margin: 0 0 15px 0;
  padding: 10px 10%;
  background-color: #232323;
  border-bottom: 1px solid #ddd;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

#top a {
  padding: 5px 7px;
  border: 1px solid #555;
  background: none;
  text-decoration: none !important;
  color: #ededed;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#top a:hover {
  border-color: orange;
  color: orange;
}

#top .dropdown a:focus {
  background-color: none !important;
}

#top .list-inline {
  margin: 0;
}

.pull-left a {
  margin-right: 3px;
}

@media (max-width: 1470px) {
  #top {
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  #top {
    margin-bottom: 3px;
  }
  #top .list-inline>li {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  padding: 12px 0;
}

header #logo h1 {
  margin: -10px 0 0 0;
  font-size: clamp(26px, 2.5vw, 30px);
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Oswald", sans-serif;
}

header #logo h1 a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* color: orange; */
  background-image: -webkit-gradient(linear, left bottom, left top, from(orangered), color-stop(50%, orange));
  background-image: linear-gradient(to top, orangered, orange 50%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-decoration: none;
}

header #logo h1 a:hover {
  /* color: orangered; */
  background-image: -webkit-gradient(linear, left bottom, left top, from(orangered), color-stop(50%, orangered));
  background-image: linear-gradient(to top, orangered, orangered 50%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

header #logo h1 small {
  display: block !important;
  padding-left: 3px;
  line-height: 1.2;
  font-weight: 400;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
}

header #search .btn {
  background-color: #005180;
  background-repeat: repeat-x;
  border-color: #222222 #222222 #000000;
  color: #ccc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

header #search .btn:hover {
  background: orange;
  border-color: orange;
  color: #fff;
}

header #cart .btn {
  background-color: #005180;
  background-repeat: repeat-x;
  border-color: #222222 #222222 #000000;
  font-size: 12px;
  line-height: 18px;
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: -0.5px !important;
}

header #cart .btn:hover {
  background: orange;
  border-color: orange;
}

header #cart .dropdown-menu {
  background: #f2f2f2;
  z-index: 1001;
}

header #cart .dropdown-menu {
  min-width: 100%;
  overflow-y: auto;
  max-height: 800px;
  scrollbar-width: thin;
  overflow-x: hidden;
}

header #cart .dropdown-menu table td {
  vertical-align: middle;
}

@media (max-width: 478px) {
  header #cart #cart .dropdown-menu {
    width: 100% !important;
  }
}

header #cart .dropdown-menu table {
  margin-bottom: 10px;
}

header #cart .dropdown-menu li>div {
  min-width: 427px;
  padding: 0 10px;
}

@media (max-width: 478px) {
  header #cart #cart .dropdown-menu li>div {
    width: 100%;
  }
}

header #cart .dropdown-menu li p {
  margin: 20px 0;
}

@media (max-width: 768px) {
  header #logo {
    margin-bottom: 12px;
    text-align: center;
  }

  header small {
    padding-left: 0 !important;
  }
}

.menu-header {
    margin: 0 !important;
    position: sticky;
    padding: 5px 0;
    top: 0;
    z-index: 1000 !important;
    background-color: #fff;
}


@media (max-width: 498px) {
  .col-xs-6 {
    display: inline;
    padding: 2px;
  }
}

/* carousel */
.slideshow {
  margin-top: 15px;
  border: none !important;
  -webkit-box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px !important;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px !important;
}

.slideshow img {
  object-fit: cover;
  min-height: 180px;
}

.slideshow .carousel-caption {
  padding: 6px 0 9px 0;
  background: rgba(0, 0, 0, 0.4);
  color: #FFFFFF;
  left: 0;
  right: 0;
  bottom: 0px;
  text-shadow: 0 1px 0 #000000;
}

.slideshow .carousel-caption h2 {
  margin: 0;
  font-size: calc(14px + 0.5vw);
}

.slideshow .swiper-pagination .swiper-pagination-bullet {
  margin: 0 2px !important;
  width: 9px;
  height: 9px !important;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  opacity: 1;
}

.slideshow .swiper-pagination .swiper-pagination-bullet-active {
  margin: 0 2px !important;
  width: 15px;
  height: 9px !important;
  background: orange !important;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 1;
}

.slideshow .swiper-pagination {
  bottom: -25px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}
/* buttons */
.buttons {
  margin: 1em 0;
  outline: none;
}

.btn-group>.btn,
.btn-group>.dropdown-menu,
.btn-group>.popover {
  font-size: 12px;
}

.btn-group>.btn-xs {
  font-size: 9px;
}

.btn-group>.btn-sm {
  font-size: 10.2px;
}

.btn-group>.btn-lg {
  font-size: 15px;
}

.btn-default {
  color: #777;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #e7e7e7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  border-color: #dddddd #dddddd #b3b3b3 #b7b7b7;
}

.btn-primary {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #229ac8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#23a1d1), to(#1f90bb));
  background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
  background-repeat: repeat-x;
  border-color: #1f90bb #1f90bb #145e7a;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: #1f90bb;
  background-position: 0 -15px;
}

.btn-warning {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #faa732;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fbb450), to(#f89406));
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  border-color: #f89406 #f89406 #ad6704;
}

.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  -webkit-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
  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-color: #da4f49;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ee5f5b), to(#bd362f));
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  border-color: #bd362f #bd362f #802420;
}

.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  -webkit-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
  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-color: #5bb75b;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#62c462), to(#51a351));
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  border-color: #51a351 #51a351 #387038;
}

.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  -webkit-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-info {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #df5c39;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e06342), to(#dc512c));
  background-image: linear-gradient(to bottom, #e06342, #dc512c);
  background-repeat: repeat-x;
  border-color: #dc512c #dc512c #a2371a;
}

.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-image: none;
  background-color: #df5c39;
}

.btn-link {
  border-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: #23A1D1;
  border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-inverse {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #005180;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#005180), to(#232323));
  background-image: linear-gradient(to bottom, #005180, #232323);
  background-repeat: repeat-x;
  border-color: #222222 #222222 #000000;
}

.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background: orange !important;
  border-color: orange;
  color: #fff;
}

/* product list */
.product-thumb {
  border: 1px solid #e5e5e5;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgb(249, 245, 233)), color-stop(50%, #fff));
  background: linear-gradient(to top, rgb(249, 245, 233) 30%, #fff 50%);
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 20px;
  padding: 15px;
  -webkit-box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 100%;
}

.product-thumb:hover {
  -webkit-box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.5);
}

.product-thumb .top-lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -15px;
  padding: 5px 10px;
  background: rgba(218, 165, 32, 0.05);
  cursor: pointer;
  z-index: 100;
}

.product-thumb .top-lines span {
  font-size: 11px;
}

.product-thumb .top-lines span strong {
  text-transform: uppercase;
  color: goldenrod;
  font-weight: 400;
  font-size: 13px;
  font-family: "Oswald", sans-serif;
}

.product-thumb .top-lines small {
  font-size: 11px;
}

.product-thumb .image {
  text-align: center;
}

.product-thumb .image a {
  display: block;
  -webkit-transition: 0.3s 0.3s;
  transition: 0.3s 0.3s;
}

.product-thumb .image a:hover {
  opacity: 0.5;
}

.product-thumb .image img {
  margin: 0 auto;
}

.product-thumb .caption {
  margin-bottom: 10px;
  height: 100%;
}

.product-thumb .caption h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 5px 0 3px 0;
  padding: 0;
  -webkit-transition: 0.5s 0.3s;
  transition: 0.5s 0.3s;
  overflow: hidden;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  height: 56px;
  font-weight: 400;
  font-size: 16px;
}

.product-thumb .caption h4 a {
  display: block;
  -webkit-transition: 0.5s 0.3s;
  transition: 0.5s 0.3s;
  color: #005180;
}

.product-thumb .caption h4 a:hover {
  color: orange;
}

.product-thumb .caption .keyword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 5px 0;
  padding: 0;
  overflow: hidden;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  height: 42px;
  font-size: 13px !important;
  font-weight: 400;
  font-style: italic;
  font-family: "Roboto", sans-serif;
}

.product-thumb .caption .description {
  margin: 0;
  height: 58px;
  line-height: 1.2;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.product-thumb .caption .star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -9px;
  padding: 3px 3px;
  color: #535353;
}

.product-thumb .caption .star .stock {
  color: #00a000;
  font-size: 11px;
  font-weight: 500;
}

.product-thumb .caption .price {
  padding: 5px 0;
  color: orangered;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.product-thumb .caption .price .price-old {
  color: #999;
  text-decoration: line-through;
  font-size: 13px;
  font-weight: 400;
}

.product-thumb .button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
}

.product-thumb .button-group button {
  margin: 0 1px;
  padding: 3px 0 !important;
  width: 60%;
  border: 1px solid;
  border-color: #222222 #222222 #000000;
  border-radius: 0;
  background: #005180;
  float: left;
  color: #fff;
  line-height: 20px;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.product-thumb .button-group button:hover {
  color: #fff;
  background: orange;
  border-color: orange;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
  cursor: pointer;
}

.product-thumb .button-group button span {
  margin-left: 3px;
}

.product-thumb .button-group button+button {
  width: 20%;
}

@media (max-width: 767px) {
  .product-thumb {
    margin: 0 auto;
    margin-bottom: 20px;
    width: 290px;
  }
}

.rating {
  margin-bottom: 5px;
}

.rating .fa-stack {
  margin-right: 1px;
  width: 12px;
  height: 12px;
  font-size: 8px;
  vertical-align: text-top !important;
}

.rating .fa-star-o {
  color: #999;
  font-size: 13px;
}

.rating .fa-star {
  color: #FC0;
  font-size: 13px;
}

.rating .fa-star+.fa-star-o {
  color: #E69500;
}

/* footer */
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 30px;
  padding: 25px 0;
  background-color: #232323;
  border-top: 1px solid #ddd;
  color: #ddd;
  vertical-align: middle;
}

footer h5 {
  margin-bottom: 25px;
  color: #ddd;
  font-size: 16px;
  font-weight: 400;
}

footer h5::after {
  content: "";
  height: 2px;
  background: orange;
  position: absolute;
  top: 25px;
  left: 15px;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  width: 35px;
}

footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}

footer ul {
  margin-bottom: 25px;
  text-align: left;
  list-style: none;
  position: relative;
  height: 100% !important;
}

footer ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  width: 100%;
  height: 100%;
}

footer ul li::before {
  content: "›";
  position: absolute;
  margin-top: -3px;
  left: 0px;
  color: orange;
  font-size: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

footer ul li a {
  display: block;
  margin-left: 15px;
  color: #ddd;
  font-size: 13px;
  height: 100%;
}

footer ul li a:hover {
  color: orange;
}

footer ul li:hover::before {
  left: 5px;
}

footer .curency {
  display: flex;
  justify-content: center;
}


@media (max-width: 500px) {
  footer .col-xs-6 {
    margin-bottom: 25px;
    padding-left: 25px;
    display: block !important;
    width: 100% !important;
  }

  footer .col-xs-6 h5::after {
    left: 25px;
  }

  footer .col-xs-6 ul {
    margin: 0 15px;
  }
}

#content {
  min-height: 600px;
}

.thumbnails {
  overflow: auto;
  clear: both;
  list-style: none;
  padding: 0;
  margin: 0;
}

.thumbnails>li {
  margin-left: 20px;
}

.thumbnails {
  margin-left: -20px;
}

.thumbnails>img {
  width: 100%;
}

.image-additional a {
  margin-bottom: 20px;
  padding: 5px;
  display: block;
  border: 1px solid #ddd;
}

.image-additional {
  max-width: 78px;
}

.thumbnails .image-additional {
  float: left;
  margin-left: 20px;
}

/* fixed colum left + content + right*/
@media (min-width: 768px) {
  #column-left .product-layout .col-md-3 {
    width: 100%;
  }

  #column-left+#content .product-layout .col-md-3 {
    width: 50%;
  }

  #column-left+#content+#column-right .product-layout .col-md-3 {
    width: 100%;
  }

  #content+#column-right .product-layout .col-md-3 {
    width: 100%;
  }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout,
#column-right .product-layout {
  width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
  min-width: 50px;
}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-image: none;
  background-color: #df5c39;
}

section {
  margin-bottom: 25px;
}
section .section-title {
  margin: 25px 0 15px 0;
  padding-bottom: 15px;
  position: relative;
  overflow: hidden;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: calc(22px + 0.25vw);
}

section .section-title::after {
  content: "";
  height: 3px;
  background: rgba(218, 165, 32, 0.7);
  position: absolute;
  top: 35px;
  left: 0px;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  width: 45px;
}

@media (max-width: 768px) {
  .section-title {
    margin: 25px 0 15px 0;
  }
}

.carousel {
  margin-bottom: 0 !important;
}

#product-product .title-product {
  margin-top: 0;
  margin-bottom: 10px;
  padding: 10px 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#232323), color-stop(50%, #005180));
  background-image: linear-gradient(to top, #232323, #005180 50%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-weight: 400 important;
  font-size: calc(24px + 0.25vw);
  line-height: 0.9;
}

#product-product h2 {
  margin-top: 5px;
  color: orangered;
  font-size: 20px;
  font-weight: 500;
}

#product-product .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#product-product .form-group #input-quantity {
  margin: 0 10px;
  width: 75px;
}

#product-product .form-group #button-cart {
  width: 200px !important;
}

#product-product table {
  table-layout: fixed;
  width: 100%;
}

#product-product table td {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: wrap;
}

#product-product table td a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

#product-product table .review {
  background: -webkit-gradient(linear, left top, right top, from(#f9f5e9), to(white));
  background: linear-gradient(to right, #f9f5e9, white);
}

#product-product .table-bordered>tbody>tr>td,
#product-product .table-bordered>tbody>tr>th,
#product-product .table-bordered>tfoot>tr>td,
#product-product .table-bordered>tfoot>tr>th,
#product-product .table-bordered>thead>tr>td,
#product-product .table-bordered>thead>tr>th {
  border-bottom: none;
}

#product-product .table-product {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, #f9f5e9), color-stop(80%, white));
  background: linear-gradient(to top, #f9f5e9 30%, white 80%);
  table-layout: fixed;
  width: 100%;
}

#product-product .table-product,
#product-product tr,
#product-product td {
  border: 1px solid #f2f2f2;
  border-collapse: collapse;
  padding: 5px;
  overflow: hidden;
  white-space: wrap;
}

#product-product #more {
  display: none;
}

#product-product .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-width: 125px !important;
}

#product-product .more span {
  color: green;
}

#product-category #content h1 {
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  position: relative;
  overflow: hidden;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: calc(24px + 0.25vw);
}

#product-category #content h1::after {
  content: "";
  height: 3px;
  background: rgba(218, 165, 32, 0.7);
  position: absolute;
  top: calc(34px + 0.4vw);
  left: 0px;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  width: 45px;
}

#product-category #content .category-name {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#product-category #content .category-name li {
  margin-bottom: 10px;
  padding: 5px;
  border: 1px solid #ddd;
}

.delivery {
  margin: 25px 0;
  padding: 5px;
  border: 1px solid #ddd;
  text-align: center;
}
.delivery img {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 120px;
  height: auto;
}
.delivery h4 {
  line-height: 1.2;
}

.choice {
  margin: 0 0 10px 0;
  padding: 15px;
  background: rgba(41, 130, 0, 0.1);
}

.choice h2 {
  display: inline;
  margin: 0 5px 0 0;
  line-height: 0.7;
  font-size: 20px !important;
}

.choice small {
  line-height: 1;
  font-size: 14px !important;
  font-family: "Roboto", sans-serif;
}

.brands .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.brands .brand .brand-item {
  margin-right: 5px;
  margin-bottom: 15px;
  padding: 0px 2px;
  border: 1px solid #ccc;
  text-align: center;
  width: 185px;
  height: 100%;
}

/* .brands .brand .brand-item:last-child {
  margin-right: 0;
} */

.brands .brand .brand-item:hover {
  -webkit-box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.2);
}

.brands .brand .brand-item img {
  margin: 0 auto;
  margin-top: 5px;
  text-align: center;
  max-height: 30px;
}

.brands .brand .brand-item h6 {
  padding: 2px 0 0 0 !important;
  color: green;
  line-height: 1;
  font-size: 14.5px;
  font-weight: 400;
}

.brands .brand .brand-item h4 {
  padding: 10px 0 0 0;
  color: green;
}


.your-choice {
  margin-top: 35px;
  padding: 50px 0;
  background: url(../image/bg.png) no-repeat, rgba(41, 130, 0, 0.1);
}

.your-choice .left h2 {
  margin: 0;
  text-align: center;
}

.your-choice .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1%;
}

.your-choice .right p {
  padding: 5px;
  border: 1px solid #ddd;
  line-height: 1.2;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
}

.your-choice .image {
  margin-bottom: 25px;
}

.your-choice .image img {
  display: block;
  margin: 0 auto;
  margin-top: 15px;
  outline: 2px solid #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  text-align: center;
}

@media (max-width: 991px) {
  .your-choice .left h2 {
    padding-bottom: 15px;
  }
}

@media (max-width: 400px) {
  .your-choice .image img {
    width: 250px;
    height: auto;
  }
  .your-choice .right {
    flex-direction: column;
  }
    .your-choice .right p {
      text-align: center;
    }
}


.partner {
  margin-top: 35px;
  background: url(../image/map.png) no-repeat center;
  background-position-y: bottom;
}

.partner h2 {
  margin-top: 0;
}

.partner .row {
  margin-top: 20px;
}


.partner .item {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(41, 130, 0, 0.1);
  text-transform: uppercase;
  height: 60px;
  font-weight: 600;
}

.partner .item h5 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 16px;
}

.partner .item p {
  line-height: 1.2;
}

.partner .left .item p {
  text-align: right;
}

.partner .right .item p {
  text-align: left;
}

.partner .descript {
  display: block;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(41, 130, 0, 0.1);
}

.partner .referal {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.partner .referal a {
  background: #005180;
  border: 1px solid #fff;
  padding: 7px 25px;
  color: #fff;
  text-shadow: 0 1px 0 #000;
  text-align: center;
}
.partner .referal a:hover {
  background: orange;
  /* color: #000;
  text-shadow: none; */
}

@media (max-width: 768px) {
  .partner .col-sm-6 {
    width: 100%;
  }

  .partner .col-sm-6 p {
    text-align: left !important;
  }
}

#ttop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color: #1D7A55;
  border: 0;
  border-radius: 50% !important;
  color: #fff;
  width: 40px;
  height: 40px;
  border: 0;
  opacity: .8;
  display: none;
  z-index: 10;
  font-size: 18px;
}

#ttop:hover {
  opacity: 1;
  transition: all .5s;
}