@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
html {
  font-family: "Roboto", sans-serif;
}

body {
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.none-style, .top-nav .uk-container ul, #onestop-header .right-content ul, #product-cart .cart-product-charge-info .change-info, #wishlist .wishlist-list-wrapper, #footer-info .footer-content .social-icons, .footer-copyright .pages {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.none-anchor, .category-btn, .top-nav .uk-container .nav-item a, #onestop-header .right-content .nav-bar-menu a, #onestop-header .right-content .icon-menubar a, #blog .blog-wrapper .blog-post .title a {
  text-decoration: none !important;
}

.bg-light-grey {
  background-color: #fbfbfb;
}

.padding-large-bottom {
  padding-bottom: 70px;
}

.txt-bold-500 {
  font-weight: 500;
}

.txt-color-gray {
  color: #a0a0a0 !important;
}

.txt-color-white {
  color: white;
}

.bg-color-white {
  background-color: white !important;
}

.txt-color-black {
  color: #333;
}

/*
  =========================
  All Custom Margin Start
*/
.m-top-4rem {
  margin-top: clamp(2rem, 3.5vw, 6rem) !important;
}

.m-top-custom_rem {
  margin-top: clamp(1rem, 2vw, 0rem) !important;
  text-align: center;
}

.m-bottom-4rem {
  margin-bottom: clamp(1.5rem, 3.5vw, 1.9rem) !important;
}

.m-bottom-4-6rem {
  margin-bottom: clamp(2.2rem, 3.7vw, 4.4rem) !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.mb-31 {
  margin-bottom: 31px;
}

.mb-42 {
  margin-top: 42px;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-26 {
  margin-bottom: 28px;
}

.mb-26-2 {
  margin-bottom: 26px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-62 {
  margin-bottom: 62px;
}

.my-same {
  margin-top: 62px !important;
  margin-bottom: 62px !important;
}

.uk-button {
  padding: 3px 30px 0 30px !important;
}

/*
  =========================
  All Custom Margin End
*/
.pb-45 {
  padding-bottom: 45px;
}

.wid-100 {
  width: 100%;
}

.clear-float {
  clear: both;
}

.border-none {
  border: none !important;
}

.pb-62 {
  padding-bottom: 62px;
}

.py-same {
  padding-top: 54px !important;
  padding-bottom: 62px !important;
}

.category-btn {
  padding: 10px 0;
  width: 200px;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
  -webkit-transition: color, background-color 0.3s;
  transition: color, background-color 0.3s;
}

.category-btn:hover {
  color: #fff;
  background-color: #f35451;
}

.txt-center {
  text-align: center;
}

.dataTable-wrapper td {
  padding: 10px;
}

.dataTable-wrapper .row .col-sm-12 {
  width: 100%;
}

.dataTable-wrapper .row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dataTable-wrapper .row select {
  width: 100px;
}

.dataTable-wrapper .row input {
  max-width: 100%;
  width: 100%;
}

.dataTable-wrapper .row input,
.dataTable-wrapper .row select {
  border: 0 none;
  padding: 0 10px;
  background: #fff;
  color: #666;
  border: 1px solid #e5e5e5;
  height: 35px;
  outline: none;
  vertical-align: middle;
  display: inline-block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transition-property: color, background-color, border;
  transition-property: color, background-color, border;
}

.f-20 {
  font-size: 20px;
}

.line-height-38 {
  line-height: 38px;
}

.display-none {
  display: none;
}

.uk-breadcrumb li a,
.uk-breadcrumb li span {
  font-size: 18px;
}

.uk-breadcrumb > :nth-child(n + 2):not(.uk-first-column)::before {
  font-size: 18px;
}

/*
  =======================
  Custom MOdal
*/
.onestop-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1011;
  display: none;
}

.onestop-custom-modal {
  position: fixed;
  top: 5%;
  left: 50%;
  width: 98%;
  max-width: 600px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: white;
  z-index: 1012;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.onestop-custom-modal.active {
  opacity: 1;
  top: 10%;
  pointer-events: auto;
}

.onestop-custom-modal header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
}

.onestop-custom-modal header .title {
  margin: 0;
  color: white;
}

.onestop-custom-modal header a {
  color: white;
}

.onestop-custom-modal .modal-body {
  padding: 10px;
}

/*
   ================
   Custom Scrollbar
*/
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #d6d6d6;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/*
  Css Loader
*/
.main-loader {
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  width: 100%;
  height: 100vh;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-loader .lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.main-loader .lds-roller div {
  -webkit-animation: lds-roller 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-roller 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-transform-origin: 40px 40px;
          transform-origin: 40px 40px;
}

.main-loader .lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin: -4px 0 0 -4px;
}

.main-loader .lds-roller div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
          animation-delay: -0.036s;
}

.main-loader .lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.main-loader .lds-roller div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
          animation-delay: -0.072s;
}

.main-loader .lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.main-loader .lds-roller div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
          animation-delay: -0.108s;
}

.main-loader .lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.main-loader .lds-roller div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
          animation-delay: -0.144s;
}

.main-loader .lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.main-loader .lds-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
          animation-delay: -0.18s;
}

.main-loader .lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.main-loader .lds-roller div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
          animation-delay: -0.216s;
}

.main-loader .lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.main-loader .lds-roller div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
          animation-delay: -0.252s;
}

.main-loader .lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.main-loader .lds-roller div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
          animation-delay: -0.288s;
}

.main-loader .lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@-webkit-keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*
    =======================
    Header Component
*/
.top-nav {
  background-color: #2b2b2b;
  padding: 10px;
}

.top-nav .uk-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-nav .uk-container .nav-left-info li a i {
  color: #f35451;
  margin-right: 10px;
}

.top-nav .uk-container .nav-right-info li a .fa-chevron-down {
  font-size: 14px;
}

.top-nav .uk-container .nav-item {
  display: inline-block;
  margin-right: 20px;
}

.top-nav .uk-container .nav-item:last-child {
  margin-right: 0;
}

.top-nav .uk-container .nav-item a {
  color: white;
  display: block;
  text-align: left;
}

.top-nav .uk-container .nav-item .openStop-dropdown {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  min-width: 130px;
}

.top-nav .uk-container .nav-item .openStop-dropdown .lang-menu {
  display: block;
}

.top-nav .uk-container .nav-item .openStop-dropdown .lang-menu li {
  position: relative;
  padding: 8px 15px;
  border-bottom: 1px solid #ddd;
}

.top-nav .uk-container .nav-item .openStop-dropdown .lang-menu li:last-child {
  border-bottom-color: transparent;
}

.top-nav .uk-container .nav-item .openStop-dropdown .lang-menu li .fa-dot-circle {
  display: none;
  font-size: 14px;
}

.top-nav .uk-container .nav-item .openStop-dropdown .lang-menu li .fa-circle {
  color: #ddd;
  font-size: 14px;
}

.top-nav .uk-container .nav-item .openStop-dropdown .lang-menu li label {
  margin-left: 10px;
  font-size: 14px;
  cursor: pointer;
}

.top-nav .uk-container .nav-item .openStop-dropdown .lang-menu li input {
  display: none;
}

.top-nav .uk-container .nav-item .openStop-dropdown .lang-menu li input:checked ~ .fa-dot-circle {
  display: inline;
  color: #4ef56a;
}

.top-nav .uk-container .nav-item .openStop-dropdown .lang-menu li input:checked ~ .fa-circle {
  display: none;
}

#onestop-header {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: white;
  position: relative;
  top: 0;
  z-index: 50;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#onestop-header.header-fixed {
  position: fixed;
  left: 0;
  top: -50px;
  width: 100%;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

#onestop-header .uk-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
}

#onestop-header .brand-logo img {
  max-width: 100%;
  height: auto;
}

#onestop-header .mobileMenubar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#onestop-header .mobileMenubar .open-desk-search-box2 {
  color: #2b2b2b;
  display: block;
  font-size: 26px;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}

#onestop-header .search-box2 {
  position: absolute;
  top: 65px;
  left: 50%;
  width: 98%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  background-color: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#onestop-header .search-box2.active {
  opacity: 1;
  pointer-events: auto;
}

#onestop-header .search-box2 form {
  width: 100%;
}

#onestop-header .search-box2 form .onestop-search-button {
  cursor: pointer;
  color: #f35451;
  position: absolute;
  right: 1px;
  top: 1px;
  font-size: 18px;
  padding: 10px;
}

#onestop-header .search-box2 form input {
  border-radius: 0;
  height: 45px;
}

#onestop-header .search-box2 .search-result {
  margin-top: 10px;
  background-color: white;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  display: none;
}

#onestop-header .search-box2 .search-result .search-result-list {
  margin: 0;
  padding: 10px 10px 10px 20px;
  height: 300px;
  overflow: auto;
}

#onestop-header .search-box2 .search-result .search-result-list .result-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  width: 100%;
  height: 80px;
}

#onestop-header .search-box2 .search-result .search-result-list .result-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

#onestop-header .search-box2 .search-result .search-result-list .result-item a .item-img {
  width: 46px;
  height: auto;
  margin-right: 10px;
}

#onestop-header .search-box2 .search-result .search-result-list .result-item a .item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}

#onestop-header .search-box2 .search-result .search-result-list .result-item a .item-info .item-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

