 * {
  margin:0px;
  padding:0px;
  border:none;
}
:root{
  --theme-color: rgba(0, 62, 172, 1);
  --secondary-color: rgba(17, 17, 17, 1);
  --text-color: rgba(17, 17, 17, 1);
  --title-color: rgba(17, 17, 17, 1);
  --text-font: 'Roboto', sans-serif;
  --title-font: "Rethink Sans", sans-serif;
}
body {
  font-size:16px;
  color: var(--text-color);
  line-height:28px;
  font-weight:400;
  background:#ffffff;
  font-family: var(--text-font);
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, a, p, div, label, span{
  overflow-wrap: anywhere;
}
@media (min-width:1200px) {
  .container {
    max-width: 1680px;
    padding: 0px 15px;
  }
}

.large-container{
  max-width: 1680px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid{
  padding: 0px;
}

.auto-container{
  position:static;
  max-width:1320px;
  padding:0px 15px;
  margin:0 auto;
}

.small-container{
  max-width:680px;
  margin:0 auto;
}

.site{
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}
a{
  text-decoration:underline;
  color: var(--theme-color);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
a:hover{
  text-decoration:none;
}
input, button, select, textarea{
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 18px;
  background: transparent;
}
button[type=submit]:focus, button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, a:focus {
  outline-width: 1px;
  outline-offset: -3px;
  outline-style: dotted;
  outline-color: inherit;
  text-decoration: none;
}
::-webkit-input-placeholder {
  color: inherit;
}
::-moz-input-placeholder {
  color: inherit;
}
::-ms-input-placeholder {
  color: inherit;
}
.main-header ol, 
.main-header ul, 
.main-header li,
.sidebar ol, 
.sidebar ul, 
.sidebar li,
.lower-content ol, 
.lower-content ul, 
.lower-content li,
.shop-carousel li,
.main-footer ol, 
.main-footer ul, 
.main-footer li{
  list-style:none;
  padding:0px;
  margin:0px; 
}
input{
  transition: all 500ms ease;
}
input:focus,
select:focus,
textarea:focus{
  outline-width: 1px;
  outline-offset: -3px;
  outline-style: dotted;
  outline-color: inherit;
  box-shadow: none;
  transition: all 500ms ease;
}
.nice-select:focus,
.nice-select.open,
.nice-select .option:focus {
  outline-width: 1px;
  outline-offset: -3px;
  outline-style: dotted;
  outline-color: inherit;
  box-shadow: none;
  transition: all 500ms ease;
}
p{
  position: relative;
  font-family: var(--text-font);
  color: var(--text-color);
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}
h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--title-color);
  margin: 0px;
  transition: all 500ms ease;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}
.st-py-default{
  padding: 80px 0;
}
.theme-btn{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--text-font);
  color: #fff !important;
  text-align: center;
  border-radius: 50px;
  padding: 10px 40px;
  text-decoration: none;
  z-index: 1;
  background: var(--theme-color);
  transition: all 500ms ease;
}
.theme-btn.btn-two{
  background: var(--secondary-color);
}
.theme-btn span{
  background: var(--secondary-color);
}
.theme-btn span {
  position: absolute;
  width: 25%;
  height: 100%;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.theme-btn:hover span,
.theme-btn:focus span {
  transform: translateY(0) scale(2);
}
.theme-btn span:nth-child(1) {
  --n: 1;
}
.theme-btn span:nth-child(2) {
  --n: 2;
}
.theme-btn span:nth-child(3) {
  --n: 3;
}
.theme-btn span:nth-child(4) {
  --n: 4;
}
/* Preloader */
.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  background: var(--secondary-color);
}
.preloader-close{
  position: fixed;
  z-index: 99999999;
  font-size: 16px;
  background: #fff;
  color: red;
  width: 40px;
  height: 40px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
  font-weight: 400;
}
.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
.handle-preloader .animation-preloader .spinner{
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}
.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  position: absolute;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading{
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  color: #ffffff;
}
.handle-preloader .animation-preloader .spinner{
  border: 3px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.5); 
}
/* AnimaciÃ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {font-size: 40px; letter-spacing: 10px;}
}

/** scroll-to-top **/
.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  box-shadow: inset 0 0 0 2px rgba(0,46,65,0.2);
  border-radius: 50%;
  z-index: 90000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-to-top.scroll-top-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}
.scroll-to-top::after {
  position: absolute;
  content: "\f077";
  font:normal normal normal 14px/1 FontAwesome;
  text-align: center;
  line-height: 50px;
  font-size: 14px;
  color: var(--theme-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear
}
.scroll-to-top:hover::before,
.scroll-to-top:focus::before {
  opacity: 1
}
.scroll-to-top .scroll-top-inner path {
  stroke-width: 4;
  fill: transparent;
  box-sizing: border-box;
  stroke: var(--theme-color);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.sec-title{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.sec-title h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
}
.sec-title.light h2{
  color: #fff;
}
.sec-title.centred {
  display: block !important;
  text-align: center;
}

/** main-header **/

.main-header{
  position:relative;
  left:0px;
  top:0px;
  right: 0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.mobile-menu-visible .main-header{
  z-index: 999999;
}
.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  left:0px;
  top:0px;
  width:100%;
  z-index:0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/** language-switcher **/

.language-picker label{
  display: none;
}
.language-picker .nice-select{
  display: none;
}
.language-picker {
  position: relative;
  display: inline-block;
}
.language-picker__button .icon {
  display: none;
}
.language-picker__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 110px;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  padding: 15px 15px;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  text-align: left;
  transition: visibility 0s .2s, opacity .2s, -webkit-transform .2s ease-out;
  transition: visibility 0s .2s, opacity .2s, transform .2s ease-out;
  transition: visibility 0s .2s, opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}
.language-picker__button[aria-expanded=true]+.language-picker__dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  transition: opacity .2s, -webkit-transform .2s ease-out;
  transition: opacity .2s, transform .2s ease-out;
  transition: opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}
.language-picker__item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}
.language-picker__button{
  position: relative;
  border: none !important;
  padding: 0px;
  padding-right: 7px;
}
.language-picker__button:before{
  position: absolute;
  content: '\e900';
  font-family: 'icomoon';
  font-size: 6px;
  top: 7px;
  right: 0px;
  color: #fff;
}
.language-picker__flag {
  position: relative;
  font-size: 14px;
  line-height: 16px;
  font-family: var(--text-font);
  font-weight: 400;
  color: #222;
  padding-left: 33px;
  text-transform: uppercase;
}
.language-picker__list .language-picker__flag{
  padding: 4px 0px 4px 33px;
}
.language-picker__flag.language-picker__label:after {
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-1.png);
  width: 10px;
  height: 6px;
  top: 6px;
  right: 0px;
  background-repeat: no-repeat;
}
.language-picker__flag.language-picker__label{
  padding-left: 26px;
  padding-right: 0px;
  color: #fff;
  padding-right: 16px;
}
.language-picker__flag em{
  font-style: normal;
}
.language-picker__flag::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  top: 4px;
  left: 0px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.language-picker__flag.language-picker__label:before{
  top: -3px;
  left: 0px;
}
.language-picker__dropdown .language-picker__flag::before {
  margin-right: .5rem;
  margin-right: var(--space-xs);
  top: -1px;
}
.language-picker__flag--deutsch::before {
  background-image: url(../images/icons/flag-deutsch.png);
}
.language-picker__flag--english::before {
  background-image: url(../images/icons/flag-english.png);
}
.language-picker__flag--francais::before {
  background-image: url(../images/icons/flag-francais.png);
}
.language-picker__flag--italiano::before {
  background-image: url(../images/icons/flag-italiano.png);
}
.language-picker--hide-label .language-picker__button .icon {
  margin-left: 0
}
.language-picker--hide-label .language-picker__button em {
  display: none
}
.language-picker--hide-label .language-picker__button .language-picker__flag::before {
  margin-right: .25rem;
  margin-right: var(--space-xxxs)
}
.language-picker__flag.language-picker__label{
  padding-right: 7px;
}
.nice-select{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-family: var(--text-font);
  text-transform: uppercase;
  padding-right: 14px;
  background: transparent;
}
.nice-select:before{
  position: absolute;
  content: "\f107";
  font: normal normal normal 14px/1 FontAwesome;
  top: 0px;
  right: 0px;
  color: #fff;
  font-weight: 700;
}
.nice-select .list{
  min-width: 100px;
}
.nice-select .list li{
  color: var(--text-color);
}
.nice-select .list{
  max-height: 160px;
  overflow-x: hidden;
  overflow-y: auto;
}
/** header-upper **/
.header-upper{
  position: relative;
  background: var(--theme-color);
  padding: 25px 0px;
}
.header-upper .upper-inner .logo{
  margin-bottom: 0;
}
.header-upper .upper-inner .logo a{
  color: #fff;
}
.header-upper .upper-inner .logo a:focus .site-title{
  outline-width: 1px;
  outline-offset: -3px;
  outline-style: dotted;
  outline-color: inherit;
}
.header-upper .upper-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-upper .search-area{
  position: relative;
  display: flex;
  align-items: center;
  width: 810px;
  background: #fff;
  border-radius: 50px;
}
.header-upper .search-area .category-inner .nice-select{
  padding: 17px 45px 17px 25px;
  font-size: 15px;
  color: var(--title-color);
  text-transform: capitalize;
  border-right: 1px solid #E5E5E5;
}
.header-upper .search-area .category-inner .nice-select:before{
  color: var(--title-color);
  top: 17px;
  right: 24px;
}
.header-upper .search-area .search-box{
  width: 100%;
}
.header-upper .search-area .search-box{
  position: relative;
  margin: 0px;
}
.header-upper .search-area .search-box input[type='text']{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  color: var(--title-color);
  font-family: var(--text-font);
  padding: 10px 80px 10px 25px;
}
.header-upper .search-area .search-box button[type='submit']{
  position: absolute;
  display: inline-block;
  top: 5px;
  right: 5px;
  width: 60px;
  height: 40px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: #FFAC00;
  border-radius: 100px;
  cursor: pointer;
  transition: all 500ms ease;
}
.header-upper .search-area .search-box input:focus + button,
.header-upper .search-area .search-box button:hover,
.header-upper .search-area .search-box button:focus{
  background: var(--theme-color);
}
.header-upper .right-column{
  position: relative;
  display: flex;
  align-items: center;
}
.header-upper .support-box{
  position: relative;
  display: block;
  padding-left: 48px;
}
.header-upper .support-box .icon-box{
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 35px;
  color: #fff;
}
.header-upper .support-box a{
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 18px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.header-upper .support-box a:hover,
.header-upper .support-box a:focus{
  text-decoration: underline;
}
.header-upper .support-box p{
  color: #fff;
  font-size: 14px;
  line-height: 14px;
}
.main-header .option-list{
  position: relative;
  display: flex;
  align-items: center;
}
.main-header .option-list li{
  margin-right: 20px;
}
.main-header .option-list li:last-child{
  margin: 0px !important;
}
.main-header .option-list li a,
.main-header .option-list li button{
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transition: all 500ms ease;
}
.main-header .option-list li a span{
  position: absolute;
  display: inline-block;
  top: -5px;
  right: -12px;
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}
.main-header .header-lower{
  box-shadow: 0px 4px 4px 0px #0000000D;
}
.main-header .outer-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.main-header .outer-box .category-box{
  position: relative;
  display: inline-block;
  left: 0px;
  top: 4px;
  width: 300px;
  border: solid;
  border-width: 1px;
  border-color: #E6E6E6;
  border-bottom: none;
  border-radius: 5px 5px 0px 0px;
  padding: 15px 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.main-header .outer-box .category-box .text{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-decoration: none;
  color: var(--title-color);
  padding-left: 28px;
}
.main-header .outer-box .category-box .text:hover, .main-header .outer-box .category-box .text:focus {
  color: var(--theme-color);
}
.main-header .outer-box .category-box .text i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 18px;
  font-weight: 400;
}
.main-header .outer-box .category-box .text:before{
  position: absolute;
  content: "\f107";
  font: normal normal normal 14px / 1 FontAwesome;
  top: 0px;
  right: 0px;
  font-size: 16px;
  font-weight: 500;
}
.main-header .outer-box .category-box:hover .category-list,
.main-header .outer-box .category-box:focus-within .category-list{
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
}
.main-header .outer-box .category-box .category-list > li{
  position: relative;
  display: block;
}
.main-header .outer-box .category-box .category-list > li:before{
  position: absolute;
  content: '';
  background: transparent;
  top: 0px;
  right: -10px;
  width: 10px;
  height: 100%;
}
.main-header .outer-box .category-box .category-list > li > a{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  padding: 12px 50px;
  padding-left: 20px;
  border-radius: 50px;
  z-index: 1;
  transition: all 500ms ease;
}
.main-header .outer-box .category-box .category-list > li.category-dropdown > a:before{
  position: absolute;
  content: "\f105";
  font: normal normal normal 14px / 1 FontAwesome;
  top: 15px;
  right: 20px;
  font-weight: 500;
}
.main-header .outer-box .category-box .category-list > li > a:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0;
  z-index: -1;
  border-radius: 50px;
  background: var(--theme-color);
  transition: all 500ms ease;
}
.main-header .outer-box .category-box .category-list > li > a:hover:after,
.main-header .outer-box .category-box .category-list > li > a:focus:after{
  opacity: 0.2;
}
.main-header .outer-box .category-box .category-list .list-inner{
  position: absolute;
  left: 100%;
  top: 0px;
  width: 990px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px #00000012;
  border-radius: 5px;
  opacity: 0;
  transform-origin: left center;
  transform: scaleX(0);
  visibility: hidden;
  overflow: hidden;
  padding-right: 280px;
  margin-left: 10px;
  transition: all 500ms ease;
}
.main-header .outer-box .category-box .category-list .category-dropdown:hover .list-inner,
.main-header .outer-box .category-box .category-list .category-dropdown:focus-within .list-inner{
  transform: scaleX(1);
  visibility: visible;
  opacity: 1;
}
.main-header .outer-box .category-box .list-inner .inner-box{
  position: relative;
  padding: 40px 50px;
  max-height: 320px;
  overflow-x: hidden;
  overflow-y: auto;
}
.main-header .outer-box .category-box .list-inner .inner-box p{
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 15px;
}
.main-header .outer-box .category-box .list-inner .inner-box .single-column{
  position: relative;
  float: left;
  width: 33.333%;
}
.main-header .outer-box .category-box .list-inner .inner-box .single-column ul li{
  position: relative;
  display: block;
}
.main-header .outer-box .category-box .list-inner .inner-box .single-column ul li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 40px;
  color: var(--title-color);
}
.main-header .outer-box .category-box .list-inner .inner-box .single-column ul li a:hover,
.main-header .outer-box .category-box .list-inner .inner-box .single-column ul li a:focus{
  color: var(--theme-color);
}
.main-header .outer-box .category-box .list-inner .shop-block{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 280px;
  background: #BFD6FF;
  padding: 30px 15px 40px 30px;
}
.main-header .outer-box .category-box .list-inner .shop-block .title{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 6px;
}
.main-header .outer-box .category-box .list-inner .shop-block h2{
  position: relative;
  display: block;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 6px;
}
.main-header .outer-box .category-box .list-inner .shop-block h2 a{
  position: relative;
  display: inline-block;
  color: var(--title-color);
}
.main-header .outer-box .category-box .list-inner .shop-block:before{
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-1.png);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-header .outer-box .category-box .list-inner .shop-block .image{
  position: absolute;
}
.main-header .outer-box .category-box .list-inner .shop-block h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 106px;
  color: #E92530;
  z-index: 1;
}
.main-header .outer-box .category-box .list-inner .shop-block .link{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: var(--title-color);
  background: #fff;
  border-radius: 5px;
  padding: 3.5px 20px;
  z-index: 1;
}
.main-header .outer-box .category-box .list-inner .shop-block .link:hover,
.main-header .outer-box .category-box .list-inner .shop-block .link:focus{
  color: #fff;
}
.main-header .menu-right-content .currency-box .nice-select{
  color: var(--title-color);
}
.main-header .menu-right-content .currency-box .nice-select:before{
  color: var(--title-color);
}
.main-header .menu-right-content{
  position: relative;
  display: flex;
  align-items: center;
}
.main-header .menu-right-content .info-list{
  position: relative;
  display: flex;
  align-items: center;
}
.main-header .menu-right-content .info-list li{
  position: relative;
  display: inline-block;
  margin-right: 20px;
}
.main-header .menu-right-content .info-list li:last-child{
  margin: 0px !important;
}
.main-header .menu-right-content .info-list .cart-box .cart-main .header-cart{
  padding-right: 12px;
}
.main-header .menu-right-content .info-list .cart-box .cart-main .header-cart span{
  position: absolute;
  display: inline-block;
  width: 19px;
  height: 19px;
  line-height: 19px;
  background: #FFAC00;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  top: -5px;
  right: 0px;
}
.main-header .menu-right-content .info-list .user .user-btn svg,
.main-header .menu-right-content .info-list .cart-box .cart-main .header-cart svg{
  fill: var(--title-color);
  transition: all 0.5s;
}
.main-header .menu-right-content .info-list .user .user-btn:hover svg,
.main-header .menu-right-content .info-list .cart-box .cart-main .header-cart:hover svg,
.main-header .menu-right-content .info-list .user .user-btn:focus svg,
.main-header .menu-right-content .info-list .cart-box .cart-main .header-cart:focus svg{
  fill: var(--theme-color);
}
.main-menu{
  float: left;
}
.main-menu .navbar-collapse{
  padding:0px;
  display:block !important;
}
.main-menu .navigation{
  margin:0px;
}
.main-menu .navigation > li{
  position:inherit;
  float:left;
  z-index:2;
  margin: 0px 19px;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}
