/*  ===========================
        Tablef of Content
===============================

     1. Global Variables
     2. Basics
     3. Header
        1. Header Top
        2. Ctegory
            1. Desktop
            2. Mobile
        3. Navigation
            1. Dekctop
            2. Mobile
     4. Slider
     5. Office Tools
     6. Products Category 1
     7. School Tools
    11. Products Category 2
    12. Partner
    13. Footer

/* ==============================
        Global Variables
============================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');
:root {
  /* Design colors */
  --primary-design-color: #fc8410;
  --secondary-design-color: #106853;

  /* Background colors */
  --primary-bg-color: #fff;
  --secondary-bg-color: #f8f8f8;
  --tertiary-bg-color: #f2f2f2;

  /* Text colors */
  --primary-text-color: #303030;
  --secondary-text-color: #fff;
  --tertiary-text-color: #202f3f;

  /* Fonts */
  --primary-font: "Montserrat", sans-serif;

  /* Special font sizes */
  --font-size-sec-heading: 36px;
  --font-size-page-heading: 24px;

  /* General font sizes */
  --font-size-xs: 14px;
  --font-size-sm: 16px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;

  /* Category font sizes */
  --font-size-box-lg: 32px;
  --font-size-box-md: 24px;
  --font-size-box-sm: 20px;
}

/* ==============================
        Basic styles
=============================== */
.header-on-scroll{
    display: none;
    position: fixed!important;
    top: 0;
    width: 100%;
    background: #fc8410!important;
    z-index: 100000!important;
    box-shadow: 0 8px 4px 0 rgba(0,0,0,.2);
}
.header-on-scroll .user-list a{
    display: unset!important;
    font-size:15px;
}
.header-on-scroll .shopping-cart span,.header-on-scroll .whish-list span{
    top: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  font-size: var(--font-size-md);
  width: 100%;
  height: 100%;
  overflow-x:hidden;
}

ul,
li{
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}
.page-item.active .page-link{
    background-color: #fc8410!important;
    border: 1px solid #fc8410!important;
}
a,
a:hover,
a:active,
a:visited {
  text-decoration: none;
  color: var(--secondary-text-color);
}

button:active,
input:active,
textarea:active,
input:focus,
textarea:focus {
  box-shadow: none !important;
  border-color: var(--primary-design-color) !important;
}

input,
textarea,
input::placeholder,
textarea::placeholder {
  font-size: var(--font-size-md);
}

button,
button:focus,
button:active {
  border: none;
  outline: none;
  box-shadow: none;
}

table,
thead,
tbody,
th,
tr,
td {
  border-color: #c6c6c6 !important;
  font-weight: 400;
  text-align: center;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-design-color);
  border: 0px none #ffffff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-design-color);
}

::-webkit-scrollbar-thumb:active {
  background: var(--secondary-design-color);
}

::-webkit-scrollbar-track {
  background: #d0d0d0;
  border: 0px none #ffffff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

::-webkit-scrollbar-track:hover {
  background: #d0d0d0;
}

::-webkit-scrollbar-track:active {
  background: #d0d0d0;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.sec-heading {
  /*text-align: center;*/
  /*position: relative;*/
  /*height: 135px;*/
  /*margin-bottom: 30px;*/
  /*background: url("../images/pattern/leaf-title.png");*/
  /*background-position: center;*/
  /*background-repeat: no-repeat;*/
  
    text-align: center;
    position: relative;
    /*height: 118px;*/
    height: 61px;
    margin-bottom: 18px;
    /*background: url(../images/pattern/leaf-title.png);*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.sec-heading h1 {
  font-size: var(--font-size-sec-heading);
}

.sec-heading h1:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  top: 58px;
  left: 50%;
  background: var(--secondary-design-color);
  margin: 0;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.sec-heading.white {
  color: var(--secondary-text-color);
  /*background: url("../images/pattern/leaf-title-white.png");*/
  /*background-position: center;*/
  /*background-repeat: no-repeat;*/
  margin-bottom: 15px;
}

.sec-heading.white h1::before {
  background: var(--primary-bg-color);
}

.page-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 135px;
  margin-bottom: 45px;
  background: url("../images/pattern/leaf-title.png");
  background-position: center;
  background-repeat: no-repeat;
}
.page-heading.small {
  height: auto!important;
  background: none;
}
.page-heading h1 {
  font-size: var(--font-size-page-heading);
  margin: 0;
  font-weight: 600;
  color: var(--primary-text-color);
  margin-top: 16px;
  text-align:center;
}

.page-heading h1:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  top: 58px;
  left: 50%;
  background: var(--secondary-design-color);
  margin: 0;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.page-heading p {
  font-size: var(--font-size-sm);
  margin: 28px 0 0;
}
.page-heading a {
  color: var(--primary-text-color);
  font-weight: 500;
}

.inner-sec-heading h2 {
  position: relative;
  margin-bottom: 50px;
  font-size: var(--font-size-xxl);
}

.inner-sec-heading h2:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-design-color);
}

.btn-general {
    width: 160px;
    height: 50px;
    margin-bottom: 15px;
    font-size: 15px;padding: 6px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg-color);
  color: #5c5c5c !important;
  font-weight: 500;
  border: 1px solid #c4c4c4;
}

.btn-general:hover {
  background: var(--secondary-design-color);
  color: var(--secondary-text-color) !important;
  border-color: var(--secondary-design-color);
}

.btn-general.orange {
  background: var(--primary-design-color);
  color: var(--secondary-text-color) !important;
  border-color: var(--primary-design-color);
  /*margin-top: 20px;*/
}

.btn-general.orange:hover {
  background: var(--secondary-design-color);
  border-color: var(--secondary-design-color);
}

.btn-general.green {
  background: var(--secondary-design-color);
  color: var(--secondary-text-color) !important;
  border-color: var(--secondary-design-color);
  margin-top: 25px;
}

.btn-general.green:hover {
  background: var(--primary-design-color);
  border-color: var(--primary-design-color);
}

.btn-general.delete {
  background: #c82333;
  color: var(--secondary-text-color) !important;
  border: none;
}

.btn-general.delete:hover {
  background: #23272b;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  perspective: 1000px;
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}

#btn-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-design-color);
    color: var(--secondary-text-color);
    font-size: 22px;
    border: 1px solid var(--secondary-text-color);
    box-shadow: 0 0 3px 0px rgba(255, 255, 255, 1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}