#onestop-header .search-box2 .search-result .search-result-list .result-item a .item-info .item-price {
  font-size: 12px;
  background-color: rgba(64, 187, 224, 0.5);
  color: #333;
  padding: 4px 8px;
  border-radius: 10px;
}

#onestop-header .search-box2 .viewAll {
  display: block;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}

#onestop-header .menu-trigger {
  position: relative;
  width: 40px;
  height: 30px;
}

#onestop-header .menu-trigger.active span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#onestop-header .menu-trigger.active span:nth-child(2) {
  opacity: 0;
}

#onestop-header .menu-trigger.active span:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#onestop-header .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #f35451;
  border-radius: 10px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#onestop-header .menu-trigger span:nth-child(1) {
  top: 0;
}

#onestop-header .menu-trigger span:nth-child(2) {
  top: 12px;
}

#onestop-header .menu-trigger span:nth-child(3) {
  top: 24px;
}

#onestop-header .right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#onestop-header .right-content ul li.nav-item {
  display: inline-block;
  margin-right: 30px;
}

#onestop-header .right-content ul li.nav-item:last-child {
  margin-right: 0;
}

#onestop-header .right-content .nav-bar-menu li.nav-item > a {
  padding: 15px 0;
}

#onestop-header .right-content .nav-bar-menu a {
  color: #2b2b2b;
  display: block;
}

#onestop-header .right-content .nav-bar-menu a.active {
  color: #f35451;
}

#onestop-header .right-content .nav-bar-menu .openStop-dropdown {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

#onestop-header .right-content .nav-bar-menu .openStop-dropdown ul {
  max-height: 300px;
  overflow-y: auto;
}

#onestop-header .right-content .nav-bar-menu .openStop-dropdown li {
  display: block;
}

#onestop-header .right-content .nav-bar-menu .openStop-dropdown li a {
  display: block;
  padding: 10px 15px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

#onestop-header .right-content .nav-bar-menu .openStop-dropdown li a:hover {
  background-color: #2b2b2b;
  color: #fff;
}

#onestop-header .right-content .nav-bar-menu .has-children i {
  font-size: 14px;
}

#onestop-header .right-content .icon-menubar {
  margin-left: 25px;
}

#onestop-header .right-content .icon-menubar a {
  color: #2b2b2b;
  display: block;
  font-size: 22px;
}

#onestop-header .right-content .icon-menubar a .fa-heart {
  color: #f35451;
}

#onestop-header .right-content .icon-menubar .open-product-cart {
  position: relative;
}

#onestop-header .right-content .icon-menubar .open-product-cart .product-counter {
  position: absolute;
  top: -9px;
  right: -14px;
  background-color: #f35451;
  color: white;
  font-size: 10px;
  border-radius: 50%;
  padding: 3px 7px;
}

#onestop-header .right-content .search-box {
  position: absolute;
  top: 22px;
  right: 130px;
  background-color: white;
  width: 100%;
  max-width: 500px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#onestop-header .right-content .search-box.active {
  right: 150px;
  opacity: 1;
  pointer-events: auto;
}

#onestop-header .right-content .search-box form {
  width: 100%;
}

#onestop-header .right-content .search-box form .onestop-search-button {
  cursor: pointer;
  color: #f35451;
  position: absolute;
  right: 1px;
  top: 1px;
  font-size: 18px;
  padding: 10px;
}

#onestop-header .right-content .search-box form input {
  border-radius: 5px;
}

#onestop-header .right-content .search-box .search-result {
  margin-top: 10px;
  background-color: white;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  display: none;
}

#onestop-header .right-content .search-box .search-result .search-result-list {
  margin: 0;
  padding: 10px 10px 10px 20px;
  height: 300px;
  overflow: auto;
}

#onestop-header .right-content .search-box .search-result .search-result-list .result-item {
  border-bottom: 1px solid #ddd;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 230px;
  height: 80px;
  float: left;
}

#onestop-header .right-content .search-box .search-result .search-result-list .result-item:nth-child(odd) {
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

#onestop-header .right-content .search-box .search-result .search-result-list .result-item:nth-child(even) {
  padding-left: 20px;
}

#onestop-header .right-content .search-box .search-result .search-result-list .result-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

#onestop-header .right-content .search-box .search-result .search-result-list .result-item a .item-img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

#onestop-header .right-content .search-box .search-result .search-result-list .result-item a .item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}

#onestop-header .right-content .search-box .search-result .search-result-list .result-item a .item-info .item-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

#onestop-header .right-content .search-box .search-result .search-result-list .result-item a .item-info .item-price {
  font-size: 12px;
  background-color: rgba(64, 187, 224, 0.5);
  color: #333;
  padding: 4px 8px;
  border-radius: 10px;
}

#onestop-header .right-content .search-box .viewAll {
  display: block;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}

.toTop {
  position: fixed;
  bottom: 70px;
  right: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: white;
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
  border: none;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.toTop.active {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/*
    =======================
    Product Cart List Component
*/
#product-cart {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background-color: #fff;
  z-index: 100;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
}

#product-cart.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

#product-cart header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 15px;
  color: #fff;
}

#product-cart header .close-cart {
  font-size: 12px;
  cursor: pointer;
}

#product-cart header .close-cart i {
  margin-left: 10px;
}

#product-cart #cart-list-box {
  position: relative;
  height: calc(100vh - 276px);
}

#product-cart .cart-product-wrapper {
  padding: 10px;
  list-style-type: none;
  margin: 0;
}

#product-cart .cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #ddd;
  padding: 0 0 10px 0;
  margin-top: 10px;
}

#product-cart .cart-item:first-child {
  margin-top: 0;
}

#product-cart .cart-item .cart-product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#product-cart .cart-item .cart-product-info .cart-product-img {
  width: 80px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#product-cart .cart-item .cart-product-info .cart-product-img img {
  width: 100%;
  height: auto;
}

#product-cart .cart-item .cart-product-info .cart-product-metadata .cart-product-name {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  margin-right: 10px;
}

#product-cart .cart-item .cart-product-info .cart-product-metadata .cart-product-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}

#product-cart .cart-item .cart-product-info .cart-product-metadata .cart-product-info-wrapper .cart-product-price {
  font-weight: 500;
  margin-right: 20px;
}

#product-cart .cart-item .cart-product-info .cart-product-metadata .cart-product-info-wrapper .cart-product-quantity-wrapper {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

#product-cart .cart-item .cart-product-info .cart-product-metadata .cart-product-info-wrapper .cart-product-quantity-wrapper .cart-product-quantity-value {
  padding: 8px 10px;
  border: 1px solid transparent;
  border-left-color: #ddd;
  border-right-color: #ddd;
}

#product-cart .cart-item .cart-product-info .cart-product-metadata .cart-product-info-wrapper .cart-product-quantity-wrapper button {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 8px 10px;
  color: #939393;
  cursor: pointer;
}

#product-cart .cart-item .cart-product-remove {
  text-align: right;
}

#product-cart .cart-item .cart-product-remove #cart-product-remove {
  cursor: pointer;
}

#product-cart .cart-item .cart-product-remove span {
  display: block;
  margin-top: 25px;
  font-weight: 500;
}

#product-cart .cart-product-charge-info {
  padding: 0 10px 10px 10px;
}

#product-cart .cart-product-charge-info .change-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6px 0;
}

#product-cart .cart-product-charge-info .change-info li .title {
  font-weight: 500;
  color: #2b2b2b;
}

#product-cart .cart-product-charge-info .change-info li .total {
  font-weight: 500;
  color: #2b2b2b;
}

#product-cart .cart-product-charge-info .cart-product-total-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #e6e6e6;
  color: #2b2b2b;
  padding: 10px;
}

#product-cart .cart-product-charge-info .cart-product-total-amount span {
  font-weight: bold;
}

#product-cart .cart-product-charge-info .showing-promo-code-field {
  color: grey;
  font-weight: bold;
  margin: 15px 0;
  display: block;
  text-align: left;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#product-cart .cart-product-charge-info .showing-promo-code-field:hover {
  color: #f35451;
}

#product-cart .cart-product-charge-info .cart-product-promo-code {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px 0;
}

#product-cart .cart-product-charge-info .cart-product-promo-code input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  outline: none;
  height: 40px;
  padding: 0 10px;
}

#product-cart .cart-product-charge-info .cart-product-promo-code ::-webkit-input-placeholder {
  font-weight: 500;
}

#product-cart .cart-product-charge-info .cart-product-promo-code :-ms-input-placeholder {
  font-weight: 500;
}

#product-cart .cart-product-charge-info .cart-product-promo-code ::-ms-input-placeholder {
  font-weight: 500;
}

#product-cart .cart-product-charge-info .cart-product-promo-code ::placeholder {
  font-weight: 500;
}

#product-cart .cart-product-charge-info .cart-product-promo-code button {
  color: #fff;
  border: none;
  outline: none;
  height: 40px;
  width: 60px;
  font-weight: bold;
}

#product-cart .cart-product-charge-info .cart-product-promo-code i.close_coupon {
  padding: 0px 10px;
  cursor: pointer;
  font-size: 23px;
}

#product-cart .cart-product-charge-info .area_fontend {
  margin: 10px 0;
}

#product-cart .cart-product-charge-info .area_fontend .select2-container--default .select2-selection--single {
  border: 1px solid #dadada;
}

#product-cart .cart-product-charge-info .area_fontend .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

#product-cart .cart-product-charge-info .area_fontend .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 35px;
}

