:root {
  --mainBlack: #272524;
  --mainBlacker: #0a0a0a;
  --mainWhite: #fff;
  --mainDark: #4C4A48;
  --mainFontGrey: #a2a2a2;
  --mainButtonGrey: #5D5A58;
  --mainButtonGreyLight: #7A7574;
  --mainGrey: #f9f9f9;
  --mainRed: #F23822;
  --mainBlue: #0cafe1;
  --mainGreen: #1AB869;
  --mainHighlight: #f15d22;
  --mainBorderColor: #a2a2a2;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  color: #272524;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body main {
  flex: 1;
}
body h1, body h2, body h3 {
  font-family: "Oswald", sans-serif;
}
body a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: #272524;
}
body a:hover {
  text-decoration: none;
  color: #f15d22;
}
body img {
  height: auto;
}
body .more, body .btn {
  color: #272524;
  min-width: 150px;
  text-transform: uppercase;
  line-height: 30px;
  border-radius: 0.8rem;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  border: 2px solid #272524;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.6px;
  position: relative;
  overflow: hidden;
}
body .more[data-text], body .btn[data-text] {
  color: rgba(0, 0, 0, 0);
}
body .more:after, body .more:before, body .btn:after, body .btn:before {
  content: attr(data-text);
  color: #272524;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
body .more:after, body .btn:after {
  transform: translateY(100%);
}
body .more:hover:before, body .btn:hover:before {
  transform: translateY(-100%);
}
body .more:hover:after, body .btn:hover:after {
  transform: translateY(0);
}
body .submitBtn {
  background-color: #f15d22;
  border: 2px solid #f15d22;
  color: #fff;
}
body .submitBtn:before, body .submitBtn:after {
  color: #fff;
}

.error-message {
  color: #F23822;
}

.initial-hidden {
  display: none;
}

header {
  position: sticky;
  z-index: 50;
  background: transparent;
  padding: 15px 0;
  top: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.15);
}
header.scrolled {
  background: #272524;
  padding: 0;
}
header.scrolled .navbar-toggler {
  top: 33px;
}
header.colored {
  background: #272524;
}
header .navbar-toggler {
  right: 10px;
  color: #fff;
  top: 50px;
  position: fixed;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .header-grid {
  display: grid;
  grid-template-columns: auto minmax(80px, 500px) auto minmax(80px, 500px) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}
header .header-grid i {
  font-size: 18px;
}
header .left-section {
  grid-column: 1;
}
header .left-menu {
  grid-column: 2;
  padding-right: 1rem;
}
header .logo-section {
  grid-column: 3;
}
header .right-menu {
  grid-column: 4;
  padding-left: 1rem;
}
header .right-section {
  grid-column: 5;
}
header .nav {
  width: 100%;
  flex-basis: content;
}
header .nav li:not(:last-of-type) {
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  header .nav li:not(:last-of-type) {
    margin-bottom: 0;
  }
}
header .nav.nav-left {
  justify-content: flex-end;
}
header .nav.nav-right {
  justify-content: flex-start;
}
@media (max-width: 1199.98px) {
  header .header-grid {
    grid-template-columns: 1fr auto;
    gap: 0;
  }
  header .logo-section {
    grid-column: 1;
  }
  header .right-section {
    grid-column: 2;
  }
}
header .nav-link {
  color: #fff;
}
header .nav-link:hover, header .nav-link:focus {
  color: #f15d22;
}
header #cartNum {
  position: absolute;
  top: 0;
  background: #f15d22;
  color: #fff;
  width: 20px;
  height: 20px;
  text-align: center;
  border-radius: 50%;
  line-height: 20px;
  right: 2px;
}
header ul > li {
  padding: 0 15px;
}
header ul > li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}
header ul > li a:hover, header ul > li a.active {
  color: #f15d22;
}
header ul > li.active a {
  color: #f15d22;
}
header .navbar {
  background: #272524;
  left: 0;
  padding: 30px;
  position: absolute;
  text-align: left;
  top: 100%;
  width: 100%;
  z-index: 1;
}
@media (min-width: 1200px) {
  header .navbar {
    background: initial;
    position: static;
    width: auto;
    text-align: right;
  }
}

footer .top {
  background: #272524;
  color: #fff;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
}
footer .top:before {
  z-index: -1;
  background-color: #272524;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.85;
}
footer .top:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("/theme_weektorio/img/footer.webp");
  width: 100%;
  height: 100%;
  z-index: -2;
  background-size: cover;
  background-attachment: fixed;
  background-position: center 300px;
}
footer .top i {
  width: 16px;
  text-align: center;
  margin-right: 10px;
}
footer .top a {
  color: #fff;
}
footer .top a:hover {
  color: #f15d22;
}
footer .top .footer-title {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
footer .top .footer-links li {
  padding-bottom: 0.8rem;
}
footer .top .footer-links li a {
  font-weight: 500;
  text-decoration: none;
  color: #a2a2a2;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
footer .top .footer-links li a:hover {
  padding-left: 1rem;
  color: #fff;
}
footer .bottom {
  background: #0a0a0a;
  color: #a2a2a2;
}
footer .bottom .hyperfocus img {
  max-height: 30px;
  opacity: 0.6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
footer .bottom .hyperfocus img:hover {
  opacity: 1;
}

#toTop {
  background: #f15d22;
  border: none;
  border-radius: 9px;
  bottom: 30px;
  color: #fff;
  font-size: 28px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  position: fixed;
  right: 30px;
  text-align: center;
  width: 50px;
  z-index: 100;
}
@media (min-width: 768px) {
  #toTop {
    bottom: 60px;
    right: 40px;
  }
}
@media (min-width: 992px) {
  #toTop {
    bottom: 60px;
    right: 40px;
  }
}
#toTop i {
  font-weight: 900;
}
#toTop:focus {
  outline: none;
}