#btn-scroll-top.active {
    opacity: 1;
    visibility: visible;
}
.rotate {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.hidden {
  display: none;
}

.btn-general:after,
.category-box:after,
.category-box h3,
.category-box img,
.btn-general,
.tool-box,
.social-link,
.menu-toggle .one,
.menu-toggle .three,
.menu-toggle .two,
.menu-sidebar,
.page-list a:after,
.nav a:after,
.nav-dropdown .nav-item:after,
.mobile-nav-list a:after,
.mobile-category-list-item a:after,
.mobile-category-list-dropdown a:after,
.category-list-item:after,
.category-list-dropdown,
.contact-form .btn-send,
.category-body,
.sub-dropdown-link,
.mobile-category-list-item img,
.mobile-category-body,
.mobile-category-list-dropdown,
.nav-dropdown,
.nav-item-arrow,
.mobile-nav-item-arrow,
.counter .up,
.counter .down,
.category-filter-block select,
.category-filter-block option,
.range-container input[type="range"],
.result-container input[type="number"],
.header-social button,
.user-list li a,
.header-social .lang a:after,
#btn-scroll-top{
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms;
}

/* ==============================
        Header
=============================== */

#header-general {
  background-color: var(--primary-design-color);
  background-image: url("../images/pattern/leaf-header-1.png");
  background-position: top right;
  background-repeat: no-repeat;
  color: #fff;
}

/* 3. Header Top */
.header-top {
  padding: 10px 0;
}

.header-social {
  display: flex;
  /*justify-content: space-between;*/
  justify-content: flex-end;
  align-items: center;
}

.header-social .right {
  display: flex;
}

.header-social .lang {
  justify-content: center;
  width: 120px;
}

.header-social .lang li {
  margin: 0 5px;
}

.header-social .lang a {
  position: relative;
  padding: 8px 3px;
}

.header-social .active a:after {
  width: 100%;
}

.header-social .button-group {
  display: flex;
}

.header-social .btn {
  background: var(--primary-design-color);
  color: var(--secondary-text-color);
  border: 2px solid var(--primary-bg-color);
  box-shadow: none !important;
  padding: 5px 8px;
  font-weight: 500;
  font-size: var(--font-size-md);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.header-social .btn-signup {
  background: var(--primary-bg-color);
  color: var(--primary-text-color);
  margin-left: 10px;
}

.header-social .btn:hover {
  background: var(--secondary-design-color);
  color: var(--secondary-text-color);
  border-color: var(--secondary-design-color);
}

.header-social .page-list a {
  position: relative;
  padding: 8px 0 !important;
}

.header-social .page-list .page-item {
  margin-right: 20px;
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* Header Middle */
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.search-box input {
  background: transparent !important;
  color: var(--primary-bg-color) !important;
  width: 100%;
  height: 52px;
  border-radius: 5px;
  border: none;
  padding: 0 25px;
  border: 2px solid var(--primary-bg-color) !important;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.search-box input::placeholder {
  color: var(--secondary-text-color);
}

#header-search-form {
  width: 100%;
  margin: 0;
}
#header-search-formv2 {
    width: 90%;
    margin: 0 auto;
}
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: calc(100% - 37px);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.search-icon i {
  font-size: 24px;
  color: var(--primary-bg-color);
}

.header-info {
  padding-right: 10px;
}

.header-info .shopping-cart,
.header-info .whish-list {
  position: relative;
  margin-left: 30px;
}

.shopping-cart span,
.whish-list span {
  position: absolute;
  top: -15%;
  left: 70%;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
  background: red;
  color: var(--secondary-text-color);
  font-size: var(--font-size-xs);
  text-align: center;
  line-height: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.user-data {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.user-image {
  cursor: pointer;
  background: transparent;
  border-radius: 50%;
  text-align: center;
  padding: 10px 0;
}

.user-image i {
  font-size: 36px;
}

.user-list-container {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 130px;
  height: auto;
  padding: 5px;
  font-size: 15px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  background: var(--primary-bg-color);
  color: var(--primary-text-color);
  z-index: 999;
  display: none;
}

.user-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.user-list-container span {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--primary-bg-color);
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
}

.user-list li {
  width: 100%;
  justify-content: center;
  border-bottom: 1px solid var(--secondary-bg-color);
}

.user-list li a {
  width: 100%;
  text-align: center;
  padding: 3px;
  margin: 2px 0;
}

.user-list li:not(:first-child):hover a {
  background: var(--primary-design-color);
  color: var(--secondary-text-color);
}

.user-list li:first-child {
  background: var(--secondary-design-color);
  color: var(--secondary-text-color);
  padding: 3px;
  border-bottom: none;
}

.user-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.user-list a {
  color: var(--primary-text-color);
  cursor: pointer;
}

/* Header bottom */
.header-bottom {
  position: relative;
  z-index: 9;
  margin-top: 20px;
  background: transparent;
}

.header-bottom a {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: var(--font-size-md);
  padding: 10px 0;
}

.header-bottom:after {
  content: "";
  position: absolute;
  width: 35%;
  height: 100%;
  top: 0;
  left: 0%;
  z-index: -1;
  background: var(--secondary-design-color);
}

.nav {
  position: relative;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-item-container {
  position: relative;
  margin: 0 15px;
  height: 65px;
  display: flex;
}

.nav-dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  top: 100%;
  left: calc(0% - 15px);
  background: var(--primary-bg-color);
  width: 170px;
  border: 1px solid var(--secondary-bg-color);
  visibility: hidden;
  opacity: 0;
}

.nav-dropdown.active {
  visibility: visible;
  opacity: 1;
}

.nav-dropdown .nav-item {
  position: relative;
  border-bottom: 1px solid var(--secondary-bg-color);
  width: 100%;
}

.nav-dropdown .nav-item a {
  color: var(--primary-text-color);
  font-size: var(--font-size-md);
  padding-left: 15px;
}

.nav-dropdown .nav-item a::after {
  display: none;
}

.nav-dropdown .nav-item:last-child {
  border-bottom: none;
}

.nav .nav-item {
  font-size: var(--font-size-sm);
}

.nav-item .nav-item-arrow,
.nav-item .mobile-nav-item-arrow {
  margin-left: 10px;
  cursor: pointer;
}

.category {
  height: 65px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: var(--secondary-design-color);
  position: relative;
}

.category-list {
  display: flex;
  flex-direction: column;
}

.category-head img {
  margin: 0 20px;
}

.category-head,
.category-body {
  width: 100%;
}

.category-body {
  background: var(--primary-bg-color);
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid var(--secondary-bg-color);
  /*visibility: hidden;*/
  /*opacity: 0;*/
  display: none;
}

.category-body.active {
  top: 100%;
  /*visibility: visible;*/
  /*opacity: 1;*/
  display: block;
}

.category-body-list,
.category-list-dropdown {
  flex-direction: column;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.category-list-dropdown {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  top: 0px;
  left: 100%;
  width: 213%;
  min-height: 100%;
  background: var(--primary-bg-color);
  /*visibility: hidden;*/
  /*opacity: 0;*/
  display: none;
}

.category-list-dropdown.active {
  left: 100%;
  /*visibility: visible;*/
  /*opacity: 1;*/
  display: block;
}

.dropdown-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
   padding: 10px 20px;
}

.dropdown-container .category-dropdown-item {
  display: flex;
  width: 32%;
  margin: 0 1% 0 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  /*margin-bottom: 20px;*/
}

.category-dropdown-item .category-dropdown-heading {
  color: var(--primary-text-color);
  font-weight: 400;
  font-size: var(--font-size-md);
  width: 100%;
  justify-content: flex-start;
  padding:5px;
}

.sub-dropdown-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.sub-dropdown-list .sub-dropdown-link {
  color: var(--primary-text-color);
  padding: 0 !important;
  font-size: var(--font-size-sm) !important;
}

.sub-dropdown-list .sub-dropdown-link:hover {
  color: var(--primary-design-color);
}

.category-list-item {
  position: relative;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid var(--secondary-bg-color);
  padding: 4px 0;
  z-index: 2;
}

.category-body-list li:last-of-type {
  border-bottom: none;
}

.category-item-container {
  width: 100%;
  position: relative;
}

.category-list-item a {
  color: var(--primary-text-color);
}

.category-list-item img {
  margin-left: 10px;
  margin-right: 20px;
  z-index: 1;
}

.category-list-item a img {
  margin: 0 20px;
  max-width:20px;
  max-height:20px;
}

.nav-dropdown .nav-item:after,
.category-list-item:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  background: var(--secondary-design-color);
  top: 100%;
  left: 0;
}

.nav-dropdown .nav-item:hover:after,
.category-list-item:hover:after {
  width: 100%;
}

.page-item a:after,
.lang a:after,
.nav a:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  left: 0;
  bottom: 5px;
  background: var(--secondary-bg-color);
}