#product-cart .cart-product-charge-info .area_fontend .select2-container .select2-selection--single {
  height: 40px;
}

#product-cart .cart-product-charge-info .cart-product-place-order {
  position: absolute;
  bottom: 7px;
  left: 9px;
  width: 96%;
  color: #fff;
  height: 40px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  outline: none;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#product-cart .cart-product-charge-info .cart-product-place-order:hover {
  opacity: 0.7;
  cursor: pointer;
}

.openStop-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: none;
}

/*
    =======================
    All Default Product Component
*/
.oneStop-product {
  /*.title {
    font-size: clamp(2.2rem, 3.5vw, 4rem);
  }*/
}

.oneStop-product .products-wrapper .product-item {
  border: 1px solid rgba(221, 221, 221, 0.507);
  background-color: #ebebeb;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.oneStop-product .products-wrapper .product-item:hover {
  -webkit-box-shadow: 0 15px 15px -4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 15px -4px rgba(0, 0, 0, 0.2);
}

.oneStop-product .products-wrapper .product-item:hover .product-img .product-cart-box button,
.oneStop-product .products-wrapper .product-item:hover .product-img .product-cart-box .details-btn {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.oneStop-product .products-wrapper .product-item:hover .product-img .wishlist-icon {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.oneStop-product .products-wrapper .product-item:hover .product-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.oneStop-product .products-wrapper .product-item .product-img {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 20px;
}

.oneStop-product .products-wrapper .product-item .product-img .product-label {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 3px 15px;
  border-radius: 3px;
  font-size: 14px;
  text-transform: uppercase;
  background-color: #2b2b2b;
  color: #fff;
}

.oneStop-product .products-wrapper .product-item .product-img img {
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.oneStop-product .products-wrapper .product-item .product-img .wishlist-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: white;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #777;
  z-index: 1;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.oneStop-product .products-wrapper .product-item .product-img .wishlist-icon i {
  margin-top: 3px;
  font-size: 22px;
}

.oneStop-product .products-wrapper .product-item .product-img .product-cart-box {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
}

.oneStop-product .products-wrapper .product-item .product-img .product-cart-box button,
.oneStop-product .products-wrapper .product-item .product-img .product-cart-box .details-btn {
  background-color: #fff;
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  text-decoration: none;
  margin: 0 auto 15px auto;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.oneStop-product .products-wrapper .product-item .product-img .product-cart-box button.cart-item-quantity,
.oneStop-product .products-wrapper .product-item .product-img .product-cart-box .details-btn.cart-item-quantity {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}

.oneStop-product .products-wrapper .product-item .product-img .product-cart-box button.cart-item-quantity span,
.oneStop-product .products-wrapper .product-item .product-img .product-cart-box .details-btn.cart-item-quantity span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 10px;
  margin: 0;
}

.oneStop-product .products-wrapper .product-item .product-img .product-cart-box button.cart-item-quantity span:nth-child(1),
.oneStop-product .products-wrapper .product-item .product-img .product-cart-box .details-btn.cart-item-quantity span:nth-child(1) {
  border-right: 1px solid #cecece;
}

.oneStop-product .products-wrapper .product-item .product-img .product-cart-box button.cart-item-quantity span:nth-child(3),
.oneStop-product .products-wrapper .product-item .product-img .product-cart-box .details-btn.cart-item-quantity span:nth-child(3) {
  border-left: 1px solid #cecece;
}

.oneStop-product .products-wrapper .product-item .product-img .product-cart-box button span,
.oneStop-product .products-wrapper .product-item .product-img .product-cart-box .details-btn span {
  font-size: 14px;
  margin-right: 8px;
  font-weight: 500;
}

.oneStop-product .products-wrapper .product-item .product-img .product-cart-box button i,
.oneStop-product .products-wrapper .product-item .product-img .product-cart-box .details-btn i {
  font-size: 18px;
}

.oneStop-product .products-wrapper .product-item .product-img .product-cart-box button:nth-child(1),
.oneStop-product .products-wrapper .product-item .product-img .product-cart-box .details-btn:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.oneStop-product .products-wrapper .product-item .product-img .product-cart-box button:nth-child(2),
.oneStop-product .products-wrapper .product-item .product-img .product-cart-box .details-btn:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.oneStop-product .products-wrapper .product-item .product-img .product-cart-box button:last-child,
.oneStop-product .products-wrapper .product-item .product-img .product-cart-box .details-btn:last-child {
  margin-bottom: 0;
}

.oneStop-product .products-wrapper .product-item .product-rating {
  padding-left: 10px;
  text-align: left;
}

.oneStop-product .products-wrapper .product-item .product-rating li {
  display: inline-block;
  color: #8d8d8d;
  font-size: 12px;
}

.oneStop-product .products-wrapper .product-item .product-rating li.active {
  color: #fcca00;
}

.oneStop-product .products-wrapper .product-item .product-meta-box {
  border-top-color: transparent;
  background-color: #fff;
  padding: 10px 0;
}

.oneStop-product .products-wrapper .product-item .product-info {
  padding: 0 10px 0 10px;
}

.oneStop-product .products-wrapper .product-item .product-info .product-name {
  margin: 6px 0 0 0;
  font-size: 20px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.oneStop-product .products-wrapper .product-item .product-info .product-name a {
  color: #333333;
  text-decoration: none;
}

.oneStop-product .products-wrapper .product-item .product-info .product-price {
  margin: 5px 0 0 0;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  color: #919191;
}

/*
    =======================
    Customer Review Component
*/
#customer-review {
  overflow: hidden;
}

#customer-review .review-wrapper {
  margin: 10px 0;
}

#customer-review .uk-slider-container {
  overflow: visible;
}

#customer-review .title {
  font-weight: bold;
  text-align: center;
}

#customer-review .desc {
  font-size: 18px;
  margin-top: 10px;
  text-align: center;
}

#customer-review .uk-slider-items {
  padding: 0 0;
}

#customer-review .review-slider {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 20px;
  margin-right: 20px;
  border-radius: 3px;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#customer-review .review-slider.uk-active {
  opacity: 1;
}

#customer-review .review-slider .customer-avatar {
  text-align: center;
  margin-right: 20px;
}

#customer-review .review-slider .customer-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

#customer-review .review-slider .customer-avatar .customer-name {
  color: #2b2b2b;
  margin: 5px 0 0 0;
}

#customer-review .review-slider .customer-avatar .customer-rating li {
  display: inline-block;
  color: #8d8d8d;
  font-size: 12px;
}

#customer-review .review-slider .customer-avatar .customer-rating li.active {
  color: #fcca00;
}

#customer-review .review-slider .fa-quote-left {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #f35451;
  padding: 10px;
}

#customer-review .review-slider .customer-review-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 30px;
  pointer-events: none;
}

#customer-review .review-slider .customer-review-txt p {
  color: #2b2b2b;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 14px;
  margin: 0;
  font-weight: lighter;
  user-select: none;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 24px;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

/*
    =======================
    Blog Component
*/
#blog .desc {
  font-size: 18px;
  margin: 10px 0 50px 0;
}

#blog .blog-wrapper .blog-post {
  padding: 10px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#blog .blog-wrapper .blog-post img {
  width: 100%;
  height: auto;
}

#blog .blog-wrapper .blog-post .post-meta {
  padding: 25px;
}

#blog .blog-wrapper .blog-post .title {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#blog .blog-wrapper .blog-post .title a {
  color: #2b2b2b;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

#blog .blog-wrapper .blog-post .title a:hover {
  color: #f35451;
}

#blog .blog-wrapper .blog-post .excerpt {
  margin: 0;
  line-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#blog .blog-wrapper .blog-post time {
  margin-top: 15px;
  display: block;
  font-weight: 500;
}

.single-post .left-item .post-wrapper .post-thumbnail img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.single-post .left-item .post-wrapper .post-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 40px;
  color: #333;
}

.single-post .left-item .post-wrapper p {
  line-height: 26px;
}

.single-post .right-item .right-sidebar .post-search form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-post .right-item .right-sidebar .post-search form input {
  height: 55px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 10px;
  border-radius: 5px 0 0 5px;
}

.single-post .right-item .right-sidebar .post-search form button {
  width: 60px;
  border-radius: 0 5px 5px 0;
}

.single-post .right-item .right-sidebar .post-search form input,
.single-post .right-item .right-sidebar .post-search form button {
  border: none;
  outline: none;
}

.single-post .right-item .right-sidebar .post-list {
  margin-top: 55px;
}

.single-post .right-item .right-sidebar .post-list .headline {
  font-size: 2.7rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
}

.single-post .right-item .right-sidebar .post-list .headline::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 70px;
  height: 4px;
  border-radius: 10px;
}

.single-post .right-item .right-sidebar .post-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: 385px;
  overflow: auto;
}

.single-post .right-item .right-sidebar .post-list ul li {
  margin-bottom: 10px;
}

.single-post .right-item .right-sidebar .post-list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  text-decoration: none;
}

.single-post .right-item .right-sidebar .post-list ul li a img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-post .right-item .right-sidebar .post-list ul li a .meta-data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10px;
}

.single-post .right-item .right-sidebar .post-list ul li a .meta-data .title {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  line-height: 21px;
}

.single-post .right-item .right-sidebar .post-list ul li a .meta-data .cat-name,
.single-post .right-item .right-sidebar .post-list ul li a .meta-data time {
  font-size: 12px;
}

