@font-face {
  font-family: Rubik-Medium;
  src: url(../fonts/Rubik-Medium.ttf);
}
@font-face {
  font-family: Rubik-Regular;
  src: url(../fonts/Rubik-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik-Regular", sans-serif;
}
*:focus {
  outline: none !important;
}
*::selection {
  background: #f79327;
  color: #fff;
}

body {
  position: relative;
  font-size: 16px;
  transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rubik-Medium", sans-serif;
  font-weight: normal;
}

a {
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
  padding: 0;
}

.header-banner {
  width: 100%;
  height: 286px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
.header-banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5215686275);
}
.header-banner .banner-title {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.header-banner .banner-title .post_meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .header-banner .banner-title .post_meta {
    flex-direction: row;
  }
}
.header-banner .banner-title .post_meta p {
  font-size: 14px;
  background: #f79327;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .header-banner .banner-title .post_meta p {
    margin-bottom: 0;
    margin-right: 10px;
    font-size: 16px;
  }
  .header-banner .banner-title .post_meta p:last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .header-banner {
    background-attachment: fixed;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .btn-dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #2b2b2b;
  cursor: pointer;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown .dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  z-index: 9999999;
  padding: 10px;
  border-radius: 6px;
}
.dropdown .dropdown-content a {
  color: #989898 !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 8px 16px;
}
.dropdown .dropdown-content a:hover {
  color: #f79327 !important;
}

.controllers-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  border-radius: 7px;
  padding: 30px 15px;
  margin-bottom: 8px;
  height: 200px;
}
.controllers-card .img-box {
  margin-right: 39px;
  width: 90px;
}
.controllers-card .content-box .title {
  font-size: 23px;
  color: #2B2B2B;
  font-weight: normal;
}
.controllers-card .content-box .content {
  color: #7A7A7A;
}

.product-card {
  position: relative;
  background: #fff;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 11px;
  width: 100%;
  padding: 15px 25px;
  transition: all 0.3s ease-in-out;
}
.product-card:hover {
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.25);
}
.product-card .img-box {
  position: absolute;
  left: 50%;
  top: -11px;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #f79327;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.product-card .img-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.product-card .product-code {
  margin-top: 40px;
}
.product-card .product-code h5 {
  font-size: 23px;
}
.product-card .product-name {
  margin-top: 8px;
}
.product-card .product-price {
  margin-top: 8px;
  font-size: 16px;
  color: #787878;
}

.single-product-card {
  background: white;
  border-radius: 11px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2705882353);
  margin-bottom: 25px;
}
.single-product-card:hover .hover-text {
  opacity: 1;
}
.single-product-card:hover .img {
  transform: scale(0.9);
}
.single-product-card .img-box {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.single-product-card .img-box img {
  object-fit: contain;
  height: 100%;
  transition: all 0.3s;
}
.single-product-card .hover-text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.72);
  z-index: 3;
  opacity: 0;
  transition: all 0.3s;
  padding: 10px;
  color: #f1f1f1;
  display: flex;
  align-items: center;
  font-size: 15px;
}
.single-product-card .product-code {
  padding: 5px;
}
.single-product-card .product-code p {
  text-align: center;
}

.ajax-result {
  padding: 5px 20px 8px;
  width: 100%;
}
.ajax-result .ajax-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 8px;
  padding-left: 8px;
}
.ajax-result .ajax-item:hover {
  background: rgba(156, 156, 156, 0.1294117647);
}
.ajax-result .ajax-item .image {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.ajax-result .ajax-item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ajax-result .ajax-item .content {
  display: flex;
  align-items: center;
}

.float-label-form div.form-group {
  position: relative;
}
.float-label-form div.form-group label {
  position: absolute;
  top: 0;
  transition: all 0.26s ease-in;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  z-index: 1;
  box-sizing: border-box;
  user-select: none;
  padding-left: 0 !important;
  margin-left: 0 !important;
  color: #b6b3b3;
  background-color: transparent !important;
}
.float-label-form div.form-group .form-control {
  border-radius: 0;
  background: none;
  position: relative;
  z-index: 2;
  border: 1px solid #d4d4d4;
}
.float-label-form .form-control {
  border: none !important;
  border-bottom: 1px solid #d4d4d4 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-size: 0.8rem !important;
}
.float-label-form .form-control:valid {
  background: #fff;
}
.float-label-form .form-control:focus {
  border-color: inherit;
  background: none;
  outline: none;
  box-shadow: none !important;
}
.float-label-form .form-control:valid, .float-label-form .form-control:focus {
  border-bottom-color: #f79327 !important;
}
.float-label-form .form-control:valid + label, .float-label-form .form-control:focus + label {
  color: #f79327;
  top: -9px;
  font-size: 88%;
  z-index: 2;
  padding: 0 5px;
  box-sizing: border-box;
  margin-left: 5px;
  background: #fff;
}

.btn-thema {
  display: inline-block;
  padding: 10px 15px;
  height: 38px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  background: #f79327 !important;
  border-radius: 7px;
}
.btn-thema:hover {
  box-shadow: 0 0 9px #f79327;
}

.news-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  border-radius: 7px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  margin-bottom: 15px;
  min-height: 351px;
  position: relative;
}
.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 19px rgba(0, 0, 0, 0.25);
}
.news-card .img-box {
  width: 100%;
  margin-bottom: 15px;
}
.news-card .img-box img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}
.news-card .title {
  color: #2b2b2b;
  font-size: 18px;
  padding: 10px 25px;
  margin-bottom: 0;
}
.news-card .content {
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 8px;
  color: #a1a1a1;
}
.news-card .content,
.news-card .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-card .keep-reading {
  position: absolute;
  bottom: 15px;
  left: 25px;
}
.news-card .keep-reading a {
  display: flex;
  align-items: center;
  color: #f79327;
}
.news-card .keep-reading a i {
  font-size: 14px;
}