.page-list a:hover:after,
.lang a:hover:after,
.nav a:hover:after {
  width: 100%;
}

/* ==============================
        Home Slider
============================== */

#home-slider {
  padding: 40px 0;
}

/*.carousel-item {*/
/*  height: 300px;*/
/*}*/
.carousel-item img {
    width: 100%;
    height: auto;
}

/* ==============================
    Office tools, School tools
============================== */
#office-tool,
#school-tool {
  padding: 80px 0;
  background-color: var(--secondary-bg-color);
  background-image: url("../images/pattern/leaf-office-left-1.png"), url("../images/pattern/leaf-office-right-1.png");
  background-repeat: no-repeat;
  background-position: left 90%, right 50%;
}

.tool-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  background: var(--primary-bg-color);
  font-weight: 500;
   padding: 10px;
    margin-bottom: 30px;
}

.tool-box a {
  display: flex;
  justify-content: center;
}
.img-container img{
    transition:transform 250ms linear;
}
.tool-box:hover .img-container img{
    -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.tool-box .img-container {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 35px;
}
.tool-box .img-container a {
    width: 100%;
    height: 200px;
}
.tool-box .tool-image {
  max-width: 100%;
  max-height: 100%;
      width: auto!important;
}

.tool-box .tool-name {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0;
min-height: 60px;
font-size: 16px;
}

.tool-box .tool-price {
  margin-bottom: 15px;
    font-size: 15px;
}

/*.tool-box:hover {*/
/*  transform: scale(1.1);*/
/*  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);*/
/*  -webkit-transform: scale(1.1);*/
/*  -moz-transform: scale(1.1);*/
/*  -ms-transform: scale(1.1);*/
/*  -o-transform: scale(1.1);*/
/*}*/

.tool-box-header {
  position: absolute;
  padding: 0 15px;
  top: 10px;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.cat-label {
  padding: 6px 12px;
  color: var(--secondary-text-color);
  font-size: 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.cat-label {
   background: var(--primary-design-color);
}
.cat-label-offer {
   background: var(--secondary-design-color);
}

.wish-label {
  cursor: pointer;
}

.wish-label button {
  padding: 0;
  background: #fff;
}

/* ==============================
      Ctegory-1, Category-2
============================== */
#category-1 {
  padding: 50px 0 90px 0;
  background-color: var(--primary-design-color);
  background-image: url("../images/pattern/leaf-category-left-1.png");
  background-repeat: no-repeat;
  background-position: left bottom;
}

#category-2 {
  padding: 50px 0;
  background-color: var(--secondary-design-color);
  background-image: url("../images/pattern/leaf-category-right-1.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}

/*#category-2 .container {*/
/*  transform: translateY(-100px);*/
/*  -webkit-transform: translateY(-100px);*/
/*  -moz-transform: translateY(-100px);*/
/*  -ms-transform: translateY(-100px);*/
/*  -o-transform: translateY(-100px);*/
/*}*/
#category-1 .owl-dots .owl-dot span,#category-2 .owl-dots .owl-dot span{
    background-color:#fff !important;
}
#category-1 .owl-dots .owl-dot.active span,#category-2 .owl-dots .owl-dot.active span{
    background-color:#fc8410!important;
}
#category-1 .owl-dots .owl-dot:hover span,#category-2 .owl-dots .owl-dot:hover span{
    background-color:#fc8410!important
}
.category-box {
     position: relative;
    overflow: hidden;
    width: auto;
    margin-bottom: 20px;
    height:250px;
}
.category-box img{
   height:100%;
   object-fit:cover;
}

.space-between-1,
.space-between-2,
.space-between-3 {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.category-box h3 {
  position: absolute;
  z-index: 9;
  color: var(--primary-text-color);
  width: fit-content;
}

.category-box img {
  width: 100%;
}

.category-box.box-large h3 {
  top: 30px;
  left: 30px;
  font-size: var(--font-size-box-lg);
}

.category-box.box-md h3 {
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--font-size-box-md);
  -webkit-transform: translatex(-50%);
  -moz-transform: translatex(-50%);
  -ms-transform: translatex(-50%);
  -o-transform: translatex(-50%);
}