/*
    =======================
    Tracking Order Page Component
*/
#order-tracking {
  background-color: #e9f2f9;
}

#order-tracking .tracking-code-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#order-tracking .tracking-code-field input {
  max-width: 500px;
  height: 50px;
  border-radius: 5px 0 0 5px;
}

#order-tracking .tracking-code-field button {
  background-color: #f35451;
  color: #fff;
  width: 130px;
  font-weight: bold;
  border: none;
  outline: none;
  border-radius: 0 5px 5px 0;
  font-size: 16px;
}

#order-complete .order-complete-processes {
  list-style-type: none;
  padding: 0;
  margin: 40px 0 0 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#order-complete .order-complete-processes li {
  position: relative;
  display: inline-block;
  width: 13%;
  text-align: left;
  font-weight: 500;
}

#order-complete .order-complete-processes li:nth-child(1) {
  padding-left: 7px;
}

#order-complete .order-complete-processes li:nth-child(1)::before {
  left: 10px;
}

#order-complete .order-complete-processes li:nth-child(2) .fa-check {
  left: 22px;
}

#order-complete .order-complete-processes li:nth-child(2) .fa-times {
  left: 26px;
}

#order-complete .order-complete-processes li:nth-child(2) .fa-arrow-left {
  left: 24px;
  top: -47px;
}

#order-complete .order-complete-processes li:nth-child(2)::after {
  left: 10px;
}

#order-complete .order-complete-processes li:nth-child(2)::before {
  left: 10px;
}

#order-complete .order-complete-processes li:nth-child(3) .fa-check {
  left: 22px;
}

#order-complete .order-complete-processes li:nth-child(3) .fa-times {
  left: 26px;
}

#order-complete .order-complete-processes li:nth-child(3) .fa-arrow-left {
  left: 24px;
  top: -47px;
}

#order-complete .order-complete-processes li:nth-child(3)::after {
  left: 10px;
}

#order-complete .order-complete-processes li:nth-child(3)::before {
  left: 10px;
}

#order-complete .order-complete-processes li:nth-child(4) .fa-check {
  left: 22px;
}

#order-complete .order-complete-processes li:nth-child(4) .fa-times {
  left: 26px;
}

#order-complete .order-complete-processes li:nth-child(4) .fa-arrow-left {
  left: 24px;
  top: -47px;
}

#order-complete .order-complete-processes li:nth-child(4)::after {
  left: 10px;
}

#order-complete .order-complete-processes li:nth-child(4)::before {
  left: 10px;
}

#order-complete .order-complete-processes li:nth-child(5) .fa-check {
  left: 22px;
}

#order-complete .order-complete-processes li:nth-child(5) .fa-times {
  left: 28px;
}

#order-complete .order-complete-processes li:nth-child(5) .fa-arrow-left {
  left: 24px;
  top: -47px;
}

#order-complete .order-complete-processes li:nth-child(5)::after {
  content: "";
  left: 10px;
}

#order-complete .order-complete-processes li .fas {
  position: absolute;
  top: -45px;
  left: 13px;
  font-size: 25px;
  z-index: 1;
  display: none;
}

#order-complete .order-complete-processes li .fa-check {
  color: #0a9a22;
}

#order-complete .order-complete-processes li .fa-times {
  color: #f35451;
}

#order-complete .order-complete-processes li .fa-arrow-left {
  color: #f1b000;
}

#order-complete .order-complete-processes li.return-order .fa-arrow-left {
  display: block;
}

#order-complete .order-complete-processes li.return-order::before {
  content: "";
  background-color: #f1b000;
}

#order-complete .order-complete-processes li.return-order::after {
  content: "";
  border: 6px solid #f1b000;
}

#order-complete .order-complete-processes li.cancel-order .fa-times {
  display: block;
}

#order-complete .order-complete-processes li.cancel-order::before {
  content: "";
  background-color: #f35451;
}

#order-complete .order-complete-processes li.cancel-order::after {
  content: "";
  border: 6px solid #f35451;
}

#order-complete .order-complete-processes li.active .fa-check {
  display: block;
}

#order-complete .order-complete-processes li.active::before {
  content: "";
  background-color: #0a9a22;
}

#order-complete .order-complete-processes li.active::after {
  content: "";
  border: 6px solid #0a9a22;
}

#order-complete .order-complete-processes li:last-child::before {
  background-color: transparent;
}

#order-complete .order-complete-processes li::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #f1b000;
}

#order-complete .order-complete-processes li::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 6px solid #f1b000;
}

.tracking-info .item {
  border: 1px solid #ddd;
  padding: 20px;
  height: 100%;
}

.tracking-info .item p {
  font-weight: 500;
}

.tracking-info .item .blue-c {
  color: #0077b5;
}

.tracking-info .item .green-c {
  color: #0a9a22;
}

/*
    =======================
    Wishlist Page Component
*/
#wishlist .wishlist-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  border-bottom: 2px solid rgba(43, 43, 43, 0.4);
}

#wishlist .wishlist-header span {
  font-size: 20px;
  color: #2b2b2b;
}

#wishlist .wishlist-header span:nth-child(1) {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

#wishlist .wishlist-header span:nth-child(2) {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

#wishlist .wishlist-list-wrapper .wishlist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(43, 43, 43, 0.3);
}

#wishlist .wishlist-list-wrapper .wishlist-item:last-child {
  border-bottom-color: transparent;
}

#wishlist .wishlist-list-wrapper .wishlist-item .wishlist-item-info {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#wishlist .wishlist-list-wrapper .wishlist-item .wishlist-item-info .wishlist-item-thumb {
  background-color: #f2f3f5;
  width: 100px;
  height: 120px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#wishlist .wishlist-list-wrapper .wishlist-item .wishlist-item-info .wishlist-item-thumb img {
  width: 100%;
  height: auto;
}

#wishlist .wishlist-list-wrapper .wishlist-item .wishlist-item-info .wishlist-item-name {
  margin: 0 0 0 20px;
  font-weight: 400;
}

#wishlist .wishlist-list-wrapper .wishlist-item .wishlist-item-price {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

#wishlist .wishlist-list-wrapper .wishlist-item .wishlist-item-price p {
  margin: 0;
  font-weight: 500;
  color: #2b2b2b;
}

#wishlist .wishlist-list-wrapper .wishlist-item .wishlist-item-cart-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

#wishlist .wishlist-list-wrapper .wishlist-item .wishlist-item-cart-action button {
  background-color: #f35451;
  color: #fff;
  font-weight: bold;
  border: none;
  outline: none;
  width: 150px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#wishlist .wishlist-list-wrapper .wishlist-item .wishlist-item-cart-action button:hover {
  background-color: #f13d39;
}

#wishlist .wishlist-list-wrapper .wishlist-item .wishlist-item-cart-action i {
  color: #f35451;
  font-size: 20px;
  margin: 0 30px;
}

/*
    =======================
    All Small Component
*/
#hero-banner .hero-slider .owl-item.active .title.backInRight {
  -webkit-animation: backInRight 1.5s both;
          animation: backInRight 1.5s both;
}

#hero-banner .hero-slider .owl-item.active .subtitle.backInRight {
  -webkit-animation: backInLeft 1.5s 0.2s both;
          animation: backInLeft 1.5s 0.2s both;
}

#hero-banner .hero-slider .owl-item.active .desc.backInRight {
  -webkit-animation: backInRight 1.5s 0.3s both;
          animation: backInRight 1.5s 0.3s both;
}

#hero-banner .hero-slider .owl-item.active .main-img-element {
  -webkit-animation: backInUp 1.5s 0.4s both;
          animation: backInUp 1.5s 0.4s both;
}

#hero-banner .hero-slider .owl-item.active .title.backInLeft {
  -webkit-animation: backInLeft 1.5s both;
          animation: backInLeft 1.5s both;
}

#hero-banner .hero-slider .owl-item.active .subtitle.backInLeft {
  -webkit-animation: backInLeft 1.5s 0.2s both;
          animation: backInLeft 1.5s 0.2s both;
}

#hero-banner .hero-slider .owl-item.active .desc.backInLeft {
  -webkit-animation: backInLeft 1.5s 0.3s both;
          animation: backInLeft 1.5s 0.3s both;
}

#hero-banner .hero-slider .owl-item.active .slider-btn.backInUp {
  -webkit-animation: backInUp 1.5s 0.4s both;
          animation: backInUp 1.5s 0.4s both;
}

#hero-banner .hero-slider li.item {
  position: relative;
  /*
        ======================
        All Small Elements
      */
}

#hero-banner .hero-slider li.item .bg-layer {
  width: 100%;
  height: auto;
}

#hero-banner .hero-slider li.item.left__align .main-img-element {
  right: 10%;
}

#hero-banner .hero-slider li.item.right__align .main-img-element {
  left: 10%;
}

#hero-banner .hero-slider li.item .main-img-element {
  position: absolute;
  bottom: 0;
  width: 41%;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#hero-banner .hero-slider li.item .slider-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#hero-banner .hero-slider li.item .slider-content .slider-txt {
  margin-top: 12%;
  max-width: 500px;
}

#hero-banner .hero-slider li.item .slider-content .slider-txt.right-align-text {
  margin-left: auto;
  text-align: right;
}