.error {
  margin-top: 200px;
  margin-bottom: 200px;
}
.error .clip {
  display: inline-block;
  margin: 20px;
  font-size: 50px;
}
.error .clip .shadow {
  width: 90px;
  height: 90px;
  background-color: #f15d22;
  border-radius: 50%;
  color: #fff;
  line-height: 90px;
}

.breadcrumb {
  margin: 20px 0;
  font-size: 12px;
}
@media (min-width: 992px) {
  .breadcrumb {
    font-size: 14px;
  }
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f105" !important;
  display: inline-block;
  font-family: Font Awesome\ 5 Pro, sans-serif;
  font-weight: 300;
  padding: 0 4px;
  color: #ccc;
}
@media (min-width: 992px) {
  .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 16px;
  }
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease-in-out;
}
.carousel-indicators [data-bs-target]:hover, .carousel-indicators [data-bs-target].active {
  background-color: #f15d22;
}

.checkbox-input-holder {
  padding-left: 30px;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 2rem;
  padding: 0.1rem;
  height: 24px;
  width: 24px;
  border: 2px solid #f15d22;
  border-radius: 6px !important;
  position: absolute;
  left: 0;
  margin-left: 0 !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
input[type=checkbox]:checked {
  background-color: #f15d22;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

input.form-control, select.form-control, textarea.form-control, .flagstrap button {
  border-radius: 12px;
  margin-bottom: 15px;
}

textarea.form-control {
  min-height: 120px;
  max-height: 300px;
}

.form-group.checkbox, .ts-uploader-file {
  margin-bottom: 15px;
}

.ts-uploader-add .btn {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.dark-form {
  background-color: #272524;
  color: #fff;
  border-radius: 21px;
  padding: 30px;
}
.dark-form input, .dark-form textarea {
  background: #f9f9f9;
}
.dark-form label {
  color: #272524;
}
.dark-form .checkbox label {
  color: #fff;
}

.pagination .page-item:not(:last-of-type) {
  margin-right: 4px;
}
.pagination .page-item a {
  background: #272524;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 9px !important;
  border: 1px solid #272524;
  color: #fff;
  padding: 0;
}
.pagination .page-item a:focus {
  box-shadow: none;
}
.pagination .page-item.active a, .pagination .page-item:hover a {
  background: #f15d22;
  border: 1px solid #f15d22;
}
.pagination .page-item.disabled {
  display: none;
}

.page-0:not(.page-home) section.top {
  padding: 0;
  position: relative;
}
.page-0:not(.page-home) section.top .title {
  margin-top: 30px;
  color: #272524;
  text-align: center;
}
.page-0:not(.page-home) section.top .title h1, .page-0:not(.page-home) section.top .title h2 {
  font-size: 50px;
  font-weight: 700;
  position: relative;
}
.page-0:not(.page-home) section.top .title h1:after, .page-0:not(.page-home) section.top .title h2:after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 3px;
  bottom: -9px;
  left: 50%;
  width: 200px;
  background-color: #f15d22;
  transform: translateX(-50%);
}

body.page-home header {
  position: fixed;
  width: 100%;
}

body:not(.page-home) header {
  background: #272524;
}

/**
Section styles
 */
section {
  padding-top: 50px;
  padding-bottom: 50px;
}
section a {
  color: #f15d22;
}
section a:hover {
  color: #272524;
}
section .btn-wrapper {
  margin-top: 30px;
}
section .btn-wrapper a.more {
  padding: 15px 20px;
  color: #272524;
  border: 1px solid #272524;
  border-radius: 15px;
  display: inline-block;
}
section .btn-wrapper a.more:hover {
  color: #fff;
  background: #272524;
}
section h2 a {
  color: #272524;
}
section h2 a:hover {
  color: #f15d22;
}
section ul {
  padding-left: 15px;
}

#searchModal .modal-header {
  background: #272524;
  color: #fff;
}
#searchModal .modal-header .btn-close {
  filter: invert(1) brightness(1000);
}
#searchModal .modal-body button {
  background: #f15d22;
  border: 1px solid #f15d22;
}
#searchModal .modal-body button:before, #searchModal .modal-body button:after {
  color: #fff;
}
#searchModal .modal-body button:hover {
  background: #272524;
  border-color: #272524;
}
#searchModal .modal-body input {
  margin-bottom: 0;
}

section.bg-grey {
  background-color: #f9f9f9;
}

section.slider-container {
  padding: 0 !important;
}
section.slider-container .row, section.slider-container .col-12 {
  padding: 0;
  margin: 0;
}
section.slider-container #slider {
  height: clamp(500px, 65vh, 800px);
}
section.slider-container #slider .carousel-caption {
  z-index: 1;
  bottom: auto;
  transform: translateY(-50%);
  top: 60%;
  left: 10%;
  right: 10%;
}
@media (min-width: 992px) {
  section.slider-container #slider .carousel-caption {
    top: 50%;
    left: 15%;
    right: 15%;
  }
}
section.slider-container #slider .carousel-caption h1, section.slider-container #slider .carousel-caption h2 {
  font-style: normal;
  font-weight: 500;
  letter-spacing: normal;
  margin-bottom: 30px;
  font-size: 50px;
  line-height: 54px;
}
@media (min-width: 992px) {
  section.slider-container #slider .carousel-caption h1, section.slider-container #slider .carousel-caption h2 {
    font-size: 80px;
    line-height: 104px;
  }
}
section.slider-container #slider .carousel-caption .more, section.slider-container #slider .carousel-caption .btn {
  border-color: #fff;
}
section.slider-container #slider .carousel-caption .more:before, section.slider-container #slider .carousel-caption .more:after, section.slider-container #slider .carousel-caption .btn:before, section.slider-container #slider .carousel-caption .btn:after {
  color: #fff;
}
section.slider-container #slider .carousel-caption .carousel-caption-lead {
  margin-bottom: 21px;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