#modal-login-form .close, #modal-forgot-password-form .close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #808080;
}
#modal-login-form .close i, #modal-forgot-password-form .close i {
  font-style: normal;
}
#modal-login-form .close:hover, #modal-forgot-password-form .close:hover {
  color: #f79327;
}
#modal-login-form .modal-title, #modal-forgot-password-form .modal-title {
  font-size: 1.4rem;
}
#modal-login-form .float-label-form .form-control:valid + label, #modal-login-form .float-label-form .form-control:focus + label, #modal-forgot-password-form .float-label-form .form-control:valid + label, #modal-forgot-password-form .float-label-form .form-control:focus + label {
  top: -14px;
}
#modal-login-form .modal-footer, #modal-forgot-password-form .modal-footer {
  border-top: none;
  padding: 0 38px 1rem;
}
#modal-login-form .password-box, #modal-forgot-password-form .password-box {
  text-align: right;
}
#modal-login-form .password-box a, #modal-forgot-password-form .password-box a {
  color: #979797;
  font-size: 14px;
}
#modal-login-form .password-box a:hover, #modal-forgot-password-form .password-box a:hover {
  color: #f79327;
}

#modal-forgot-password-form .modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#modal-forgot-password-form .modal-footer .btn-thema {
  width: 50%;
}
#modal-forgot-password-form .modal-footer .btn-back {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#modal-forgot-password-form .modal-footer .btn-back svg {
  margin-right: 8px;
  font-size: 24px;
}

.breadcrumbs_area {
  margin-bottom: 50px;
  background: rgba(15, 15, 15, 0.0196078431);
}
.breadcrumbs_area .breadcrumb_content {
  padding: 11px 0;
}
.breadcrumbs_area .breadcrumb_content a {
  transition: all 0.3s ease-in-out;
}
.breadcrumbs_area .breadcrumb_content a:hover {
  color: #f79327;
}

.carousel-cell {
  border-radius: 0;
  counter-increment: none;
  background-color: transparent;
}
.carousel-cell:before, .carousel-cell .carousel-cell__number {
  content: none;
}

.social {
  display: flex;
}
.social a {
  color: #fff;
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social a:hover {
  color: #2b2b2b;
}
.social a svg {
  font-size: 24px;
}

.contact-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
}
.contact-box .icon {
  color: #dadada;
  font-size: 20px;
  margin-right: 14px;
}
.contact-box .text a,
.contact-box .text p {
  color: #dadada;
  font-size: 14px;
}
.contact-box .text a:hover {
  color: #f79327;
}