#hero-banner .hero-slider li.item .slider-content .slider-txt .title {
  font-size: clamp(1rem, 5vw, 4rem);
  margin: 10px 0;
  font-weight: bold;
}

#hero-banner .hero-slider li.item .slider-content .slider-txt .subtitle {
  font-size: clamp(1rem, 2vw, 3rem);
  font-weight: 500;
  margin: 0;
}

#hero-banner .hero-slider li.item .slider-content .slider-txt .desc {
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 26px;
}

#hero-banner .hero-slider li.item .slider-content .slider-txt .desc,
#hero-banner .hero-slider li.item .slider-content .slider-txt .title,
#hero-banner .hero-slider li.item .slider-content .slider-txt .subtitle {
  color: #fff;
}

#hero-banner .hero-slider li.item .slider-content .slider-txt .slider-btn {
  position: relative;
  background-color: transparent;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid white;
  outline: none;
  display: inline-block;
  padding: 13px 35px;
  border-radius: 5px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

#hero-banner .hero-slider li.item .slider-content .slider-txt .slider-btn:hover {
  background-color: white;
}

#hero-banner .hero-slider li.item .slider-content .sldier-item-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 100px;
}

#hero-banner .hero-slider li.item .slider-content .sldier-item-count p {
  color: white;
  margin: 0;
}

#hero-banner .hero-slider li.item .slider-content .sldier-item-count p.total-slider {
  font-size: 30px;
  font-weight: 500;
}

#hero-banner .hero-slider li.item .slider-content .sldier-item-count p.current-slider {
  margin-left: 10px;
  font-size: 4rem;
  color: black;
  -webkit-text-fill-color: transparent;
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}

#hero-banner .hero-slider li.item .all-small-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#hero-banner .hero-slider li.item .all-small-elements img {
  position: absolute;
  width: 100px;
  height: auto;
}

#hero-banner .hero-slider li.item .all-small-elements .element1 {
  top: 0;
  left: 100px;
  width: 60px;
  -webkit-animation: topToBottom 5s both infinite alternate;
          animation: topToBottom 5s both infinite alternate;
}

#hero-banner .hero-slider li.item .all-small-elements .element5 {
  bottom: 50px;
  left: 140px;
  width: 60px;
  -webkit-animation: leftToRight 8s both infinite alternate;
          animation: leftToRight 8s both infinite alternate;
}

#hero-banner .hero-slider li.item .all-small-elements .element2 {
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  -webkit-animation: topToBottom 8s both infinite alternate;
          animation: topToBottom 8s both infinite alternate;
}

#hero-banner .hero-slider li.item .all-small-elements .element4 {
  right: 7%;
  top: 20%;
  -webkit-animation: round 8s both infinite;
          animation: round 8s both infinite;
}

#hero-banner .hero-slider li.item .all-small-elements .element3 {
  width: 45px;
  right: 7%;
  bottom: 15%;
  -webkit-animation: leftToRight 5s both infinite alternate;
          animation: leftToRight 5s both infinite alternate;
}

#hero-banner .hero-slider .owl-nav {
  position: absolute;
  bottom: 10%;
  left: 6%;
}

#hero-banner .hero-slider .owl-nav button {
  color: #fff;
  font-size: 25px;
  outline: none;
}

#hero-banner .hero-slider .owl-nav button.disabled {
  opacity: 0.5;
}

#hero-banner .hero-slider .owl-nav button:first-child {
  margin-right: 10px;
}

/*
  Slider Text Animation
*/
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes round {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes round {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes topToBottom {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}

@keyframes topToBottom {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}

@-webkit-keyframes leftToRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
}

@keyframes leftToRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
}

.flash-deal {
  background-color: #308ede;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 100px 53px 100px;
  width: 100%;
}

.flash-deal .left-item .title {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.flash-deal .left-item .desc {
  font-weight: 500;
  margin: 0;
  font-size: 18px;
  margin-top: 22px;
}

.flash-deal .right-item .flash-deal-timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flash-deal .right-item .timer-box {
  margin-right: 10px;
}

.flash-deal .right-item .timer-box:last-child {
  margin-right: 0;
}

.flash-deal .right-item .timer-box .timer-digit {
  display: block;
  font-size: 30px;
  border: 2px solid #fff;
  padding: 23px 17px;
  width: 74px;
  height: 74px;
  border-radius: 5px;
}

.flash-deal .right-item .timer-box .timer-txt {
  text-align: center;
  display: block;
  margin-top: 20px;
  text-transform: uppercase;
}

.oneStop-category-slider .category-slider-wrapper .category-slider-item {
  background-color: #ebebeb;
  border-radius: 5px;
}

.oneStop-category-slider .category-slider-wrapper .category-slider-item a {
  position: relative;
  text-decoration: none;
  color: white;
  display: block;
}

.oneStop-category-slider .category-slider-wrapper .category-slider-item a .more {
  color: #f7f7f7;
  background-color: #f35451;
  border-radius: 10px;
  font-size: 12px;
  padding: 3px 10px;
  margin-left: 20px;
}

.oneStop-category-slider .category-slider-wrapper .category-slider-item a:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.oneStop-category-slider .category-slider-wrapper .category-slider-item img {
  width: 100px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 40px 0 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.oneStop-category-slider .category-slider-wrapper .category-slider-item .label {
  padding: 20px 0 10px 20px;
}

.oneStop-category-slider .category-slider-wrapper .category-slider-item .label h1 {
  margin: 0;
  font-size: 20px;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.oneStop-category-slider .category-slider-wrapper .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}

.oneStop-category-slider .category-slider-wrapper .owl-nav button {
  border: none;
  outline: none;
  position: absolute;
}

.oneStop-category-slider .category-slider-wrapper .owl-nav button.owl-next {
  right: -40px;
}

.oneStop-category-slider .category-slider-wrapper .owl-nav button.owl-prev {
  left: -40px;
}

.oneStop-category-slider .category-slider-wrapper .owl-nav button.disabled i {
  color: #c2c2c2;
}

.oneStop-category-slider .category-slider-wrapper .owl-nav button i {
  font-size: 30px;
  color: #f35451;
}

.brand {
  background-color: #2b2b2b;
}

.brand .title {
  color: #fff;
  /*  font-size: 3.5rem;*/
  font-weight: bold;
}

.brand .desc {
  color: #ebebeb;
  font-size: 18px;
}

.brand .brand-wrapper {
  margin-bottom: 10px;
}

.brand .brand-wrapper .owl-stage {
  padding: 20px 0 0 0;
}

.brand .brand-wrapper .owl-item img {
  width: auto;
}

.brand .brand-wrapper .owl-nav {
  position: absolute;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}

.brand .brand-wrapper .owl-nav button {
  border: none;
  outline: none;
  position: absolute;
  color: white;
  font-size: 3rem;
}

.brand .brand-wrapper .owl-nav button.disabled {
  color: rgba(221, 221, 221, 0.527);
  cursor: not-allowed;
}

.brand .brand-wrapper .owl-nav .owl-prev {
  left: -40px;
}

.brand .brand-wrapper .owl-nav .owl-next {
  right: -40px;
}

.brand .brand-wrapper img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.brand .brand-wrapper img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.ads-layer .ads-wrapper .ads-item {
  padding: 20px;
}

.ads-layer .ads-wrapper .ads-item .title {
  margin: 10px 0 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.ads-layer .ads-wrapper .ads-item p {
  color: #fff;
  margin: 5px 0 0 0;
  font-size: 16px;
}

.ads-layer .ads-wrapper:nth-child(1) .ads-item {
  background-color: #0055c4;
}

.ads-layer .ads-wrapper:nth-child(2) .ads-item {
  background-color: #f35451;
}

.ads-layer .ads-wrapper:nth-child(3) .ads-item {
  background-color: #8326d4;
}

#newsletter .newsletter-wrapper {
  margin-top: 40px;
}

#newsletter .newsletter-wrapper form input {
  width: 100%;
  max-width: 700px;
  display: block;
  border: none;
  outline: none;
  height: 50px;
  padding: 10px;
  text-align: center;
}

#newsletter .newsletter-wrapper form ::-webkit-input-placeholder {
  font-weight: bold;
  color: #999898;
}

#newsletter .newsletter-wrapper form :-ms-input-placeholder {
  font-weight: bold;
  color: #999898;
}

#newsletter .newsletter-wrapper form ::-ms-input-placeholder {
  font-weight: bold;
  color: #999898;
}

#newsletter .newsletter-wrapper form ::placeholder {
  font-weight: bold;
  color: #999898;
}

#newsletter .newsletter-wrapper form button {
  display: inline-block;
  border: none;
  outline: none;
  width: 200px;
  height: 50px;
  padding: 15px 0;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
}

#newsletter.newsletter-grey {
  background-color: #f1f1f1;
}

#newsletter.newsletter-grey .title {
  color: #2b2b2b;
}

#newsletter.newsletter-grey .newsletter-wrapper {
  margin-top: 40px;
}

#newsletter.newsletter-grey .newsletter-wrapper form {
  text-align: center;
}

#newsletter.newsletter-grey .newsletter-wrapper form input {
  border: 1px solid rgba(43, 43, 43, 0.2);
}

#newsletter.newsletter-grey .newsletter-wrapper form button {
  color: #fff;
  border-radius: 0;
  margin-top: 30px;
}

#newsletter.newsletter-red {
  background-color: #2b2b2b;
}

#newsletter.newsletter-red .title {
  color: #fff;
}