.main-menu .navigation > li:last-child{
  margin-right:0px !important;
}
.main-menu .navigation > li:first-child{
  margin-left: 0px !important;
}
.main-menu .navigation > li > a{
  position:relative;
  display:block;
  text-align:center;
  font-size:16px;
  line-height:26px;
  padding: 17px 0px;
  font-weight:500;
  font-family: var(--text-font);
  opacity:1;
  color: var(--title-color);
  z-index:1;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}
.main-menu .navigation > li.dropdown > a,
.main-menu .navigation > li.menu-item-has-children > a{
  padding-right: 17px;
}
.main-menu .navigation > li.current > a,
.main-menu .navigation > li.active > a,
.main-menu .navigation > li:focus-within > a,
.main-menu .navigation > li:hover > a{
  color: var(--theme-color);
}
.main-menu .navigation > li.dropdown > a:before,
.main-menu .navigation > li.menu-item-has-children > a:before{
  position: absolute;
  content: "\f107";
  font: normal normal normal 15px / 1 FontAwesome;
  top: 22px;
  right: 0px;
  font-weight: 600;
  transition: all 500ms ease;
}
.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu{
  position:absolute;
  left: inherit;
  top:100%;
  width:230px;
  margin-top: 15px;
  padding: 15px 30px;
  z-index:100;
  display:none;
  background: #fff;
  opacity: 0;
  border: none;
  border-bottom: solid;
  border-color: var(--theme-color);
  border-width: 3px;
  visibility: hidden;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 0px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.main-menu .navigation > li > ul.from-right{
  left:auto;
  right:0px;  
}
.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
}
.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a{
  position:relative;
  display:block;
  padding: 5px 0px;
  line-height:24px;
  font-weight:500;
  font-size:15px;
  white-space: normal;
  text-transform:capitalize;
  font-family: var(--text-font);
  color:var(--title-color);
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.main-menu .navigation > li > .megamenu li > a{
  padding-left: 0px;
}
.main-menu .navigation > li > .megamenu h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}
.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > ul > li > a:focus,
.main-menu .navigation > li > .megamenu li > a:hover,
.main-menu .navigation > li > .megamenu li > a:focus{
  letter-spacing: 1px;
  color: var(--theme-color);
  background-color: transparent;
}
.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a{
  border-bottom: none;
}
.main-menu .navigation > li > ul > li.dropdown > a:after,
.main-menu .navigation > li > ul > li.menu-item-has-children > a:after:after{
  font: normal normal normal 15px / 1 FontAwesome;
  content: "\f105";
  position:absolute;
  right:20px;
  top:5px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:800;
  text-align:center;
  z-index:5;  
}
.main-menu .navigation > li.menu-item-has-children > ul.dropdown-menu li ul{
  position:absolute;
  left:100%;
  top:0%;
  margin-top: 15px;
  background: var(--secondary-color);
  border-top: solid;
  border-width: 2px;
  width:230px;
  z-index:100;
  display:none;
  border-radius: 0px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.main-menu .navigation > li > ul > li > ul.from-right{
  left:auto;
  right:0px;  
}
.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
}
.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}
.main-menu .navigation > li.menu-item-has-children > ul.dropdown-menu li ul li a{
  position:relative;
  display:block;
  padding:10px 25px;
  line-height:24px;
  font-weight:500;
  font-size:15px;
  text-transform:capitalize;
  font-family: var(--text-font);
  color:#fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.main-menu .navigation > li.menu-item-has-children > ul.dropdown-menu li ul li:last-child  a{
  border-bottom: none;
}
.main-menu .navigation > li.menu-item-has-children > ul.dropdown-menu li ul li a:hover,
.main-menu .navigation > li.menu-item-has-children > ul.dropdown-menu li ul li a:focus{
  letter-spacing: 1px;
  color: var(--theme-color);
  background-color: transparent;
}
.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after,
.main-menu .navigation > li > ul > li > ul > li.menu-item-has-children > a:after{
 font: normal normal normal 15px / 1 FontAwesome;
 content: "\f105";
 position:absolute;
 right:20px;
 top:12px;
 display:block;
 line-height:24px;
 font-size:16px;
 font-weight:900;
 z-index:5;  
}
.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.menu-item-has-children:hover > ul,
.main-menu .navigation > li.dropdown:focus-within > ul,
.main-menu .navigation > li.menu-item-has-children:focus-within > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu,
.main-menu .navigation > li.menu-item-has-children:hover > .megamenu{
  visibility:visible;
  opacity:1;
  margin-top: 0px;
  top: 100%;
}
.main-menu .navigation li > ul > li.dropdown:hover > ul,
.main-menu .navigation li > ul > li.menu-item-has-children:hover > ul,
.main-menu .navigation li > ul > li.dropdown:focus-within > ul,
.main-menu .navigation li > ul > li.menu-item-has-children:focus-within > ul{
  visibility:visible;
  opacity:1;
  top: 0%; 
  margin-top: 0px;
}
.main-menu .navigation li.dropdown .dropdown-btn,
.main-menu .navigation li.menu-item-has-children .dropdown-btn{
  position:absolute;
  right:-32px;
  top:66px;
  width:34px;
  height:30px;
  text-align:center;
  font-size:18px;
  line-height:26px;
  color:#3b3b3b;
  cursor:pointer;
  display: none;
  z-index:5;
  transition: all 500ms ease;
}
.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn{
  display: none;
}
.menu-area .mobile-nav-toggler {
  display: none;
}
.mobile-nav-toggler .mobile-menu-btn {
  background: var(--theme-color);
  color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 0px;
  cursor: pointer;
  margin: 0;
  position: relative;
}
.mobile-nav-toggler .mobile-menu-btn:hover, 
.mobile-nav-toggler .mobile-menu-btn:focus {
  background: var(--secondary-color);
}
.mobile-menu .logo img{
  max-width: 160px;
}
.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.menu-area .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}
.main-menu .navigation > li.dropdown > .megamenu,
.main-menu .navigation > li.menu-item-has-children > .megamenu{
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
}
.main-menu .navigation li.dropdown .megamenu li h4,
.main-menu .navigation li.menu-item-has-children .megamenu li h4{
  margin-bottom: 10px;
}
.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color:#3786ff;
  display: none;
}
.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}
.mobile-menu .navbar-collapse{
  display:block !important; 
}
.mobile-menu .logo{
  position:relative;
  padding:50px 25px;
  text-align:left;  
  padding-bottom: 100px;
}
.mobile-menu-visible{
  overflow: hidden;
}
.mobile-menu-visible .mobile-menu{
  opacity: 1;
  visibility: visible;
}
.mobile-menu .menu-backdrop{
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}
.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 0.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}
.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #141417;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}
.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu .close-btn{
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}
.mobile-menu .close-btn:hover, .mobile-menu .close-btn:focus {
  color: var(--theme-color);
}
.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}
.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.mobile-menu .navigation:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.10);
}
.mobile-menu .navigation li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}
.mobile-menu .navigation li ul li > a{
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}
.mobile-menu .navigation li > a:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  height:0;
  border-left:5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}
.mobile-menu .navigation li.current > a:before{
  height:100%;
}
.mobile-menu .navigation li > a:hover,
.mobile-menu .navigation li > a:focus,
.mobile-menu .navigation li.current > a{
  color: var(--theme-color);
  background-color:transparent;
}
.mobile-menu .navigation li.dropdown .dropdown-btn,
.mobile-menu .navigation li.menu-item-has-children button[type="button"]{
  position:absolute;
  right:6px;
  top:6px;
  width:32px;
  height:32px;
  text-align:center;
  font-size:16px;
  line-height:32px;
  color:#ffffff;
  background:rgba(255,255,255,0.10);
  cursor:pointer;
  border-radius:2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn.open,
.mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open,
.mobile-menu .navigation li.menu-item-has-children .dropdown-btn:hover, 
.mobile-menu .navigation li.menu-item-has-children .dropdown-btn:focus{
  color: #ffffff;
  background-color: var(--theme-color);
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);  
}
.mobile-menu .navigation li.menu-item-has-children .dropdown-arrow:hover, 
.mobile-menu .navigation li.menu-item-has-children .dropdown-arrow:focus {
  background-color: var(--theme-color);
  color: #fff;
}
.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu,
.mobile-menu .navigation > li.menu-item-has-children > .megamenu{
  display: none;
}
.mobile-menu .social-links{
  position:relative;
  padding:0px 25px;
}
.mobile-menu .social-links li{
  position:relative;
  display:inline-block;
  margin:0px 10px 10px;
}
.mobile-menu .social-links li a{
  position:relative;
  line-height:32px;
  font-size:16px;
  color:#ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}
div#mCSB_1_container{
  top: 0px !important;
}
.mobile-menu .contact-info {
  position: relative;
  padding: 120px 30px 20px 30px;
}
.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}
.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 3px;
}
.mobile-menu .contact-info ul li a{
  color: rgba(255,255,255,0.80);
}
.mobile-menu .contact-info ul li:last-child{
  margin-bottom: 0px;
}
.main-header .menu-area{
  position: relative;
  display: flex;
  align-items: center;
}
.main-header .menu-area .text a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.main-header .menu-area .text a:hover,
.main-header .menu-area .text a:focus{
  text-decoration: underline;
}
.header-top{
  position: relative;
  width: 100%;
  padding: 15px 0px;
}
.header-top .top-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 255px;
}
.header-top .logo-box{
  position: absolute;
  left: 0px;
  top: -15px;
  width: 220px;
  height: 180px;
  line-height: 180px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.08);
  z-index: 1;
}
.header-top .location-box{
  position: relative;
  padding-left: 27px;
}
.header-top .location-box .icon-box{
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 20px;
  color: #fff;
}
.header-top .location-box .nice-select{
  font-size: 16px;
  text-transform: capitalize;
}
.header-top .location-box .nice-select .list{
  min-width: 140px;
}
.header-top .search-box{
  position: relative;
  width: 300px;
}
.header-top .search-box .form-group{
  position: relative;
  margin-bottom: 0px;
}
.header-top .search-box .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #fff;
  border-bottom: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.50);
  padding-right: 40px;
  transition: all 500ms ease;
}
.header-top .search-box .form-group input:focus{
  border-color: #fff;
}
.header-top .search-box .form-group button[type='submit']{
  position: absolute;
  top: 6px;
  right: 0px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: all 500ms ease;
}
.main-header .header-top .menu-right-content .info-list > li > a{
  color: #fff;
}
.main-header .menu-right-content .info-list li .mobile-nav-toggler{
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
.header-bottom{
  position: relative;
  width: 100%;
  background: #fff;
  box-shadow: 0px 4px 4px 0px #0000000D;
}
.header-bottom .bottom-inner{
  position: relative;
  padding-left: 255px;
}
.header-bottom .bottom-inner .category-box .text{
  position: relative;
  display: inline-block;
  font-size: 20px;
  cursor: pointer;
  color: var(--title-color);
  display: none;
  transition: all 500ms ease;
}
.header-bottom .bottom-inner .category-list > li{
  position: relative;
  display: inline-block;
  float: left;
  cursor: pointer;
  padding: 16px 40.9px;
  border-right: 1px solid #EFEFEF;
}
.header-bottom .bottom-inner .category-list > li .name{
  position: relative;
  display: inline-block;
  padding-left: 33px;
}
.header-bottom .bottom-inner .category-list > li .name .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
}
.header-bottom .bottom-inner .category-list > li .name p{
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 500ms ease;
}
.header-bottom .bottom-inner .category-list > li > ul{
  position: absolute;
  left: 0px;
  top: 100%;
  width: 230px;
  margin-top: 15px;
  padding: 15px 30px;
  z-index: 100;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 0px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.header-bottom .bottom-inner .category-list > li:hover > ul,
.header-bottom .bottom-inner .category-list > li:focus-within > ul{
  visibility: visible;
  opacity: 1;
  margin-top: 0px;
  top: 100%;
}
.header-bottom .bottom-inner .category-list > li > ul > li{
  position: relative;
  display: block;
}
.header-bottom .bottom-inner .category-list > li > ul > li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: var(--title-color);
  opacity: 0.5;
}
.header-bottom .bottom-inner .category-list > li > ul > li a:hover,
.header-bottom .bottom-inner .category-list > li > ul > li a:focus-within{
  opacity: 1;
}
.demo-rtl{
  position: fixed;
  top: 390px;
  left: 10px;
  z-index: 9999;
}
button.rtl{
  background: var(--theme-color);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  margin: 0px;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
}
.demo-ltr{
  position: fixed;
  top: 390px;
  left: auto;
  right: 10px;
  z-index: 9999;
}
button.ltr {
  background: var(--theme-color);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0px;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 1.0);
  transition: all 500ms ease;
}
.boxed_wrapper.ltr .demo-rtl{
  display: block;
}
.boxed_wrapper.ltr .demo-ltr{
  display: none;
}
.boxed_wrapper.rtl .demo-rtl{
  display: none;
}
.boxed_wrapper.rtl .demo-ltr{
  display: block;
}
.discount-product,
.sale-ribbon{
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: #10CB23;
  border-radius: 50%;
  z-index: 1;
}
.sale-ribbon{
  position: absolute;
  top: 7px;
  left: 0;
}
.hot-product{
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: #FF0000;
  border-radius: 50%;
  z-index: 1;
}
.popular-product{
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: #FF6B00;
  border-radius: 50%;
  z-index: 1;
}
.product-stock,
.product-stock-out{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #28C01B;
  font-weight: 500;
  padding-left: 27px;
}
.shop-two .shop-block-two .product-stock img,
.shop-two .shop-block-two .product-stock-out img{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
}
.product-stock-out{
  color: #E92530;
}
.shop-two .nav-style-one .owl-nav [class*=owl-]{
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: #F6F6F6;
  border: 2px solid #F6F6F6;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 11px;
  z-index: 1;
  transition: all 500ms ease;
}
.nav-style-one .owl-nav .owl-prev{
  margin-right: 10px;
}
.shop-two .nav-style-one .owl-nav [class*=owl-]:hover,
.shop-two .nav-style-one .owl-nav [class*=owl-]:focus{
  color: #fff;
  background: transparent !important;
}
.shop-two .nav-style-one .owl-nav [class*=owl-]:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: var(--secondary-color);
  border-radius: 50%;
  transform-origin: top center;
  transform: scaleY(0);
  z-index: -1;
  transition: all 500ms ease;
}
.shop-two .nav-style-one .owl-nav [class*=owl-]:hover:before,
.shop-two .nav-style-one .owl-nav [class*=owl-]:focus:before{
  transform: scaleY(1);
}
.sec-title a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, var(--theme-color), var(--theme-color) 50%, var(--title-color) 50%);
  background-size: 200% 100%;
  background-position: -100%;
  transition: all 0.3s ease-in-out;
}
.sec-title a:hover,
.sec-title a:focus{
  background-position: 0%;
}
.progress-box .bar{
  position:relative;
  width:100%;
  height:8px;
  background: #E3E7EB;
  border-radius: 4px;
}
.progress-box .bar-inner{
  position:relative;
  display:block;
  width:0px;
  height:8px;
  border-radius: 4px;
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}
.rating{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}
.rating li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: #F8CD2E;
  margin-right: 2px;
}
.rating li span{
  color: #7C7C7C;
  padding-left: 2px;
}
.list-style-one li{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 28px;
  color: var(--title-color);
  padding-left: 17px;
}
.list-style-one li:before{
  position: absolute;
  content: '';
  background: var(--title-color);
  width: 5px;
  height: 5px;
  left: 0px;
  top: 11px;
  border-radius: 50%;
}
.check-box input {
  display: none;
}
.check-box label {
  position: relative;
  font-size: 14px;
  line-height: 30px;
  color: var(--title-color);
  padding-left: 24px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0px;
}
.check-box label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  border-color: #DDDDDD;
  background: transparent;
}
.check-box label:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 10px;
  width: 11px;
  height: 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/icons/icon-2.png);
  opacity: 0;
}
.check-box input:checked + label:after {
  opacity: 1;
}
.accordion-box .block .acc-content {
  position: relative;
  display: none;
}
.accordion-box .block .acc-content.current {
  display: block;
}
.wrapper.list .shop-list-content{
  display: block;
}
.wrapper.list .shop-grid-content{
  display: none
}
.wrapper.grid .shop-list-content{
  display: none;
}
.wrapper.grid .shop-grid-content{
  display: block
}
.nice-select .option{
  padding-left: 15px;
  padding-right: 15px;
}
.tabs-box .tab{
  position:relative;
  display:none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}