section.slider-container #slider img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
section.slider-container #slider .image-container:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  opacity: 0.6;
  z-index: 0;
}

section.testimonials {
  text-align: center;
}
section.testimonials h2 {
  text-transform: uppercase;
  margin-bottom: 30px;
}
section.testimonials .testimonial-text {
  font-size: 20px;
}
section.testimonials .testimonial-writer {
  font-size: 18px;
  color: #f15d22;
  font-weight: 500;
}
section.testimonials .owl-dots {
  text-align: center;
  margin-top: 30px;
}
section.testimonials .owl-dots .owl-dot span {
  display: inline-block;
  background-color: #272524;
  margin: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
section.testimonials .owl-dots .owl-dot.active span, section.testimonials .owl-dots .owl-dot:hover span {
  background-color: #f15d22;
}
section.testimonials .owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* Prevents interfering with clicks on slides */
}
section.testimonials .owl-nav button {
  pointer-events: auto; /* Allows clicking on buttons */
  padding: 10px 15px;
  cursor: pointer;
  color: #f15d22;
  height: 40px !important;
  width: 40px !important;
  font-size: 30px !important;
  line-height: 33px !important;
}
section.testimonials .owl-nav button:hover i {
  color: #f15d22;
}
section.testimonials .owl-prev {
  left: 0;
}
section.testimonials .owl-next {
  right: 0;
}

section.why-us {
  position: relative;
  z-index: 1;
  padding: 150px 0;
  background: url("/theme_weektorio/img/dark_coin_bg.webp");
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
}
section.why-us .title-box {
  margin-bottom: 90px;
}
section.why-us .title-box h2 {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  font-size: 36px;
}
@media (min-width: 992px) {
  section.why-us .title-box h2 {
    font-size: 40px;
  }
}
section.why-us .why-us-1, section.why-us .why-us-2, section.why-us .why-us-3 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  section.why-us .why-us-1, section.why-us .why-us-2, section.why-us .why-us-3 {
    margin-bottom: 0;
  }
}
section.why-us .why-us-1 h2, section.why-us .why-us-2 h2, section.why-us .why-us-3 h2 {
  position: relative;
  padding-bottom: 15px;
  padding-top: 60px;
  margin-bottom: 30px;
}
section.why-us .why-us-1 h2:before, section.why-us .why-us-2 h2:before, section.why-us .why-us-3 h2:before {
  position: absolute;
  bottom: 0;
  content: "";
  background: #fff;
  left: calc(50% - 3rem);
  width: 6rem;
  height: 0.1rem;
}
section.why-us .why-us-1 h2:after, section.why-us .why-us-2 h2:after, section.why-us .why-us-3 h2:after {
  font-weight: 900;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  top: -15px;
  font-size: 60px;
}
@media (min-width: 992px) {
  section.why-us .why-us-1 h2:after, section.why-us .why-us-2 h2:after, section.why-us .why-us-3 h2:after {
    top: -45px;
    font-size: 80px;
  }
}
section.why-us .why-us-1 h2:after {
  content: "\f51e" !important;
  display: inline-block;
  font-family: Font Awesome\ 5 Pro, sans-serif;
  font-weight: 900;
}
section.why-us .why-us-2 h2:after {
  content: "\f2f7" !important;
  display: inline-block;
  font-family: Font Awesome\ 5 Pro, sans-serif;
  font-weight: 900;
}
section.why-us .why-us-3 h2:after {
  content: "\f0d1" !important;
  display: inline-block;
  font-family: Font Awesome\ 5 Pro, sans-serif;
  font-weight: 900;
}
section.why-us:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: black;
  opacity: 0.6;
  z-index: -1;
}

.row.owl-carousel .col-12 {
  width: 100% !important;
}

/**
PageBox styles
 */