#newsletter.newsletter-red form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#newsletter.newsletter-red form input {
  border: 1px solid rgba(43, 43, 43, 0.2);
  max-width: 500px;
}

#newsletter.newsletter-red form button {
  background-color: #f35451;
  color: #fff;
  margin-top: 0;
  border-radius: 0 5px 5px 0;
}

#footer-info .footer-content .title {
  font-weight: 500;
}

#footer-info .footer-content .address {
  line-height: 26px;
}

#footer-info .footer-content .social-icons {
  margin-bottom: 20px;
}

#footer-info .footer-content .social-icons li {
  display: inline-block;
  font-size: 25px;
  margin-right: 18px;
}

#footer-info .footer-content .social-icons li:last-child {
  margin-right: 0;
}

#footer-info .footer-content .social-icons li i {
  color: white;
  width: 35px;
  height: 35px;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#footer-info .footer-content .social-icons li .fa-facebook-f {
  background-color: #3b5999;
}

#footer-info .footer-content .social-icons li .fa-twitter {
  background-color: #55acee;
}

#footer-info .footer-content .social-icons li .fa-youtube-square {
  background-color: #cd201f;
}

#footer-info .footer-content .social-icons li .fa-linkedin-in {
  background-color: #0077b5;
}

#footer-info .footer-content .app-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer-info .footer-content .app-icon a {
  display: block;
  width: calc(91% / 2);
}

#footer-info .footer-content .app-icon a img {
  width: 100%;
}

#footer-info .footer-content li a {
  color: #2b2b2b;
  text-decoration: none;
}

#footer-info .footer-content li a i {
  color: #f35451;
  font-size: 20px;
}

#footer-info .footer-content .page-menu {
  line-height: 34px;
}

#footer-info .footer-content .page-menu li a:hover {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}

.footer-copyright {
  background-color: #f35451;
  padding: 20px 0;
}

.footer-copyright .uk-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-copyright p {
  color: #fff;
}

.footer-copyright .pages li {
  display: inline-block;
  margin-right: 10px;
}

.footer-copyright .pages li:last-child {
  margin-right: 0;
}

.footer-copyright .pages li a {
  color: #fff;
}

.comment-btn {
  position: fixed;
  bottom: 100px;
  right: 40px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 25px;
  background-color: #f35451;
  color: #fff;
  border-radius: 50%;
  text-align: center;
}

.comment-btn:hover {
  color: #fff;
}

.comment-btn::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  background-color: rgba(243, 84, 81, 0.3);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: -1;
}

.display-banner-txt {
  background-color: #f1f1f1;
  padding: 50px 0;
  text-align: center;
}

.display-banner-txt h1 {
  font-weight: bold;
  margin: 0;
}

#faq-page .faq-item {
  background-color: #f7f7f7;
}

#faq-page .faq-item.uk-open .uk-accordion-title::before {
  content: "\f068";
  color: white;
}

#faq-page .faq-item .uk-accordion-title::before {
  content: "\f067";
  background-image: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

#faq-page .faq-item .title {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 10px 0;
  background-color: #ececec;
  padding: 10px;
}

#faq-page .faq-item .uk-accordion-content {
  margin-top: 0;
  padding: 10px;
}

#contact .submit-btn {
  background-color: #f35451;
  color: #fff;
  border: none;
  outline: none;
  height: 40px;
  width: 150px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

#map {
  width: 100%;
}

#map iframe {
  width: 100%;
  height: 500px;
}

#brand .brand-item .brand-logo {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3px;
  -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 3px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

#brand .brand-item .brand-logo img {
  width: 60%;
  height: auto;
}

#brand .brand-item .brand-name {
  background-color: #e1eeff;
  margin: 0;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
}

#compare-product .compare-product-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow-x: auto;
}

#compare-product .compare-product-wrapper .compare-product-headline li {
  border: 1px solid #ddd;
  border-right-color: transparent;
}

#compare-product .compare-product-wrapper .compare-product-item li {
  border: 1px solid #ddd;
  text-align: center;
}

#compare-product .compare-product-wrapper .compare-product-item:last-child li {
  border-left-color: transparent;
}

#compare-product .compare-product-wrapper ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#compare-product .compare-product-wrapper ul li {
  padding: 10px;
}

#compare-product .compare-product-wrapper ul li.compare-product-img {
  position: relative;
  text-align: center;
}

#compare-product .compare-product-wrapper ul li.compare-product-img .fa-times {
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 1;
  font-size: 25px;
  color: #a7a6a6;
  cursor: pointer;
}

#compare-product .compare-product-wrapper ul li.compare-product-img img {
  max-width: 100%;
  height: auto;
}

.default-form-modal header {
  padding: 10px;
}

.default-form-modal header .title {
  color: #fff;
  margin: 0;
  font-weight: bold;
}

.default-form-modal header button svg line {
  stroke: #fff !important;
  stroke-width: 3;
}

.default-form-modal .form-wrapper {
  padding: 20px;
}

.default-form-modal .form-wrapper label {
  margin-bottom: 10px;
  display: block;
}

.default-form-modal .form-wrapper .uk-form-icon {
  top: 12px;
  left: 12px;
}

.default-form-modal .form-wrapper .btn-box {
  margin: 20px 0;
}

.default-form-modal .form-wrapper .btn-box button {
  color: #fff;
  border: none;
  outline: none;
  padding: 0 20px;
  height: 40px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.default-form-modal .form-wrapper .btn-box button:not(.btn-hover):hover {
  opacity: 0.7;
}

.default-form-modal .form-wrapper .btn-box a {
  color: #2b2b2b;
  font-weight: bold;
}

.default-form-modal .form-wrapper .social-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.default-form-modal .form-wrapper .social-btn-box .item {
  width: 180px;
  margin-right: 10px;
}

.default-form-modal .form-wrapper .social-btn-box .item:last-child {
  margin-right: 0;
}

.default-form-modal .form-wrapper .social-btn-box a {
  border: 1px solid #2b2b2b;
  outline: none;
  width: 100%;
  height: 40px;
  background-color: transparent;
  border-radius: 5px;
  font-weight: 500;
  font-size: 17px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.default-form-modal .form-wrapper .social-btn-box a i {
  font-size: 18px;
}

.default-form-modal .form-wrapper .social-btn-box .sign-in-with-google {
  color: #f35451;
  border-color: #f35451;
}

.default-form-modal .form-wrapper .social-btn-box .sign-in-with-google:hover {
  color: #fff;
  background-color: #f35451;
}

.default-form-modal .form-wrapper .social-btn-box .sign-in-with-facebook {
  color: #3b5999;
  border-color: #3b5999;
}

.default-form-modal .form-wrapper .social-btn-box .sign-in-with-facebook:hover {
  color: #fff;
  background-color: #3b5999;
}

.default-form-modal .form-wrapper .social-btn-box .sign-in-with-phone {
  color: #2b2b2b;
  border-color: #2b2b2b;
}

.default-form-modal .form-wrapper .social-btn-box .sign-in-with-phone:hover {
  color: #fff;
  background-color: #2b2b2b;
}

::-webkit-input-placeholder {
  font-weight: lighter !important;
}

:-ms-input-placeholder {
  font-weight: lighter !important;
}

::-ms-input-placeholder {
  font-weight: lighter !important;
}

::placeholder {
  font-weight: lighter !important;
}

.order-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0 10px 0;
}

.order-details > div .fas {
  width: 40px;
  height: 40px;
  color: white;
  text-align: center;
  line-height: 40px;
  font-size: 17px;
  border-radius: 4px;
}

.order-details .share {
  position: relative;
}

.order-details .share .fas {
  cursor: pointer;
}

.order-details .share:hover ul {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  opacity: 1;
  pointer-events: auto;
}

.order-details .share ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.order-details .share ul li {
  margin-right: 20px;
}

#product_details p {
  color: #818181;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

#product_details p:hover {
  color: #333;
}

.product_details_custom .uk-subnav li a {
  font-size: 18px;
  text-transform: capitalize;
  padding: 10px 20px;
}

#showImgOverlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 73%;
  background-color: white;
  background-repeat: no-repeat;
  background-size: 1500px 1500px;
  display: none;
  z-index: 1;
}

figure.zoom {
  display: inline-block;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

/*
    =======================
    Product Filter Item
*/
#product-filter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#product-filter-wrapper .filter-sidebar {
  width: 279px;
  position: relative;
}

#product-filter-wrapper .filter-sidebar .inner-content {
  position: -webkit-sticky;
  position: sticky;
  top: 103px;
}

#product-filter-wrapper .filter-sidebar .main-title {
  padding: 12px 10px;
  font-size: 20px;
  text-align: left;
}

#product-filter-wrapper .filter-sidebar .filter-list li {
  margin-top: 0;
}