#category-1 .category-box.box-small h3 {
  top: 15px;
  font-size: var(--font-size-box-sm);
}

#category-2 .category-box.box-small h3 {
  top: 12%;
  left: 15px;
  font-size: var(--font-size-box-sm);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.box-small.right h3 {
  right: 15px;
}

.box-small.left h3 {
  left: 15px;
}

.category-box:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.category-box:hover:after {
  width: 110%;
  height: 110%;
  background: rgba(0, 0, 0, 0.8);
}

.category-box.box-large:hover h3,
.category-box.box-md:hover h3,
#category-1 .category-box.box-small.left:hover h3,
#category-2 .category-box.box-small:hover h3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#category-1 .category-box.box-small.right:hover h3 {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
}

.category-box:hover h3 {
  color: var(--secondary-text-color);
}

.category-box:hover img {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}

/* ==============================
            Partner
============================== */
#partner {
  padding: 38px 0 44px 0;
  background-color: var(--secondary-bg-color);
}

#partner-carousel {
  padding: 19px 0 0;
}

#partner .owl-carousel.owl-drag .owl-item {
  padding: 0 12px;
}
#partner .owl-carousel.owl-drag .owl-item img{
    width:unset!important;
    height:100px;
    object-fit:contain!important
}
#partner .owl-carousel.owl-drag .owl-item .item{
    display: flex;
justify-content: center;
align-items: center;
}
.owl-theme .owl-dots .owl-dot span {
    background: var(--secondary-design-color) !important;
    transition: all 250ms;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-design-color) !important
}
/* ==============================
            Footer
============================== */
#footer-general {
    padding: 20px 0;
    background-color: var(--tertiary-bg-color);
}

#footer-general hr {
    margin-top: 20px;
}


.footer-social {
  width: 170px;
  margin-top: 20px;
}

.social-item {
  margin: 0 7px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
  background: var(--secondary-design-color);
  color: var(--secondary-text-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.social-item:hover .social-link {
  background: var(--primary-design-color);
}

#subscribe-form {
  margin-bottom: 0;
  width: 100%;
}

#subscribe-form .form-control {
  height: 55px;
  padding: 0 25px;
  font-weight: 500;
  font-size: var(--secondary-text-color);
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

#btn-subscribe {
  width: 185px;
  background: var(--primary-design-color);
  color: var(--secondary-text-color);
  font-size: var(--font-size-md);
  font-weight: 500;
  z-index: 9;
}

#btn-subscribe:hover {
  background: var(--secondary-design-color);
}
/*Footer Menus*/
.footer-main-title {
    color: #fc8410;
    text-decoration: underline;
    margin-bottom: .1em;
    width: 100% ;
    font-size: 18px;
    font-weight: bold!important;
}
.footer-main-cats,
.footer-main-menues {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
.footer-main-cats li,
.footer-main-menues li {
    margin-top: 3px;
    display: flex;
    justify-content: flex-start;
}

.footer-main-cats a,
.footer-main-menues a,
.footer-info{
    color: #000;
    position: relative;
    font-weight: 500;
    font-size: 15px;
}
.footer-main-cats a::before,
.footer-main-menues a::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 1px;
    background-color: #fc8410;
    bottom: 0;
}
.footer-main-cats a::before,
.footer-main-menues a::before{
    left: 0;
}
.footer-main-cats a:hover::before,
.footer-main-menues a:hover::before
{
    width: 100%;
    transition: all .5s;

}
.footer-info p {
  margin: 5px 0;
  font-weight: 500;
}

.footer-info p span {
  margin-right: 10px;
}

.footer-copyright {
  margin-bottom: 0;
  font-size: var(--font-size-md);
  font-weight: 500;
}

.footer-copyright a {
    color: var(--primary-design-color);
}

/* ==============================
  Mobile menu, mobile category
============================== */
.menu-toggle {
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  display: flex;
  margin: 15px 0;
  width: 40px;
}

.menu-toggle .bar {
  display: flex;
  flex-direction: column;
}