.tabs-box .tab.active-tab{
  display:block;  
}
.tabs-box .tab{
  transform:scale(0.9,0.9) translateY(0px);
}
.tabs-box .tab.active-tab{
  transform:scale(1) translateY(0px);
}
.border-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.50);
  animation: squares 2.9s linear 0s infinite;
  -webkit-animation: squares 2.9s linear 0s infinite;
  -ms-animation: squares 2.9s linear 0s infinite;
  -o-animation: squares 2.9s linear 0s infinite;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}
.border-animation.border-2 {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.border-animation.border-3 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.dots-style-one .owl-dots button span{
  display: none !important;
}
.dots-style-one .owl-dots button{
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: all 500ms ease;
}
.dots-style-one .owl-dots button.active,
.dots-style-one .owl-dots button:focus,
.dots-style-one .owl-dots button:hover{
  opacity: 1;
}
.dots-style-one .owl-dots button:before{
  position: absolute;
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  left: -5px;
  top: -5px;
  border: solid;
  border-width: 1px;
  transform: scale(0,0);
  transition: all 500ms ease;
}
.dots-style-one .owl-dots button.active:before,
.dots-style-one .owl-dots button:focus:before,
.dots-style-one .owl-dots button:hover:before{
  transform: scale(1,1);
}
.category-page-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}
.category-page-section .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}
.category-page-section .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}
.category-menu{
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  display: none;
  transition: all 900ms ease;
}
.category-menu .navbar-collapse{
  display:block !important; 
}
.category-menu .upper-box{
  position:relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:50px 25px;
  text-align:left;  
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 25px;
}
.category-visible .category-menu{
  opacity: 1;
  visibility: visible;
}
.category-menu .menu-backdrop{
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}
.category-visible .category-menu .menu-backdrop{
  opacity: 0.90;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
}
.category-menu .outer-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #fff;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: all 900ms ease !important;
}
.category-visible .category-menu .outer-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.header-lower .category-mobile-menu .outer-box {
  display: block;
  position: absolute;
}
.category-mobile-menu .outer-box {
  overflow-x: hidden;
}
.category-menu .close-btn{
  position: absolute;
  top: 50px;
  right: 25px;
  display: inline-block;
  line-height: 30px;
  width: 24px;
  text-align: center;
  border: none;
  font-size: 14px;
  color: #111;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.category-menu .close-btn:hover, .category-menu .close-btn:focus {
  color: var(--theme-color);
}
.category-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}
.category-menu .category-list li{
  position: relative;
  display: block;
  cursor: pointer;
}
.main-header .outer-box .category-mobile-menu .category-list li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 6px 25px;
  padding-right: 50px;
  font-size: 15px;
  font-weight: 500;
  color: var(--title-color);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}
.main-header .outer-box .category-mobile-menu .category-list li > a:hover,
.main-header .outer-box .category-mobile-menu .category-list li > a:focus{
  color: var(--theme-color);
}
.category-menu .category-list li.category-dropdown .dropdown-btn{
  position:absolute;
  right:25px;
  top:3px;
  text-align:center;
  font-size:8px;
  line-height:32px;
  color:var(--title-color);
  cursor:pointer;
  border-radius:2px;
  opacity: 0.6;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}