#product-filter-wrapper .filter-sidebar .filter-list li .submit-btn {
  padding: 6px 0;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-title {
  position: relative;
  padding: 10px 20px;
  background-color: #f5f5f5;
  font-size: 1.15rem;
  text-align: left;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content {
  margin-top: 0;
  padding: 20px;
  text-align: left;
  background-color: #eeeeee;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .select2-container .select2-selection--single,
#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .select2-container--default .select2-selection--single {
  background-color: #f5f5f5;
  border-color: transparent;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content input[type="checkbox"] {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 25px;
  height: 25px;
  background-color: #f5f5f5;
  border: 1px solid #999;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content input[type="checkbox"]:checked {
  border-color: transparent;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content input[type="checkbox"]:checked::before, #product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 0;
  width: 25px;
  height: 3px;
  border-radius: 5px;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content input[type="checkbox"]:checked::before {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 15px;
  left: 6px;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content input[type="checkbox"]:checked::after {
  top: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 9px;
  left: 1px;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content ul li label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .price-range-filter #price-range {
  height: 7px;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .price-range-filter .ui-slider .ui-slider-handle {
  border-radius: 50%;
  top: -0.5em;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .color-list,
#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .size-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: left;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .color-list li,
#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .size-list li {
  width: calc(100% / 2);
  margin-bottom: 20px;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .color-list li label,
#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .size-list li label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 15px;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .brand-list li input[type="checkbox"] {
  margin-right: 10px;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .brand-list li label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .brand-list li label span {
  font-weight: 500;
  font-size: 15px;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-content .brand-list li label img {
  width: 24px;
  height: auto;
  margin-right: 10px;
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-open > .uk-accordion-title::before {
  content: "\f068";
}

#product-filter-wrapper .filter-sidebar .filter-list .uk-accordion-title::before {
  content: "\f067";
  position: absolute;
  right: 5px;
  top: 10px;
  font-size: 18px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-image: none;
}

#product-filter-wrapper .oneStop-product {
  width: calc(100% - 310px);
}

.pagination-container {
  margin-top: 30px;
}

.pagination-container #product-pagination ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.pagination-container #product-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #e8e8e8;
  border-radius: 50%;
  margin-right: 5px;
  text-align: center;
  line-height: 35px;
}

.pagination-container #product-pagination li:last-child {
  margin-right: 0;
}

.pagination-container #product-pagination li a {
  display: block;
  color: #333;
  text-decoration: none;
}

.w-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.txt-grey-color {
  color: #333;
  text-decoration: none;
}

.txt-grey-color:hover {
  color: #333;
}

/*
    =======================
    All Small Component
*/
.fashion-payment-btn {
  text-align: center;
}

.fashion-payment-btn .title {
  font-size: 30px;
}

.fashion-payment-btn .paymentBtnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.fashion-payment-btn .paymentBtnBox .payment_click {
  margin-right: 20px;
  height: 45px;
  line-height: 40px;
  padding: 5px 20px;
  border-radius: 5px;
  cursor: pointer;
  background-color: #dddddd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.fashion-payment-btn .paymentBtnBox .payment_click input {
  display: none;
}

.fashion-payment-btn .paymentBtnBox .payment_click span {
  color: #111;
}

.fashion-payment-btn .paymentBtnBox .payment_click img {
  width: 30px;
  height: auto;
}

.delivery-form-field .select2-container--default .select2-selection--single {
  border-color: #e5e5e5;
}

.delivery-form-field .select2-container .select2-selection--single {
  height: 40px;
}

.delivery-form-field .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

.delivery-form-field .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px;
}

.fashion-process-btn {
  width: 100%;
  max-width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  outline: none;
  cursor: pointer;
}

.fashion-process-btn:hover {
  opacity: 0.8s;
}

.fashion-process-btn span {
  padding: 15px;
  font-size: 16px;
  color: white;
}

.fashion-process-btn span:first-child {
  width: 60%;
  background-color: rgba(0, 0, 0, 0.1);
}

.fashion-process-btn span:last-child {
  padding: 15px;
  font-size: 16px;
  width: 40%;
}

.welcomeMessage {
  margin: 0 auto;
  text-align: center;
}

.welcomeMessage h1 {
  margin: 0;
  font-size: 31px;
}

.btn-payment {
  padding: 12px;
  width: 200px;
  height: 45px;
  margin-top: 20px;
  font-size: 18px;
  color: #ffffff;
  border: none;
  outline: none;
  padding: 7px 15px;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-payment:hover {
  opacity: 0.7;
}

.mob-bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  display: none;
  z-index: 99;
}

.mob-bottom-menu .btn-box {
  width: calc(100% - 80px);
}

.mob-bottom-menu .mobPlaceOrder {
  text-decoration: none;
}

.mob-bottom-menu .btn-box .mobPlaceOrder {
  width: 100%;
  height: 100%;
  padding: 10px;
  color: white;
  text-transform: capitalize;
  display: block;
}

.mob-bottom-menu .btn-box .processBtnBoxMob {
  display: none;
}

.mob-bottom-menu .btn-box .processBtnBoxMob .proceedAmount {
  width: 100%;
  color: white;
  font-size: 16px;
  text-align: left;
  padding-left: 20px;
  border: none;
  outline: none;
  cursor: pointer;
}

.mob-bottom-menu .btn-box .processBtnBoxMob .proceedAmount {
  line-height: 45px;
}

.mob-bottom-menu .btn-box .process_order {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 0;
  padding: 0;
  border: none;
  color: white;
}

.mob-bottom-menu .btn-box .process_order > span {
  width: calc(100% / 2);
  height: 100%;
  line-height: 45px;
}

.mob-bottom-menu .btn-box .confirmBtnBoxMob {
  display: none;
  width: 100%;
  height: 100%;
}

.mob-bottom-menu .btn-box .confirmBtnBoxMob button,
.mob-bottom-menu .btn-box .confirmBtnBoxMob span {
  width: calc(100% / 2);
  color: white;
  font-size: 16px;
  line-height: 45px;
}

.mob-bottom-menu .btn-box .confirmBtnBoxMob button {
  padding: 0;
  border-radius: 0;
  border: none;
  outline: none;
  cursor: pointer;
}

.mob-bottom-menu .openCartSlideInMobApp {
  position: relative;
  background-color: tomato;
  color: white;
  width: 80px;
  padding: 10px;
}

.mob-bottom-menu .openCartSlideInMobApp .badge {
  background-color: #333333;
  color: white;
  position: absolute;
  top: -15px;
  left: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 500px;
  vertical-align: middle;
  font-size: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 600px) {
  .mob-bottom-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .proceedBtnBox {
    display: none;
  }
  .btn-payment.placeOrderConfirm.placeOrderConfirmPc {
    display: none;
  }
  .fashion-payment-btn .title {
    font-size: 25px;
    text-align: center;
  }
  #newsletter.newsletter-red .title {
    font-size: 2.7rem;
  }
}

.for-payment-success {
  border-radius: 10px;
  padding: 140px 0 180px 0;
}

.for-payment-success .title {
  font-size: 1.6rem;
  border: 1px solid #ddd;
  display: inline-block;
  margin: 0 auto;
  padding: 30px;
  border-radius: 5px;
}

.txt-green {
  color: green;
}

/*
  Product Details Page Start 
*/
.product-info-wrapper .product-code {
  color: #777;
  font-size: 14px;
  margin: 0;
}

.product-info-wrapper .title_d {
  font-size: clamp(1.5rem, 5vw, 3rem);
  margin: 10px 0;
}

.product-info-wrapper .product-details-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-info-wrapper .product-details-review ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.product-info-wrapper .product-details-review ul li {
  font-size: 14px;
  color: rgba(119, 119, 119, 0.651);
  display: inline-block;
  margin-right: 1px;
}

.product-info-wrapper .product-details-review ul li.active {
  color: #fcbd00;
}

.product-info-wrapper .product-details-review ul li:last-child {
  margin-right: 0;
}

.product-info-wrapper .product-details-review span {
  margin-left: 15px;
  font-size: 14px;
  color: #777;
}

.product-info-wrapper .productModalAmount {
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: #999;
  font-weight: 500;
  margin: 15px 0;
}

.product-info-wrapper .des_d {
  line-height: 26px;
  color: #777;
  margin: 0;
}

.product-info-wrapper .quantity-box {
  margin: 15px 0 20px 0;
}

.product-info-wrapper .quantity-box .txt-label {
  color: #555;
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
}

.product-info-wrapper .quantity-box .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-info-wrapper .quantity-box .quantity .showIncreaseDecreaseVal {
  font-size: 20px;
  width: 50px;
  text-align: center;
}

.product-info-wrapper .quantity-box .quantity button {
  border: 1px solid;
  width: 40px;
  height: 40px;
  font-size: 18px;
  background-color: white;
  color: #333;
  border-radius: 3px;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-info-wrapper .variation_product_select_div {
  margin: 10px 0 15px 0;
}

.product-info-wrapper .variation_product_select_div .select2-container .select2-selection--single {
  height: 40px;
}

.product-info-wrapper .variation_product_select_div .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
  width: 40px;
}

.product-info-wrapper .variation_product_select_div .select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 0;
  width: calc(100% - 40px);
}

.product-info-wrapper .variation_product_select_div .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-info-wrapper .variation_product_select_div .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 12px 10px 0 10px;
  margin-left: 0;
  margin-top: 0;
  position: relative;
  left: 0;
  top: 0;
  border-top-color: white;
}

.product-info-wrapper .variation_product_select_div .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-width: 0 10px 12px 10px;
  border-bottom-color: white;
}

.product-info-wrapper .variation_product_select_div .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

.product-info-wrapper .variation_product_select_div .select2-container--default .select2-selection--single {
  background-color: #f5f5f5;
  border-color: transparent;
}

.product-info-wrapper .variation_product_select_div .product-info-wrapper .variation_product_select_div .select2-container .select2-selection--single,
.product-info-wrapper .variation_product_select_div .product-info-wrapper .variation_product_select_div .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 40px;
  font-size: 30px;
}