.menu-toggle .one,
.menu-toggle .three,
.menu-toggle .two {
  height: 4px;
  margin: 3px 0;
  width: 40px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.menu-toggle.active .one {
  transform: rotate(45deg) translate(7px, 7px);
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  -moz-transform: rotate(45deg) translate(7px, 7px);
  -ms-transform: rotate(45deg) translate(7px, 7px);
  -o-transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .two {
  opacity: 0;
  transform: translateX(40px);
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -ms-transform: translateX(40px);
  -o-transform: translateX(40px);
}

.menu-toggle.active .three {
  transform: rotate(-45deg) translate(7px, -8px);
  -webkit-transform: rotate(-45deg) translate(7px, -8px);
  -moz-transform: rotate(-45deg) translate(7px, -8px);
  -ms-transform: rotate(-45deg) translate(7px, -8px);
  -o-transform: rotate(-45deg) translate(7px, -8px);
}

.menu-toggle .one,
.menu-toggle .three,
.menu-toggle .two {
  background: var(--primary-bg-color);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 25px 40px 15px;
  border-top: 1px solid var(--primary-bg-color);
  z-index: 9;
}

.mobile-nav.active {
  display: flex;
  z-index: 9 !important;
}

.mobile-nav-wrapper {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 15px 0;
}

.mobile-nav-dropdown {
  display: none;
  flex-direction: column;
  align-items: center;
}

.mobile-nav-dropdown.active {
  display: flex;
}

.mobile-header-info {
  padding-right: 10px;
}

.mobile-header-info .whish-list,
.mobile-header-info .shopping-cart {
  margin-left: 25px;
  position: relative;
}

.mobile-header-info img {
  width: 30px;
}

.mobile-nav a {
  position: relative;
  color: var(--secondary-text-color) !important;
  font-size: var(--font-size-md);
  width: auto;
  padding: 5px 0;
}

.mobile-search-box {
  position: relative;
  width: 100%;
}

.mobile-search-box input {
  background: transparent !important;
  color: var(--primary-bg-color) !important;
  height: 40px !important;
  border: 2px solid var(--primary-bg-color) !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.mobile-search-box input::placeholder {
  color: var(--secondary-text-color);
}

.search-icon {
  position: absolute;
  top: 50%;
  left: calc(100% - 20px);
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: var(--primary-text-color);
}

.search-form {
  width: 100%;
}

/* Mobile Category */
.mobile-category {
  background: var(--secondary-design-color);
}

.mobile-category-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.mobile-category-list-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  padding: 0;
}

.mobile-category-list-item a {
  padding: 5px 0;
}

.mobile-category-list-item > img {
  padding: 5px;
  margin-left: 20px;
  cursor: pointer;
}

.mobile-category-body {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.mobile-category-body.active {
  display: flex;
  align-items: center;
  min-width: 350px;
}

.mobile-category-head {
  width: 100%;
}

.mobile-category-head.bordered {
  border-bottom: 1px solid var(--primary-bg-color);
}

.mobile-category-heading a,
.category-heading a {
  width: 100%;
}

.mobile-category-body {
  padding: 15px;
}

.mobile-category-list .category-item-container {
  margin: 3px 0;
}

.category-item-arrow.rotate,
.nav-item-arrow.rotate,
.mobile-nav-item-arrow.rotate {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.mobile-category-heading {
  background: var(--secondary-design-color);
  padding: 6px;
  justify-content: center;
}

.mobile-category-list-dropdown {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  padding: 0;
  margin-left: 26px;
  border: none;
}

.mobile-category-list-dropdown.active {
  display: flex;
}

.mobile-category-list-dropdown .mobile-category-list-item:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 4px;
  height: 4px;
  background: var(--primary-bg-color);
  border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.mobile-category-list-item.active + .mobile-category-list-dropdown {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.mobile-category-list a img {
  margin-right: 10px;
  width: 28px;
}

.mobile-nav-list a:after,
.mobile-category-list-item a:after,
.mobile-category-list-dropdown a:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  left: 0;
  bottom: 5px;
  background: var(--secondary-bg-color);
}

.mobile-category-list-item a:after,
.mobile-category-list-dropdown a:after {
  bottom: 0;
}

.mobile-nav-list a:hover:after,
.mobile-category-list-item a:hover:after,
.mobile-category-list-dropdown a:hover:after {
  width: 100%;
}

/* ==============================
            Catalog
============================== */
#catalog {
  padding: 60px 0;
  background: var(--secondary-bg-color);
}

#catalog .category-body {
  display: block !important;
  position: relative;
}

.catalog-sidebar {
  transform: translateY(-60px);
}

.catalog-sidebar .category-body {
  visibility: visible;
  opacity: 1;
}

.catalog-sidebar a {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: var(--font-size-md);
  padding: 10px 0;
}

/* Filter */
.category-filter-block,
.order-filter-block {
  background: var(--primary-bg-color);
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  /*margin-bottom: 30px;*/
  margin-bottom: 21px;
}

.category-filter-count,
.category-filter-price,
.order-filter-date,
.order-filter-status {
  display: flex;
  align-items: center;
  width: 100%;
}

.category-filter-count,
.order-filter-date {
  justify-content: flex-start;
}

.category-filter-price,
.order-filter-status {
  justify-content: flex-end;
}

.category-filter-block select,
.order-filter-block select {
  width: 55%;
  padding: 5px 12px;
  border: 1px solid var(--secondary-design-color);
  background: var(--primary-bg-color);
  color: var(--primary-text-color);
  font-size: 17px;
  font-weight: 500;
  margin-left: 10px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.category-filter-block option,
.order-filter-block option {
  background: var(--primary-bg-color);
  font-weight: 500;
}
.order-filter-block span,
.category-filter-block span{
    font-size:17px;
}
/* Pagination */
.pagination {
  margin-top: 30px;
  justify-content: center;
}

.pagination .page-item {
  width: 28px;
  height: 28px;
  margin: 0 3px;
}

.pagination .page-link {
  border: 1px solid var(--secondary-design-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 500;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: var(--secondary-design-color);
  width: 100%;
  height: 100%;
  background: transparent;
  padding:0;
}

.pagination .page-link.active,
.pagination .page-link:hover {
  background: var(--primary-design-color);
  color: var(--secondary-text-color);
  border-color: var(--primary-design-color);
}

.pagination .page-link:focus {
  box-shadow: none !important;
}

/* ==============================
         About
============================== */
#about-info {
  padding: 50px 0;
}

#about-info h2 {
  margin-bottom: 35px;
}

#about-info img {
  padding-left: 30px;
  width: 100%;
}

/* 16. About */
#about-info {
  padding: 40px 0;
}

#about-info h2 {
  margin-bottom: 35px;
}

#about-info img {
  padding: 30px 0 0 30px;
  width: 100%;
}

/* ==============================
        Contact
============================== */
#contact-info {
  padding: 50px 0;
}

.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
  height: 140px;
  padding: 10px 20px;
  border-radius: 5px;
}

.contact-box.box-border {
  border-left: 1px solid var(--page-info-color);
  border-right: 1px solid var(--page-info-color);
}

.contact-box img {
  margin-bottom: 20px;
  height: 40px;
}

.contact-box p {
  margin: 0;
}

.contact-form-wrapper {
  margin-top: 50px;
}

.map-responsive {
  width: 100%;
height: auto;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}

.contact-form h2 {
  font-size: var(--font-size-box-md);
  margin-bottom: 25px;
  text-align: center;
}

.contact-form textarea {
  height: 120px !important;
}

.contact-form textarea,
.contact-form input {
  margin-bottom: 25px;
  resize: none;
}

.contact-form textarea:focus,
.contact-form input:focus {
  border: 1px solid var(--primary-design-color);
}

.contact-form form {
  margin: 0;
}

.contact-form .btn-send {
  width: 100%;
  height: 50px;
  margin: 8px 0 0;
}

/* ==============================
          Product
============================== */
#product-info,
#similar-product {
  padding: 50px 0;
}

.product-path {
  margin-bottom: 35px;
}

.product-path a {
  color: var(--primary-text-color);
}

.product-path a.active {
  color: var(--primary-text-color);
  font-weight: 500;
}