.category-menu .category-list li.category-dropdown .dropdown-btn.open{
  transform: rotate(180deg);
}
.category-menu .category-list .category-dropdown ul{
  display: none;
}
.category-menu p{
  position: relative;
  display: block;
  padding: 0px 25px;
  opacity: 0.4;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.category-menu .category-box .category-list{
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.category-menu .category-list li > a span{
  position: absolute;
  top: 8px;
  right: 25px;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  padding: 0px 5px;
  border-radius: 2px;
  background: #CED4DA;
}
.cart-menu {
  position: absolute;
  top: 44px;
  right: 0px;
  width: 315px;
  padding: 25px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  z-index: 5;
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 0.5s ease-in-out;
}
.cart-menu.cart-visible {
  opacity: 1;
  visibility: visible;
  display: block;
  transform: scaleY(1);
  transition: all 0.5s ease-in-out;
}
.cart-menu .close-icon {
  position: absolute;
  top: 0px;
  left: 3px;
}
.cart-box .cart-label .woocommerce-Price-amount{
  display:none;
}
.main-header .menu-right-content .info-list .cart-menu .close-icon .menu-close{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 10px;
  border: solid;
  border-width: 1px;
  border-color: #111;
  text-align: center;
  border-radius: 50%;
  color: #111;
  opacity: 0.5;
  z-index: 1;
}
.main-header .menu-right-content .info-list .cart-menu .close-icon .menu-close:hover,
.main-header .menu-right-content .info-list .cart-menu .close-icon .menu-close:focus{
  opacity: 1;
  border-color: #FFAC00;
  color: #FFAC00;
}
.cart-menu .cart-products .product{
  position: relative;
  display: block;
  padding: 20px 20px 20px 73px;
  border-bottom: solid;
  border-width: 1px;
  border-color: #E8E8E8;
}
.cart-menu .cart-products .product .image-box{
  position: absolute;
  left: 0px;
  top: 23px;
  width: 60px;
  height: 60px;
  line-height: 56px;
  border: solid;
  border-width: 1px;
  border-color: #E5E5E5;
}
.cart-menu .cart-products .product .image-box img{
  width: 100%;
}
.cart-menu .cart-products .product h5{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
}
.cart-menu .cart-products .product h5 a{
  position: relative;
  display: inline-block;
  color: var(--title-color);
}
.cart-menu .cart-products .product span{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  font-family: var(--title-font);
  color: #E92530;
  font-weight: 700;
}
.cart-menu .cart-products .product span .quentity{
  color: var(--title-color);
}
.cart-menu .cart-products .product .remove-btn{
  position: absolute;
  top: 20px;
  right: 0px;
  font-size: 16px;
  color: var(--title-color);
  transition: all 500ms ease;
}
.cart-menu .cart-products .product .remove-btn:hover,
.cart-menu .cart-products .product .remove-btn:focus{
  color: #E92530;
}
.cart-menu .cart-total{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}
.cart-menu .cart-total span{
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 700;
}
.cart-menu .cart-total span.cart-total-price{
  color: #E92530;
}
.cart-menu .cart-action{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .menu-right-content .info-list .cart-menu .theme-btn{
  font-size: 16px;
  padding: 5px 29px;
}
.featured-section{
  position: relative;
  padding: 15px 0px;
}
.featured-section .inner-container{
  position: relative;
  overflow: hidden;
}
.featured-section .featured-list{
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  -moz-animation: scroll-left 190s linear infinite;
  -webkit-animation: scroll-left 190s linear infinite;
  animation: scroll-left 190s linear infinite;
}

@-moz-keyframes scroll-left {
  0% { -moz-transform: translateX(0%); }
  100% { -moz-transform: translateX(-100%); }
}

@-webkit-keyframes scroll-left {
  0% { -webkit-transform: translateX(0%); }
  100% { -webkit-transform: translateX(-100%); }
}
.featured-section .single-featured{
  position: relative;
  padding: 10px 0px 10px 50px;
  margin-right: 50px;
}
.featured-section .single-featured:last-child{
  margin: 0px;
}
.featured-section .single-featured .image-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  border: solid;
  border-width: 1px;
  border-color: #EDEDED;
  border-radius: 50%;
}
.featured-section .single-featured p{
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.featured-section .owl-nav{
  position: absolute;
  left: 0px;
  top: 22%;
  width: 100%;
}
.featured-section .owl-nav button{
  position: absolute;
  display: inline-block;
  font-size: 14px;
  color: var(--title-color);
  transition: all 500ms ease;
}
.featured-section .owl-nav button.owl-prev{
  left: -50px;
}
.featured-section .owl-nav button.owl-next{
  right: -50px;
}
.banner-section{
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.banner-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.banner-carousel .slide-item{
  position: relative;
  padding: 110px 0px;
}
.banner-carousel .slide-item .image-layer{
  position: absolute;
  opacity: 0;
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
.banner-carousel .active .slide-item .image-layer{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}
.banner-carousel .slide-item .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner-carousel .content-box{
  max-width: 630px;
}
.banner-carousel .slide-item .bg-layer{
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear;
}
.banner-carousel .active .slide-item .bg-layer{
  -webkit-transform:scale(1.25);
  -ms-transform:scale(1.25);
  transform:scale(1.25);
}
.banner-carousel .content-box .upper-text{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  padding: 2px 13px;
  background: #E53E3E;
  opacity: 0;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
} 
.banner-carousel .active .content-box .upper-text{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}
.banner-carousel .content-box h2{
  font-size: 51px;
  line-height: 60px;
  font-weight: 800;
  color: #00286F;
  margin-bottom: 20px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
.banner-carousel .content-box h2 span{
  display: block;
  font-weight: 400;
  color: #111;
}
.banner-carousel .active .content-box h2{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}
.banner-carousel .content-box h3{
  font-size: 28px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
}
.banner-carousel .content-box h3 span{
  font-weight: 700;
  color: #E53E3E;
} 
.banner-carousel .active .content-box h3{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}
.banner-carousel .content-box p{
  font-size: 18px;
  line-height: 30px;
  color: var(--title-color);
  margin-bottom: 35px;
  max-width: 480px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
.banner-carousel .active .content-box p{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}
.banner-carousel .content-box .btn-box{
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
.banner-carousel .active .content-box .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}
.banner-carousel .owl-dots{
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-carousel.dots-style-one .owl-dots button{
  display: block;
  margin-bottom: 12px;
}
.banner-carousel .dots-style-one .owl-dots button:last-child{
  margin-bottom: 0px;
}
.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
  display: none !important;
}
.category-section{
  position: relative;
  overflow: hidden;
}
.category-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}
.category-section .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}
.category-section .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}
.category-block-one .inner-box{
  position: relative;
  display: block;
  text-align: center;
}
.category-block-one .inner-box .image-box{
  position: relative;
  display: inline-block;
  width: 160px;
  height: 160px;
  line-height: 160px;
  background: #F7F7F7;
  text-align: center;
  margin-bottom: 20px;
  transition: all 500ms ease;
}
.category-block-one .inner-box .image-box img{
  width: 100%;
}
.category-block-one .inner-box:hover .image-box,
.category-block-one .inner-box:focus-within .image-box{
  box-shadow: 0px 0px 30px 0px rgba(45, 36, 146, 0.10);
  background: #fff;
}
.category-block-one .inner-box .lower-content h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 5px;
}
.category-block-one .inner-box .lower-content h4 a{
  display: inline-block;
  color: var(--title-color);
}
.category-block-one .inner-box .lower-content h4 a:hover,
.category-block-one .inner-box .lower-content h4 a:focus{
  color: var(--theme-color);
}
.category-block-one .inner-box .lower-content span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
}
.category-section.alternat-2 .category-block-one .inner-box .image-box,
.category-section.alternat-2 .category-block-one .inner-box .image-box img{
  border-radius: 50%;
}
.shop-one{
  position: relative;
  overflow: hidden;
}
.shop-block-one .inner-box{
  position: relative;
  display: block;
  background: #E1E1E1;
  padding: 40px 160px 30px 40px;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 30px;
  z-index: 1;
}
.shop-block-one .inner-box .image{
  position: absolute;
}
.shop-block-one .inner-box .image img{
  transition: all 500ms ease;
}
.shop-block-one .inner-box:hover .image img,
.shop-block-one .inner-box:focus-within .image img{
  transform: scale(1.1);
}
.shop-block-one .inner-box .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase;
  margin-bottom: 6px;
  z-index: 1;
}
.shop-block-one .inner-box h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 6px;
  z-index: 1;
}
.shop-block-one .inner-box h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 111px;
  font-weight: 800;
  z-index: 1;
}
.shop-block-one .inner-box h4 span{
  font-weight: 400;
}
.shop-block-one .inner-box .link-box a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  color: var(--title-color);
  text-decoration: underline;
  z-index: 1;
}
.shop-block-one .inner-box .link-box a:hover,
.shop-block-one .inner-box .link-box a:focus{
  text-decoration-style:dotted;
}
.shop-one .feature-block:first-child .shop-block-one .inner-box{
  background: #F1EBD1;
}
.shop-one .feature-block:nth-child(3) .shop-block-one .inner-box{
  background: #FAE3E3;
}
.shop-one .feature-block:first-child .shop-block-one .inner-box .text,
.shop-one .feature-block:first-child .shop-block-one .inner-box h2,
.shop-one .feature-block:first-child .shop-block-one .inner-box h4,
.shop-one .feature-block:first-child .shop-block-one .inner-box .link-box a{
  color: #585414;
}
.shop-one .feature-block:nth-child(3) .shop-block-one .inner-box .text,
.shop-one .feature-block:nth-child(3) .shop-block-one .inner-box h2,
.shop-one .feature-block:nth-child(3) .shop-block-one .inner-box h4,
.shop-one .feature-block:nth-child(3) .shop-block-one .inner-box .link-box a{
  color: #792424;
}
.shop-one.alternat-2 .shop-block-one .inner-box{
  background: #F0ECB3;
}
.shop-one.alternat-2 .feature-block:first-child .shop-block-one .inner-box{
  background: #FAE3E3;
}
.shop-one.alternat-2 .feature-block:last-child .shop-block-one .inner-box{
  background: #DAF1CF;
}
.shop-one.alternat-2 .shop-block-one .inner-box .text,
.shop-one.alternat-2 .shop-block-one .inner-box h2,
.shop-one.alternat-2 .shop-block-one .inner-box h4,
.shop-one.alternat-2 .shop-block-one .inner-box .link-box a{
  color: #64551F;
}
.shop-one.alternat-2 .feature-block:first-child .shop-block-one .inner-box .text, 
.shop-one.alternat-2 .feature-block:first-child .shop-block-one .inner-box h2, 
.shop-one.alternat-2 .feature-block:first-child .shop-block-one .inner-box h4, 
.shop-one.alternat-2 .feature-block:first-child .shop-block-one .inner-box .link-box a{
  color: #792424;
}
.shop-one.alternat-2 .feature-block:last-child .shop-block-one .inner-box .text, 
.shop-one.alternat-2 .feature-block:last-child .shop-block-one .inner-box h2, 
.shop-one.alternat-2 .feature-block:last-child .shop-block-one .inner-box h4, 
.shop-one.alternat-2 .feature-block:last-child .shop-block-one .inner-box .link-box a{
  color: #17571A;
}
.shop-block-one .inner-box .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.shop-two{
  position: relative;
  overflow: hidden;
}
.shop-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}
.shop-two .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}
.shop-two .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}
.shop-block-two .inner-box,
.product .product-single{
  position: relative;
  display: block;
  padding: 20px 20px 24px 20px;
  z-index: 1;
  margin-bottom: 30px;
  transition: all 500ms ease;
}
.shop-block-two .inner-box:before,
.product .product-single:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  box-shadow: 0px 10px 30px 0px #0000001A;
  z-index: -1;
  opacity: 0;
  transition: all 500ms ease;
}
.shop-block-two .inner-box:hover:before,
.product .product-single:hover:before,
.shop-block-two .inner-box:focus-within:before,
.product .product-single:focus-within:before{
  opacity: 1;
  height: calc(100% + 65px);
}
.shop-block-two .inner-box:hover,
.product .product-single:hover,
.shop-block-two .inner-box:focus-within,
.product .product-single:focus-within{
  z-index: 2;
}
.shop-block-two .inner-box .image-box,
.product .product-single .product-img{
  position: relative;
  display: block;
}
.shop-block-two .inner-box .image-box .image,
.product .product-single .product-img a{
  position: relative;
  display: block;
  max-width: 230px;
  margin: 0 auto;
  overflow: hidden;
}
.shop-block-two .inner-box .image-box .image img,
.product .product-single .product-img a img{
  width: 100%;
  transition: all 500ms ease;
}
.shop-block-two .inner-box:hover .image-box .image img,
.shop-block-two .inner-box:focus-within .image-box .image img,
.product .product-single:hover .product-img a img,
.product .product-single:focus-within .product-img a img{
  transform: scale(1.1);
}
.shop-block-two .inner-box .image-box .option-list{
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
}
.shop-block-two .inner-box .image-box .option-list li{
  position: relative;
  display: block;
  margin-bottom: 10px;
  -webkit-transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
  transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
  transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),transform 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
  transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),transform 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),box-shadow 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
  will-change: opacity,transform;
  opacity: 0;
  -webkit-transform: translateX(0.625rem);
  transform: translateX(0.625rem);
}
.shop-block-two .inner-box .image-box .option-list li:last-child{
  margin-bottom: 0px;
}
.shop-block-two .inner-box:hover .image-box .option-list li,
.shop-block-two .inner-box:focus-within .image-box .option-list li{
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.shop-block-two .inner-box .image-box .option-list li:first-child{
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.shop-block-two .inner-box .image-box .option-list li:nth-child(2){
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.shop-block-two .inner-box .image-box .option-list li:nth-child(3){
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.shop-block-two .inner-box .image-box .option-list li:nth-child(4){
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.shop-block-two .inner-box .image-box .option-list li a,
.shop-block-two .inner-box .image-box .option-list li button{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  background: #F5F5F5;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}
.shop-block-two .inner-box .image-box .option-list li a:hover,
.shop-block-two .inner-box .image-box .option-list li a:focus,
.shop-block-two .inner-box .image-box .option-list li button:hover,
.shop-block-two .inner-box .image-box .option-list li button:focus{
  color: #fff;
  background: var(--theme-color);
}
.shop-block-two .inner-box .lower-content,
.product .product-single .product-content-outer{
  position: relative;
  display: block;
  padding-top: 15px;
}
.shop-block-two .inner-box .lower-content .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: var(--title-color);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.shop-block-two .inner-box .lower-content h4,
.product .product-single .product-content-outer h3{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 14px;
}
.shop-block-two .inner-box .lower-content h4 a,
.product .product-single .product-content-outer h3 a{
  display: inline-block;
  color: var(--title-color);
}
.shop-block-two .inner-box .lower-content h4 a:hover,
.product .product-single .product-content-outer h3 a:hover,
.shop-block-two .inner-box .lower-content h4 a:focus,
.product .product-single .product-content-outer h3 a:focus{
  color: var(--theme-color);
}
.shop-block-two .inner-box .lower-content h5,
.product .product-single .product-content-outer .price{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #E92530;
  margin-bottom: 10px;
}
.shop-block-two .inner-box .lower-content h5 del,
.product .product-single .product-content-outer .price del{
  font-size: 16px;
  font-weight: 400;
  color: #7C7C7C;
  margin-right: 10px;
}
.product .product-single .product-content-outer .price ins,
.sidebar .widget .price ins{
  text-decoration:none;
}
.shop-block-two .inner-box .lower-content .rating{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.shop-block-two .inner-box .lower-content .rating li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #F8CD2E;
  margin-right: 2px;
}
.shop-block-two .inner-box .lower-content .rating li span{
  color: #7C7C7C;
  padding-left: 2px;
}
.shop-two .nav-style-one .owl-nav{
  position: absolute;
  top: -70px;
  right: 0px;
  margin-top: 0px;
}
.shop-block-two .inner-box .lower-content .cart-btn,
.product .product-single .product-content-outer .product-action{
  position: absolute;
  left: 0px;
  bottom: 0px;
  opacity: 0;
  width: 100%;
  bottom: -49px;
  visibility: hidden;
  transition: all 500ms ease;
}
.shop-block-two .inner-box:hover .lower-content .cart-btn,
.product .product-single:hover .product-content-outer .product-action,
.shop-block-two .inner-box:focus-within .lower-content .cart-btn,
.product .product-single:focus-within .product-content-outer .product-action{
  opacity: 1;
  bottom: -69px;
  visibility: visible;
}
.shop-block-two .inner-box .lower-content .cart-btn .theme-btn{
  color: #fff;
  width: 100%;
}
.shop-block-two .inner-box .lower-content .cart-btn .theme-btn.not{
  z-index: -1;
  opacity: 0.5;
}
.shop-two .inner-container .shop-block-two{
  float: left;
  width: 16.666%;
}
.shop-two .title-content .sec-title{
  margin-bottom: 0px;
}
.shop-two .title-content{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.product .product-single .product-content-outer .add_to_cart_button,
.product .product-single .product-content-outer .added_to_cart,
.product-section .product .summary .single_add_to_cart_button,
.woocommerce .yith-quick-view .yith-quick-view-content.woocommerce div.summary .single_add_to_cart_button,
.comment-respond .comment-form .form-submit .submit,
.woocommerce li.product .product-action .button,
.product .product-single .product-content-outer .button{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff !important;
  background: var(--theme-color) !important;
  padding: 10px 30px;
  border-radius: 50px;
  text-align: center;
  transition: all 500ms ease;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.comment-respond .comment-form .form-submit .submit,
.woocommerce .yith-quick-view .yith-quick-view-content.woocommerce div.summary .single_add_to_cart_button,
.product-section .product .summary .single_add_to_cart_button{
  width: auto;
}
.product-section .product .summary .single_add_to_cart_button:hover,
.woocommerce .yith-quick-view .yith-quick-view-content.woocommerce div.summary .single_add_to_cart_button:hover,
.comment-respond .comment-form .form-submit .submit:hover,
.product-section .product .summary .single_add_to_cart_button:focus,
.woocommerce .yith-quick-view .yith-quick-view-content.woocommerce div.summary .single_add_to_cart_button:focus,
.comment-respond .comment-form .form-submit .submit:focus,
.woocommerce .product .product-action .button:hover,
.woocommerce .product .product-action .button:focus,
.product .product-single .product-content-outer .add_to_cart_button:hover, 
.product .product-single .product-content-outer .added_to_cart:hover, 
.product .product-single .product-content-outer .button:hover, 
.product .product-single .product-content-outer .add_to_cart_button:focus,
.product .product-single .product-content-outer .added_to_cart:focus,
.product .product-single .product-content-outer .button:focus{
  background: var(--title-color) !important;
  transform: translateY(-2px);
  color: #ffffff !important;
}
.woocommerce .product .star-rating{
  float: none;
  margin-bottom: 10px;
}
.woocommerce .product .star-rating span::before{
  color: #f1a400;
}
.product-section .entry-summary .entry-title{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 12px;
}
.product-section .entry-summary .price ins{
  position: relative;
  display: block;
  font-size: 36px;
  font-weight: 500;
  text-decoration: none;
  line-height: 41px;
  color: #E92530;
  margin-bottom: 14px;
}
.product-section .entry-summary .price del {
  color: #7C7C7C;
  font-size: 30px;
  font-weight: 500;
  margin-right: 12px;
}
.product-section .quantity .input-text,
.woocommerce .quantity .qty{
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 5px 10px;
  width: 4.631em;
  margin-right: 10px;
}
.product-section .quantity .input-text:hover, 
.product-section .quantity .input-text:focus, 
.woocommerce .quantity .qty:hover,
.woocommerce .quantity .qty:focus{
  border-color: var(--theme-color);
}
.product-section .woocommerce-product-details__short-description{
  margin-bottom: 12px;
}
.product-section .sale .onsale {
  display: inline-block;
  background: #E92530;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-section .gallery-navigation-carousel .spswiper-wrapper .wcgs-thumb{
  width: 120px !important;
  height: 120px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin-left: 2px;
  margin-bottom: 0;
  padding: 0;
  overflow: unset;
  display: block;
  width: 100%;
  max-width: max-content;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
  border: 1px solid #e1e1e1;
  background-color: #ffffff;
  border-radius: 0;
  border-bottom: 0;
  margin: 0 -3px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{
  font-weight: 500;
  color: #7C7C7C;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  display: none!important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  box-shadow: none !important;
  bottom: -8px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #efefef;
  border-radius: 4px;
  transform: rotate(45deg);
  border: none;
  opacity: 0;
  -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
  transition: all .35s cubic-bezier(.645,.045,.355,1);
  z-index: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after{
  background-color: var(--theme-color);
  opacity: 1;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active{
  background: var(--theme-color);
  color: #fff;
}
.woocommerce div.product .woocommerce-tabs .panel {
  padding: 30px;
  border: 1px solid #e1e1e1;
  border-radius: 0 5px 5px 5px;
}
.woocommerce div.product .woocommerce-tabs .panel h2{
  margin-bottom: 12px;
  font-size: 2.5rem;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{
  color: #E92530;
}
.woocommerce ul.products li.product .price del{
  color: #7C7C7C;
}
.shopping-cart-header .shoppingcart-bottom .btn-primary {
  font-size: 16px;
  padding: 5px 29px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  line-height: 30px;
  font-weight: 500;
  border: none;
  font-family: var(--text-font);
  color: #fff ;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: none;
  background: var(--theme-color);
  z-index: 1;
  transition: all 500ms ease;
}
.shopping-cart-header .shoppingcart-bottom .btn-primary:hover,
.shopping-cart-header .shoppingcart-bottom .btn-primary:focus{
  background-color: var(--secondary-color);
}
.main-footer .shopping-cart-header .shoppingcart-bottom .btn-primary:hover,
.main-footer .shopping-cart-header .shoppingcart-bottom .btn-primary:focus{
  background-color: #fff;
  color: var(--theme-color);
}
.info-list .cart-menu .shopping-cart .woocommerce-mini-cart .mini_cart_item{
  display: flex;
  gap: 10px;
  margin-right: 0;
  margin-bottom: 15px;
}
.info-list .cart-menu .shopping-cart .woocommerce-mini-cart .mini_cart_item .item-img img{
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  object-fit: cover;
}
.info-list .cart-menu .shopping-cart .shopping-cart-header,
.sidebar .widget .widget_shopping_cart_content .shopping-cart-header{
  margin-top: 12px;
}
.news-section{
  position: relative;
}
.news-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.news-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}
.news-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 5px;
}
.news-block-one .inner-box .image-box .image:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0;
  border-radius: 5px;
  transition: all 500ms ease;
}
.news-block-one .inner-box:hover .image-box .image:before,
.news-block-one .inner-box:focus-within .image-box .image:before{
  opacity: 1;
}
.news-block-one .inner-box .image-box .image img{
  width: 100%;
  transition: all 1500ms ease;
}
.news-block-one .inner-box:hover .image-box .image img,
.news-block-one .inner-box:focus-within .image-box .image img{
  transform: scale(1.1);
  opacity: 0.6;
}
.news-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding-top: 24px;
}
.news-block-one .inner-box .lower-content .post-info{
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 15px;
}
.news-block-one .inner-box .lower-content .post-info li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: #6A6A6A;
  margin-right: 10px;
}
.news-block-one .inner-box .lower-content .post-info li:last-child{
  margin: 0px !important;
}
.news-block-one .inner-box .lower-content .post-info li a{
  position: relative;
  display: inline-block;
  overflow-wrap: anywhere;
  color: var(--title-color);
  text-decoration: none;
}
.news-block-one .inner-box .lower-content .post-info li a:hover,
.news-block-one .inner-box .lower-content .post-info li a:focus{
  color: var(--theme-color);
  text-decoration: underline;
}
.news-block-one .inner-box .lower-content .post-info li.category a{
  padding: 0px 13px;
  border-radius: 40px;
  z-index: 1;
  color: var(--theme-color);
}
.news-block-one .inner-box .lower-content .post-info li.category a:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 40px;
  z-index: -1;
  opacity: 0.1;
  background: var(--theme-color);
  transition: all 500ms ease;
}
.news-block-one .inner-box .lower-content .post-info .author,
.news-block-one .inner-box .lower-content .post-info .date{
  flex-shrink: 0;
}
.news-block-one .inner-box .lower-content .post-info li.category a:hover:before,
.news-block-one .inner-box .lower-content .post-info li.category a:focus:before{
  opacity: 1;
}
.news-block-one .inner-box .lower-content .post-info li.category a:hover,
.news-block-one .inner-box .lower-content .post-info li.category a:focus{
  color: #fff;
  text-decoration: none;
}
.news-block-one .inner-box .lower-content h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
}
.news-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}
.news-block-one .inner-box .lower-content h3 a:hover,
.news-block-one .inner-box .lower-content h3 a:focus{
  color: var(--theme-color);
}
.news-section.medical-news .news-block-one .inner-box .image-box .image,
.news-section.medical-news .news-block-one .inner-box .image-box .image img{
  border-radius: 10px;
}
.news-block-one .inner-box .lower-content .category a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  padding: 3px 19px;
  border-radius: 30px;
  text-align: center;
  z-index: 1;
}
.news-block-one .inner-box .lower-content .category a:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 30px;
  z-index: -1;
  opacity: 0.1;
  transition: all 500ms ease;
}
.news-block-one .inner-box .lower-content .category a:hover,
.news-block-one .inner-box .lower-content .category a:focus{
  color: #fff;
}
.news-block-one .inner-box .lower-content .category a:hover:before,
.news-block-one .inner-box .lower-content .category a:focus:before{
  opacity: 1;
}
.news-block-one .inner-box .lower-content .info-list{
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 11px;
}
.news-block-one .inner-box .lower-content .info-list li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #6A6A6A;
  margin-right: 25px;
}
.news-block-one .inner-box .lower-content .info-list li:last-child{
  margin: 0px;
}
.news-block-one .inner-box .lower-content .info-list li a{
  display: inline-block;
  font-weight: 500;
  color: var(--text-color);
}
.news-block-one .inner-box .lower-content .info-list li:before{
  position: absolute;
  content: '';
  background: rgba(17, 17, 17, 0.10);
  width: 2px;
  height: 16px;
  top: 5px;
  right: -14px;
}
.news-block-one .inner-box .lower-content .info-list li:last-child:before{
  display: none;
}
.news-block-one .inner-box:not(:has(.image-box)) .lower-content {
  padding-top: 0;
}
.news-block-one .inner-box:not(:has(.image-box)) {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.entry-content ul,
.entry-content ol {
  list-style: revert;
  padding-left: 20px;
}
/** main-footer **/
.main-footer{
  position: relative;
  background: #0e0e0e;
}
.main-footer .widget {
  margin-bottom: 25px;
}
.main-footer .widget .info.mb_30 {
  margin-bottom: 30px;
}
.main-footer .widget-section{
  position: relative;
  padding: 85px 0px 85px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.main-footer .subscribe-widget{
  position: relative;
  max-width: 330px;
}
.main-footer .subscribe-widget p{
  color: #B7B7B7;
  line-height: 26px;
  margin-bottom: 23px;
}
.main-footer .subscribe-widget .form-inner .form-group{
  position: relative;
  margin-bottom: 0px;
}
.main-footer .subscribe-widget .form-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  border: 1px solid transparent;
  font-size: 16px;
  color: #B7B7B7;
  padding: 10px 70px 10px 20px;
  transition: all 500ms ease;
}
.main-footer .subscribe-widget .form-inner .form-group input[type='email']:focus{
  border-color: #F5B020;
}
.main-footer .subscribe-widget .form-inner .form-group button[type="submit"]{
  position: absolute;
  display: inline-block;
  top: 5px;
  right: 5px;
  width: 56px;
  height: 51px;
  line-height: 53px;
  text-align: center;
  font-size: 14px;
  border-radius: 105px;
  cursor: pointer;
  color: #fff;
  background: #F5B020;
  font-weight: 400;
  transition: all 500ms ease;
}
.main-footer h5.widget-title{
  position: relative;
  display: block;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  line-height: 30px;
  color: #fff;
}
.main-footer h5.widget-title:after, 
.main-footer h5.widget-title:before{
  background-color: var(--theme-color);
  position: absolute;
  content: "";
  bottom: 5px;
  left: 0;
  height: 2px;
  width: 40px;
  opacity: 1;
  transition: 0.5s;
}
.main-footer h5.widget-title:before{
  width: 70px;
  bottom: 0;
}
.main-footer .links-list li{
  position: relative;
  display: block;
}
.main-footer .links-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 42px;
  color: #B7B7B7;
}
.main-footer .links-list li a:hover,
.main-footer .links-list li a:focus{
 color: #F5B020;
}
.main-footer .contact-widget .support-box{
  position: relative;
  display: block;
  padding: 0px 0px 0px 48px;
  margin-bottom: 22px;
}
.main-footer .contact-widget .support-box .icon-box{
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 36px;
  color: #F5B020;
}
.main-footer .contact-widget .support-box a{
  display: inline-block;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #F5B020;
}
.main-footer .contact-widget .support-box a:hover,
.main-footer .contact-widget .support-box a:focus{
  text-decoration: underline;
  color: #fff;
}
.main-footer .contact-widget .support-box span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #B7B7B7;
}
.main-footer .contact-widget .widget-content .info li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #B7B7B7;
  margin-bottom: 4px;
}
.main-footer .contact-widget .widget-content .info li:last-child{
  margin-bottom: 0px;
}
.main-footer .contact-widget .widget-content .info li a{
  position: relative;
  display: inline-block;
  color: #B7B7B7;
}
.main-footer .contact-widget .widget-content .info li a:hover,
.main-footer .contact-widget .widget-content .info li a:focus{
  color: #fff;
}
.main-footer .contact-widget .social-links{
  position: relative;
  display: flex;
  align-items: center;
}
.main-footer .contact-widget .social-links li{
  margin-right: 10px;
}
.main-footer .contact-widget .social-links li:last-child{
  margin: 0px !important;
}
.main-footer .contact-widget .social-links li a{
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.50);
  text-align: center;
}
.main-footer .contact-widget .social-links li a:hover,
.main-footer .contact-widget .social-links li a:focus{
  color: #fff;
  background: #F5B020;
  border-color: #F5B020;
}
.main-footer .links-list li,
.main-footer .widget_meta ul li,
.main-footer .widget_custom_html ul li,
.main-footer .widget_block ul li,
.main-footer .widget_text ul li,
.main-footer .widget_layered_nav ul li,
.main-footer .widget_nav_menu ul li,
.main-footer .widget_archive ul li,
.main-footer .widget_categories ul li,
.main-footer .widget_recent_comments ul li,
.main-footer .widget_recent_entries ul li,
.main-footer .widget_rating_filter ul li,
.main-footer .widget_product_categories ul li,
.main-footer .widget_pages ul li{
  position: relative;
  display: block;
  margin-bottom: 15px;
}
.main-footer .links-list li:last-child,
.main-footer .widget_meta ul li:last-child,
.main-footer .widget_custom_html ul li:last-child,
.main-footer .widget_block ul li:last-child,
.main-footer .widget_text ul li:last-child,
.main-footer .widget_nav_menu ul li:last-child,
.main-footer .widget_archive ul li:last-child,
.main-footer .widget_categories ul li:last-child,
.main-footer .widget_recent_comments ul li:last-child,
.main-footer .widget_recent_entries ul li:last-child,
.main-footer .widget_rating_filter ul li:last-child,
.main-footer .widget_product_categories ul li:last-child,
.main-footer .widget_pages ul li:last-child{
  margin-bottom: 0px;
}
.main-footer .links-list li a,
.main-footer .widget_meta ul li a,
.main-footer .widget_custom_html ul li a,
.main-footer .widget_block ul li a,
.main-footer .widget_text ul li a,
.main-footer .widget_layered_nav ul li a,
.main-footer .widget_nav_menu ul li a,
.main-footer .widget_archive ul li a,
.main-footer .widget_categories ul li a,
.main-footer .widget_recent_comments ul li a,
.main-footer .widget_recent_entries ul li a,
.main-footer .widget_rating_filter ul li a,
.main-footer .widget_media_audio a,
.main-footer .widget_product_categories ul li a,
.main-footer .widget_pages ul li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
  color: #B7B7B7;
}
.main-footer .links-list li a:hover,
.main-footer .links-list li a:focus,
.main-footer .widget_meta ul li a:hover,
.main-footer .widget_meta ul li a:focus,
.main-footer .widget_custom_html ul li a:hover,
.main-footer .widget_custom_html ul li a:focus,
.main-footer .widget_text ul li a:hover,
.main-footer .widget_text ul li a:focus,
.main-footer .widget_block ul li a:hover,
.main-footer .widget_block ul li a:focus,
.main-footer .widget_layered_nav ul li a:hover,
.main-footer .widget_layered_nav ul li a:focus,
.main-footer .widget_nav_menu ul li a:hover,
.main-footer .widget_nav_menu ul li a:focus,
.main-footer .widget_archive ul li a:hover,
.main-footer .widget_archive ul li a:focus,
.main-footer .widget_categories ul li a:hover,
.main-footer .widget_categories ul li a:focus,
.main-footer .widget_recent_comments ul li a:hover,
.main-footer .widget_recent_comments ul li a:focus,
.main-footer .widget_recent_entries ul li a:hover,
.main-footer .widget_recent_entries ul li a:focus,
.main-footer .widget_rating_filter ul li a:hover,
.main-footer .widget_rating_filter ul li a:focus,
.main-footer .widget_media_audio a:hover,
.main-footer .widget_media_audio a:focus,
.main-footer .widget_product_categories ul li a:hover,
.main-footer .widget_product_categories ul li a:focus,
.main-footer .widget_pages ul li a:hover,
.main-footer .widget_pages ul li a:focus,
.footer-widget a:hover,
.footer-widget a:focus{
 color: #F5B020;
 text-decoration: none;
}
.main-footer .contact-widget .support-box,
.main-footer .widget_custom_html .support-box,
.main-footer .widget_text .support-box,
.main-footer .widget_block .support-box{
  position: relative;
  display: block;
  padding: 0px 0px 0px 48px;
  margin-bottom: 22px;
}
.main-footer .contact-widget .support-box .icon-box,
.main-footer .widget_custom_html .support-box .icon-box,
.main-footer .widget_text .support-box .icon-box,
.main-footer .widget_block .support-box .icon-box{
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 36px;
  color: #F5B020;
}
.main-footer .contact-widget .support-box a,
.main-footer .widget_custom_html .support-box a,
.main-footer .widget_text .support-box a,
.main-footer .widget_block .support-box a{
  display: inline-block;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #F5B020;
}
.main-footer .contact-widget .support-box a:hover,
.main-footer .contact-widget .support-box a:focus,
.main-footer .widget_custom_html .support-box a:hover,
.main-footer .widget_custom_html .support-box a:focus,
.main-footer .widget_text .support-box a:hover,
.main-footer .widget_text .support-box a:focus,
.main-footer .widget_block .support-box a:hover,
.main-footer .widget_block .support-box a:focus{
  text-decoration: none;
  color: #fff;
}
.main-footer .contact-widget .support-box span,
.main-footer .widget_custom_html .support-box span,
.main-footer .widget_text .support-box span,
.main-footer .widget_block .support-box span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #B7B7B7;
}
.main-footer .contact-widget .widget-content .info li,
.main-footer .widget_custom_html .widget-content .info li,
.main-footer .widget_text .widget-content .info li,
.main-footer .widget_block .widget-content .info li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #B7B7B7;
  margin-bottom: 4px;
}
.main-footer .contact-widget .widget-content .info li:last-child,
.main-footer .widget_custom_html .widget-content .info li:last-child,
.main-footer .widget_text .widget-content .info li:last-child,
.main-footer .widget_block .widget-content .info li:last-child{
  margin-bottom: 0px;
}
.main-footer .contact-widget .widget-content .info li a,
.main-footer .widget_custom_html .widget-content .info li a,
.main-footer .widget_text .widget-content .info li a,
.main-footer .widget_block .widget-content .info li a{
  position: relative;
  display: inline-block;
  color: #B7B7B7;
}
.main-footer .contact-widget .widget-content .info li a:hover,
.main-footer .contact-widget .widget-content .info li a:focus,
.main-footer .widget_custom_html .widget-content .info li a:hover,
.main-footer .widget_custom_html .widget-content .info li a:focus,
.main-footer .widget_text .widget-content .info li a:hover,
.main-footer .widget_text .widget-content .info li a:focus,
.main-footer .widget_block .widget-content .info li a:hover,
.main-footer .widget_block .widget-content .info li a:focus{
  color: #fff;
}
.main-footer .contact-widget .social-links,
.main-footer .widget_custom_html .social-links,
.main-footer .widget_text .social-links,
.main-footer .widget_block .social-links{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main-footer .contact-widget .social-links li,
.main-footer .widget_custom_html .social-links li,
.main-footer .widget_text .social-links li,
.main-footer .widget_block .social-links li{
  margin-right: 10px;
}
.main-footer .contact-widget .social-links li:last-child,
.main-footer .widget_custom_html .social-links li:last-child,
.main-footer .widget_text .social-links li:last-child{
  margin: 0px !important;
}
.main-footer .contact-widget .social-links li a,
.main-footer .widget_custom_html .social-links li a,
.main-footer .widget_text .social-links li a,
.main-footer .widget_block .social-links li a{
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.50);
  text-align: center;
}
.main-footer .contact-widget .social-links li a:hover,
.main-footer .widget_text .social-links li a:hover,
.main-footer .widget_block .social-links li a:hover,
.main-footer .contact-widget .social-links li a:focus,
.main-footer .widget_text .social-links li a:focus,
.main-footer .widget_block .social-links li a:focus{
  color: #fff;
  background: #F5B020;
  border-color: #F5B020;
}
.main-footer .links-list li{
  position: relative;
  display: block;
}
.main-footer .links-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  color: #B7B7B7;
}
.main-footer .links-list li a:hover,
.main-footer .links-list li a:focus{
 color: #F5B020;
}
.main-footer .contact-widget .support-box{
  position: relative;
  display: block;
  padding: 0px 0px 0px 48px;
  margin-bottom: 22px;
}
.main-footer .contact-widget .support-box .icon-box{
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 36px;
  color: #F5B020;
}
.main-footer .contact-widget .support-box a{
  display: inline-block;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #F5B020;
}
.main-footer .contact-widget .support-box a:hover,
.main-footer .contact-widget .support-box a:focus{
  text-decoration: underline;
  color: #fff;
}
.main-footer .contact-widget .support-box span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #B7B7B7;
}
.main-footer .contact-widget .widget-content .info li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #B7B7B7;
  margin-bottom: 4px;
}
.main-footer .contact-widget .widget-content .info li:last-child{
  margin-bottom: 0px;
}
.main-footer .contact-widget .widget-content .info li a{
  position: relative;
  display: inline-block;
  color: #B7B7B7;
}
.main-footer .contact-widget .widget-content .info li a:hover,
.main-footer .contact-widget .widget-content .info li a:focus{
  color: #fff;
}
.main-footer .contact-widget .social-links{
  position: relative;
  display: flex;
  align-items: center;
}
.main-footer .contact-widget .social-links li{
  margin-right: 10px;
}
.main-footer .contact-widget .social-links li:last-child{
  margin: 0px !important;
}
.main-footer .contact-widget .social-links li a{
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.50);
  text-align: center;
}
.main-footer .contact-widget .social-links li a:hover,
.main-footer .contact-widget .social-links li a:focus{
  color: #fff;
  background: #F5B020;
  border-color: #F5B020;
}
.main-footer .widget_text .widget-content ul li{
  margin-bottom: 0px;
}
.footer-bottom{
  position: relative;
  padding: 20px 0px;
}
.footer-bottom .bottom-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p{
  color: #B7B7B7;
}
.footer-bottom p a{
  display: inline-block;
  color: #F5B020;
}
.footer-bottom p a:hover,
.footer-bottom p a:focus{
  color: #fff;
}
.footer-bottom .footer-card{
  position: relative;
  display: flex;
  align-items: center;
}
.footer-bottom .footer-card li{
  position: relative;
  display: inline-block;
  margin-right: 10px;
}
.footer-bottom .footer-card li:last-child{
  margin: 0px !important;
}
.footer-bottom .footer-card li a{
  position: relative;
  display: inline-block;
}
.main-footer .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.page-title{
  position: relative;
}
.page-title .bread-crumb{
  position: relative;
  display: flex;
  align-items: center;
}
.page-title .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 21px;
  font-family: var(--title-font);
  margin-right: 18px;
}
.page-title .bread-crumb li:last-child{
  margin: 0px;
}
.page-title .bread-crumb li a{
  display: inline-block;
  color: var(--title-color);
}
.page-title .bread-crumb li:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 6px;
  height: 1px;
  top: 11px;
  right: -13px;
}
.page-title .bread-crumb li:last-child:before{
  display: none;
}
.sidebar-page-container{
  position: relative;
}
.sidebar-page-container .news-block-one .inner-box .image-box .image,
.sidebar-page-container .news-block-one .inner-box .image-box .image:before{
  border-radius: 0px;
}
.sidebar-page-container .cta-section .inner-container{
  padding-top: 82px;
  padding-bottom: 82px;
}
.blog-grid-content .news-block-one .inner-box{
  margin-bottom: 55px;
}
.sidebar-page-container .news-block-one .inner-box .lower-content .post-info li span{
  position: relative;
  font-weight: 400;
  padding-left: 17px;
}
.sidebar-page-container .news-block-one .inner-box .lower-content .post-info li span:before{
  position: absolute;
  content: '';
  background: rgba(17, 17, 17, 0.10);
  width: 2px;
  height: 16px;
  top: 1px;
  left: -4px;
}
.sidebar-page-container .news-block-one .inner-box .lower-content h2{
  display: block;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 14px;
}
.sidebar-page-container .news-block-one .inner-box .lower-content h2 a{
  display: inline-block;
  color: var(--title-color);
}
.sidebar-page-container .news-block-one .inner-box .lower-content p{
  margin-bottom: 22px;
}
.sidebar-page-container .news-block-one .inner-box .lower-content .theme-btn{
  background: transparent;
  border: solid;
  border-width: 1px;
  color: var(--theme-color) !important;
  padding: 4.5px 30px;
}
.sidebar-page-container .news-block-one .inner-box .lower-content .theme-btn:hover,
.sidebar-page-container .news-block-one .inner-box .lower-content .theme-btn:focus{
  color: #fff !important;
}
.blog-standard-content .news-block-one .inner-box{
  margin-bottom: 60px;
}
.sidebar-page-container .sec-title h2{
  font-size: 36px;
  line-height: 42px;
}
.blog-details-content{
  position: relative;
}
.blog-details-content .content-one blockquote{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.04);
  padding: 40px 30px 32px 110px;
  border-top: solid;
  border-width: 3px;
  border-color: rgba(255, 172, 0, 1);
}
.blog-details-content .content-one blockquote .icon-box{
  position: absolute;
  left: 30px;
  top: 45px;
  font-size: 45px;
  color: rgba(255, 172, 0, 1);
}
.blog-details-content .content-one blockquote p{
  font-size: 20px;
  line-height: 30px;
  font-family: var(--title-font);
  color: var(--title-color);
  margin-bottom: 16px;
}
.blog-details-content .content-one blockquote h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
.blog-details-content .content-one .text-box p{
  color: var(--title-color);
}
.blog-details-content .content-one .image-box{
  position: relative;
  display: block;
  border-radius: 5px;
}
.blog-details-content .content-one .image-box img{
  width: 100%;
  border-radius: 5px;
}
.blog-details-content .content-two{
  position: relative;
  display: block;
}
.blog-details-content .content-two h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 14px;
}
.blog-details-content .content-two p{
  color: var(--title-color);
  margin-bottom: 26px;
}
.blog-details-content .content-two p:last-child{
  margin-bottom: 0px;
}
.blog-details-content .content-two h6{
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 5px;
}
.blog-details-content .content-two .list-style-one li{
  font-size: 16px;
}
.blog-details-content .post-share-option{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(229, 229, 229, 1);
}
.blog-details-content .post-share-option ul{
  position: relative;
  display: flex;
  align-items: center;
}
.blog-details-content .post-share-option ul.tags-list{
  align-items: start;
}
.blog-details-content .post-share-option ul.tags-list li:first-child{
  flex-shrink: 0;
}
.blog-details-content .post-share-option ul li{
  position: relative;
  display: inline-block;
}
.blog-details-content .post-share-option ul li span{
  font-size: 16px;
  font-weight: 500;
  color: var(--title-color);
  padding-right: 4px;
}
.blog-details-content .post-share-option .tags-list li{
  margin-right: 10px;
}
.blog-details-content .post-share-option .tags-list li:last-child{
  margin-right: 0px;
}
.blog-details-content .post-share-option .tags-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 5px;
  text-decoration: none;
  background: rgba(244, 244, 244, 1);
  border-radius: 50px;
  padding: 5px 25px;
}
.blog-details-content .post-share-option .tags-list li a:hover,
.blog-details-content .post-share-option .tags-list li a:focus{
  color: #fff;
  background: var(--theme-color);
}
.blog-details-content .post-share-option .social-links li{
  margin-right: 20px;
}
.blog-details-content .post-share-option .social-links li:last-child{
  margin-right: 0px;
}
.blog-details-content .post-share-option .social-links li a{
  display: inline-block;
  font-size: 16px;
  color: rgba(106, 106, 106, 1);
}
.blog-details-content .post-share-option .social-links li a:hover,
.blog-details-content .post-share-option .social-links li a:focus {
  color: var(--theme-color);
}
.blog-details-content .author-box{
  position: relative;
  display: block;
  padding: 7px 0px 51px 190px;
  border-bottom: 1px solid rgba(229, 229, 229, 1);
}
.blog-details-content .author-box .thumb-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.blog-details-content .author-box .thumb-box img{
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.blog-details-content .author-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
  font-weight: 600;
}
.blog-details-content .author-box .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 17px;
}
.blog-details-content .author-box p{
  color: var(--title-color);
}
.blog-details-content .comment-box h2{
  position: relative;
  display: block;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 16px;
}
.blog-details-content .comment-box .form-inner .form-group{
  position: relative;
  display: block;
  margin-bottom: 22px;
}
.blog-details-content .comment-box .form-inner .form-group label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 8px;
}
.blog-details-content .comment-box .form-inner .form-group label span{
  color: rgba(255, 45, 45, 1);
}
.blog-details-content .comment-box .form-inner .form-group input[type='text'],
.blog-details-content .comment-box .form-inner .form-group input[type='email'],
.blog-details-content .comment-box .form-inner .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid rgba(229, 229, 229, 1);
  border-radius: 50px;
  font-size: 16px;
  color: var(--title-color);
  padding: 10px 20px;
  transition: all 500ms ease;
}
.blog-details-content .comment-box .form-inner .form-group input:focus,
.blog-details-content .comment-box .form-inner .form-group textarea:focus{
  border-color: var(--theme-color);
}
.blog-details-content .comment-box .form-inner .form-group textarea{
  height: 195px;
  resize: none;
  border-radius: 20px;
}
.blog-details-content .comment-box .form-inner .check-box label{
  font-size: 16px;
}
.blog-details-content .comment-box .form-inner .check-box label:after{
  content: '\e928';
  font-family: 'icomoon';
  background: none;
  font-size: 6px;
  left: 4px;
  top: 0px;
}
.comment-respond .comment-reply-title{
  margin-bottom: 15px;
}
.comment-respond .comment-form p label{
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
}
.comments-area .comment-respond .comment-form  .comment-form-comment textarea, 
.comment-respond .comment-form .comment-form-comment textarea,
.comment-respond .comment-form p input,
.blog-details-content .comment-box .comment-respond .comment-form-comment textarea, 
.page-comments .comments-area .comment-respond p input,
.blog-details-content .comment-box .comment-respond p input {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 10px 20px;
  border: 1px solid rgba(229, 229, 229, 1);
  transition: all 500ms ease;
}
.comment-respond .comment-form p.comment-form-cookies-consent input{
  width: auto;
}
.blog-details-content .comment-box .comment-respond .form-submit input[type="submit"],
.comment-form .form-submit .submit,
.comments-area .comment-respond .comment-form .form-submit .submit{
  position: relative;
  display: block;
  height: 50px;
  margin-bottom: 10px;
  border: 1px solid rgba(229, 229, 229, 1);
  font-size: 16px;
  color: #fff;
  background: var(--theme-color);
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 500ms ease;
}
.blog-details-content .comment-box .comment-respond .form-submit input[type="submit"]:hover,
.comment-form .form-submit .submit:hover,
.comment-form .form-submit .submit:focus,
.comments-area .comment-respond .comment-form .form-submit .submit:hover,
.comments-area .comment-respond .comment-form .form-submit .submit:focus,
.blog-details-content .comment-box .comment-respond .form-submit input[type="submit"]:focus{
 background: var(--secondary-color);
}
.comments-area .comment-respond .comment-form  .comment-form-comment textarea:hover, 
.comments-area .comment-respond .comment-form  .comment-form-comment textarea:focus, 
.comment-respond .comment-form .comment-form-comment textarea:hover,
.comment-respond .comment-form .comment-form-comment textarea:focus,
.comment-respond .comment-form p input:hover,
.comment-respond .comment-form p input:focus,
.blog-details-content .comment-box .comment-respond .comment-form-comment textarea:hover, 
.blog-details-content .comment-box .comment-respond .comment-form-comment textarea:focus, 
.page-comments .comments-area .comment-respond p input:hover,
.page-comments .comments-area .comment-respond p input:focus,
.blog-details-content .comment-box .comment-respond p input:hover,
.blog-details-content .comment-box .comment-respond p input:focus{
  border-color: var(--theme-color);
}
.sidebar{
  position: relative;
  padding: 35px 30px;
  border: solid;
  border-width: 1px;
  border-color: rgba(229, 229, 229, 1);
}
.sidebar .widget,
.sidebar .sidebar-widget {
  margin-bottom: 35px;
}
.sidebar .widget:last-child,
.sidebar .sidebar-widget:last-child{
  margin-bottom: 0px;
}
.sidebar .widget_search{
  margin-bottom: 35px;
}
.sidebar .widget .search-form,
.sidebar .widget_product_search .woocommerce-product-search,
.main-footer .widget_product_search .woocommerce-product-search,
.sidebar .widget_search .search-form .search-box,
.main-footer  .widget_search .search-form{
  position: relative;
  margin-bottom: 0px;
}
.sidebar .widget_search .search-form label,
.main-footer .widget_search .search-form label{
  width: 100%;
}
.sidebar .widget .search-form input[type='search'],
.sidebar .widget_product_search .woocommerce-product-search input[type='search'],
.main-footer .widget_product_search .woocommerce-product-search input[type='search'],
.sidebar .widget_search .search-form .search-box input[type='search'],
.main-footer .widget_search .search-form input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: solid;
  border-width: 1px;
  border-color: rgba(229, 229, 229, 1);
  font-size: 14px;
  color: var(--text-color);
  border-radius: 50px;
  padding: 10px 70px 10px 20px;
  transition: all 500ms ease;
}
.sidebar .widget .search-form button[type='submit'],
.sidebar .widget_product_search .woocommerce-product-search button[type='submit'],
.main-footer .widget_product_search .woocommerce-product-search button[type='submit'],
.sidebar .widget_search .search-form .search-box button[type='submit'],
.main-footer .widget_search .search-form button[type='submit']{
  position: absolute;
  display: inline-block;
  top: 5px;
  right: 5px;
  width: 57px;
  height: 40px;
  line-height: 40px;
  background: rgba(255, 172, 0, 1);
  text-align: center;
  border-radius: 45px;
  font-size: 16px;
  color: #fff;
  transition: all 500ms ease;
}
.sidebar .widget .search-form input[type='search']:focus,
.sidebar .widget_search .search-form .search-box input[type='search']:focus,
.main-footer .widget_search .search-form input[type='search']:focus,
.main-footer .widget_product_search .woocommerce-product-search input[type='search']:focus,
.sidebar .widget_product_search .woocommerce-product-search input[type='search']:focus{
  border-color: var(--theme-color) !important;
}
.sidebar .widget .search-form input[type='search']:focus + button,
.sidebar .widget_search .search-form .search-box input[type='search']:focus + button,
.main-footer .widget_search .search-form input[type='search']:focus + button,
.main-footer .widget_product_search .woocommerce-product-search input[type='search']:focus + button,
.sidebar .widget_product_search .woocommerce-product-search input[type='search']:focus + button,
.sidebar .widget .search-form button[type='submit']:hover,
.sidebar .widget .search-form button[type='submit']:focus,
.main-footer .widget_search .search-form button[type='submit']:hover,
.main-footer .widget_search .search-form button[type='submit']:focus{
  background: var(--theme-color);
}
.sidebar .widget-title{
  position: relative;
  display: block;
}
.sidebar .widget_calendar .wp-calendar-table,
.sidebar .widget_calendar .wp-calendar-table,
.main-footer .widget_calendar .wp-calendar-table{
  width: 100%;
}
.main-footer .widget_calendar .wp-calendar-table{
  color: #fff;
}
.main-footer caption{
  color: #fff;
}
.sidebar .widget_calendar .wp-calendar-nav{
  display: none;
}
.sidebar h5.widget-title,
.sidebar h2.wp-block-heading {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.sidebar h5.widget-title:after,
.sidebar h2.wp-block-heading::after,
.sidebar h5.widget-title:before,
.sidebar h2.wp-block-heading::before{
  background-color: var(--theme-color);
  position: absolute;
  content: "";
  bottom: 5px;
  left: 0;
  height: 2px;
  width: 40px;
  opacity: 1;
  transition: 0.5s;
}
.sidebar h5.widget-title:before,
.sidebar h2.wp-block-heading::before{
  width: 70px;
  bottom: 0;
}
.sidebar .category-widget .category-list li{
  position: relative;
  display: block;
  margin-bottom: 4px;
}
.sidebar .category-widget .category-list li:last-child{
  margin-bottom: 0px;
}
.sidebar .check-box input {
  display: none;
}
.sidebar .check-box label {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--title-color);
  padding-left: 26px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0px;
}
.sidebar .sidebar-widget ul li,
.sidebar .widget ul li,
.sidebar .widget_categories .cat-item,
.sidebar .widget_product_categories ul li,
.sidebar .widget_layered_nav ul li,
.sidebar .widget_meta ul li,
.sidebar .widget_pages ul li,
.sidebar .widget_nav_menu .menu-item {
  margin-bottom: 10px;
}
.sidebar .sidebar-widget ul li:last-child,
.sidebar .widget ul li:last-child,
.sidebar .widget_categories .cat-item:last-child,
.sidebar .widget_product_categories ul li:last-child,
.sidebar .widget_layered_nav ul li:last-child,
.sidebar .widget_meta ul li:last-child,
.sidebar .widget_pages ul li:last-child,
.sidebar .widget_nav_menu .menu-item:last-child{
  margin-bottom: 0;
}
.sidebar .widget_nav_menu .menu-item-has-children ul{
  margin-left: 10px;
}
.sidebar .sidebar-widget ul li a,
.sidebar .widget ul li a,
.sidebar .widget_categories .cat-item a,
.sidebar .widget_archive ul li a,
.sidebar .widget_meta ul li a,
.sidebar .widget_pages ul li a,
.sidebar .widget_layered_nav ul li a,
.sidebar .widget_product_categories ul li a,
.sidebar .widget_nav_menu .menu li a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--title-color);
  display: inline-block;
  margin-bottom: 0px;
}
.sidebar .sidebar-widget ul li a:hover,
.sidebar .sidebar-widget ul li a:focus,
.sidebar .widget ul li a:hover,
.sidebar .widget ul li a:focus,
.sidebar .widget_categories .cat-item a:hover,
.sidebar .widget_categories .cat-item a:focus,
.sidebar .widget_product_categories ul li a:hover,
.sidebar .widget_product_categories ul li a:focus,
.sidebar .widget_layered_nav ul li a:hover,
.sidebar .widget_layered_nav ul li a:focus,
.sidebar .widget_meta ul li a:hover,
.sidebar .widget_meta ul li a:focus,
.sidebar .widget_pages ul li a:hover,
.sidebar .widget_pages ul li a:focus{
 color: var(--theme-color);
 text-decoration: none;
}
.sidebar .check-box label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  border-color: #DDDDDD;
  background: transparent;
}
.sidebar .check-box label:after {
  position: absolute;
  content: '\e928';
  font-family: 'icomoon';
  left: 0px;
  top: 7px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 8px;
  color: #fff;
  background-image: none;
  opacity: 0;
}
.sidebar .check-box input:checked + label:after {
  opacity: 1;
}
.sidebar .post-widget .post,
.sidebar .widget_recent_entries li{
  position: relative;
  display: block;
  padding: 0px 0px 10px 0px;
  margin-bottom: 20px;
  border-bottom: solid;
  border-width: 1px;
  border-color: rgba(229, 229, 229, 1);
}
.sidebar .post-widget .post:last-child{
  border-bottom: none;
  margin-bottom: 0px;
}
.sidebar .post-widget .post .post-thumb{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 105px;
  height: 90px;
  overflow: hidden;
}
.sidebar .post-widget .post .post-thumb img{
  width: 100%;
  transition: all 500ms ease;
}
.sidebar .post-widget .post:hover .post-thumb img,
.sidebar .post-widget .post:focus-within .post-thumb img{
  opacity: 0.5;
  transform: scale(1.05);
}
.sidebar .post-widget .post h5,
.sidebar .widget_recent_entries ul li a{
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
  color: var(--title-color);
}
.sidebar .post-widget .post h5 a{
  display: inline-block;
  color: var(--title-color);
}
.sidebar .widget_recent_entries ul li a:hover,
.sidebar .widget_recent_entries ul li a:focus,
.sidebar .widget_archive ul li a:hover,
.sidebar .widget_archive ul li a:focus,
.sidebar .widget_product_categories ul li a:hover,
.sidebar .widget_product_categories ul li a:focus,
.sidebar .widget_nav_menu .menu li a:hover,
.sidebar .widget_nav_menu .menu li a:focus,
.sidebar .widget_nav_menu .menu li a:hover,
.sidebar .widget_nav_menu .menu li a:focus{
 color: var(--theme-color);
}
.sidebar .post-widget .post .post-date,
.sidebar .widget_recent_entries ul li .post-date{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 20px;
  color: rgba(106, 106, 106, 1);
}
.sidebar .advice-widget{
  position: relative;
  display: block;
  overflow: hidden;
  padding: 40px 30px 336px 30px;
}
.sidebar .advice-widget .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sidebar .advice-widget h2{
  display: block;
  font-size: 28px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 4px;
}
.sidebar .advice-widget a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: rgba(239, 202, 138, 1);
  text-decoration: underline;
  text-transform: uppercase;
}
.sidebar .archives-widget .archives-list li{
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.sidebar .archives-widget .archives-list li:last-child{
  margin-bottom: 0px;
}
.sidebar .archives-widget .archives-list li a{
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: var(--title-color);
}
.sidebar .archives-widget .archives-list li a:hover,
.sidebar .archives-widget .archives-list li a:focus{
  padding-left: 16px;
}
.sidebar .archives-widget .archives-list li a i{
  position: absolute;
  left: 0px;
  top: 7px;
  opacity: 0;
  font-size: 12px;
  transition: all 500ms ease;
}
.sidebar .archives-widget .archives-list li a:hover i,
.sidebar .archives-widget .archives-list li a:focus i{
  opacity: 1;
}
.gallery{
  display: flex;
  flex-wrap: wrap;
}
.sidebar .gallery-widget .image-list,
.widget_media_gallery .gallery{
  position: relative;
  margin: 0px -6px;
}
.sidebar .gallery-widget .image-list li,
.widget_media_gallery .gallery .gallery-item{
  position: relative;
  display: inline-block;
  float: none;
  margin: 0px 3px 6px 3px;
}
.sidebar .gallery-widget .image-list li .image,
.widget_media_gallery .gallery .gallery-item .gallery-icon{
  position: relative;
  display: inline-block;
  width: 75px;
  height: 75px;
}
.sidebar .gallery-widget .image-list li .image img,
.widget_media_gallery .gallery .gallery-item .gallery-icon img{
  width: 100%;
}
.sidebar .tags-widget .tags-list{
  position: relative;
  margin: 0px -5px;
}
.sidebar .tags-widget .tags-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin: 0px 5px 10px 5px;
}
.sidebar .tags-widget .tags-list li a,
.sidebar .widget_product_tag_cloud .tagcloud a,
.sidebar .widget_tag_cloud .tagcloud a,
.main-footer .tags-widget .tags-list li a,
.main-footer .widget_product_tag_cloud .tagcloud a,
.main-footer .widget_tag_cloud .tagcloud a{
  position: relative;
  display: inline-block;
  font-size: 16px !important;
  line-height: 26px;
  color: rgba(106, 106, 106, 1);
  background: rgba(244, 244, 244, 1);
  text-decoration: none;
  padding: 5px 19px;
  margin: 0px 5px 10px 5px;
  border-radius: 30px;
}
.sidebar .tags-widget .tags-list li a:hover,
.sidebar .widget_product_tag_cloud .tagcloud a:hover,
.sidebar .widget_tag_cloud .tagcloud a:hover,
.sidebar .tags-widget .tags-list li a:focus,
.sidebar .widget_product_tag_cloud .tagcloud a:focus,
.sidebar .widget_tag_cloud .tagcloud a:focus,
.main-footer .tags-widget .tags-list li a:hover,
.main-footer .widget_product_tag_cloud .tagcloud a:hover,
.main-footer .widget_tag_cloud .tagcloud a:hover,
.main-footer .tags-widget .tags-list li a:focus,
.main-footer .widget_product_tag_cloud .tagcloud a:focus,
.main-footer .widget_tag_cloud .tagcloud a:focus{
  color: #fff;
  background: var(--theme-color);
}
.sidebar{
  padding-bottom: 30px;
}
.sidebar .widget,
.sidebar .sidebar-widget{
  position: relative;
}
.sidebar .widget .widget-content p,
.sidebar .sidebar-widget .widget-content p{
  color: #202020;
  line-height: 26px;
  margin-bottom: 23px;
}
.sidebar .widget .form-inner .form-group,
.sidebar .sidebar-widget .form-inner .form-group{
  position: relative;
  margin-bottom: 0px;
}
.sidebar .widget .form-inner .form-group input[type='email'],
.sidebar .sidebar-widget .form-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  border: 1px solid rgba(229, 229, 229, 1);
  font-size: 16px;
  color: #B7B7B7;
  padding: 10px 70px 10px 20px;
  transition: all 500ms ease;
}
.sidebar .widget .form-inner .form-group input[type='email']:focus,
.sidebar .sidebar-widget .form-inner .form-group input[type='email']:focus{
  border-color: var(--theme-color);
}
.sidebar .widget .form-inner .form-group button[type="submit"],
.sidebar .sidebar-widget .form-inner .form-group button[type="submit"]{
  position: absolute;
  display: inline-block;
  top: 5px;
  right: 5px;
  width: 56px;
  height: 51px;
  line-height: 53px;
  text-align: center;
  font-size: 14px;
  border-radius: 105px;
  cursor: pointer;
  color: #fff;
  background: #F5B020;
  font-weight: 400;
  transition: all 500ms ease;
}
.sidebar .widget .form-inner .form-group input:focus + button,
.sidebar .sidebar-widget .form-inner .form-group input:focus + button{
  background: var(--theme-color);
}
.sidebar .widget_search .search-field{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  border: 1px solid rgba(229, 229, 229, 1);
  font-size: 16px;
  color: #B7B7B7;
  padding: 10px 20px 10px 20px;
}
.sidebar .wp-block-search__input,
.search-form .search-field{
  margin-bottom: 10px;
  border: 1px solid rgba(229, 229, 229, 1);
  font-size: 16px;
  color: var(--secondary-color);
  background: #fff;
  padding: 10px 20px;
  border-radius: 12px;
}