.section-title {
  text-align: center;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-title h3, .section-title h1 {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.section-title h3:before, .section-title h1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 70%;
  height: 3px;
  background: #f79327;
  transform: translateX(-50%);
  border-radius: 50px;
}
.section-title h3 .line, .section-title h1 .line {
  position: absolute;
  width: 20px;
  height: 3px;
  background: #f79327;
  border-radius: 8px;
  margin-right: 5px;
  bottom: 3px;
  left: -21px;
}
.section-title h1 {
  font-size: 1.7rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  overflow: hidden;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  height: 100%;
}
.mobile-menu-content .btn-close-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.mobile-menu-content .btn-close-box a {
  width: 44px;
  height: 44px;
  color: #2b2b2b;
  font-size: 24px;
  border-radius: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-menu-content .btn-close-box a:hover {
  background: #efefef;
  border-radius: 25px;
}
.mobile-menu-content a {
  color: #979797;
}
.mobile-menu-content a:hover {
  color: #f79327;
}
.mobile-menu-content .nav-list, .mobile-menu-content .account {
  margin-top: 10px;
}
.mobile-menu-content .nav-list a, .mobile-menu-content .account a {
  display: block;
  height: 35px;
  line-height: 35px;
}
.mobile-menu-content .social {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translate(-50%, -50%);
}
.mobile-menu-content .account {
  padding-top: 14px;
  font-size: 14px;
}
.mobile-menu-content .account .title {
  font-size: 18px;
}
.mobile-menu-content .dropdown .btn-dropdown {
  justify-content: flex-start;
}
.mobile-menu-content .dropdown .dropdown-content {
  left: 0;
}

.search-show {
  overflow: visible !important;
  width: 95% !important;
}
@media (min-width: 768px) {
  .search-show {
    width: 100% !important;
  }
}
.search-show .btn-search-close {
  opacity: 1 !important;
}
@media (min-width: 992px) {
  .search-show {
    width: 79% !important;
  }
}
.search-show .ajax-result {
  border-bottom-right-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

.sticky-header.sticky {
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fff;
}

.pagination {
  border: 0 !important;
}
.pagination ul li {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.pagination ul li, .pagination ul li a {
  border-radius: 50%;
}
.pagination ul li.current, .pagination ul li a:hover {
  background: #f79327;
  color: #fff;
  box-shadow: 0 0 9px #f79327;
}

.shop_toolbar {
  border: 0 !important;
}

.header-top {
  background: #F4F4F4;
}
.header-top .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  .header-top .container {
    justify-content: space-between;
  }
}
.header-top-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
.header-top-left .contact-box {
  margin-bottom: 0;
  align-items: center;
}
.header-top-left .contact-box > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-top-left .contact-box a {
  color: #979797;
}
.header-top-left .contact-box a:hover {
  color: #f79327;
}
.header-top-left .contact-box .icon {
  color: #979797;
  margin-right: 5px;
  height: 30px;
}
.header-top-left .contact-box .text {
  height: 30px;
}
.header-top-left .contact-box:first-child {
  margin-right: 10px;
}
.header-top-middle {
  display: none;
}
@media (min-width: 992px) {
  .header-top-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }
}
.header-top-middle .social {
  display: flex;
}
.header-top-middle .social a {
  color: #979797;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-top-middle .social a:hover {
  color: #f79327;
}
.header-top-right {
  display: none;
}
.header-top-right .btn-dropdown {
  color: #979797;
}
@media (min-width: 992px) {
  .header-top-right {
    display: flex;
    align-items: center;
  }
}
.header-top-right .account {
  display: flex;
  align-items: center;
  margin-right: 15px;
  color: #979797;
}
.header-top-right .account .dropdown .dropdown-content {
  width: 208px;
}
.header-top-right .account .icon {
  margin-right: 6px;
  font-size: 22px;
}
.header-top-right .account span {
  margin-left: 3px;
  margin-right: 3px;
}
.header-middle {
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-middle .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-middle-left {
  width: 150px;
}
.header-middle-left a {
  display: block;
}
.header-middle-nav {
  display: none;
}
@media (min-width: 992px) {
  .header-middle-nav {
    display: block;
  }
}
.header-middle-nav .nav-list {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-middle-nav .nav-list .nav-item {
  margin-right: 21px;
}
.header-middle-nav .nav-list .nav-item.active > a {
  color: #f79327;
}
.header-middle-nav .nav-list .nav-item.active > a:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 70%;
  background: #f79327;
  border-radius: 10px;
}
.header-middle-nav .nav-list .nav-item a {
  color: #2b2b2b;
  position: relative;
}
.header-middle-nav .nav-list .nav-item a:hover {
  color: #f79327;
}
.header-middle-nav .nav-list .nav-item .dropdown .btn-dropdown {
  padding-top: 8px;
  padding-bottom: 8px;
}
.header-middle-nav .nav-list .nav-item .dropdown-content {
  top: 38px;
  left: -5px;
  width: 320px;
}
.header-middle-nav .nav-list .nav-item .dropdown-content a {
  padding: 8px 10px;
}
.header-middle-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-middle-right .btn-search-show, .header-middle-right .btn-mobil-menu {
  margin-right: 8px;
  font-size: 28px;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: #2b2b2b;
}
.header-middle-right .btn-search-show:hover, .header-middle-right .btn-mobil-menu:hover {
  background: #fbb569;
  border-radius: 25px;
}
.header-middle-right .account {
  display: none;
}
@media (min-width: 992px) {
  .header-middle-right .account {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.header-middle-right .account .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin-right: 3px;
}
.header-middle-right .account span {
  margin-left: 2px;
  margin-right: 2px;
}
.header-middle-right .account a {
  color: #2b2b2b;
}
.header-middle-right .account a:hover {
  color: #f79327;
}
@media (min-width: 992px) {
  .header-middle-right .btn-mobil-menu {
    display: none;
  }
}
.header-middle .search-container {
  position: absolute;
  right: 0;
  margin-right: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.3s ease-in;
}
.header-middle .search-container .btn-search-close {
  position: absolute;
  left: 2px;
  z-index: 111;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #e0e0e0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.168627451);
  opacity: 0;
}
.header-middle .search-container .search_box {
  background: #F6F6F6;
  border: 1px solid #F6F6F6;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.header-middle .search-container .search_box button {
  background: transparent;
  color: #f79327;
}
.header-middle .search-container .search_box button:hover {
  background: rgba(156, 156, 156, 0.1294117647) !important;
}
.header-middle .search-container .ajax-result {
  position: absolute;
  background: #F6F6F6;
  z-index: 9999;
}

.home-slider {
  height: 128px;
  width: 100%;
}
@media (min-width: 768px) {
  .home-slider {
    height: 274px;
  }
}
@media (min-width: 992px) {
  .home-slider {
    height: 368px;
  }
}
.home-slider .flickity-viewport {
  height: 168px !important;
}
@media (min-width: 768px) {
  .home-slider .flickity-viewport {
    height: 100% !important;
  }
}
.home-slider .flickity-page-dots {
  bottom: -24px;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .home-slider .flickity-page-dots {
    bottom: 10px;
  }
}
.home-slider .flickity-page-dots .dot {
  background: #ffffff;
}
.home-slider .carousel-cell {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
@media (min-width: 768px) {
  .home-slider .carousel-cell {
    height: 100%;
    background-size: cover;
  }
}
.home-slider .slider_content {
  padding: 29px 0 0 0;
  width: 100%;
}
@media (min-width: 768px) {
  .home-slider .slider_content {
    padding: 36px 0 0 0;
  }
}
@media (min-width: 992px) {
  .home-slider .slider_content {
    padding: 80px 0 0 0;
    width: 50%;
  }
}
.home-slider .slider_content h2 {
  font-size: 21px;
  max-width: 385px;
  font-style: normal;
  color: #fff;
  font-weight: 500;
  font-family: "Rubik-Medium", sans-serif;
}
.home-slider .slider_content h2:before {
  content: none;
}
@media (min-width: 768px) {
  .home-slider .slider_content h2 {
    font-size: 28px;
    margin-bottom: 27px !important;
    line-height: 42px;
  }
}
@media (min-width: 992px) {
  .home-slider .slider_content h2 {
    font-size: 33px;
  }
}
.home-slider .slider_content p {
  color: #fff;
  font-weight: normal;
}

.features-card .icon {
  color: #f79327;
  font-size: 36px;
}
.features-card .title {
  font-size: 24px;
  margin-top: 8px;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.features-card .content p {
  font-size: 14px;
  text-align: justify;
  color: #787878;
  margin-bottom: 1rem;
}
.features .img-box {
  height: 500px;
  display: flex;
  justify-content: center;
}
.features .img-box img {
  height: 100%;
  border-radius: 26px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.19);
}

.featured-products .section-title {
  margin-bottom: 25px;
}
.featured-products .product_carousel {
  background: #fff;
  margin-bottom: 0;
}
.featured-products .product_carousel .flickity-viewport {
  padding-top: 5px;
  height: 360px !important;
}
.featured-products .product_carousel .flickity-viewport .carousel-cell {
  width: 99%;
}
@media (min-width: 768px) {
  .featured-products .product_carousel .flickity-viewport .carousel-cell {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .featured-products .product_carousel .flickity-viewport .carousel-cell {
    width: 28%;
  }
}
.featured-products .product_carousel .product-card {
  margin-left: 2px;
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  padding: 5px 10px;
}
.featured-products .product_carousel .product-card a {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.featured-products .product_carousel .product-card a .product-card-thumbnail {
  position: relative;
  height: 282px;
  width: 282px;
  display: flex;
  align-items: center;
}
.featured-products .product_carousel .product-card a .product-card-thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.featured-products .product_carousel .product-card a .product-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.featured-products .product_carousel .product-card a .product-card-text h5, .featured-products .product_carousel .product-card a .product-card-text p {
  word-break: break-word;
}
.featured-products .product_carousel .product-card a .product-card-text .product-code {
  margin-top: 0;
}
.featured-products .product_carousel .flickity-prev-next-button {
  color: #f79327;
  background: transparent;
  top: -16%;
}
@media (min-width: 768px) {
  .featured-products .product_carousel .flickity-prev-next-button {
    top: 44%;
  }
}
.featured-products .product_carousel .flickity-prev-next-button:hover {
  transition: all 0.3s;
}
.featured-products .product_carousel .flickity-prev-next-button.previous {
  left: 10px;
}
@media (min-width: 768px) {
  .featured-products .product_carousel .flickity-prev-next-button.previous {
    left: -35px;
  }
}
@media (min-width: 992px) {
  .featured-products .product_carousel .flickity-prev-next-button.previous {
    left: -50px;
  }
}
.featured-products .product_carousel .flickity-prev-next-button.next {
  right: 10px;
}
@media (min-width: 768px) {
  .featured-products .product_carousel .flickity-prev-next-button.next {
    right: -35px;
  }
}
@media (min-width: 992px) {
  .featured-products .product_carousel .flickity-prev-next-button.next {
    right: -50px;
  }
}

.controllers .controllers_carousel {
  background: #fff;
}
.controllers .controllers_carousel .flickity-viewport {
  padding-top: 26px;
  height: 300px !important;
}
.controllers .controllers_carousel .flickity-viewport .carousel-cell {
  width: 99%;
}
@media (min-width: 768px) {
  .controllers .controllers_carousel .flickity-viewport .carousel-cell {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .controllers .controllers_carousel .flickity-viewport .carousel-cell {
    width: 49.4%;
  }
}
.controllers .controllers_carousel .controllers-card {
  margin-left: 2px;
  width: 100%;
}

.fixtures .section-title {
  margin-bottom: 25px;
}
.fixtures-card {
  display: flex;
  justify-content: flex-start;
  background: #FCFCFC;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  overflow: hidden;
}
.fixtures-card .img-box {
  height: 100%;
}
.fixtures-card .img-box img {
  height: 100%;
  width: 350px;
  object-fit: cover;
}
.fixtures-card .content {
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fixtures-card .content .title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #2b2b2b;
}
.fixtures-card .content a {
  color: #767676;
}
.fixtures-card .content a:hover {
  color: #f79327;
}

.news, .events {
  background: #f9f9f9;
  padding-top: 50px;
  padding-bottom: 75px;
}
.news .section-title, .events .section-title {
  margin-bottom: 35px;
}

.events {
  background: #efefef;
}

.about-us {
  padding-bottom: 50px;
}
.about-us .section-title {
  margin-top: 25px;
  margin-bottom: 25px;
}
.about-us .article-text {
  text-align: justify;
}
@media (min-width: 992px) {
  .about-us .article-text {
    text-align: left;
  }
}
.about-us .article-text img {
  border-radius: 6px;
}

.shop_area {
  margin-top: 0 !important;
}
.shop_area .shop_title {
  margin-top: 20px;
}
.shop_area .widget-inner h5.title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.shop_area .carousel {
  height: 100% !important;
  background: transparent !important;
  margin-right: 0;
}
.shop_area .carousel:hover .flickity-prev-next-button {
  opacity: 1;
}
.shop_area .carousel .flickity-viewport {
  height: 409px !important;
}
.shop_area .carousel .flickity-button:disabled {
  display: none;
}
.shop_area .carousel .flickity-prev-next-button {
  color: #f79327;
  opacity: 0;
}
.shop_area .carousel-cell {
  width: 352px;
  padding: 5px;
  height: 100%;
}

.class-product .header-banner {
  padding-top: 20px;
  padding-bottom: 20px;
  height: auto;
  min-height: 286px;
}
.class-product .header-banner .category-active .title {
  color: #f79327;
}
.class-product .header-banner .banner-title {
  position: relative;
  top: auto;
  left: 0;
  transform: none;
  text-align: left;
}
.class-product .header-banner .banner-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.class-product .header-banner .banner-content a {
  margin-right: 10px;
}
.class-product .header-banner .banner-content a .category-header-box {
  background: #fff;
  width: 150px;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .class-product .header-banner .banner-content a .category-header-box {
    margin-bottom: 0;
  }
}
.class-product .header-banner .banner-content a .category-header-box .img-box {
  width: 100%;
  height: 110px;
}
.class-product .header-banner .banner-content a .category-header-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.class-product .header-banner .banner-content a .category-header-box .text-content {
  height: 60px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.class-product .header-banner .banner-content a .category-header-box .text-content h4 {
  margin-bottom: 0;
  text-align: center;
}

.product_details {
  margin-top: 20px;
  margin-bottom: 20px;
}
.product_details .product-detail-area {
  margin-top: 25px;
  margin-bottom: 25px;
}
.product_details .product-detail-area .row {
  flex-direction: column;
}
@media (min-width: 992px) {
  .product_details .product-detail-area .row {
    flex-direction: row;
  }
}
.product_details .product-detail-area .detail-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e7e7e7;
  padding: 20px;
  border-radius: 11px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.0901960784);
  margin-bottom: 10px;
  height: 591px;
  cursor: zoom-in;
}
.product_details .product-detail-area .detail-img-box a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.product_details .product-detail-area .detail-img-box img {
  height: 100% !important;
  object-fit: contain;
}
.product_details .product-detail-area .product-code {
  margin-bottom: 10px;
  font-size: 2.2rem;
  color: #565656;
}
.product_details .product-detail-area .description {
  color: #6c757d !important;
  padding-bottom: 10px;
}
.product_details .benefits, .product_details .technical-data {
  margin-top: 25px;
  padding-bottom: 10px;
}
.product_details .benefits h5, .product_details .technical-data h5 {
  font-size: 1rem;
  margin-top: 10px;
  font-family: "Rubik-Regular", sans-serif;
}
.product_details .benefits li, .product_details .technical-data li {
  color: grey;
}

.blog-detail-banner {
  height: 295px;
  background-size: cover;
}
@media (min-width: 768px) {
  .blog-detail-banner {
    height: 400px;
  }
}
.blog-detail-banner h1 {
  font-size: 31px;
}
@media (min-width: 768px) {
  .blog-detail-banner h1 {
    font-size: 48px;
  }
}

.blog_details .blog-detail-img {
  width: 100%;
}
.blog_details .blog-detail-img img {
  border-radius: 6px;
  max-height: 1000px;
}
.blog_details .blog_thumb {
  width: 100%;
  margin-bottom: 25px;
}
.blog_details .blog_thumb .header-banner {
  height: 380px;
}
.blog_details .blog_thumb a {
  display: block;
}
.blog_details .blog_content .post_meta {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
@media (min-width: 768px) {
  .blog_details .blog_content .post_meta {
    flex-direction: row;
    align-items: center;
  }
}
.blog_details .blog_content .post_meta p {
  margin-bottom: 0;
  margin-right: 25px;
  color: #b1b1b1;
}
.blog_details .blog_content .post_content {
  color: grey;
}
.blog_details .entry_content {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.blog_details .entry_content .social_sharing a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.blog_details .entry_content .social_sharing a:hover {
  background: #f79327;
  color: #fff;
}

.blog_page_section .section-title {
  margin-bottom: 25px;
  margin-top: 25px;
}
.blog_page_section .catalog-item {
  margin-bottom: 8px;
}
.blog_page_section .catalog-item, .blog_page_section .catalog-item img {
  transition: all 0.3s ease-in-out;
}
.blog_page_section .catalog-item:hover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
.blog_page_section .catalog-item:hover img {
  transform: scale(0.9);
}

.contact_area .section-title {
  margin-top: 35px;
  margin-bottom: 35px;
}
.contact_area .contact-us-map iframe {
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.contact_area .contact_info {
  margin-top: 50px;
}
.contact_area .contact_info .page-contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 23px;
}
@media (min-width: 992px) {
  .contact_area .contact_info .page-contact-box {
    margin-bottom: 0;
  }
}
.contact_area .contact_info .page-contact-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(156, 156, 156, 0.1215686275);
  color: #f79327;
  font-size: 28px;
  margin-bottom: 8px;
  border-radius: 100%;
}
.contact_area .contact_info .page-contact-box .text {
  text-align: center;
}

.register {
  padding-bottom: 50px;
}
.register .section-title {
  margin-top: 35px;
  margin-bottom: 35px;
}
.register .form-group input {
  height: 45px;
}

.error_form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 992px) {
  .error_form {
    padding-top: 90px;
  }
}
.error_form h1 {
  line-height: 30px;
  margin-bottom: 58px;
  color: #f79327;
  font-size: 95px;
}
.error_form a {
  background: #f79327 !important;
}
.error_form a:hover {
  box-shadow: 0 0 9px #f79327;
}

.dashboard_tab_button .menu-list-header {
  justify-content: flex-start;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.dashboard_tab_button .menu-list-header h3 {
  font-size: 19px;
  text-align: left;
}
.dashboard_tab_button ul li a {
  background: #fff;
  color: #4d4d4d;
  font-family: "Rubik-Medium", sans-serif;
  position: relative;
}
.dashboard_tab_button ul li a:hover {
  background: #f9f9f9;
  color: inherit;
}
.dashboard_tab_button ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #f79327;
  z-index: 3;
  display: none;
}
.dashboard_tab_button ul li a.active {
  background: #f9f9f9;
}
.dashboard_tab_button ul li a.active:before {
  display: block;
}

.account_dashboard .section-title {
  margin-bottom: 20px;
}

.account-info .float-label-form .form-control:valid + label, .account-info .float-label-form .form-control:focus + label {
  top: -13px;
}

.change-password .forget-password {
  color: #979797;
  font-size: 14px;
}
.change-password .forget-password:hover {
  color: #f79327;
}

.footer {
  padding-top: 25px;
  width: 100%;
  background: #2b2b2b;
}
.footer h5 {
  color: #ffffff;
  margin-bottom: 8px;
  padding-top: 15px;
}
.footer .company-info .logo {
  margin-bottom: 20px;
  text-align: left !important;
  width: 150px;
}
.footer .company-info .title {
  color: #ffffff;
  font-family: "Rubik-Medium", sans-serif;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.footer .company-info .content {
  color: #dadada;
  font-size: 13px;
}
.footer .footer-list .menu-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
}
.footer .footer-list .menu-list a {
  height: 30px;
  line-height: 30px;
  display: inline-block;
  color: #dadada;
}
.footer .footer-list .menu-list a:hover {
  color: #f79327;
}
.footer .copyright {
  background: #f79327;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 10px;
}
.footer .copyright .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer .copyright .content {
    flex-direction: row;
  }
}
.footer .copyright .content .copyright-logo {
  width: 16px;
  height: 16px;
  display: inline-block;
}
.footer .copyright .content p {
  margin-bottom: 5px;
  color: #a04900;
  font-size: 13px;
}
@media (min-width: 768px) {
  .footer .copyright .content p {
    margin-bottom: 0;
  }
}
.footer .copyright .content p a {
  color: #2b2b2b;
}
.footer .copyright .social a svg {
  font-size: 20px;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.float-form div.form-group {
  position: relative;
}
.float-form div.form-group label {
  position: absolute;
  top: 0;
  transition: all 0.26s ease-in;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  z-index: 1;
  box-sizing: border-box;
  user-select: none;
  padding-left: 0 !important;
  margin-left: 0 !important;
  color: #b6b3b3;
  background-color: transparent !important;
}
.float-form div.form-group .form-control {
  border-radius: 0;
  background: none;
  position: relative;
  z-index: 2;
  border: 1px solid #d4d4d4;
  padding-bottom: 6px;
  margin-bottom: 25px;
}
.float-form .form-control {
  border: none !important;
  border-bottom: 1px solid #d4d4d4 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-size: 0.8rem !important;
}
.float-form .form-control:valid {
  background: #fff;
}
.float-form .form-control:focus, .float-form .form-control.float {
  border-color: inherit;
  background: none;
  outline: none;
  box-shadow: none !important;
  border-bottom-color: #f79327 !important;
}
.float-form .form-control:focus + label, .float-form .form-control.float + label {
  color: #f79327;
  top: -13px !important;
  font-size: 88%;
  z-index: 2;
  padding: 0 5px;
  box-sizing: border-box;
  margin-left: 5px;
  background: #fff;
}

.my-orders .table-responsive tbody tr td {
  vertical-align: middle;
  min-width: inherit !important;
}
.my-orders .pagination ul li, .my-orders .pagination ul li a {
  border-radius: 4px;
}
.my-orders .pagination ul li.current, .my-orders .pagination ul li a:hover {
  box-shadow: none;
}
.my-orders .user-order-list-table th {
  color: #2b2b2b;
}
.my-orders .user-order-list-table td a {
  font-family: "Rubik-Medium", sans-serif;
  color: #2b2b2b;
}

.my-order-details .order-detail-text-box > span {
  color: #2b2b2b !important;
  margin-right: 5px;
}
.my-order-details .order-detail-text-box > span + span {
  color: #979797 !important;
}
.my-order-details .tabs-wrapper {
  width: 100%;
}
.my-order-details .table-responsive {
  display: table;
}
.my-order-details .nav-tabs {
  border: none;
}
.my-order-details .nav-tabs .nav-item.show .nav-link,
.my-order-details .nav-tabs .nav-link.active {
  color: #f79327 !important;
  background-color: transparent;
  border-bottom: 3px solid #f79327 !important;
}
.my-order-details .nav-tabs .nav-link {
  color: rgba(0, 0, 0, 0.6) !important;
  border: none;
}
.my-order-details .nav-tabs .nav-link:hover {
  background: #f5f5f5;
}

.my-order-details .order-detail-text-box > span {
  color: #2b2b2b !important;
  margin-right: 5px;
}
.my-order-details .order-detail-text-box > span + span {
  color: #979797 !important;
}
.my-order-details .photo-tabs .nav-tabs .nav-link {
  border-radius: 0.25rem;
}
.my-order-details .photo-tabs .nav-tabs .nav-link.active {
  border: none !important;
  background: rgba(224, 224, 224, 0.6) !important;
  color: inherit !important;
}
.my-order-details .checklist-item tr {
  height: 40px;
  min-height: 40px;
}
.my-order-details .checklist-item .img-box img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.my-order-details .checklist-item .img-box .movie-thumnail video {
  width: 40px;
  height: 40px;
}

.tab-sub-title {
  display: block;
}

.pdf-card {
  display: block;
  background-color: #f7f7f7;
  padding: 10px;
  margin-bottom: 15px;
}
.pdf-card:hover {
  background-color: #e2e2e2;
}
.pdf-card a {
  display: flex;
  color: #333;
  justify-content: space-between;
  align-items: center;
}
.pdf-card img {
  max-height: 50px;
}
.pdf-card .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.pdf-card .name {
  display: block;
  font-weight: 600;
  text-align: right;
}
.pdf-card .date {
  display: block;
  font-size: 10px;
  line-height: 10px;
}

/* //////////////////////////////// WHATSAPP WRAP //////////////////////////////// */
.fixed-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  width: 40px;
  height: 40px;
}

#whatsapp-wrap {
  position: fixed;
  top: calc(50% - 200px);
  left: 0;
  overflow: visible;
  z-index: 1010;
}

#professional-whatsapp-passive {
  position: absolute;
  top: 0;
  left: -230px;
  width: 300px;
  height: 70px;
  line-height: 70px;
  font-size: 18px;
  color: #fff;
  padding-right: 15px;
  padding-left: 80px;
  background-color: #ef7724;
  box-shadow: -5px 5px 0 0 rgba(0, 0, 0, 0.2);
  transition-duration: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  cursor: pointer;
  direction: inherit;
  letter-spacing: 1px;
  z-index: 33;
  font-weight: 500;
  font-family: "Segoe UI", "Segoe WP", "Segoe Regular", sans-serif;
}

#professional-whatsapp-passive:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

#professional-whatsapp-passive:before {
  background: url(../images/wp-passive.png.webp) no-repeat 17px center;
}

#whatsapp-text {
  background: url(../images/wp-text.png.webp) no-repeat center 0;
}

#whatsapp-wrap.active #professional-whatsapp-passive {
  left: -310px;
}

#professional-whatsapp-active {
  position: absolute;
  top: 70px;
  left: -250px;
  width: 250px;
  height: 300px;
  text-align: center;
  background-color: #ef7724;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.2);
}