/* Product Gallery */
.show {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.small-img {
  position: relative;
  width: 100%;
  height: 60px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms;
}

.small-img .icon-left,
.small-img .icon-right {
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 10px;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms;
}

.small-img .icon-left {
  transform: rotate(180deg);
}

.small-img .icon-right {
  right: 0;
}

.small-img .icon-left:hover,
.small-img .icon-right:hover {
  opacity: 0.5;
}

.small-container {
  width: 320px;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.small-container div {
  width: 800%;
  position: relative;
}

.small-container .show-small-img {
  width: 70px;
  height: auto;
  margin: 0 5px;
  cursor: pointer;
  float: left;
}

.small-container .show-small-img:last-of-type {
  margin-right: 0;
}

.show img {
  height: auto !important;
}

/* Product Info */
.product-info-data h5,
.product-info-data p {
  margin-bottom: 15px;
}

.product-info-data h5 {
  font-size: 20px;
}

.product-info-data p {
  font-size: var(--font-size-md);
}

.product-info-data strong {
  margin-left: 15px;
}

.product-count {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.counter {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--primary-text-color);
}

.counter .up,
.counter .down {
  display: block;
  cursor: pointer;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  user-select: none;
  font-size: var(--font-size-xxl);
}

.up:hover,
.down:hover {
  color: var(--primary-design-color);
}

.counter input {
  width: 100px;
  text-align: center;
  margin: 0 10px;
  font-size: var(--font-size-xxl);
  color: var(--primary-text-color);
  border: none;
}

.counter input:focus {
  outline: none !important;
}

.counter input::-webkit-outer-spin-button,
.counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.counter input[type="number"] {
  -moz-appearance: textfield;
}

.counter input:focus {
  border: none;
}

/* ==============================
      Shopping Cart
============================== */
#shopping-cart {
  padding: 50px 0;
}

.shopping-cart-table {
  font-size: var(--font-size-md);
  margin: 0;
}

.shopping-cart-table td {
  padding: 9px 0;
}

.shopping-cart-table th {
  padding-bottom: 13px !important;
}

.shopping-cart-table th:nth-child(2),
.shopping-cart-table td:nth-child(2) {
  text-align: left;
}

.shopping-cart-table td:first-child {
  text-align: left;
  width: 100px;
}

.shopping-cart-table td:nth-child(3),
.shopping-cart-table td:nth-child(5) {
  min-width: 100px;
}

.shopping-cart-table td:nth-child(4) {
  width: 110px;
}

.shopping-cart-table td:nth-child(n + 3) {
  font-weight: 500 !important;
}

.shopping-cart-table tbody tr {
  vertical-align: middle;
}

.shopping-cart-table img {
  width: 100px;
}

.shopping-cart-table .counter {
  margin: 0;
  justify-content: center;
  width: auto;
}

.shopping-cart-table .counter .up,
.shopping-cart-table .counter .down,
.shopping-cart-table .counter input {
  font-size: 25px;
}

.shopping-cart-table .counter input {
  width: 60px;
  margin: 0;
}

.remove-item button {
  background: #c82333;
  color: var(--secondary-text-color) !important;
  border: none;
}

.remove-item button:hover {
  background: #23272b;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  perspective: 1000px;
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}

.product-quantity input {
  border: 1px solid #c6c6c6;
  padding: 8px;
  width: 100px;
  text-align: center;
  margin: 0 auto;
  font-weight: 500;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.product-quantity input:active,
.product-quantity input:focus {
  outline: none;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
    -webkit-transform: translate3d(-1px, 0, 0);
    -moz-transform: translate3d(-1px, 0, 0);
    -ms-transform: translate3d(-1px, 0, 0);
    -o-transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
    -webkit-transform: translate3d(2px, 0, 0);
    -moz-transform: translate3d(2px, 0, 0);
    -ms-transform: translate3d(2px, 0, 0);
    -o-transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
    -webkit-transform: translate3d(-4px, 0, 0);
    -moz-transform: translate3d(-4px, 0, 0);
    -ms-transform: translate3d(-4px, 0, 0);
    -o-transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
    -webkit-transform: translate3d(4px, 0, 0);
    -moz-transform: translate3d(4px, 0, 0);
    -ms-transform: translate3d(4px, 0, 0);
    -o-transform: translate3d(4px, 0, 0);
  }
}

/* Cart info (in order and cart pages)*/
.cart-info {
  padding: 15px 25px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
  margin-left: 20px;
  font-size: var(--font-size-md);
}

.cart-info h4 {
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
}

.price-list {
  flex-direction: column;
  width: 100%;
}

.price-list-item {
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #c6c6c6;
}

.price-list-item .price {
  font-weight: 500;
}

.price-list-item:last-child {
  border-bottom: none;
}

.cart-info .btn-general {
  margin: 15px auto 0;
}

.price-list .price {
  font-weight: 500;
}

/* ==============================
            Wishlist
============================== */
#wishlist {
  padding: 60px 0;
  background: var(--secondary-bg-color);
}

/* ==============================
      Order Confirmation
============================== */
#order-info {
  padding: 50px 0;
}

#order-info .cart-info {
  margin: 40px 0 0;
}

.order-heading {
  margin-bottom: 25px;
  margin-top: 10px;
  font-size: var(--font-size-xxl);
}

.cart-heading {
  font-weight: 500;
  font-size: 24px;
}

.payment-type {
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
  padding: 36px;
  margin-top: 30px;
}

.payment-type .form-check {
  margin: 0;
}

.payment-type .form-check-input {
  margin-right: 23px;
  width: 18px;
  height: 18px;
}

.payment-type label {
  font-weight: 500;
  font-size: var(--font-size-md);
}

.form-check-input:checked {
  background: var(--secondary-design-color);
  border: 1px solid var(--secondary-bg-color);
  box-shadow: none;
}

.form-check-input:focus {
  border: 1px solid var(--secondary-design-color);
  box-shadow: none;
}

#btn-confirm {
  margin: 30px 0 0;
  width: 100%;
  height: 55px;
}

#order-form label {
  margin-bottom: 12px;
}

#order-form input {
  margin-bottom: 24px;
  height: 55px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#order-form input::placeholder {
  font-size: 14px;
}

.order-info-wrapper {
  margin-left: 10px;
}

.form-wrapper {
  margin-right: 10px;
}

/* ==============================
          Category - page
=============================== */
#category {
  /*padding: 60px 0;*/
  padding: 40px 0;
  background: var(--secondary-bg-color);
}

.inner-sec-heading.small h2 {
  font-size: 18px;
  margin-bottom: 35px;
}