.sidebar .woocommerce ul.cart_list li, 
.main-footer .woocommerce ul.cart_list li, 
.sidebar .woocommerce ul.product_list_widget li,
.main-footer .woocommerce ul.product_list_widget li{
  display: flex;
  gap: 10px;
  margin-right: 0;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 15px;
}
.woocommerce ul.cart_list li a, 
.woocommerce ul.product_list_widget li a {
  font-weight: 500;
  display: flex;
  gap: 8px;
  justify-content: center;
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 16px;
}
.woocommerce ul.cart_list li a:hover, .woocommerce ul.product_list_widget li a:hover,
.woocommerce ul.cart_list li a:focus, .woocommerce ul.product_list_widget li a:focus{
  color: var(--theme-color);
}
.woocommerce ul.cart_list li a .product-title, 
.woocommerce ul.product_list_widget li a .product-title{
 font-size: 16px;
 font-weight: 500;
 line-height: 1.4;
}
.sidebar .woocommerce ul.cart_list li img, 
.main-footer .woocommerce ul.cart_list li img, 
.sidebar .woocommerce ul.product_list_widget li img,
.main-footer .woocommerce ul.product_list_widget li img{
  float: none;
  margin-right: 12px;
  margin-left: 0px;
  width: 60px;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove, .woocommerce.widget_shopping_cart .cart_list li a.remove{
  align-items: center;
  gap: 0;
}
.sidebar .woocommerce-Price-amount.amount {
  font-weight: 500;
  font-size: 16px;
  color: #7C7C7C;
}
.main-footer .quantity,
.main-footer .woocommerce-Price-amount.amount {
  font-weight: 500;
  font-size: 16px;
  color: #B7B7B7;
}
.sidebar ins,
.main-footer ins{
  text-decoration: none;
}
.sidebar ins .woocommerce-Price-amount.amount bdi,
.main-footer ins .woocommerce-Price-amount.amount bdi {
  color: #E92530;
}
.sidebar .woocommerce ul.cart_list li::after, 
.sidebar .woocommerce ul.cart_list li::before, 
.sidebar .woocommerce ul.product_list_widget li::after, 
.sidebar .woocommerce ul.product_list_widget li::before,
.main-footer .woocommerce ul.cart_list li::after, 
.main-footer .woocommerce ul.cart_list li::before, 
.main-footer .woocommerce ul.product_list_widget li::after, 
.main-footer .woocommerce ul.product_list_widget li::before{
  display: none;
}
.search-form h3,
.search-suggestions h3{
  margin-bottom: 15px;
}
.wp-block-search__button{
  background-color: var(--theme-color);
  height: 50px;
  color: #fff;
  border-radius: 10px;
  padding: .375em .625em;
}
.wp-block-search__button:hover,
.wp-block-search__button:focus{
  background-color: var(--title-color);
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{
  background-color: var(--theme-color);
}
.woocommerce .widget_price_filter .price_slider_amount .button{
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #ffffff;
  background: var(--theme-color);
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 500ms ease;
}
.woocommerce .widget_price_filter .price_slider_amount .button:hover,
.woocommerce .widget_price_filter .price_slider_amount .button:focus{
  background: var(--title-color);
  transform: translateY(-2px);
  color: #ffffff;
}
.main-footer .woocommerce .widget_price_filter .price_slider_amount .button:hover,
.main-footer .woocommerce .widget_price_filter .price_slider_amount .button:focus{
  background: #ffffff;
  transform: translateY(-2px);
  color: var(--theme-color);
}
.woocommerce nav.woocommerce-pagination ul{
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li{
  border: none;
  display: inline-block;
  margin: 0 5px;
}
nav.pagination{
  justify-content: center;
}
.sp-post-pagination nav.pagination .nav-links a, 
.pagination .nav-links a, 
.sp-post-pagination nav.pagination .nav-links span,
.pagination .nav-links span,
.woocommerce nav.woocommerce-pagination ul li a, 
.woocommerce nav.woocommerce-pagination ul li span{  
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  height: 50px;
  width: 50px;
  line-height: 50px;
  padding: 0px;
  background: #ffffff;
  border: 1px solid #E7E9F0;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}
.sp-post-pagination nav.pagination .nav-links a:hover,
.sp-post-pagination nav.pagination .nav-links a:focus,
.sp-post-pagination nav.pagination .nav-links span.current,
nav.pagination .nav-links a:hover,
nav.pagination .nav-links a:focus,
nav.pagination .nav-links span.current,
.woocommerce nav.woocommerce-pagination ul li a:focus, 
.woocommerce nav.woocommerce-pagination ul li a:hover, 
.woocommerce nav.woocommerce-pagination ul li span.current{
 background: var(--theme-color);
 color: #fff;
}
/*===== 21. Breadcrumb =====*/
.breadcrumb-area {
  width: 100%;
  position: relative;
  z-index: 0;
  height: auto;
  display: block;
  min-height: 200px;
  background-size: 100%;
}
.breadcrumb-area:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bs-black);
  opacity: 0.75;
  transition: var(--bs-transition);
  z-index: -1;
}
.breadcrumb-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  padding: 30px;
  min-height: 200px;
  color: var(--bs-secondary);
}
.breadcrumb-heading {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  width: 100%;
  max-width: 50%;
}
.breadcrumb-list {
  flex-shrink: 0;
  list-style: none;
  width: 100%;
  max-width: 50%;
  padding: 0;
  margin: 0;
}
.breadcrumb-list li {
  display: inline-block;
  word-break: break-word;
  font-weight: 500;
  font-size: 1.125rem;
}
.breadcrumb-list li a{
  text-decoration: none;
}
.breadcrumb-list li a:hover,
.breadcrumb-list li a:focus{
  color: #FFAC00;
}
.breadcrumb-list li:not(:first-child) {
  margin-left: 0.35rem;
}
.breadcrumb-list li i {
  vertical-align: baseline;
  font-size: 1.15rem;
  margin-left: 2px;
  color: var(--bs-primary);
  text-align: center;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.breadcrumb-center .breadcrumb-content {
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}
.breadcrumb-center .breadcrumb-content {
  padding: 0; 
}
.breadcrumb-center .breadcrumb-heading {
  text-align: center;
  margin-bottom: 0;
}
.breadcrumb-center .breadcrumb-heading * {
  font-weight: 600;
  margin-bottom: 15px;
}
.breadcrumb-list {
  text-align: center;
  display: inline-block;
}
.breadcrumb-left .breadcrumb-content {
  justify-content: space-between;
}
.breadcrumb-right .breadcrumb-content {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.breadcrumb-right .breadcrumb-list,
.breadcrumb-left .breadcrumb-heading {
  text-align: left;
}
.breadcrumb-left .breadcrumb-list,
.breadcrumb-right .breadcrumb-heading {
  text-align: right;
}
.main-footer .woocommerce ul.cart_list li a, .main-footer .woocommerce ul.product_list_widget li a{
  color: #B7B7B7;
}
.main-footer .woocommerce ul.cart_list li a:hover, 
.main-footer .woocommerce ul.cart_list li a:focus, 
.main-footer .woocommerce ul.product_list_widget li a:hover,
.main-footer .woocommerce ul.product_list_widget li a:focus{
 color: #F5B020;
}
.woocommerce-MyAccount-navigation{
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid #e9ecef;
}
.woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link{
  margin-bottom: 10px;
}
.woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link:last-child{
  margin-bottom: 0px;
}
.woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link a{
  padding: 8px 24px;
  background-color:#ececec;
  color: #0E0E0E;
  display: inline-block;
  border-radius: 50px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link a:hover,
.woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link a:focus,
.woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link.is-active a{
  color: #fff;
  background-color:var(--theme-color);
}
.woocommerce-MyAccount-content p {
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.6;
}
.content-inner .woocommerce-MyAccount-content h2{
  margin-bottom: 20px;
}
.woocommerce-MyAccount-content .woocommerce-address-fields .woocommerce-address-fields__field-wrapper p,
.woocommerce-privacy-policy-text p{
  margin-bottom: 12px;
}
.woocommerce-MyAccount-content .woocommerce-address-fields p .required_field{
  display: block;
  margin-bottom: 5px;
}
.woocommerce-MyAccount-content .woocommerce-address-fields p input,
.woocommerce-MyAccount-content .woocommerce-address-fields p select{
  background-color: #fff;
  border:1px solid rgba(229, 229, 229, 1);
  border-radius: 50px;
  box-sizing: border-box;
  color: #2b2d2f;
  font-family: inherit;
  font-size: 1em;
  height: 3.125em;
  line-height: 1em;
  margin: 0;
  min-height: 0;
  padding: 1em 1.5em;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.woocommerce-MyAccount-content .woocommerce-address-fields p input:hover,
.woocommerce-MyAccount-content .woocommerce-address-fields p input:focus,
.woocommerce-form .woocommerce-Input:hover,
.woocommerce-form .woocommerce-Input:focus{
  border-color: var(--storex-primary-color);
}
.woocommerce-MyAccount-content .woocommerce-address-fields .button,
.woocommerce-MyAccount-content .woocommerce-info .button,
.woocommerce-ResetPassword .woocommerce-form-row .button,
.woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button{
  padding: 8px 24px;
  background-color:var(--theme-color);
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.woocommerce-MyAccount-content .woocommerce-address-fields .button:hover,
.woocommerce-MyAccount-content .woocommerce-info .button:hover,
.woocommerce-ResetPassword .woocommerce-form-row .button:hover,
.woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button:hover, 
.woocommerce-MyAccount-content .woocommerce-address-fields .button:focus,
.woocommerce-MyAccount-content .woocommerce-info .button:focus,
.woocommerce-ResetPassword .woocommerce-form-row .button:focus,
.woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button:focus{
  color: #fff;
  background-color: var(--secondary-color);
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields p input,
.news-block-one .inner-box p label input,
.woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields p select{
  background-color: #fff;
  border:1px solid rgba(229, 229, 229, 1);
  border-radius: 50px;
  box-sizing: border-box;
  color: #2b2d2f;
  font-family: inherit;
  font-size: 1em;
  height: 3.125em;
  line-height: 1em;
  margin: 0;
  min-height: 0;
  padding: 1em 1.5em;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-block-one .inner-box p input[type="submit"]{
  padding: 8px 24px;
  background-color: var(--theme-color);
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields p input:hover,
.news-block-one .inner-box p label input:hover,
.news-block-one .inner-box p label input:focus,
.woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields p input:focus,
.woocommerce-form .woocommerce-Input:hover,
.woocommerce-form .woocommerce-Input:focus{
  border-color: var(--theme-color);
}
.news-block-one .inner-box p input[type="submit"]:hover,
.news-block-one .inner-box p input[type="submit"]:focus{
  background-color: var(--secondary-color);
  color: #fff;
}
.woocommerce-Addresses{
  position: relative;
  margin-top: 30px;
}
.woocommerce-Address{
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  width: 100%;
  border: 1px solid #e9ecef;
}
.woocommerce-Address-title{
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}
.woocommerce-Address-title h2{
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
  color: var(--title-color);
  font-weight: 600;
}
.woocommerce-account .addresses .title .edit{
  color: var(--theme-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  float: left;
  border: 1px solid var(--theme-color);
  border-radius: 20px;
  transition: all 300ms ease;
}
.woocommerce-account .addresses .title .edit:hover,
.woocommerce-account .addresses .title .edit:focus{
  background: var(--theme-color);
  color: #fff;
}
.woocommerce-Address address{
  font-style: normal;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}
.edit-account{
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9ecef;
}
.edit-account fieldset{
  position: relative;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 25px;
  margin: 25px 0;
}
.edit-account fieldset legend{
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: var(--title-color);
  padding: 0 15px;
  background: #fff;
  margin: 0;
}
.edit-account .clear{
  clear: both;
}
.edit-account .form-row-first,
.edit-account .form-row-last{
  width: 48%;
  float: left;
}
.edit-account .form-row-last{
  float: right;
}
.edit-account .form-row-wide{
  width: 100%;
  clear: both;
}
.edit-account .woocommerce-form-row{
  margin-bottom: 20px;
}
.edit-account .woocommerce-form-row label{
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 8px;
}
.edit-account .woocommerce-form-row .required{
  color: #dc3545;
}
.woocommerce .woocommerce-MyAccount-content .edit-account .woocommerce-Input{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  font-size: 16px;
  color: var(--text-color);
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 50px;
  transition: all 500ms ease;
}
.woocommerce .woocommerce-MyAccount-content .edit-account .woocommerce-Input:hover,
.woocommerce .woocommerce-MyAccount-content .edit-account .woocommerce-Input:focus{
  border-color: var(--theme-color);
  box-shadow: 0 0 0 2px rgba(255, 172, 0, 0.1);
}
.woocommerce .woocommerce-MyAccount-content .edit-account .woocommerce-Button{
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 500ms ease;
  text-align: center;
}
.woocommerce .woocommerce-MyAccount-content .edit-account .woocommerce-Button:hover,
.woocommerce .woocommerce-MyAccount-content .edit-account .woocommerce-Button:focus{
  background: var(--title-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.wc-block-components-form .wc-block-components-text-input input[type=text], 
.wc-block-components-form .wc-block-components-text-input input[type=tel], 
.wc-block-components-form .wc-block-components-text-input.is-active input[type=email], 
.wc-blocks-components-select .wc-blocks-components-select__select {
  border: 1px solid rgba(229, 229, 229, 1);
  border-radius: 50px;
}
.wc-block-components-form .wc-block-components-text-input input[type=text]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=tel]:focus,
.wc-block-components-form .wc-block-components-text-input.is-active input[type=email]:focus,
.wc-blocks-components-select .wc-blocks-components-select__select:focus{
  border-color: var(--theme-color);
}
.wc-block-components-main .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button {
  padding: 1em;
  padding-left: calc(24px + .25em);
  color: #fff;
  background-color: var(--theme-color);
}
.wc-block-components-main .wc-block-checkout__actions_row .wc-block-components-button {
  color: #fff;
  background-color: var(--theme-color);
}
.wc-block-cart .wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block {
  border: 1px solid hsla(0, 0%, 7%, .11);
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__totals-title, .wp-block-woocommerce-cart .wc-block-components-totals-wrapper {
  padding: 16px;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar .wc-block-components-button {
  background-color: var(--theme-color);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar .wc-block-components-button:hover,
.wp-block-woocommerce-cart .wc-block-components-sidebar .wc-block-components-button:focus{
  background-color: var(--secondary-color);
  color: #fff;
}
.wc-block-components-product-badge {
  background-color: #388e3c;
  border-color: #fff;
  font-weight: 500;
  color: #fff;
}
.wp-block-woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  display: inline-block;
  color: var(--title-color);
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  font-weight: 600;
}
.wp-block-woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name:hover, 
.wp-block-woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name:focus {
  color: var(--theme-color);
}
.main-footer .shopping-cart-total .lighter-text{
  color: #B7B7B7;
}
.product .product_meta > span{
  display: block;
  margin-bottom: 10px;
}
.header-lower.is-sticky-menu{
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  z-index: 999;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  -webkit-animation: 1s ease-in-out 0s normal none 1 running fadeInDown;
  animation: 1s ease-in-out 0s normal none 1 running fadeInDown;
}
.header-upper .right-column .gtranslate_wrapper{
  margin-right: 40px;
}
.header-upper .right-column .gt_float_switcher .gt-selected,
.header-upper .right-column .gt_float_switcher{
  background-color: transparent;
  box-shadow: none;
}
.header-upper .right-column .gt_float_switcher .gt-selected .gt-current-lang{
  padding: 0px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.header-upper .right-column .gt_float_switcher .gt-current-lang img{
  height: 20px;
  width: 20px;
  border-radius: 50%;
}
.header-upper .right-column .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow{
 position: relative;
 border: none !important;
 padding: 0px;
 background-image: none !important;
 padding-right: 7px;
 transform: rotate(0deg);
}
.header-upper .right-column .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow:before{
  position: absolute;
  content: "\f107";
  font: normal normal normal 14px / 1 FontAwesome;
  top: 3px;
  right: 0px;
  color: #fff;
}
.header-upper .right-column .gt_float_switcher .gt_options{
  position: absolute;
  left: 0;
  top: 100%;
  width: 140px;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  padding: 15px 15px;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  text-align: left;
  transition: visibility 0s .2s, opacity .2s, -webkit-transform .2s 
  ease-out;
  transition: visibility 0s .2s, opacity .2s, transform .2s 
  ease-out;
  transition: visibility 0s .2s, opacity .2s, transform .2s 
  ease-out, -webkit-transform .2s 
  ease-out;
}
.header-upper .right-column .gt_float_switcher .gt_options a{
 padding:4px 0px 4px 33px;
 font-size: 14px;
 color: #222;
 font-family: var(--text-font);
 font-weight: 400;
 position: relative;
}
.header-upper .right-column .gt_float_switcher .gt_options a img{
  height: 20px;
  width: 20px;
  margin-right: 0px;
  position: absolute;
  top: 4px;
  left: 0;
  border-radius: 50%;
}
.header-upper .right-column .gt_float_switcher .gt_options.gt-open{
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  transition: opacity .2s, -webkit-transform .2s 
  ease-out;
  transition: opacity .2s, transform .2s 
  ease-out;
  transition: opacity .2s, transform .2s 
  ease-out, -webkit-transform .2s 
  ease-out;
}
.header-upper .right-column .gt_float_switcher .gt_options a:hover,
.header-upper .right-column .gt_float_switcher .gt_options a:focus{
  color: var(--theme-color);
  background-color: transparent;
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor{
  position: relative;
  display: inline-block !important;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #E5E5E5;
  border-radius: 50%;
  font-size: 18px;
  justify-content: center;
  gap: 0;
  color: var(--title-color);
  transition: all 500ms ease;
}
.yith-wcwl-add-to-wishlist-button .yith-wcwl-add-to-wishlist-button__label{
  font-size: 0;
}
.yith-wcwl-add-to-wishlist-button:hover,
.yith-wcwl-add-to-wishlist-button:focus{
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-icon-svg, 
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-icon-svg{
  color: currentColor !important;
}
.card-404 .str_error{
  font-size: 80px;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 40px;
  font-weight: 900;
  color: var(--theme-color);
}
.card-404 .str_404-title {
  font-size: 220px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--theme-color);
}
.card-404 h4 {
  font-size: 60px;
  font-weight: 700;
  color:#000000;
  line-height: 1.2;
  margin-bottom: 20px;
}
.card-404 p{
  font-size: 18px;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 20px;
}
body .is-layout-flex {
  margin-bottom: 1.2rem;
}


.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content{
  color: var(--theme-color);
  text-decoration: underline;
}
.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content:hover,
.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content:focus{
  color: var(--title-color);
  text-decoration: none;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{
  background-color: var(--theme-color);
  color: #fff;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover,
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:focus{
  color:#fff;
  background-color:var(--secondary-color)
}