#whatsapp-wrap.active #professional-whatsapp-active {
  left: 0;
}

#whatsapp-close {
  float: left;
  width: 100%;
  padding: 10px 15px;
  box-sizing: border-box;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

#whatsapp-text {
  float: left;
  width: 100%;
  font-size: 21px;
  color: #fff;
  text-transform: capitalize;
  padding-top: 80px;
  margin: 20px 0 30px;
  font-family: "Segoe UI", "Segoe WP", "Segoe Regular", sans-serif;
}

#whatsapp-link {
  display: inline-block;
  width: 150px;
  line-height: 35px;
  font-size: 21px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 2px;
}

@media screen and (max-width: 769px) {
  #whatsapp-wrap {
    top: calc(60% - 150px);
  }
  #professional-whatsapp-passive {
    left: -200px;
    width: 240px;
    height: 40px;
    line-height: 40px;
    padding-right: 0;
    padding-left: 40px;
    overflow: hidden;
  }
  #professional-whatsapp-passive:before {
    width: 40px;
    height: 40px;
    background-size: 50%;
    -moz-background-size: 50%;
    -o-background-size: 50%;
    -webkit-background-size: 50%;
    background-position: 10px center;
  }
  #professional-whatsapp-active {
    top: 40px;
    height: 250px;
  }
  #whatsapp-text {
    line-height: 22px;
    font-size: 18px;
    padding-top: 70px;
    margin: 10px 0 20px;
  }
}

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