.inner-sec-heading.small h2:after {
  width: 30px;
  height: 4px;
  bottom: -10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.category-sidebar {
  padding: 30px;
  background: var(--primary-bg-color);
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
}

.show-filter {
  width: 100% !important;
  /*margin-bottom: 30px;*/
  background: var(--primary-design-color);
  border: none;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1) !important;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.show-filter i {
  margin-right: 6px;
  line-height: 0;
}

.category-sidebar hr {
  margin: 35px 0;
}

.sub-category-container {
  max-height: 450px;
  overflow-y: scroll;
}

.sub-category,
.new-category {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.sub-category input,
.new-category input {
  margin: 0 12px 0 0;
  background: var(--secondary-bg-color);
}

.sub-category input:checked,
.sub-category input:active,
.sub-category input:focus,
.new-category input:checked,
.new-category input:focus,
.new-category input:active {
  border-color: var(--secondary-design-color) !important;
}

.sub-category img,
.new-category img {
  width: 45px;
  margin-right: 12px;
}

.sub-category h3,
.new-category h3 {
  font-size: 14px;
  margin-bottom: 0;
}

.category-sidebar ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.category-sidebar ::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

.category-sidebar ::-webkit-scrollbar-thumb {
  background: var(--primary-design-color);
  border: 0px none #ffffff;
  border-radius: 21px;
}

.category-sidebar ::-webkit-scrollbar-thumb:hover {
  background: var(--primary-design-color);
}

.category-sidebar ::-webkit-scrollbar-thumb:active {
  background: var(--primary-design-color);
}

.category-sidebar ::-webkit-scrollbar-track {
  background: #d0d0d0;
  border: 0px none #ffffff;
  border-radius: 20px;
}

.category-sidebar ::-webkit-scrollbar-track:hover {
  background: #d0d0d0;
}

.category-sidebar ::-webkit-scrollbar-track:active {
  background: #d0d0d0;
}

.category-sidebar ::-webkit-scrollbar-corner {
  background: transparent;
}

/* Range slider */
.range-container {
  position: relative;
  height: 12px;
  width: 100%;
}

.range-container input[type="range"] {
  position: absolute;
  left: 0;
  top: 0;
}

.result-container {
  display: flex;
  text-align: center;
  justify-content: space-around;
  margin: 15px 0;
}

.result-container input[type="number"] {
  border: 2px solid transparent;
  outline: none;
  background: #d0d0d0;
  height: 24px;
  width: 72px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-right: 8px;
  -moz-appearance: textfield;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.result-container input[type="number"]:active,
.result-container input[type="number"]:focus {
  border-color: var(--primary-design-color);
  background: var(--primary-bg-color);
}

.result-container input[type="number"]::-webkit-outer-spin-button,
.result-container input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.result-container input[type="number"]:invalid,
.result-container input[type="number"]:out-of-range {
  border: 2px solid #c82323;
  background: var(--primary-bg-color);
}

.range-container input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
}

.range-container input[type="range"]:focus {
  outline: none;
}

.range-container input[type="range"]:focus::-webkit-slider-runnable-track {
  background: var(--primary-design-color);
}

.range-container input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: var(--primary-design-color);
  box-shadow: none;
  border: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.range-container input[type="range"]::-webkit-slider-thumb {
  position: relative;
  z-index: 2;
  height: 20px;
  width: 20px;
  background: var(--primary-design-color);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.range-container input[type="range"]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--primary-design-color);
  border-radius: 1px;
  box-shadow: none;
  border: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.range-container input[type="range"]::-moz-range-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid var(--primary-design-color);
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: var(--primary-design-color);
  cursor: pointer;
}

.range-container input[type="range"]:focus::-ms-fill-lower {
  background: var(--primary-design-color);
}

.range-container input[type="range"]:focus::-ms-fill-upper {
  background: var(--primary-design-color);
}

.result-container input[type="range"]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.result-container input[type="range"]::-ms-fill-lower,
.result-container input[type="range"]::-ms-fill-upper {
  background: var(--primary-design-color);
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

.result-container input[type="range"]::-ms-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid var(--primary-design-color);
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: var(--primary-design-color);
  cursor: pointer;
}

/* ==============================
          Registration
=============================== */
.body-register #header-general {
  background-color: transparent;
  background-image: none;
}

/*.body-register .header-social .page-item {*/
/*  margin: 0 0 0 15px;*/
/*}*/

.body-register {
  background-color: var(--primary-design-color);
  background-image: url("../images/pattern/leaf-header-1.png");
  background-position: top right;
  background-repeat: no-repeat;
}

#register {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 60px 0;
}

#register .row {
  width: 100%;
  margin: 0;
  padding: 0;
}

#register .sec-heading {
  margin-bottom: 10px;
}

.register-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#register .btn {
  border: none;
  box-shadow: none;
  margin: 15px 0 0;
  padding: 5px;
  font-weight: 500;
  letter-spacing: 1px;
}

#register .register-right {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-bg-color);
  border-top-left-radius: 20% 50%;
  border-bottom-left-radius: 20% 50%;
  padding: 0;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
}

#register .register-form {
  padding: 60px;
  font-size: 15px;
}

.signin .register-form,
.reset-pass .register-form {
  width: 75%;
}

#register .forgot-pass a {
  color: var(--secondary-design-color);
  text-decoration: underline;
}

.form-bottom .form-check {
  margin: 0;
  padding: 0;
}

.form-bottom .form-check-input {
  margin: 0 8px 0 0 !important;
  cursor: pointer;
}

.form-bottom .form-check-label {
  color: var(--secondary-design-color);
}

.form-bottom i {
  font-size: 16px;
  margin-right: 8px;
}

.form-bottom p {
  margin: 0;
  font-size: var(--font-size-sm);
}

/* ==============================
        My orders
=============================== */
#my-order {
  padding: 60px 0;
}

.order-item {
  font-size: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--secondary-bg-color);
}

.order-item.item-head {
  font-weight: 600;
}

.order-item.item-head p {
  color: var(--primary-text-color);
}

.order-item div[class^="col"] {
  border-right: 1px solid var(--secondary-bg-color);
  padding: 12px;
}

.order-item div[class^="col"]:last-child {
  border-right: none!important;
}

.order-item p {
  margin: 0;
}

.order-item .btn-general {
  margin: 0 12px 0 0;
  height: 50px;
  width:140px;
}

.order-status p {
    font-size:15px;
  color: var(--secondary-text-color);
  padding: 2px 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  text-align:center;
}

.order-status p.status-1 {
  background: var(--secondary-design-color);
}

.order-status p.status-2 {
  background: var(--primary-design-color);
}
.order-status p.status-3 {
  background: red;
}

.order-image img {
  width: 100px;
  margin-left: 12px;
}

/* ==============================
          Profile
=============================== */
#profile {
  padding: 60px 0;
}

