@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}
body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-track {
  background: #2a2a2a;
}
body::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#f88a25), to(#f4d563));
  background: linear-gradient(to bottom, #f88a25, #f4d563);
  border-radius: 50px;
  opacity: 0.8;
}
body::-webkit-scrollbar-thumb:hover {
  background: #f88a25;
  opacity: 1;
}

a {
  text-decoration: none !important;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

img {
  max-width: 100%;
  width: 100%;
}

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

section {
  position: relative;
  overflow: hidden;
}

.page-section {
  padding-top: 125px;
  padding-bottom: 50px;
  position: relative;
}

.modal {
  padding: 0 !important;
  z-index: 9050;
}
.modal .modal-dialog {
  margin: auto;
  max-width: 992px;
  padding: 10px;
}
.modal .modal-content {
  -webkit-box-shadow: 0 0 16px rgb(0, 0, 0);
          box-shadow: 0 0 16px rgb(0, 0, 0);
}
.modal .modal-content .modal-header {
  background: #2a2a2a;
}
.modal .modal-content .modal-header h5 {
  color: white;
  font-weight: 600;
  font-style: italic;
}
.modal .modal-content .modal-header .close {
  color: white;
}

.modal-backdrop {
  z-index: 9049;
  opacity: 0.75;
}

.lb-nav a.lb-next {
  background: url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.1/images/next.png) right 48% no-repeat;
}

.lb-nav a.lb-prev {
  background: url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.1/images/prev.png) left 48% no-repeat;
}

.scroll-down {
  cursor: pointer;
  z-index: 6;
  -webkit-filter: drop-shadow(2px 4px 12px black);
          filter: drop-shadow(2px 4px 12px black);
  margin: 30px auto 0;
}
.scroll-down a {
  height: 90px;
  width: 120px;
}
.scroll-down span {
  font-weight: 400;
  font-size: 16px;
  color: #FEFEFD;
  position: absolute;
  letter-spacing: 2px;
  bottom: 0;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
.scroll-down .chevron {
  position: absolute;
  width: 32px;
  height: 2px;
  left: 50%;
  opacity: 0;
  margin-left: -16px;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
  -webkit-animation: move 3s ease-out infinite;
          animation: move 3s ease-out infinite;
}
.scroll-down .chevron:first-child {
  -webkit-animation: move 3s ease-out 1s infinite;
          animation: move 3s ease-out 1s infinite;
}
.scroll-down .chevron:nth-child(2) {
  -webkit-animation: move 3s ease-out 2s infinite;
          animation: move 3s ease-out 2s infinite;
}
.scroll-down .chevron:before,
.scroll-down .chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}
.scroll-down .chevron:before {
  left: 0;
  -webkit-transform: skew(0deg, 30deg);
          transform: skew(0deg, 30deg);
}
.scroll-down .chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skew(0deg, -30deg);
          transform: skew(0deg, -30deg);
}
@-webkit-keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

#window-loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(-35deg, #bfbfbf, #f4f4f4, #acacac);
}
#window-loader .logo {
  display: inline-block;
  max-width: 100%;
  padding: 10px;
}
#window-loader .logo img {
  -webkit-animation: loader-anime 2s linear infinite;
          animation: loader-anime 2s linear infinite;
}

@-webkit-keyframes loader-anime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes loader-anime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
.text-orange {
  color: #f88a25;
}

.heading-one {
  position: relative;
  margin: 0 0 15px 0;
  padding: 5px 0;
}
.heading-one:after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  height: 2px;
  width: 100%;
  z-index: 1;
  background: #f88a25;
  opacity: 0.5;
}
.heading-one h2, .heading-one h1, .heading-one h3 {
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin: 0;
  position: relative;
  z-index: 2;
  background: #f88a25;
  border-radius: 25px;
  padding: 10px 20px;
  display: inline-block;
}

.heading-three {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
.heading-three small {
  font-size: 16px;
  color: #7e4c4f;
  font-weight: 700;
}
.heading-three h1, .heading-three h2, .heading-three h3 {
  color: #f88a25;
  font-size: 2.5rem;
  font-weight: 700;
}

.custom-file-label {
  color: black;
}
.custom-file-label:after {
  content: "İncele";
}

.form-one {
  padding: 10px;
}
.form-one .form-group label {
  display: inline-block;
  padding: 2px 10px;
  color: #f88a25;
  font-weight: 600;
  border-bottom: 1px solid #f88a25;
}
.form-one .form-group label.error {
  color: #d40003;
}
.form-one .form-group .input-style {
  display: block;
  width: 100%;
  background-color: #fbfbfb;
  border: 1px solid #f88a25;
  border-radius: 10px;
  padding: 7px 10px;
  outline: none;
  color: #f88a25;
}
.form-one .form-group .select2-container .select2-selection--single {
  height: 38px;
  border: 1px solid #f88a25;
  border-radius: 10px;
  background-color: #fbfbfb;
  outline: none;
}
.form-one .form-group .select2-container .select2-selection--single .select2-selection__arrow {
  top: 5px;
}
.form-one .form-group .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
  color: #757575;
}

.btn-one {
  font-weight: 600;
  padding: 7px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px;
}

.btn-orange {
  border: 2px solid #263235;
  background: #f88a25;
  color: #263235;
}
.btn-orange:hover {
  background: white;
  color: #f88a25;
  background: #263235;
}

.btn-lilac {
  border: 2px solid #263235;
  background: #c4cce4;
  color: #3d2c56;
}
.btn-lilac:hover {
  background: white;
  color: #c4cce4;
  background: #3d2c56;
}

.breadcrumb {
  padding: 0;
  border-radius: 0;
  margin: 184px 0 0;
}
.breadcrumb .head {
  width: 100%;
}
.breadcrumb .head img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.breadcrumb .direction {
  width: 100%;
  text-align: right;
  max-width: 1140px;
  padding: 10px 15px;
  margin: 0 auto;
}
.breadcrumb .direction .link {
  font-size: 14px;
  font-weight: 600;
}
.breadcrumb .direction .link a {
  color: #263235;
}
.breadcrumb .direction .link:after {
  content: "/";
  position: relative;
  margin: 0 5px 0 7px;
  color: #263235;
}
.breadcrumb .direction .link.current-page {
  color: #f88a25;
}
.breadcrumb .direction .link.current-page:after {
  display: none;
}