/*
  Product Details Page End 
*/
/*
    =======================
    All Others Component
*/
.main_div_product #productDetails .productImage {
  text-align: center;
}

.main_div_product #productDetails #product-details-slider img {
  border: 1px solid rgba(153, 153, 153, 0.336);
  padding: 8px;
  width: 90px;
  height: auto;
}

.main_div_product #productDetails .productAllInfoPage .title_d {
  font-size: 24px;
}

.main_div_product #productDetails .productAllInfoPage .product-code {
  margin: 15px 0;
}

.main_div_product #productDetails .productAllInfoPage .productModalAmount {
  margin: 10px 0;
  font-size: 25px;
  font-weight: bold;
}

.main_div_product #productDetails .productAllInfoPage .modalAmount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_div_product #productDetails .productAllInfoPage .modalAmount .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_div_product #productDetails .productAllInfoPage .modalAmount .quantity button {
  border: 1px solid #d6d6d6e0;
  background-color: transparent;
  outline: none;
  padding: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main_div_product #productDetails .productAllInfoPage .modalAmount .quantity .showIncreaseDecreaseVal {
  font-size: 1.8rem;
  margin: 0 10px;
}

.main_div_product #productDetails .productAllInfoPage .buyItemBtn {
  color: #ffffff;
  border: none;
  outline: none;
  padding: 10px 20px;
  margin: 20px auto 0 auto;
  display: inline-block;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}

.main_div_product #productDetails .productAllInfoPage .modalOrderInfo {
  background-color: #ececec;
  padding: 10px;
  margin: 10px 0;
}

.main_div_product #productDetails .productAllInfoPage .modalOrderInfo .modalSocialShare {
  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;
}

.main_div_product #productDetails .productAllInfoPage .modalOrderInfo .modalSocialShare ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main_div_product #productDetails .productAllInfoPage .modalOrderInfo .modalSocialShare ul li {
  margin-right: 10px;
}

.order_form_div .select2-container--default .select2-selection--single {
  border: 1px solid #dadada;
}

.order_form_div .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

.order_form_div .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 35px;
}

.order_form_div .select2-container .select2-selection--single {
  height: 40px;
}

.proceedBtnBox .process_order {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.proceedBtnBox .process_order span {
  display: block;
  padding: 15px;
  font-size: 16px;
}

.proceedBtnBox .process_order span:first-child {
  background-color: rgba(0, 0, 0, 0.1);
  width: 150px;
}

.proceedBtnBox .process_order span:last-child {
  width: 100px;
}

.affiliateLinkField {
  max-width: 480px;
}

.conform-btn-box {
  margin-top: 20px;
}

.font-30 {
  font-size: 30px;
}

/*
    =======================
    All Media Query
*/
#onestop-sidebar li > a {
  font-size: 13px;
}

#onestop-sidebar .top-lvl {
  line-height: 30px;
}

#onestop-sidebar .uk-nav-parent-icon > .uk-parent > a::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#onestop-sidebar .uk-nav-parent-icon > .uk-parent > a[aria-expanded="false"]::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#onestop-sidebar .uk-nav-parent-icon > .uk-parent > a[aria-expanded="true"]::after {
  -webkit-transform: rotate(89deg);
          transform: rotate(89deg);
}

@media (min-width: 992px) {
  #onestop-header .mobileMenubar {
    display: none;
  }
}

@media (max-width: 992px) {
  #onestop-header .uk-container {
    height: 65px;
  }
  #onestop-header .right-content {
    display: none;
  }
  .uk-offcanvas-overlay::before {
    background: rgba(0, 0, 0, 0.6);
  }
  #hero-banner .hero-slider li .slider-content .slider-txt {
    margin-top: 7%;
  }
  .flash-deal {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 30px 20px;
  }
  .flash-deal .left-item,
  .flash-deal .right-item {
    text-align: center;
    width: 100%;
  }
  .flash-deal .right-item {
    margin-top: 30px;
  }
  .flash-deal .right-item .flash-deal-timer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #product-filter-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #product-filter-wrapper .filter-sidebar {
    margin-bottom: 20px;
  }
  #product-filter-wrapper .filter-sidebar,
  #product-filter-wrapper .oneStop-product {
    width: 100%;
  }
}

.yourAffiliateLink label,
.yourAffiliateLink input {
  font-weight: bold;
}

@media (max-width: 600px) {
  #hero-banner .hero-slider li.item .slider-content .slider-txt .desc {
    line-height: 20px;
  }
  #showImgOverlay {
    display: none !important;
  }
  #hero-banner .hero-slider li.item .slider-content .slider-txt {
    margin-top: 5%;
  }
  #hero-banner .hero-slider li.item .slider-content .slider-txt .title {
    margin: 5px 0;
  }
  #hero-banner .hero-slider li.item .slider-content .slider-txt .desc {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #hero-banner .hero-slider li.item .all-small-elements .element4 {
    opacity: 0.4;
    width: 60px;
  }
  #hero-banner .hero-slider li.item .all-small-elements .element1,
  #hero-banner .hero-slider li.item .all-small-elements .element2,
  #hero-banner .hero-slider li.item .all-small-elements .element3,
  #hero-banner .hero-slider li.item .all-small-elements .element5 {
    width: 30px;
  }
  .yourAffiliateLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .history-btn a {
    display: block;
    width: 100%;
  }
  .history-btn a:last-child {
    margin-left: 0 !important;
  }
  .history-btn a span {
    width: 100%;
  }
  .flash-deal .left-item .title {
    font-size: 2.2rem;
  }
  .top-nav .uk-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top-nav .uk-container ul {
    width: 100%;
    text-align: center;
  }
  .top-nav .uk-container ul li a {
    font-size: 14px;
  }
  .top-nav .uk-container ul:first-child {
    margin-bottom: 10px;
  }
  #order-complete .order-complete-processes {
    margin: 80px 0 0 0;
    display: block;
    text-align: center;
  }
  #order-complete .order-complete-processes li {
    position: relative;
    display: block;
    margin: 0 auto 100px auto;
    width: 280px;
  }
  #order-complete .order-complete-processes li span {
    margin-left: 65px;
    font-weight: bold;
  }
  #order-complete .order-complete-processes li .fa-check {
    left: 13px;
    top: -3px;
  }
  #order-complete .order-complete-processes li:nth-child(2) .fa-check,
  #order-complete .order-complete-processes li:nth-child(3) .fa-check,
  #order-complete .order-complete-processes li:nth-child(4) .fa-check,
  #order-complete .order-complete-processes li:nth-child(5) .fa-check,
  #order-complete .order-complete-processes li:nth-child(2) .fa-arrow-left,
  #order-complete .order-complete-processes li:nth-child(3) .fa-arrow-left,
  #order-complete .order-complete-processes li:nth-child(4) .fa-arrow-left,
  #order-complete .order-complete-processes li:nth-child(5) .fa-arrow-left,
  #order-complete .order-complete-processes li:nth-child(2) .fa-times,
  #order-complete .order-complete-processes li:nth-child(3) .fa-times,
  #order-complete .order-complete-processes li:nth-child(4) .fa-times,
  #order-complete .order-complete-processes li:nth-child(5) .fa-times {
    left: 13px;
    top: -3px;
  }
  #order-complete .order-complete-processes li::after {
    left: 0;
    top: -17px;
  }
  #order-complete .order-complete-processes li:nth-child(2)::after, #order-complete .order-complete-processes li:nth-child(3)::after, #order-complete .order-complete-processes li:nth-child(4)::after, #order-complete .order-complete-processes li:nth-child(5)::after {
    left: 0;
  }
  #order-complete .order-complete-processes li:first-child::before {
    background-color: transparent;
  }
  #order-complete .order-complete-processes li.return-order::before {
    background-color: #f1b000;
    z-index: -1;
  }
  #order-complete .order-complete-processes li.cancel-order::before {
    background-color: #f35451;
    z-index: -1;
  }
  #order-complete .order-complete-processes li::before, #order-complete .order-complete-processes li.active::before {
    width: 6px;
    height: 100px;
    top: -95px;
    left: 22px;
  }
  .placeOrderConfirm.placeOrderConfirmPc {
    display: none;
  }
  #product-cart .cart-item .cart-product-info .cart-product-metadata .cart-product-info-wrapper .cart-product-quantity-wrapper button {
    padding: 6px 8px;
  }
  #product-cart .cart-item .cart-product-info .cart-product-metadata .cart-product-info-wrapper .cart-product-price,
  #product-cart .cart-item .cart-product-remove span {
    font-size: 14px;
  }
  #hero-banner .hero-slider li .slider-content .slider-txt {
    margin-top: 0;
  }
  #hero-banner .hero-slider li .slider-content .slider-txt .title {
    margin: 10px 0 6px 0;
  }
  #hero-banner .hero-slider li .slider-content .slider-txt .desc {
    margin: 0px 0 3px 0;
    font-size: 12px;
  }
  #hero-banner .hero-slider li .slider-content .slider-txt .slider-btn {
    padding: 5px 10px !important;
    font-size: 12px !important;
  }
  .paymentMethod .paymentBtnBox {
    margin-right: 0;
    text-align: center;
  }
  .paymentMethod .paymentBtnBox label {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/*# sourceMappingURL=style.css.map */