@media (min-width: 992px) {
  .right_image .col-12:first-of-type {
    padding-right: 60px;
  }
}
.right_image .main-image img {
  border-radius: 36px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .right_image .main-image img {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .left_image .col-12:last-of-type {
    padding-left: 60px;
  }
}
.left_image .main-image img {
  border-radius: 24px;
}

.call-us {
  color: #fff;
}

.side-categories, .side-posts, .side-products {
  border: 2px solid #a2a2a2;
  margin-right: 5px;
  border-radius: 12px;
}
.side-categories h3, .side-posts h3, .side-products h3 {
  position: relative;
  height: 70px;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #f9f9f9;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 0 26px;
  text-align: left;
  color: #272524;
  font-weight: 500;
  font-size: 14px;
  line-height: 70px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.side-categories h3 span, .side-posts h3 span, .side-products h3 span {
  display: inline-block;
  width: 18px;
  margin-right: 20px;
}
.side-categories h3 span b, .side-posts h3 span b, .side-products h3 span b {
  display: block;
  background-color: #4C4A48;
  height: 2px;
  margin-bottom: 3px;
}
.side-categories h3 span b:nth-child(2), .side-posts h3 span b:nth-child(2), .side-products h3 span b:nth-child(2) {
  width: 12px;
}
.side-categories h3 span b:nth-child(3), .side-posts h3 span b:nth-child(3), .side-products h3 span b:nth-child(3) {
  width: 6px;
}
.side-categories .category-list, .side-posts .category-list, .side-products .category-list {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.side-categories ul, .side-posts ul, .side-products ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.side-categories ul.collapsable-tree, .side-posts ul.collapsable-tree, .side-products ul.collapsable-tree {
  position: relative;
}
.side-categories ul.collapsable-tree > li > .has-subcategory, .side-posts ul.collapsable-tree > li > .has-subcategory, .side-products ul.collapsable-tree > li > .has-subcategory {
  padding-right: 20px;
}
.side-categories ul.collapsable-tree > li > .has-subcategory:after, .side-posts ul.collapsable-tree > li > .has-subcategory:after, .side-products ul.collapsable-tree > li > .has-subcategory:after {
  font-size: 10px;
  opacity: 0.9;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  content: "\f054" !important;
  display: inline-block;
  font-family: Font Awesome\ 5 Pro, sans-serif;
  font-weight: 900;
}
.side-categories ul.collapsable-tree li.active > a, .side-posts ul.collapsable-tree li.active > a, .side-products ul.collapsable-tree li.active > a {
  color: #f15d22;
}
.side-categories ul.collapsable-tree > li, .side-posts ul.collapsable-tree > li, .side-products ul.collapsable-tree > li {
  padding: 0 10px 0 24px;
  position: relative;
}
.side-categories ul.collapsable-tree > li:not(:last-of-type), .side-posts ul.collapsable-tree > li:not(:last-of-type), .side-products ul.collapsable-tree > li:not(:last-of-type) {
  border-bottom: 1px solid #7A7574;
}
.side-categories ul.collapsable-tree > li a, .side-posts ul.collapsable-tree > li a, .side-products ul.collapsable-tree > li a {
  color: #7A7574;
  font-weight: 400;
  display: block;
  padding: 16px 0 8px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  line-height: 100%;
  font-size: 14px;
}
.side-categories ul.collapsable-tree > li a:hover, .side-posts ul.collapsable-tree > li a:hover, .side-products ul.collapsable-tree > li a:hover {
  color: #f15d22;
}
.side-categories ul.collapsable-tree > li > ul, .side-posts ul.collapsable-tree > li > ul, .side-products ul.collapsable-tree > li > ul {
  z-index: 11;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  display: unset;
  left: calc(100% + 11px);
  opacity: 0;
  position: absolute;
  text-align: left;
  top: -3px;
  visibility: hidden;
  width: 257px;
  border: 1px solid #ebebeb;
  min-width: 257px;
  padding: 30px;
}
.side-categories ul.collapsable-tree > li > ul > li > a, .side-posts ul.collapsable-tree > li > ul > li > a, .side-products ul.collapsable-tree > li > ul > li > a {
  position: relative;
  color: #272524;
}
.side-categories ul.collapsable-tree > li > ul > li > a:after, .side-posts ul.collapsable-tree > li > ul > li > a:after, .side-products ul.collapsable-tree > li > ul > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  border-bottom: 1px solid #f15d22;
}
.side-categories ul.collapsable-tree > li > ul > li ul, .side-posts ul.collapsable-tree > li > ul > li ul, .side-products ul.collapsable-tree > li > ul > li ul {
  margin-top: 10px;
  margin-left: 10px;
}
.side-categories ul.collapsable-tree > li > ul > li ul li, .side-posts ul.collapsable-tree > li > ul > li ul li, .side-products ul.collapsable-tree > li > ul > li ul li {
  padding: 0 5px;
}
.side-categories ul.collapsable-tree > li > ul > li ul li a, .side-posts ul.collapsable-tree > li > ul > li ul li a, .side-products ul.collapsable-tree > li > ul > li ul li a {
  padding: 7px 0 5px;
}
.side-categories ul.collapsable-tree > li:hover:before, .side-posts ul.collapsable-tree > li:hover:before, .side-products ul.collapsable-tree > li:hover:before {
  content: "";
  width: 15px;
  height: 100%;
  right: -13px;
  top: 0;
  display: block;
  position: absolute;
}
.side-categories ul.collapsable-tree > li:hover ul, .side-posts ul.collapsable-tree > li:hover ul, .side-products ul.collapsable-tree > li:hover ul {
  display: block;
  visibility: visible;
  opacity: 1;
  background: #fff;
}

@media (max-width: 990px) {
  .side-categories {
    position: fixed;
    z-index: 55;
    width: calc(100vw - 24px);
    top: 15px;
    left: -100%;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .side-categories ul {
    border: 1px solid #a2a2a2;
  }
  .side-categories:after {
    content: "";
    position: absolute;
    top: -17px;
    left: -14px;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: -1;
  }
  .side-categories.active {
    left: 12px;
  }
  .side-categories .categ-closer {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

.category-toggler span {
  background: #f15d22;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 9px;
}
.category-toggler span:hover {
  cursor: pointer;
}

.side-auctions {
  border: 2px solid #a2a2a2;
  margin-right: 5px;
  border-radius: 12px;
  margin-top: 50px;
}
.side-auctions .auctions-title {
  background: #f9f9f9;
  padding: 0 26px;
  font-weight: 500;
  font-size: 14px;
  line-height: 70px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.side-auctions .auctions-title:before {
  content: "\f0e3" !important;
  display: inline-block;
  font-family: Font Awesome\ 5 Pro, sans-serif;
  font-weight: 900;
  margin-right: 10px;
}
.side-auctions .auctions-content {
  padding: 10px 25px;
  position: relative;
}
.side-auctions img {
  max-width: 100%;
  border-radius: 9px;
  margin-bottom: 10px;
}
.side-auctions p {
  color: #292e32;
  font-size: 16px;
  display: block;
}

.sort-holder {
  position: absolute;
  right: 0;
  top: 7px;
}
.sort-holder select {
  max-width: 120px;
}
@media (min-width: 992px) {
  .sort-holder select {
    max-width: none;
  }
}

.product-list-title h2, .product-list-title h1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #272524;
}
.product-list-title h1 {
  margin-bottom: 0;
  padding: 15px 0;
  max-width: calc(100% - 135px);
}
@media (min-width: 992px) {
  .product-list-title h1 {
    max-width: 100%;
  }
}
.product-list-title .lead {
  font-size: 16px;
}
.product-list-title .lead p {
  margin-bottom: 0;
}

.category-item {
  margin-bottom: 25px;
}
.category-item .inner {
  background: #f15d22;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  display: block;
  border-radius: 12px;
  padding: 10px;
  height: 100%;
  text-align: center;
  border: 2px solid #f15d22;
}
.category-item:hover .inner {
  background: #272524;
}
.category-item .image-wrap {
  margin: 5px;
  border-radius: 9px;
}

.product-item {
  box-shadow: 0 0 10px rgba(39, 37, 36, 0.1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.product-item .sale {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  width: 11rem;
  height: 1.5rem;
  transform: rotate(45deg);
  text-align: center;
  line-height: 1.5rem;
  background: #f15d22;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  top: 1.2rem;
  right: -3.6rem;
}
.product-item .new {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  width: 11rem;
  height: 1.5rem;
  transform: rotate(-45deg);
  text-align: center;
  line-height: 1.5rem;
  background: #F23822;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  top: 1.2rem;
  left: -3.6rem;
}
.product-item .item-content {
  padding: 1rem 2rem 0;
}
.product-item .image-wrap {
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  position: relative;
}
.product-item .image-wrap img {
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.product-item .image-wrap .bottom-buttons {
  position: absolute;
  bottom: -45px;
  width: 100%;
  text-align: center;
  z-index: 11;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.product-item .image-wrap .bottom-buttons .item-bottom {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.product-item .image-wrap .bottom-buttons .item-bottom a {
  font-size: 18px;
  line-height: 40px;
  display: block;
  width: 100%;
  height: 100%;
}
.product-item .image-wrap .bottom-buttons .item-bottom:hover {
  background: #272524;
}
.product-item .image-wrap .bottom-buttons .item-bottom:hover a {
  color: #fff;
}
.product-item:hover .bottom-buttons {
  opacity: 1;
  bottom: 45px;
}
.product-item:hover img {
  -moz-transform: scale(1.15);
  -o-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.product-item .product-title {
  letter-spacing: 0.02em;
  padding-top: 1rem;
  margin-bottom: 0.3rem;
  color: #272524;
  font-weight: 500;
}
.product-item .product-title:hover {
  color: rgba(39, 37, 36, 0.7);
}
.product-item .product-price {
  font-size: 15px;
  text-align: center;
  color: #f15d22;
}
.product-item .product-price .product-price-old {
  color: #a2a2a2 !important;
  margin-left: 6px;
}

.recently-viewed {
  padding-bottom: 60px;
  margin-top: 30px;
}
.recently-viewed .recently-viewed-title {
  border-bottom: 1px solid #e8edf2;
  text-align: center;
  margin-bottom: 60px;
}
.recently-viewed .recently-viewed-title h5 {
  padding: 12px 0;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 28px;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}
.recently-viewed .recently-viewed-title h5:after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 3px;
  bottom: -1px;
  left: 0;
  width: 100%;
  background-color: #272524;
}
.recently-viewed p {
  color: #a2a2a2;
}
.recently-viewed .product-item .item-content {
  padding: 1rem 1rem 0;
}
.recently-viewed .product-item .product-title {
  font-size: 14px;
}
.recently-viewed .product-price {
  font-size: 18px;
  color: #f15d22;
}
.recently-viewed .product-price .product-price-old {
  margin-left: 6px;
  color: #a2a2a2 !important;
}

.carrier-alert {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 4px;
}
.carrier-alert.carrier-alert-ok {
  background-color: #1AB869;
  color: #fff;
}
.carrier-alert.carrier-alert-ok:before {
  content: "\f00c" !important;
  display: inline-block;
  font-family: Font Awesome\ 5 Pro, sans-serif;
  font-weight: 900;
  margin-right: 20px;
}

.product-view h1 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 26.4px;
  margin-bottom: 20px;
}
.product-view .main-image {
  position: relative;
  border-radius: 24px;
  box-shadow: 0 3px 24px rgba(0, 0, 0, 0.2);
}
.product-view .main-image img {
  border-radius: 24px;
}
.product-view .main-image .new {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  background: #F23822;
  color: #fff;
  padding: 5px 20px;
  border-radius: 11px;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}
.product-view .main-image .sale {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background: #f15d22;
  color: #fff;
  padding: 5px 20px;
  border-radius: 11px;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}
.product-view .product-thumb img, .product-view .main-image img {
  transition: all 0.3s;
  box-shadow: 0 3px 24px rgba(0, 0, 0, 0.2);
}
.product-view .product-price {
  color: #f15d22;
  font-size: 26px;
  line-height: 28px;
}
.product-view .product-price-old {
  margin-left: 6px;
  color: #a2a2a2 !important;
}
.product-view .add-to-cart a {
  padding: 13px 20px 11px;
  width: 100%;
  border-radius: 12px;
  border: 2px solid #272524;
  color: transparent;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 28px;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.product-view .add-to-cart a:before {
  color: #272524;
}
.product-view .add-to-cart a:after {
  color: #fff;
}
.product-view .add-to-cart a:hover {
  background: #272524;
}
.product-view .add-to-cart .qty {
  position: relative;
}
.product-view .add-to-cart .qty .form-group {
  margin: 0;
}
.product-view .add-to-cart .qty .number {
  max-width: 120px;
}
.product-view .add-to-cart .qty .number input {
  -webkit-appearance: none;
  margin: 0;
  border-radius: 12px;
  -moz-appearance: textfield;
}
.product-view .add-to-cart .qty .fal {
  position: absolute;
  right: 20px;
  top: 2px;
  width: 25px;
  height: 25px;
  background-color: #fff;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
}
.product-view .add-to-cart .qty .fal:hover {
  color: #f15d22;
}
.product-view .add-to-cart .qty .fal.fa-minus {
  top: auto;
  bottom: 3px;
}
.product-view .details .value {
  color: #272524;
  font-weight: 700;
}
.product-view .details .price {
  margin-bottom: 20px;
}
.product-view .details .product-availability .value {
  color: #1AB869;
}
.product-view .details .product-attr {
  margin-bottom: 15px;
  font-weight: 500;
}
.product-view .details .product-attr p {
  font-weight: 400;
}
.product-view .details .product-lead {
  color: #a2a2a2;
}
.product-view .details .product-lead a {
  color: #f15d22;
}
.product-view .details .product-lead a span {
  font-size: 10px;
  position: relative;
  top: -1px;
}
.product-view .details .product-tags {
  margin-top: 30px;
}
.product-view .details .product-tags a {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}
.product-view .details .reg-info {
  font-size: 12px;
  background: #e4ff14;
  display: inline-block;
  position: relative;
  text-align: left;
  padding: 20px 10px 20px 50px;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .product-view .details .reg-info {
    max-width: 300px;
    padding: 5px 10px 5px 50px;
  }
}
.product-view .details .reg-info span {
  position: absolute;
  top: 50%;
  left: 10px;
  background-color: #fff;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  transform: translateY(-50%);
}
.product-view .side-contact-box {
  background-color: #272524;
  color: #fff;
  padding: 40px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 3px 24px rgba(0, 0, 0, 0.2);
  font-size: 18px;
}
.product-view .side-contact-box:after {
  position: absolute;
  top: 50%;
  right: 50px;
  font-size: 60px;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.7;
  content: "\f095" !important;
  display: inline-block;
  font-family: Font Awesome\ 5 Pro, sans-serif;
  font-weight: 900;
}
.product-view .side-contact-box:hover:after {
  opacity: 1;
  color: #f15d22;
}
.product-view .side-contact-box h2 {
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: bold;
}
.product-view .side-contact-box strong {
  display: block;
  font-weight: normal;
  font-size: 12px;
  text-transform: uppercase;
}
.product-view .side-contact-box p {
  margin-bottom: 0;
}
.product-view .side-contact-box a {
  color: #fff;
}
.product-view .side-contact-box a:hover {
  color: #f15d22;
}
.product-view .description-box {
  padding-bottom: 60px;
  margin-top: 30px;
}
.product-view .description-box .description-title {
  border-bottom: 1px solid #e8edf2;
  text-align: center;
  margin-bottom: 60px;
}
.product-view .description-box .description-title h5 {
  padding: 12px 0;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 28px;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}
.product-view .description-box .description-title h5:after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 3px;
  bottom: -1px;
  left: 0;
  width: 100%;
  background-color: #272524;
}
.product-view .description-box p {
  color: #a2a2a2;
}
.product-view .offers, .product-view .recently-viewed {
  padding-bottom: 60px;
  margin-top: 30px;
}
.product-view .offers .offers-title, .product-view .recently-viewed .offers-title {
  border-bottom: 1px solid #e8edf2;
  text-align: center;
  margin-bottom: 60px;
}
.product-view .offers .offers-title h5, .product-view .recently-viewed .offers-title h5 {
  padding: 12px 0;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 28px;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}
.product-view .offers .offers-title h5:after, .product-view .recently-viewed .offers-title h5:after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 3px;
  bottom: -1px;
  left: 0;
  width: 100%;
  background-color: #272524;
}
.product-view .offers p, .product-view .recently-viewed p {
  color: #a2a2a2;
}
.product-view .offers .product-price, .product-view .recently-viewed .product-price {
  font-size: 18px;
  color: #f15d22;
}
.product-view .offers .product-price .product-price-old, .product-view .recently-viewed .product-price .product-price-old {
  margin-left: 6px;
  color: #a2a2a2 !important;
}
.product-view .side-info-box {
  padding: 30px 15px 20px 83px;
  color: #999;
  font-size: 12px;
  line-height: 18px;
  position: relative;
  border: 2px solid #f0f0f0;
}
.product-view .side-info-box:not(.last) {
  border-bottom: none;
}
.product-view .side-info-box h3 {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 15.4px;
  margin-bottom: 7px;
}
.product-view .side-info-box i {
  color: #333;
  position: absolute;
  left: 23px;
  font-size: 36px;
  top: calc(50% - 6px);
}
.product-view .product-images img {
  border-radius: 15px;
}

.cart-page .summary-side {
  position: relative;
}
.cart-page .summary-fixed {
  position: sticky;
  top: 40px;
}
.cart-page .mobile-next {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
}
@media (min-width: 992px) {
  .cart-page .mobile-next {
    display: none;
  }
}
.cart-page .cart-product {
  border-bottom: 1px solid #a2a2a2;
  padding-bottom: 20px;
  padding-top: 20px;
}
.cart-page .cart-product h2 {
  font-size: 16px;
  line-height: 24px;
}
.cart-page .cart-product h2 a {
  color: #4C4A48;
}
.cart-page .cart-product h2 a:hover {
  color: #f15d22;
}
.cart-page .cart-product .qty .pc {
  display: inline-block;
  padding: 0 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.cart-page .cart-product .qty a {
  color: #272524;
}
.cart-page .cart-product .qty a:hover {
  color: #f15d22;
}
.cart-page .cart-product .qty .cart-item-delete {
  margin-left: 40px;
}
.cart-page .cart-product .price {
  font-weight: bold;
}
@media (min-width: 1200px) {
  .cart-page .cart-product .price {
    padding-left: 60px;
  }
}
.cart-page .cart-product img {
  border-radius: 9px;
}
.cart-page .coupon .form-group {
  display: inline-block;
}
.cart-page .coupon .form-group .form-control {
  min-width: 250px;
  height: 50px;
  width: 100%;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.cart-page .coupon .btn-primary {
  height: 50px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  background-color: #272524;
  border: 2px solid #272524;
  margin-top: -3px;
}
.cart-page .coupon .btn-primary:hover {
  background-color: #f15d22;
  border-color: #f15d22;
}
.cart-page .total .sum {
  font-weight: bold;
  font-size: 20px;
}

.fa-eye {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  top: 20px !important;
}

.far.fa-clock {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300 !important;
}

.order-finish-page {
  background-color: #FFFFFF !important;
}

.order-page {
  background-color: #F5F5F5;
  padding-top: 0;
}
.order-page header .inner {
  padding-top: 15px;
  padding-bottom: 15px;
}
.order-page header .call-us {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
}
.order-page header .call-us span {
  display: block;
  font-size: 20px;
}
.order-page main {
  padding: 0 15px;
}
.order-page .left-side {
  background-color: #fff;
  padding: 15px 10px;
}
@media (min-width: 1200px) {
  .order-page .left-side {
    padding: 42px 42px 42px 0;
    position: relative;
    border-right: 1px solid #a2a2a2;
  }
}
.order-page .left-side:before {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: block;
  pointer-events: none;
  top: 0;
}
.order-page .left-side .box {
  margin-bottom: 30px;
}
.order-page .left-side .box h2 {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 25.2px;
}
.order-page .left-side .box h2 .login-link {
  font-weight: normal;
  font-style: normal;
  float: right;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  max-width: 70%;
}
@media (min-width: 992px) {
  .order-page .left-side .box h2 .login-link {
    max-width: 50%;
    margin-top: 4px;
  }
}
.order-page .left-side .no-payment {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
}
.order-page .left-side .accordion-item {
  border: 1px solid #a2a2a2;
  border-radius: 12px;
}
.order-page .left-side .accordion-item .accordion-header {
  position: relative;
}
.order-page .left-side .accordion-item .accordion-header .accordion-button {
  box-shadow: none;
  cursor: pointer;
  border-radius: 12px;
  padding-left: 50px;
  position: relative;
}
.order-page .left-side .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.order-page .left-side .accordion-item .accordion-header .accordion-button:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #a2a2a2;
  border-radius: 50%;
  display: block;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.order-page .left-side .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #f15d22;
  background-color: #fff;
}
.order-page .left-side .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.order-page .left-side .accordion-item .accordion-header .price {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.order-page .left-side .accordion-item .accordion-body {
  background-color: #f9f9f9;
  border-radius: 12px;
}
.order-page .left-side .accordion-item.active .accordion-button:before {
  border: 6px solid #f15d22;
}
.order-page .left-side #mpl_all-holder .submitBtn.mpl-open {
  padding: 12px 0;
}
.order-page .left-side #mpl_all-holder #mpl-all-selected {
  margin-bottom: 0;
}
.order-page .summary-side {
  padding: 20px;
  position: sticky;
  top: 90px;
}
@media (min-width: 1200px) {
  .order-page .summary-side {
    padding: 42px 0 42px 42px;
  }
}
.order-page .summary-side .products {
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.order-page .summary-side .total {
  font-weight: bold;
  font-size: 20px;
}
.order-page .summary-side .font-weight-bold {
  font-weight: bold;
}
.order-page .summary-side .submitBtn {
  width: 100%;
}
.order-page .summary-side .submitBtn .fa {
  margin-left: 10px;
}
.order-page .summary-side .picture-holder {
  position: relative;
}
.order-page .summary-side .picture-holder .qty {
  position: absolute;
  top: -3px;
  right: 2px;
  background: #f15d22;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
}
.order-page .summary-side .picture-holder img {
  border-radius: 9px;
}

.order-finish-page .inner {
  margin-bottom: 100px;
}
.order-finish-page .thanks {
  background-color: #1AB869;
  margin-top: 20px;
  padding: 20px;
  border-radius: 15px;
  color: #fff;
}
.order-finish-page .thanks .fas {
  font-size: 30px;
}

.cart-holder .offcanvas-header {
  border-bottom: 1px solid #e4e9ef;
  background-color: #f1f4f6;
  padding-left: 50px;
}
.cart-holder .offcanvas-header .offcanvas-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 54px;
  height: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cart-holder .offcanvas-header .btn-close {
  cursor: pointer;
  position: absolute;
  top: 26px;
  right: 20px;
  width: 45px;
  height: 45px;
  color: #acb5bb !important;
  border: 1px solid #dedede;
  font-size: 18px;
  text-align: center;
  line-height: 41px;
  border-radius: 50%;
  padding: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.cart-holder .offcanvas-header .btn-close:hover {
  transform: rotate(360deg);
}
.cart-holder .offcanvas-body {
  padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
  background-color: #f1f4f6;
}
.cart-holder .offcanvas-body .webshop-cart {
  height: 100%;
}
.cart-holder .offcanvas-body .webshop-cart-products-list {
  max-height: calc(100% - 100px);
  overflow-y: scroll;
  overflow-x: hidden;
}
.cart-holder .offcanvas-body .webshop-cart-products-list .product-row {
  position: relative;
}
.cart-holder .offcanvas-body .webshop-cart-products-list .product-row .mini-product-image {
  border-radius: 9px;
  overflow: hidden;
}
.cart-holder .offcanvas-body .side-cart-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.cart-holder .offcanvas-body .side-cart-bottom .total-price {
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  color: #28334f;
  padding: 0 40px;
}
.cart-holder .offcanvas-body .side-cart-bottom .total-price .title-total {
  float: left;
  font-size: 16px;
}
.cart-holder .offcanvas-body .side-cart-bottom .total-price .price-total {
  float: right;
  width: auto;
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.cart-holder .offcanvas-body .side-cart-bottom .btn {
  border-radius: 0;
  border: none;
  display: block;
  float: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  height: 50px;
  padding: 0;
  line-height: 50px;
  color: #fff;
  background: #2a2a2a;
  width: 50%;
}
.cart-holder .offcanvas-body .side-cart-bottom .btn:hover, .cart-holder .offcanvas-body .side-cart-bottom .btn.finalize {
  background: #1AB869;
}
.cart-holder .offcanvas-body .side-cart-bottom .btn:first-of-type:hover {
  background: #f15d22;
}
.cart-holder .product-row {
  padding: 20px 80px 20px 40px;
  margin-bottom: 23px;
  border-bottom: 1px solid #e4e9ef;
}
.cart-holder .product-row .c-qty {
  background-color: #f15d22;
  color: #fff;
  text-align: center;
  line-height: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.cart-holder .product-row .cart-qty {
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #272524;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cart-holder .product-row .cart-price {
  line-height: 18px;
  color: #5b5a5a;
  font-size: 16px;
  font-weight: 400;
}
.cart-holder .product-row .product-link {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
}
.cart-holder .product-row .cart-action-delete {
  top: 20px;
  right: 35px;
  position: absolute;
}
.cart-holder .product-row .cart-action-delete:after {
  content: "\f00d" !important;
  display: inline-block;
  font-family: Font Awesome\ 5 Pro, sans-serif;
  font-weight: 900;
  color: #acb5bb;
}
.cart-holder .product-row .cart-action-delete:hover:after {
  color: #f15d22;
}

.login-page .card, .reg-page .card {
  border-radius: 0;
}
.login-page .card .card-header, .reg-page .card .card-header {
  padding: 25px 0;
  border-bottom: 1px solid #a2a2a2;
  text-align: center;
  text-transform: uppercase;
  color: #272524;
  font-size: 18px;
  letter-spacing: 1px;
  background: #f9f9f9;
}
.login-page .card .card-header .card-title, .reg-page .card .card-header .card-title {
  margin-bottom: 0;
}
.login-page .card .card-body, .reg-page .card .card-body {
  background: #f9f9f9;
  padding: 25px 30px;
}
.login-page .card .card-body .control-label, .reg-page .card .card-body .control-label {
  font-weight: 700;
  color: #333;
  margin-bottom: 17px;
}
.login-page .card .card-body .control-label .req, .reg-page .card .card-body .control-label .req {
  color: #F23822;
}
.login-page .card .card-body .form-control, .reg-page .card .card-body .form-control {
  display: block;
  width: 100%;
  height: 54px;
  padding: 6px 12px 6px 33px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555;
  border: 1px solid #a2a2a2;
  margin-bottom: 30px;
}
.login-page .card .card-body .lost-pass, .reg-page .card .card-body .lost-pass {
  color: #999;
  display: block;
  position: relative;
  text-decoration: underline;
}
.login-page .card .card-body .lost-pass:hover, .reg-page .card .card-body .lost-pass:hover {
  color: #f15d22;
  text-decoration: none;
}
.login-page .card .card-body .fa-eye, .reg-page .card .card-body .fa-eye {
  top: auto !important;
  bottom: 20px;
}
.login-page .card .card-body .reg-holder, .login-page .card .card-body .login-holder, .reg-page .card .card-body .reg-holder, .reg-page .card .card-body .login-holder {
  color: #999;
  border-top: 1px solid #a2a2a2;
  text-align: center;
}

.form-control {
  border-radius: 0;
  height: 54px;
}

.profile-page h1, .webshop-orders h1, .cart-page h1 {
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0;
}

.cart-page.profile-cart .summary-box {
  background: #f15d22;
  color: #fff;
  padding: 24px;
  border-radius: 21px;
}

.profile-page .address-box .select-box {
  border: 1px solid #a2a2a2;
  padding: 24px;
  border-radius: 12px;
}
.profile-page .address-box .select-box h3 {
  font-size: 22px;
}
.profile-page .address-box .select-box h4 {
  font-size: 18px;
}
@media (min-width: 768px) {
  .profile-page.profile-edit a.w-100 {
    width: auto !important;
  }
}
.profile-page .profile-icon {
  border: none;
  display: inline-block;
  background: #272524;
  text-align: center;
  padding: 80px 20px;
  font-size: 23px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 3px 24px rgba(0, 0, 0, 0.2);
}
.profile-page .profile-icon:hover {
  background: #f15d22;
}

.new-address {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.new-address:hover {
  background: #272524;
  color: #fff;
}

.thanks p {
  margin-bottom: 0;
}

.side-products {
  margin-top: 50px;
}
@media (min-width: 992px) {
  .side-products {
    position: sticky;
    top: 130px;
  }
}
.side-products .posts-title {
  padding: 0 26px;
}
.side-products .posts-title:before {
  display: none;
}
@media (min-width: 768px) {
  .side-products .post-item:not(:last-of-type) .post-item-inner {
    border-bottom: 1px solid #a2a2a2;
  }
}
.side-products .side-products-inner {
  padding: 10px 25px;
}
.side-products .side-products-inner .image-wrap {
  width: 95px;
  margin-right: 7px;
  margin-bottom: 0;
}
.side-products .side-products-inner .product-item .item-name a {
  margin: 0 0 10px;
}

.mobile-search-form {
  width: 100%;
}

.mobile-search-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-search-form .form-control:focus {
  border-color: #f15d22;
  box-shadow: 0 0 0 0.2rem rgba(241, 93, 34, 0.25);
  outline: none;
}

@media (min-width: 992px) {
  .mobile-search-form {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