i.curtain {
  position: fixed;
  z-index: 8998;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
i.curtain.opened {
  top: 0;
  opacity: 1;
  visibility: visible;
}

header {
  position: fixed;
  z-index: 9000;
  width: 100%;
  z-index: 9000;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 5px 15px gray;
          box-shadow: 0 5px 15px gray;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .top {
  background: #263235;
  padding: 5px 0;
  position: relative;
  overflow: hidden;
  height: 41px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .top .social-media, header .top .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .top .social-media a, header .top .contact a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  color: white;
}
header .top .social-media a span, header .top .contact a span {
  padding-left: 5px;
  font-size: 14px;
}
header .top .social-media a i, header .top .contact a i {
  font-size: 20px;
  color: #f88a25;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .top .social-media a .fa-facebook:hover, header .top .contact a .fa-facebook:hover {
  color: #3b5998;
}
header .top .social-media a .fa-instagram:hover, header .top .contact a .fa-instagram:hover {
  color: #bc2a8d;
}
header .top .social-media a .fa-youtube:hover, header .top .contact a .fa-youtube:hover {
  color: red;
}
header .top .social-media {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  text-align: right;
}
header .top .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .top .user .contact-link {
  margin-right: 20px;
}
header .top .user a {
  color: white;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .top .user a i {
  font-size: 18px;
  margin-right: 5px;
  color: #f88a25;
}
header .top .user a:nth-of-type(n+3) {
  padding-left: 5px;
  margin-left: 8px;
  position: relative;
}
header .top .user a:nth-of-type(n+3):before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-left: 1px dashed;
}
header .middle {
  background: white;
}
header .middle .container {
  position: relative;
}
header .middle .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
  max-width: 240px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
header .middle .logo a {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
header .middle .right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 240px);
          flex: 0 0 calc(100% - 240px);
  max-width: calc(100% - 240px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .middle .right .tools-menu {
  text-align: right;
}
header .middle .right .tools-menu .top-search {
  display: inline-block;
  margin-right: 20px;
}
header .middle .right .tools-menu .top-search button {
  background: white;
  border: none;
  cursor: pointer;
  color: #f88a25;
  float: right;
  width: 40px;
  height: 40px;
  display: inline;
  padding: 0;
  border: none;
  outline: none;
  margin-left: -50px;
  position: relative;
  right: 5px;
  top: 5px;
  border-radius: 25px;
  z-index: 20;
}
header .middle .right .tools-menu .top-search .select-category {
  display: inline-block;
  position: relative;
}
header .middle .right .tools-menu .top-search .select-category:after {
  content: "";
  position: absolute;
  width: calc(100% + 80px);
  height: 100%;
  border: 2px solid #f88a25;
  border-radius: 50px;
  z-index: 0;
  left: -10px;
  top: 1px;
}
header .middle .right .tools-menu .top-search .select-category select {
  padding: 15px 5px 15px 10px;
  border-radius: 50px 0 0 50px;
  font-size: 14px;
  border: none;
  position: relative;
  z-index: 10;
  background: transparent;
  outline: none;
}
header .middle .right .tools-menu .top-search input {
  font-size: 13px;
  width: 360px;
  padding: 15px 15px;
  color: #263235;
  margin: 0;
  max-width: 100%;
  background: #f88a25;
  border: 1px solid transparent;
  font-weight: 600;
  border-radius: 50px;
  outline: none;
  position: relative;
  z-index: 2;
}
header .middle .right .tools-menu .basket, header .middle .right .tools-menu .wish {
  text-align: center;
  display: inline-block;
  margin-left: 10px;
}
header .middle .right .tools-menu .basket a, header .middle .right .tools-menu .wish a {
  padding: 12px 5px 12px 58px;
  background-color: #263235;
  color: #f88a25;
  z-index: 1;
  outline: none;
  border-radius: 25px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  text-align: center;
  height: 51px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}
header .middle .right .tools-menu .basket a:before, header .middle .right .tools-menu .wish a:before {
  content: "";
  position: absolute;
  left: -7px;
  top: -7px;
  width: 62px;
  height: 62px;
  border: 2px solid #263235;
  z-index: -1;
  border-radius: 63px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .middle .right .tools-menu .basket a .icon, header .middle .right .tools-menu .wish a .icon {
  display: block;
  position: absolute;
  background-color: #f6f6f6;
  border-radius: 61px;
  width: 58px;
  height: 58px;
  padding: 10px;
  left: -5px;
  top: -5px;
}
header .middle .right .tools-menu .basket a .icon img, header .middle .right .tools-menu .wish a .icon img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .middle .right .tools-menu .basket a i, header .middle .right .tools-menu .wish a i {
  margin-right: 4px;
}
header .middle .right .tools-menu .basket a:hover, header .middle .right .tools-menu .wish a:hover {
  background-color: #f88a25;
  color: white;
}
header .middle .right .tools-menu .basket a:hover:before, header .middle .right .tools-menu .wish a:hover:before {
  border-color: #f88a25;
}
header .mega-menu {
  background-color: #7e4c4f;
}
header .mega-menu .container {
  position: relative;
}
header .mega-menu nav {
  width: 100%;
}
header .mega-menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .mega-menu nav ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 2px;
}
header .mega-menu nav ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  line-height: 1;
  padding: 17px 20px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  border-radius: 50px;
}
header .mega-menu nav ul li a i {
  margin-right: 4px;
}
header .mega-menu nav ul li a:hover {
  background: #f88a25;
}
header .mega-menu nav ul li .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
header .mega-menu nav ul li .submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #3e3e3e;
}
header .mega-menu nav ul li .submenu ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  display: block;
  max-width: 25%;
  padding: 15px;
}
header .mega-menu nav ul li .submenu ul li a {
  display: block;
  font-size: 16px;
  border: 1px solid white;
  padding: 25px 10px;
}
header .mega-menu nav ul li .submenu ul li a img {
  max-width: 64px;
}
header .mega-menu nav ul li .submenu ul li a span {
  display: block;
  margin-top: 10px;
}
header.affix .top {
  height: 0;
  overflow: hidden;
  padding: 0;
}
header .menu-button {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 51px;
  width: 52px;
  padding: 8px;
  cursor: pointer;
  background-color: #263235;
  border-radius: 10px;
  margin-left: 15px;
  border: 1px solid #7c7c7c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .menu-button.active {
  background-color: #f88a25;
  border-color: #f88a25;
}
header .menu-button.active img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
header .search-button {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 51px;
  width: 52px;
  padding: 16px 10px;
  cursor: pointer;
  background-color: #263235;
  border-radius: 10px;
  margin-left: 15px;
  border: 1px solid #7c7c7c;
}
header .search-button .search-menu {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #f88a25;
  top: 8px;
  left: 10px;
  -webkit-transition: all 0ms 300ms;
  transition: all 0ms 300ms;
}
header .search-button .search-menu:before {
  content: "";
  position: absolute;
  width: 22px;
  right: 0;
  bottom: 8px;
  background: #f88a25;
  -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header .search-button .search-menu:after {
  content: "";
  position: absolute;
  width: 18px;
  right: -14px;
  top: 21px;
  height: 2px;
  background: #f88a25;
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .search-button .search-menu.animate:before {
  width: 20px;
  bottom: -7px;
  height: 2px;
  right: -14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.panel-menu {
  min-height: 60vh;
  background: linear-gradient(15deg, #263235, #2a2a2a);
  padding: 200px 0 40px;
  z-index: 8999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.panel-menu nav {
  max-width: 1200px;
}
.panel-menu nav ul {
  text-align: center;
}
.panel-menu nav ul li {
  display: inline-block;
  padding: 10px 12px;
  text-align: center;
}
.panel-menu nav ul li a {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  padding: 5px;
}
.panel-menu nav ul li a i {
  margin-right: 5px;
}
.panel-menu nav ul li a:hover {
  color: #f88a25;
}
.panel-menu.opened {
  top: 0;
  visibility: visible;
  opacity: 1;
}

footer {
  position: relative;
  z-index: 2;
}
footer .top {
  background: #f7f7f7;
  margin: 0 auto;
  padding: 30px 0;
}
footer .top .title {
  font-size: 22px;
  font-weight: 700;
  color: #7e4c4f;
  margin: 15px 0;
}
footer .top p, footer .top a {
  color: #777;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  display: block;
}
footer .top a {
  font-size: 14px;
  padding-bottom: 3px;
  margin-bottom: 2px;
}
footer .top a i {
  margin-right: 5px;
}
footer .top a:hover {
  color: #7e4c4f;
}
footer .top .list-menu ul li {
  margin-bottom: 5px;
}
footer .top address {
  color: #777;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  margin-bottom: 10px;
}
footer .top .payment-icons {
  margin-top: 5px;
}
footer .top .payment-icons li {
  display: inline-block;
}
footer .top .payment-icons li a {
  font-size: 24px;
}
footer .top .confidence {
  background: #606060;
}
footer .top .confidence .item {
  padding: 10px;
  color: white;
  font-weight: 600;
  text-align: center;
  position: relative;
}
footer .top .confidence .item:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: white;
  top: 0;
  right: -15px;
  z-index: 1;
}
footer .top .confidence .item.no-after:after {
  display: none;
}
footer .top .confidence .item a {
  display: block;
  color: white;
}
footer .top .confidence .item a:hover {
  color: #f88a25;
}
footer .top .confidence .item img {
  max-width: 45px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  margin-right: 5px;
}
footer .top .cards ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
footer .top .cards ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 30px);
          flex: 0 0 calc(50% - 30px);
  width: 100%;
  max-width: calc(50% - 30px);
  padding: 10px 10px 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 82px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 15px;
}
footer .top .cards ul li img {
  max-width: 74px;
  padding: 5px;
  border-radius: 5px;
}
footer .top .ex-content {
  height: 100%;
  padding: 15px;
}
footer .top .ex-content a {
  height: 100%;
  color: #f88a25;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 15px rgba(18, 146, 67, 0.4);
          box-shadow: 0 0 15px rgba(18, 146, 67, 0.4);
}
footer .top .ex-content a .icon {
  font-size: 36px;
  text-align: center;
  width: 100%;
}
footer .top .ex-content a p {
  text-align: center;
}
footer .bottom {
  background: #f0f0f0;
  color: #263235;
  padding: 5px 0;
  font-size: 14px;
}
footer .bottom a {
  color: #263235;
  font-size: 14px;
}

.welcome-section {
  margin-top: 220px;
}
@media (min-width: 1440px) {
  .welcome-section .container {
    max-width: 1400px;
  }
}
.welcome-section .home-main-slider {
  position: relative;
}
.welcome-section .home-main-slider .arrows .next, .welcome-section .home-main-slider .arrows .prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: white;
  color: black;
  font-size: 24px;
  z-index: 5;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 52px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  cursor: pointer;
  border-radius: 50px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.welcome-section .home-main-slider .arrows .next:hover, .welcome-section .home-main-slider .arrows .prev:hover {
  background: #f88a25;
  color: white;
}
.welcome-section .home-main-slider .arrows .next {
  right: 50px;
  padding-left: 5px;
}
.welcome-section .home-main-slider .arrows .prev {
  left: 50px;
  padding-right: 5px;
}
.welcome-section .home-main-slider .item {
  height: 650px;
  position: relative;
  padding: 15px;
}
.welcome-section .home-main-slider .item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.welcome-section .home-main-slider .item a {
  display: block;
  height: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.welcome-section .home-main-slider .item .content {
  position: absolute;
  z-index: 2;
  max-width: 550px;
}
.welcome-section .home-main-slider .item .content.left {
  left: 70px;
}
.welcome-section .home-main-slider .item .content.right {
  right: 100px;
}
.welcome-section .home-main-slider .item .content.top {
  top: 30%;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
}
.welcome-section .home-main-slider .item .content.bottom {
  bottom: 20%;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.welcome-section .home-main-slider .item .content .head {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.welcome-section .home-main-slider .item .content .head.light {
  color: white;
}
.welcome-section .home-main-slider:hover .arrows .next, .welcome-section .home-main-slider:hover .arrows .prev {
  opacity: 1;
}
.welcome-section .sidebar-menu {
  margin-top: 15px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  position: sticky;
  top: 180px;
}
.welcome-section .sidebar-menu .head {
  padding: 15px 10px;
  background: #7e4c4f;
  color: white;
  border-radius: 10px 10px 0 0;
}
.welcome-section .sidebar-menu .head h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}
.welcome-section .sidebar-menu .content {
  max-height: 571px;
  position: relative;
  overflow: auto;
}
.welcome-section .sidebar-menu .content::-webkit-scrollbar {
  width: 4px;
}
.welcome-section .sidebar-menu .content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px grey;
          box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
.welcome-section .sidebar-menu .content::-webkit-scrollbar-thumb {
  background: #f88a25;
  border-radius: 10px;
}
.welcome-section .sidebar-menu .item {
  margin: 0 5px;
}
.welcome-section .sidebar-menu .item .category-name {
  font-size: 15px;
  cursor: pointer;
  padding: 12px 0;
  color: #f88a25;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.welcome-section .sidebar-menu .item .category-name img {
  width: 24px;
  margin-right: 3px;
}
.welcome-section .sidebar-menu .item ul {
  display: none;
  margin-bottom: 10px;
}
.welcome-section .sidebar-menu .item ul li {
  padding-left: 10px;
}
.welcome-section .sidebar-menu .item ul li a {
  padding: 2px 0;
  font-size: 13px;
  color: #263235;
  line-height: 1.2;
}
.welcome-section .sidebar-menu .item ul li a:hover {
  color: #f88a25;
}

.discounted-products {
  padding: 40px 0;
  position: relative;
  max-width: 100%;
}
.discounted-products .product-slider .arrows {
  text-align: right;
  padding: 0 0;
}
.discounted-products .product-slider .arrows .next, .discounted-products .product-slider .arrows .prev {
  position: relative;
  display: inline-block;
  background: transparent;
  color: #f88a25;
  border: 2px solid;
  font-size: 20px;
  z-index: 5;
  text-align: center;
  line-height: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  padding: 5px;
  outline: none;
}
.discounted-products .product-slider .arrows .next:hover, .discounted-products .product-slider .arrows .prev:hover {
  background: #f88a25;
  color: white;
}
.discounted-products .product-slider .arrows .next {
  right: 0;
  padding-left: 15px;
  padding-right: 15px;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
}
.discounted-products .product-slider .arrows .prev {
  left: 0;
  padding-right: 15px;
  padding-left: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
.discounted-products .product-slider .item {
  padding: 10px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  margin: 15px;
  height: calc(100% - 30px);
  outline-color: #777;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
}
.discounted-products .product-slider .item:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.discounted-products .product-slider .item:hover .buttons {
  left: 0;
}
.discounted-products .product-slider .item:hover .content hr:after {
  background: #7e4c4f;
}
.discounted-products .product-slider .item:hover .content hr:before {
  width: 75%;
  background: #f88a25;
}
.discounted-products .product-slider .item .discount-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
}
.discounted-products .product-slider .item .discount-icon:after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  background: #f88a25;
  width: 100px;
  height: 100px;
  border-radius: 100px;
}
.discounted-products .product-slider .item .discount-icon img {
  width: 28px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}
.discounted-products .product-slider .item .image {
  height: 280px;
  margin-bottom: 15px;
}
.discounted-products .product-slider .item .image img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: white;
}
.discounted-products .product-slider .item .content {
  text-align: center;
  padding-top: 10px;
}
.discounted-products .product-slider .item .content h5 {
  font-weight: 700;
  color: #263235;
  font-size: 16px;
  margin: 0;
}
.discounted-products .product-slider .item .content .name {
  font-weight: 600;
  color: #7e4c4f;
  font-size: 14px;
  max-width: 100%;
  position: relative;
}
.discounted-products .product-slider .item .content hr {
  border: none;
  width: 100%;
  margin: 10px 0;
  position: relative;
}
.discounted-products .product-slider .item .content hr:after {
  content: "";
  position: absolute;
  top: -4px;
  height: 8px;
  width: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f88a25;
  border-radius: 8px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.discounted-products .product-slider .item .content hr:before {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 1px;
  background: #263235;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.discounted-products .product-slider .item .content .price {
  font-weight: 700;
  color: #f88a25;
  position: relative;
  padding-top: 10px;
}
.discounted-products .product-slider .item .content .price span.original {
  position: relative;
  opacity: 0.75;
  font-size: 14px;
  color: #777;
}
.discounted-products .product-slider .item .content .price span.original:after {
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  background-color: #777;
  position: absolute;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  z-index: 1;
}
.discounted-products .product-slider .item .content .price span.discount {
  font-size: 22px;
}
.discounted-products .product-slider .item .buttons {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: calc(100% - 130px);
  background: rgba(0, 0, 0, 0.25);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  left: -100%;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 5;
}
.discounted-products .product-slider .item .buttons > div {
  text-align: center;
}
.discounted-products .product-slider .item .buttons a {
  width: 80%;
  padding: 10px 5px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border: 1px solid white;
  margin: 10px auto;
  background-color: #263235;
  border-radius: 30px;
}
.discounted-products .product-slider .item .buttons a:last-of-type {
  background-color: #f88a25;
}
.discounted-products .product-slider .item .buttons a:hover {
  background-color: #7e4c4f;
}

.slogan-strip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
  margin: 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.slogan-strip .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  max-width: 33.33%;
  text-align: center;
  color: white;
  padding: 0 0;
}
.slogan-strip .item h4 {
  padding: 15px 0;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 5px;
}
.slogan-strip .item:nth-of-type(1) h4 {
  background: linear-gradient(-35deg, #f88a25, #cd6304);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.slogan-strip .item:nth-of-type(2) h4 {
  background: linear-gradient(35deg, #9d2d34, #7e4c4f);
}
.slogan-strip .item:nth-of-type(3) h4 {
  background: linear-gradient(35deg, #263235, #557d87);
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.all-categories {
  padding: 40px 0;
}
.all-categories .category-item {
  margin: 25px 0;
  text-align: center;
  padding-bottom: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.all-categories .category-item:hover .image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.all-categories .category-item .image {
  height: 350px;
  position: relative;
  overflow: hidden;
}
.all-categories .category-item .image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  background-color: #f7f7f7;
  -o-object-fit: cover;
     object-fit: cover;
}
.all-categories .category-item .name {
  text-align: center;
  font-weight: 700;
  color: #7e4c4f;
  font-size: 20px;
  margin: 15px 0;
}
.all-categories .category-item a {
  text-align: center;
  background: #f88a25;
  font-weight: 600;
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid #f88a25;
}
.all-categories .category-item a:hover {
  background-color: #7e4c4f;
  color: white;
  border-color: #7e4c4f;
}

.general-product-list .item {
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 15px 0;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: white;
  height: calc(100% - 30px);
}
.general-product-list .item .image {
  background: white;
  position: relative;
}
.general-product-list .item .image a {
  display: block;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  overflow: hidden;
}
.general-product-list .item .image img {
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
.general-product-list .item .content {
  padding: 10px;
  border-top: none;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.general-product-list .item .content .product-name {
  text-align: center;
}
.general-product-list .item .content .product-name a {
  font-size: 15px;
  display: block;
}
.general-product-list .item .content .product-name a span {
  font-size: 13px;
  font-weight: 600;
  color: #263235;
  line-height: 1.1;
  margin-bottom: 5px;
  display: block;
}
.general-product-list .item .content .product-name a strong {
  color: #f88a25;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 67px;
  line-height: 1.2;
  font-size: 13px;
}
.general-product-list .item .content .product-price {
  padding-top: 5px;
  margin-top: 7px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}
.general-product-list .item .content .product-price .discounted-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.general-product-list .item .content .product-price .discounted-price .base-price {
  color: rgba(0, 0, 0, 0.7);
  position: relative;
}
.general-product-list .item .content .product-price .discounted-price .base-price:after {
  content: "";
  width: calc(100% + 10px);
  height: 1px;
  left: -5px;
  top: 50%;
  background-color: #2a2a2a;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.general-product-list .item .content .product-price .discounted-price-end {
  color: #2a2a2a;
  font-size: 20px;
  font-weight: 700;
}
.general-product-list .item .content .product-price .standard-price {
  text-align: center;
  color: #2a2a2a;
  font-size: 20px;
  font-weight: 700;
}
.general-product-list .item .content .options {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: white;
  border-radius: 2px 2px 4px 4px;
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}
.general-product-list .item .content .options a {
  color: #263235;
  font-weight: 600;
  font-size: 13px;
}
.general-product-list .item .content .options a:hover {
  color: #f88a25;
}
.general-product-list .item:hover {
  border-color: #f88a25;
}
.general-product-list .item:hover .image a {
  -webkit-box-shadow: 0 0 4px #f88a25;
          box-shadow: 0 0 4px #f88a25;
}
.general-product-list .more-button {
  text-align: center;
  margin-top: 20px;
}
.general-product-list .more-button a {
  padding: 12px 20px;
  font-size: 18px;
  border: 2px solid #f88a25;
  color: #f88a25;
  border-radius: 60px;
}
.general-product-list .more-button a:hover {
  background: #f88a25;
  color: white;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.home-products {
  padding: 40px 0;
}

.home-blog {
  padding: 40px 0 80px 0;
}
.home-blog .section-title {
  position: relative;
}
.home-blog .section-title img {
  position: absolute;
  width: 128px;
  left: 50%;
  top: -45px;
  margin-left: -274px;
}
.home-blog .blog-item {
  margin: 15px 0;
}
.home-blog .blog-item a {
  display: block;
}
.home-blog .blog-item .image {
  position: relative;
  height: 240px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  border-radius: 5px;
}
.home-blog .blog-item .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}
.home-blog .blog-item strong {
  display: block;
  padding: 0 10px;
  color: #2a2a2a;
  font-size: 13px;
}
.home-blog .blog-item h5 {
  font-size: 22px;
  color: #f88a25;
  letter-spacing: 1px;
  padding: 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-blog a:hover .image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 12px #d40003;
          box-shadow: 0 0 12px #d40003;
}
.home-blog a:hover h5 {
  color: #d40003;
}
.home-blog .more-button {
  text-align: center;
  margin-top: 20px;
}
.home-blog .more-button a {
  padding: 12px 20px;
  font-size: 18px;
  border: 2px solid #f88a25;
  color: #f88a25;
  border-radius: 60px;
}
.home-blog .more-button a:hover {
  background: #f88a25;
  color: white;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.auth-pages {
  padding: 80px 0;
}

.auth-forms {
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 30px;
  border: 4px solid #263235;
  border-radius: 4px;
  position: relative;
}
.auth-forms .section-head {
  margin-bottom: 30px;
  text-align: center;
}
.auth-forms .section-head h2 {
  display: inline-block;
  padding: 12px 20px;
  background: #f88a25;
  color: white;
  border-radius: 8px;
}
.auth-forms:before {
  content: "";
  position: absolute;
  left: 15px;
  top: -15px;
  width: 100%;
  height: 100%;
  border-top: 2px solid #263235;
  border-right: 2px solid #263235;
  border-radius: 0 4px 0 0;
  z-index: -1;
}
.auth-forms:after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: -15px;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #263235;
  border-left: 2px solid #263235;
  border-radius: 0 0 0 4px;
  z-index: -1;
}
.auth-forms hr {
  border-color: rgba(255, 255, 255, 0.15);
}
.auth-forms p {
  color: #2e313a;
  font-weight: 600;
}
.auth-forms .forgot-pass {
  color: #3d2c56;
  margin-top: 5px;
}
.auth-forms .forgot-pass:hover {
  color: #f88a25;
}
.auth-forms .bottom-content p {
  max-width: 600px;
  margin: 0 auto;
}
.auth-forms .bottom-content p a {
  color: #f88a25;
  border: 1px solid transparent;
  padding: 0 3px;
}
.auth-forms .bottom-content p a:hover {
  border-color: #f88a25;
}

.product-pages {
  padding: 80px 0;
}
.product-pages .category-head {
  margin-bottom: 20px;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.15);
  padding-bottom: 15px;
}
.product-pages .category-head figure {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding: 20px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-bottom: none;
}
.product-pages .category-head figure img {
  -webkit-box-shadow: 0 4px 24px rgba(255, 0, 0, 0.4);
          box-shadow: 0 4px 24px rgba(255, 0, 0, 0.4);
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 390px;
}
.product-pages .category-head figure figcaption {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  padding: 12px 24px;
  font-size: 24px;
  letter-spacing: 1px;
  color: #263235;
  background: white;
  border-radius: 4px 16px 4px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-pages .category-head .subcategories {
  margin-top: 20px;
}
.product-pages .category-head .subcategories ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-pages .category-head .subcategories ul li {
  display: inline-block;
  padding: 6px 10px;
}
.product-pages .category-head .subcategories ul li a {
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.9);
  color: #d40003;
  border-radius: 4px;
}
.product-pages .category-head .subcategories ul li a:hover {
  background: white;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.product-pages .product-detail .card-title {
  margin: 0;
  font-size: 16px;
  color: #f88a25;
  font-weight: 600;
}
.product-pages .product-detail .card-body h2 {
  font-size: 20px;
  color: #263235;
  text-align: center;
}
.product-pages .product-detail .product-slider {
  margin: 15px 0;
}
.product-pages .product-detail .product-slider .item-list .item {
  padding: 8px;
  background: #eeeaea;
}
.product-pages .product-detail .product-slider .item-list .item a {
  display: block;
  background: white;
}
.product-pages .product-detail .product-slider .item-list .item a img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  width: 100%;
}
.product-pages .product-detail .product-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}
.product-pages .product-detail .product-slider .slick-dots li {
  padding: 3px;
}
.product-pages .product-detail .product-slider .slick-dots li button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  font-weight: 600;
  background: #c4cce4;
  color: #3d2c56;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none;
}
.product-pages .product-detail .product-slider .slick-dots li.slick-active button {
  background: #f88a25;
}
.product-pages .product-tags {
  margin: 15px 0;
  padding-left: 25px;
}
.product-pages .product-tags .product-variations .variation-group {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: black;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}
.product-pages .product-tags .product-variations .variation-group .title,
.product-pages .product-tags .product-variations .variation-group .value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 4px 10px;
}
.product-pages .product-tags .product-variations .variation-group .title {
  color: darkgray;
  border-right: 1px dashed darkgray;
}
.product-pages .product-tags .product-variations .variation-group .value {
  color: #eeeaea;
  text-align: center;
}
.product-pages .product-tags .order-features {
  margin-top: 15px;
}
.product-pages .product-tags .order-features .features-item {
  background: lightgray;
  color: #2a2a2a;
  padding: 6px 10px;
  border-radius: 8px;
  margin: 10px 0;
  height: calc(100% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 13px;
}
.product-pages .product-tags .order-features .features-item .icon {
  margin-bottom: 6px;
  font-size: 20px;
  width: 100%;
  color: #d40003;
}
.product-pages .product-orders {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.product-pages .product-orders .product-price {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-pages .product-orders .product-price .first-price {
  font-size: 36px;
  color: #f88a25;
  padding: 6px 12px;
  font-weight: 600;
  margin: 10px 20px;
  border: 2px solid #f88a25;
}
.product-pages .product-orders .product-price .second-price {
  color: White;
  position: relative;
  padding: 4px 12px;
  font-size: 26px;
  opacity: 0.7;
}
.product-pages .product-orders .product-price .second-price:after {
  content: "";
  width: calc(100% + 10px);
  height: 2px;
  left: -5px;
  top: 50%;
  background-color: #c4cce4;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.product-pages .product-content {
  font-size: 14px;
  background: linear-gradient(45deg, black, #3d2c56);
  padding: 20px 30px;
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.8) !important;
}
.product-pages .product-content p {
  color: rgba(255, 255, 255, 0.8) !important;
}
.product-pages .product-content h1 {
  color: #f88a25;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.product-pages .product-content .buttons .btn-one {
  color: #f4d563;
  font-size: 20px;
}
.product-pages .other-products {
  margin-top: 40px;
}

.product-item-filters .filter-group {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin: 15px 0;
}
.product-item-filters h2 {
  padding: 10px;
  color: #fff;
  background: linear-gradient(35deg, #512629, #7e4c4f);
  border: none;
  font-size: 15px;
  font-weight: 600;
}
.product-item-filters ul {
  padding: 5px 5px 15px;
}
.product-item-filters ul li a {
  font-size: 14px;
  color: #263235;
}
.product-item-filters ul li a i {
  margin-right: 4px;
}
.product-item-filters ul li a.active-link {
  color: #f88a25;
  font-weight: 600;
}

.complex-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px;
}
.complex-input button {
  border-radius: 8px;
  padding: 8px 12px;
  background: black;
  border: 1px solid #eeeaea;
  margin: 0 5px;
  color: #eeeaea;
}
.complex-input button:hover {
  border-color: #d40003;
}
.complex-input input {
  color: #eeeaea;
  width: 100px;
  text-align: center;
  padding: 8px 12px;
  background: black;
  border-radius: 8px;
  border: 1px solid #eeeaea;
}

ul.pagination {
  margin-top: 20px;
}
ul.pagination .page-item .page-link {
  color: #d40003;
}
ul.pagination .page-item .page-link:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}
ul.pagination .page-item.disabled .page-link {
  color: #6c757d;
}
ul.pagination .page-item.active .page-link {
  border-color: #d40003;
  background: #d40003;
  color: white;
}

.shopping-pages {
  padding: 80px 0;
}
.shopping-pages .order-item-list {
  padding: 20px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin: 15px 0;
  background: linear-gradient(18deg, #263235, #7e4c4f);
  border-radius: 8px;
}
.shopping-pages .order-item-list h2 {
  color: #eeeaea;
  font-size: 24px;
}
.shopping-pages .order-item-list .item-list {
  padding: 15px 0;
  margin: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.shopping-pages .order-item-list .other-operations a {
  color: #eeeaea;
}
.shopping-pages .order-item-list .other-operations a:hover {
  color: #f88a25;
}
.shopping-pages .order-item-list .item {
  margin: 10px 0;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}
.shopping-pages .order-item-list .item:last-of-type {
  border-bottom: none;
}
.shopping-pages .order-item-list .item .image img {
  max-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.shopping-pages .order-item-list .item .name {
  text-align: center;
}
.shopping-pages .order-item-list .item .name a {
  color: #eeeaea;
}
.shopping-pages .order-item-list .item .total-number {
  text-align: center;
  color: white;
}
.shopping-pages .order-item-list .item .total-number .complex-input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
}
.shopping-pages .order-item-list .item .total-number .complex-input input {
  width: auto;
  max-width: 50px;
  background: white;
  font-weight: 600;
  color: #d40003;
  padding: 4px 6px;
  font-size: 13px;
}
.shopping-pages .order-item-list .item .total-number .complex-input button {
  font-size: 13px;
  padding: 4px 6px;
}
.shopping-pages .order-item-list .item .price {
  margin: 10px 15px;
  color: #f88a25;
  font-size: 20px;
  min-width: 100px;
  text-align: center;
}
.shopping-pages .order-item-list .item .item-delete button {
  background: black;
  border: 1px solid white;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  padding: 2px 10px;
}
.shopping-pages .order-item-list .item .item-delete button:hover {
  background: #f88a25;
}
.shopping-pages .order-summary {
  padding: 20px;
  background: #eeeaea;
  margin: 15px 0;
  border-radius: 8px;
}
.shopping-pages .order-summary h2 {
  background: #7e4c4f;
  color: white;
  font-size: 20px;
  padding: 10px 5px;
  border-bottom: 1px solid;
  font-weight: 600;
  text-align: center;
}
.shopping-pages .order-summary .content {
  text-align: center;
}
.shopping-pages .order-summary .content .count-item {
  padding: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.shopping-pages .order-summary .content .total-price {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 15px 0;
  padding: 5px 0;
}
.shopping-pages .order-summary .content .total-price h3 {
  font-size: 20px;
  margin: 0;
}
.shopping-pages .order-summary .content .total-price .amount {
  font-size: 22px;
  color: #f88a25;
  font-weight: 600;
}
.shopping-pages .auth-control .auth-forms {
  height: calc(100% - 30px);
  margin: 15px 0;
}
.shopping-pages .order-confirmation .form-group label {
  color: rgba(0, 0, 0, 0.85);
}
.shopping-pages .order-confirmation .btn-one {
  background: #2a2a2a !important;
  color: white;
}
.shopping-pages .order-confirmation .btn-one:hover {
  background: #f88a25 !important;
}
.shopping-pages .order-confirmation hr {
  border-color: rgba(0, 0, 0, 0.25);
}
.shopping-pages .order-confirmation .confirmation-group {
  padding: 20px 10px;
  margin: 30px 0;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.shopping-pages .order-confirmation .confirmation-group h2 {
  font-size: 20px;
  color: #2a2a2a;
  border-bottom: 2px dashed rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  text-align: center;
}
.shopping-pages .order-confirmation .order-form .form-group {
  padding: 8px 0;
}
.shopping-pages .order-confirmation .order-form .form-group input,
.shopping-pages .order-confirmation .order-form .form-group textarea {
  font-size: 14px;
}
.shopping-pages .order-confirmation .address-selection {
  padding: 10px;
}
.shopping-pages .order-confirmation .address-selection .address-group {
  height: calc(100% - 30px);
  margin: 15px 0;
}
.shopping-pages .order-confirmation .address-selection .address-group label {
  display: block;
  height: 100%;
  padding: 20px 12px;
  text-align: center;
  background: #2a2a2a;
  border: 2px solid #2a2a2a;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
}
.shopping-pages .order-confirmation .address-selection .address-group label:hover {
  -webkit-box-shadow: 0 0 14px #f88a25;
          box-shadow: 0 0 14px #f88a25;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shopping-pages .order-confirmation .address-selection .address-group label.checked {
  border-color: #f88a25;
}
.shopping-pages .order-confirmation .address-selection .address-group label strong {
  color: #f88a25;
  display: block;
  font-size: 16px;
}
.shopping-pages .order-confirmation table {
  border-radius: 12px;
  font-size: 14px;
}
.shopping-pages .order-confirmation table th {
  border-top: none;
}
.shopping-pages .order-confirmation .order-result {
  background: #eeeaea;
  padding: 10px;
  border-radius: 12px;
}
.shopping-pages .order-confirmation .order-result .result-group {
  padding: 4px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2a2a2a;
  white-space: nowrap;
  min-width: 400px;
}
.shopping-pages .order-confirmation .order-result .result-group .tag,
.shopping-pages .order-confirmation .order-result .result-group .value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  font-size: 14px;
}
.shopping-pages .order-confirmation .order-result .result-group .tag strong,
.shopping-pages .order-confirmation .order-result .result-group .value strong {
  color: #f88a25;
  font-size: 18px;
}
.shopping-pages .order-confirmation .order-result .result-group .tag {
  color: rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  border-right: 1px solid #2a2a2a;
}
.shopping-pages .order-confirmation .order-result .result-group .value {
  text-align: center;
}
.shopping-pages .order-confirmation .order-result .result-group .value button {
  border-radius: 4px;
  border: 2px solid #f88a25;
  font-weight: 600;
  color: #f88a25;
  font-size: 14px;
}
.shopping-pages .order-confirmation .confirm-order {
  color: #263235;
  margin-top: 30px;
}
.shopping-pages .order-confirmation .confirm-order a {
  color: #f88a25;
}

.general-response .content {
  padding: 60px 50px;
  text-align: center;
  border-radius: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1f162b), to(#2e2042));
  background: linear-gradient(to bottom, #1f162b, #2e2042);
}
.general-response .content .icon {
  max-width: 100px;
  margin: 0 auto 30px;
}
.general-response .content .icon img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.general-response .content p {
  color: rgba(0, 0, 0, 0.8);
}
.general-response .content strong {
  color: #f88a25;
  letter-spacing: 1px;
}
.general-response .content i {
  color: #f88a25;
}

.customer-panel {
  padding: 80px 0;
}
.customer-panel .user-head {
  position: relative;
  margin-bottom: 50px;
}
.customer-panel .user-head:after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 0;
  width: 100%;
  height: 2px;
  background: #7e4c4f;
  z-index: -1;
}
.customer-panel .user-head p {
  margin: 0;
  font-size: 20px;
  color: #eeeaea;
  padding: 5px;
}
.customer-panel .user-head p:first-of-type {
  font-size: 28px;
  color: #7e4c4f;
}
.customer-panel .user-head p:last-of-type {
  display: inline-block;
  padding-right: 10px;
  background: #7e4c4f;
  line-height: 1;
  border-radius: 50px;
}
.customer-panel .user-head p strong {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#f88a25), to(#f88a25));
  background-image: linear-gradient(to right, #f88a25, #f88a25);
  font-weight: 900;
}
.customer-panel .order-status.o-created {
  color: yellow !important;
}
.customer-panel .order-status.o-approved {
  color: springgreen !important;
}
.customer-panel .order-status.o-shipped {
  color: #2ecbff !important;
}
.customer-panel .order-status.o-cancelled {
  color: #ff2f2f !important;
}
.customer-panel .order-status.o-received_by_customer {
  color: lightgray !important;
}
.customer-panel .btn-delete {
  color: #d40003;
  padding: 3px;
  margin: 3px 6px;
  font-size: 16px;
}
.customer-panel .btn-delete:hover {
  color: white;
}
.customer-panel .btn-edit {
  color: #f4d563;
  padding: 3px;
  margin: 3px 6px;
  font-size: 16px;
}
.customer-panel .btn-edit:hover {
  color: white;
}
.customer-panel .my-profile .info-category .info-group {
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: #2a2a2a;
  border-radius: 6px;
  height: calc(100% - 30px);
  margin: 15px 0;
  padding: 15px 25px;
}
.customer-panel .my-profile .info-category .info-group h5 {
  color: #f88a25;
}
.customer-panel table.orders-table {
  border-radius: 0;
  font-size: 14px;
}
.customer-panel table.orders-table th {
  border-top: none;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.customer-panel table.orders-table th:last-of-type {
  border-right: none;
}
.customer-panel table.orders-table td {
  text-align: center;
  vertical-align: middle;
}
.customer-panel table.orders-table td .btn-one {
  font-size: 13px;
  padding: 4px 8px;
}
.customer-panel table.orders-table td .btn-one i {
  margin: 0 3px;
}
.customer-panel .my-orders .order-filters {
  margin-bottom: 30px;
}
.customer-panel .my-orders .order-filters ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.customer-panel .my-orders .order-filters ul li {
  padding: 5px;
}
.customer-panel .my-orders .order-filters ul li a {
  padding: 4px 7px;
  background: #3e444a;
  border: 2px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: White;
}
.customer-panel .my-orders .order-filters ul li a.active-filter {
  border-color: #d40003;
  -webkit-box-shadow: 0 0 6px #d40003;
          box-shadow: 0 0 6px #d40003;
}
.customer-panel .order-detail-page .order-detail-group {
  padding: 20px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin: 15px 0;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 18px #4d4d4d;
          box-shadow: 0 0 18px #4d4d4d;
  height: calc(100% - 30px);
}
.customer-panel .order-detail-page .order-detail-group h2 {
  font-size: 18px;
  color: #eeeaea;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  text-align: center;
}
.customer-panel .order-detail-page .order-detail-group table {
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 0;
}
.customer-panel .order-detail-page .order-detail-group table th {
  border-top: none;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.customer-panel .order-detail-page .order-detail-group table td {
  text-align: center;
  vertical-align: middle;
  border-top: none;
}
.customer-panel .order-detail-page .order-detail-group table td a {
  color: #eeeaea;
}
.customer-panel .order-detail-page .order-detail-group table td a:hover {
  color: #d40003;
}
.customer-panel .order-detail-page .order-detail-group table td .btn-one {
  font-size: 13px;
  padding: 4px 8px;
}
.customer-panel .order-detail-page .order-detail-group table td .btn-one i {
  margin: 0 3px;
}
.customer-panel .order-detail-page .order-detail-group table td strong {
  font-size: 16px;
}
.customer-panel .my-favorites .general-product-list .item-list .item {
  overflow: hidden;
}
.customer-panel .my-favorites .general-product-list .item-list .item .discard-item {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -100px;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.customer-panel .my-favorites .general-product-list .item-list .item .discard-item button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px;
  background: #d40003;
  border-radius: 8px;
  color: White;
  font-size: 13px;
  white-space: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 14px rgba(255, 255, 255, 0.25);
          box-shadow: 0 0 14px rgba(255, 255, 255, 0.25);
}
.customer-panel .my-favorites .general-product-list .item-list .item .discard-item button i {
  margin-right: 5px;
}
.customer-panel .my-favorites .general-product-list .item-list .item:hover .discard-item {
  opacity: 1;
  z-index: 2;
  bottom: 52px;
}

.customer-sidebar {
  margin-bottom: 30px;
}
.customer-sidebar .page-item {
  margin-bottom: 15px;
}
.customer-sidebar .page-item a {
  display: block;
  background: linear-gradient(45deg, black, #f88a25);
  border-radius: 8px;
  padding: 18px 12px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.customer-sidebar .page-item a .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-bottom: 10px;
}
.customer-sidebar .page-item a .title h3 {
  padding: 12px 10px;
  color: white;
  font-size: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  margin: 0;
}
.customer-sidebar .page-item a .content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.customer-sidebar .page-item a:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.customer-sidebar .page-item.active-page a {
  background: linear-gradient(-15deg, #262626, #ff6138);
}

.corporate-pages {
  padding: 80px 0;
}
.corporate-pages .about-us .logo {
  background: #eeeaea;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 20px #d40003;
          box-shadow: 0 0 20px #d40003;
  padding: 50px;
  margin: 30px 0;
}
.corporate-pages .about-us .about-header {
  margin-bottom: 30px;
}
.corporate-pages .about-us .about-header small {
  color: #eeeaea;
}
.corporate-pages .about-us .about-header h1 {
  color: #d40003;
}
.corporate-pages .about-us p {
  color: #a8a8a8;
}
.corporate-pages .about-us .about-blocks {
  margin: 15px 0;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.corporate-pages .about-us .about-blocks:hover {
  -webkit-box-shadow: 0 0 26px #d40003;
          box-shadow: 0 0 26px #d40003;
}
.corporate-pages .about-us .about-blocks .icon {
  color: #d40003;
  font-size: 36px;
}
.corporate-pages .about-us .about-blocks h2 {
  color: #d40003;
}
.corporate-pages .about-us .about-blocks p {
  color: #a8a8a8;
}
.corporate-pages .contact-us .contact-blocks {
  margin: 15px 0;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100% - 30px);
}
.corporate-pages .contact-us .contact-blocks .icon {
  font-size: 50px;
  color: #d40003;
  border-right: 2px solid;
  padding-right: 22px;
  margin-right: 20px;
}
.corporate-pages .contact-us .contact-blocks .content h3 {
  font-size: 20px;
  color: white;
}
.corporate-pages .contact-us .contact-blocks .content a,
.corporate-pages .contact-us .contact-blocks .content address {
  color: #a8a8a8;
}
.corporate-pages .contact-us .contact-blocks .content a:hover,
.corporate-pages .contact-us .contact-blocks .content address:hover {
  color: White;
}
.corporate-pages .default-pages {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.corporate-pages .default-pages a,
.corporate-pages .default-pages p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.general-blog-list .blog-item {
  margin: 20px 0;
}
.general-blog-list .blog-item a {
  display: block;
}
.general-blog-list .blog-item a:hover .image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 12px #d40003;
          box-shadow: 0 0 12px #d40003;
}
.general-blog-list .blog-item a:hover h5 {
  color: #d40003;
}
.general-blog-list .blog-item .image {
  position: relative;
  height: 240px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  border-radius: 5px;
}
.general-blog-list .blog-item .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}
.general-blog-list .blog-item strong {
  display: block;
  padding: 0 10px;
  color: #263235;
  font-size: 13px;
}
.general-blog-list .blog-item h5 {
  font-size: 22px;
  color: #f88a25;
  letter-spacing: 1px;
  padding: 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blogs-page {
  padding: 80px 0;
}
.blogs-page .blog-detail .blog-head {
  max-width: 1140px;
  padding: 0 300px 0 0;
  position: relative;
  margin: 0 auto;
}
.blogs-page .blog-detail .blog-head .banner-image a {
  display: block;
  padding: 15px;
  border-radius: 12px;
  background: #eeeaea;
}
.blogs-page .blog-detail .blog-head .banner-image a img {
  -webkit-box-shadow: 0 0 30px dimgrey;
          box-shadow: 0 0 30px dimgrey;
  border-radius: 12px;
}
.blogs-page .blog-detail .blog-head .blog-tag {
  position: absolute;
  right: 0;
  width: 400px;
  top: 50px;
  background: #eeeaea;
  border-radius: 12px;
  padding: 30px 20px;
  -webkit-box-shadow: 0 0 40px #f88a25;
          box-shadow: 0 0 40px #f88a25;
  text-align: center;
}
.blogs-page .blog-detail .blog-head .blog-tag h1 {
  font-size: 28px;
  font-weight: 600;
  color: #f88a25;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.blogs-page .blog-detail .blog-head .blog-tag .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 600;
  color: dimgrey;
}
.blogs-page .blog-detail .blog-content {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.8);
}
.blogs-page .blog-detail .blog-content p,
.blogs-page .blog-detail .blog-content a {
  color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1439px) {
  .welcome-section .main-banner .item-list .item a {
    height: 600px;
  }

  .home-categories .category-list .list-item a figure img {
    height: 300px;
  }

  .general-product-list .item .image img {
    height: 126px;
  }
}
@media (max-width: 1199px) {
  header .header-main .category-menu {
    display: none;
  }
  header .header-main .site-menu {
    padding: 8px 0 8px 0;
    border-left: none;
    margin-left: 0;
  }
  header .header-main .site-menu .panel-menu-button {
    display: inline-block;
  }

  .panel-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .welcome-section .main-banner .item-list .item a {
    height: 500px;
  }

  .home-about .content .head h1 {
    font-size: 36px;
  }

  .home-categories .category-list .list-item a figure img {
    height: 250px;
  }

  .general-product-list .item .image img {
    height: 146px;
  }

  .shopping-pages .order-item-list .item .total-number {
    text-align: center;
    width: 100%;
  }

  .shopping-pages .order-item-list .item .price {
    margin: 10px 0;
    text-align: center;
    width: 100%;
  }

  .shopping-pages .order-item-list .item .item-delete {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 991px) {
  header .logo a {
    max-width: 100px;
  }
  header .header-right .header-main {
    display: none;
  }
  header .header-top {
    border: none;
  }
  header .header-top .contact-menu a {
    font-size: 0;
  }
  header.affix {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    overflow: hidden;
    visibility: hidden;
    top: -200px;
  }

  footer {
    padding-bottom: 50px;
  }

  .mobile-footer-nav {
    display: block;
  }

  .welcome-section .main-banner .item-list .item a {
    height: 360px;
  }

  .welcome-section .main-banner .item-list .slick-dots li button {
    font-size: 14px;
  }

  .panel-menu ul li a {
    font-size: 16px;
  }

  .panel-menu {
    padding: 110px 20px 60px;
  }

  body.affix .panel-menu {
    padding: 30px 20px 60px;
  }

  .home-about .content .head h1 {
    font-size: 32px;
  }

  .section-head h1,
.section-head h2,
.section-head h3 {
    font-size: 28px;
  }

  .home-categories .category-list .list-item a figure img {
    height: 180px;
  }

  .general-product-list .item .image img {
    height: 168px;
  }

  .home-categories .category-list .list-item a figure figcaption {
    font-size: 20px;
  }

  .general-product-list .more-button a,
.home-blog .more-button a {
    font-size: 16px;
  }

  .shopping-pages .order-item-list h2 {
    font-size: 20px;
  }

  .shopping-pages .order-item-list .item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .shopping-pages .order-item-list .item-list .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 20px);
            flex: 0 0 calc(50% - 20px);
    text-align: center;
    margin: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    height: 100%;
  }
  .shopping-pages .order-item-list .item-list .item .image {
    margin-bottom: 10px;
  }
  .shopping-pages .order-item-list .item-list .item .name {
    margin-bottom: 10px;
  }

  .home-about .content {
    padding-right: 0;
  }

  .customer-panel .user-head p:first-of-type {
    font-size: 24px;
  }

  .customer-panel .user-head p {
    font-size: 18px;
  }

  .customer-panel table.orders-table th {
    font-size: 14px;
  }

  .customer-panel table.orders-table td {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .welcome-section .main-banner .item-list .item a {
    height: 260px;
  }

  .welcome-section .main-banner .item-list .slick-dots li button {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  header .header-top .corporate-menu a {
    font-size: 14px;
  }

  header .header-top .corporate-menu a .icon {
    font-size: 20px;
  }

  .mobile-footer-nav ul li a img {
    width: 24px;
  }

  .mobile-footer-nav ul li .menu-item-title {
    font-size: 13px;
  }

  .panel-menu ul li a {
    font-size: 15px;
  }
  .panel-menu ul li .submenu ul li a {
    font-size: 13px;
  }

  header .logo a {
    max-width: 90px;
  }

  footer .bottom {
    text-align: center;
  }

  .panel-menu {
    padding: 90px 20px 60px;
  }

  body.affix .panel-menu {
    padding: 30px 20px 60px;
  }

  .home-about .content ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .home-about .content .head h1 {
    font-size: 28px;
  }

  .home-about .content .head {
    margin-bottom: 25px;
  }

  .section-head h1,
.section-head h2,
.section-head h3 {
    font-size: 24px;
  }

  .section-head .icon {
    max-width: 36px;
  }

  .home-categories .category-list .list-item a figure img {
    height: 280px;
  }

  .general-product-list .item .image img {
    height: 270px;
  }

  .home-categories .category-list .list-item a figure figcaption {
    font-size: 16px;
  }

  .general-product-list .more-button a,
.home-blog .more-button a {
    font-size: 14px;
  }

  .breadcrumb .direction .link a,
.breadcrumb .direction .link.current-page {
    font-size: 13px;
  }

  .shopping-pages .order-item-list h2 {
    font-size: 16px;
  }

  .shopping-pages .order-item-list .other-operations a {
    font-size: 14px;
    text-align: center;
    display: block;
    margin: 5px auto;
  }

  .shopping-pages, .product-pages, .corporate-pages, .auth-pages, .customer-panel, .blogs-page {
    padding: 40px 0;
  }

  .auth-forms p, .auth-forms .forgot-pass {
    font-size: 14px;
  }

  .form-one .form-group .input-style {
    font-size: 14px;
  }

  .btn-one {
    font-size: 14px;
  }

  .auth-forms {
    padding: 20px 10px;
  }

  .customer-panel .user-head p:first-of-type {
    font-size: 20px;
  }

  .customer-panel .user-head p {
    font-size: 16px;
  }

  .corporate-pages .contact-us .contact-blocks .content h3 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .welcome-section .main-banner .item-list .slick-dots li button {
    font-size: 12px;
    width: 22px;
    height: 22px;
  }

  header .header-top .contact-menu {
    display: none;
  }

  .mobile-footer-nav ul li .menu-item-title {
    display: none;
  }

  .home-about .content .head h1 {
    font-size: 22px;
  }

  .home-about .content p {
    font-size: 13px;
  }

  .section-head h1,
.section-head h2,
.section-head h3 {
    font-size: 20px;
  }

  .section-head .icon {
    max-width: 28px;
  }

  .home-categories .category-list .list-item a figure img {
    height: auto;
    max-height: 200px;
  }

  .general-product-list .item .image img {
    max-height: 270px;
    height: auto;
  }

  .home-categories .category-list .list-item a figure figcaption {
    font-size: 14px;
  }

  .shopping-pages .order-item-list .item-list .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 10px 0;
  }
}