.welcome-user {
  margin-bottom: 24px;
}

.welcome-user i {
  font-size: 50px;
  margin-right: 20px;
  color: var(--secondary-design-color);
}

.welcome-message {
  font-weight: 400;
  margin: 0;
  font-size: var(--font-size-xxl);
}

.welcome-message .user-name {
  font-weight: 500;
}

.profile-form {
  font-size: 15px;
}

.profile-form label {
  margin-bottom: 6px;
  font-weight: 500;
}

.profile-form .form-control {
  height: 58px;
}

.profile-form .btn-general {
  margin: 24px 0 0;
}

/*===========Add to cart Response popup===========*/
.addToCartResponse{
    width: 340px;
    min-height: 50px;
    background-color: #fff;
    border:3px solid #f39313;
    border-radius: 10px;
    padding:5px;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    z-index: 1000;
    bottom: 1em;
    right: 1em;
    box-shadow: 0 10px 10px rgba(0,0,0,.2);
    display: none;
}
.addToCartResponse .check{
    font-size: 19px;
    color: green;
    text-shadow: 1px 2px rgba(255,255,255,.6);
    border:3px solid green;
    width: 25px;
    height: 25px;
    padding: .2em;
    margin-right: .5em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.addToCartResponse p {
    color: #f39313;
    font-size: 19px;
    font-weight: bolder;
    text-align: center;
    margin:0
}
.color-container{
    display: flex;
}
.color-container label {
   margin : 10px;
    vertical-align: middle;
    line-height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding:3px;
    border:2px solid transparent
}
.color-container input[type='radio'] {
   cursor: pointer;
    vertical-align: bottom;
    -webkit-appearance:none;
    width:22px;
    height:22px;
    border:1px solid darkgray;
    border-radius:50%;
    outline:none;
}
.colorCircle{
    cursor: pointer;
    vertical-align: bottom;
    -webkit-appearance:none;
    width:22px;
    height:22px;
    border:1px solid darkgray;
    border-radius:50%;
    outline:none;
    margin:0 auto;
}
.color-container input[type='radio']:hover {
    box-shadow:0 0 2px 0px black;
}
.color-container input[type='radio']:focus {
    border:1px solid darkgrey!important;
}
.color-container input[type='radio']:before {
    content:'';
    display:block;
    width:100%;
    height:100%;
    border-radius:50%;
}
#about-info ul,
#about-info li{
    display:list-item!important;
    list-style-type:unset!important;
}
.carousel-control-prev,
.carousel-control-next{
    width: unset!important;
    background: transparent!important;
}
.carousel-control-prev{
    left: 15px!important;
}
.carousel-control-next {
    right: 15px;
}
/* Order Tabs */
    .order-tabs {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    .order-tabs .tab {
        width: 50%;
        background: transparent;
        color: var(--primary-text-color);
        border: 1px solid var(--secondary-bg-color);
        background: var(--secondary-bg-color);
        padding: 10px;
        height: 50px;
        transition: all 250ms;
        -webkit-transition: all 250ms;
        -moz-transition: all 250ms;
        -ms-transition: all 250ms;
        -o-transition: all 250ms;
        font-size: 17px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
    }

    .order-tabs .tab.active {
        background: var(--secondary-design-color);
        color: var(--secondary-text-color);
    }


    .order-item.item-head {
        font-weight: 400;
        font-size: 17px;
    }

    .single-order .order-item.item-head {
        background: var(--secondary-bg-color);
    }

    .single-order .order-item.item-head p {
        color: var(--primary-text-color);
    }

    .single-order .order-item.item-head div[class^="col"],
    .multi-order-inner .order-item.item-head div[class^="col"] {
        border-right: 1px solid #ddd;
    }

    .multi-order .order-item.item-head {
        background: var(--primary-design-color);
    }

    .multi-order .order-item.item-head p {
        color: var(--secondary-text-color);
    }

    .multi-order-inner .order-item.item-head {
        background: var(--secondary-bg-color);
    }

    .multi-order-inner .order-item.item-head p {
        color: var(--primary-text-color);
    }

    .multi-order-outer .order-item div[class^="col"] {
        border-right: 1px solid var(--primary-design-color);
    }

    .multi-order-outer .order-item {
        border: 1px solid var(--primary-design-color);
        border-radius:5px;
    }

    .order-image i {
        font-size: 42px;
        margin-left: 12px;
        color: var(--primary-design-color);
    }
    .multi-order-outer .order-expand {
        cursor: pointer;
    }
    .multi-order-outer .order-expand i {
    margin-right: 12px;
    color: var(--primary-text-color);
    font-size: 28px;
    animation: down 1.5s linear infinite;
    -webkit-animation: down 1.5s ease-in-out infinite;
    transition: all 250ms;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -ms-transition: all 250ms;
    -o-transition: all 250ms;
}

i.rotate {
    animation: down-rotate 1.5s linear infinite !important;
    -webkit-animation: down-rotate 1.5s linear infinite !important;
}

@keyframes down {
    0%, 100% {
        transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
    }
    50% {
        transform: translateY(5px);
        -webkit-transform: translateY(5px);
        -moz-transform: translateY(5px);
        -ms-transform: translateY(5px);
        -o-transform: translateY(5px);
    }
}

@keyframes down-rotate {
    0%, 100% {
        transform: rotate(180deg) translateY(-5px);
        -moz-transform: rotate(180deg) translateY(-5px);
        -ms-transform: rotate(180deg) translateY(-5px);
        -o-transform: rotate(180deg) translateY(-5px);
        -webkit-transform: rotate(180deg) translateY(-5px);
    }
    50% {
        transform: rotate(180deg) translateY(5px);
        -webkit-transform: rotate(180deg) translateY(5px);
        -moz-transform: rotate(180deg) translateY(5px);
        -ms-transform: rotate(180deg) translateY(5px);
        -o-transform: rotate(180deg) translateY(5px);
    }
}
.cart-info form {
                            width: 100%;
                            display: flex;
                            justify-content: space-between;
                        }
                        .order-type-item input:focus{
                            border: none!important;
                        }
.swal2-styled.swal2-confirm{
    background-color:var(--primary-design-color)!important;
}
.swal2-styled.swal2-confirm:focus{
     	box-shadow: 0 0 0 3px rgba(252, 132, 16,.5)!important;
}
.success-section alert{
    height: 133px;
    display: flex;
    align-items: center;
    justify-content: center;
}