:root {
  --header-bg: rgba(234, 234, 234, 0.40);
  --header-bg-dark: rgba(37, 37, 60, 0.40);
  --header-text-color: #1A1A2E;
  --header-text-color-dark: #fff;
  --header-text-color-hover: #25AFF7;
  --header-text-color-dark-hover: #25AFF7;
  --text-color: #1A1A2E;
  --text-color-hover: #25AFF7;
  --header-dropdown-bg-dark: #25253C;
  --header-dropdown-item-bg-dark: #3e3e62;
  --header-dropdown-bg: #f7f7f7;
  --header-dropdown-item-bg: #fdfdfd;
}.product-miniature .product-price-and-shipping

body,
html {

  font-family: "Tajawal", sans-serif;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inner-header {
  position: relative;
  border-radius: 50px;
  margin-top: 20px;
  padding: 10px;
  width: 100%;
  top: 0px;
  left: 0px;
  background: var(--header-bg);
  color: var(--header-text-color);
  backdrop-filter: blur(68px);
  border-radius: 60px;
}

.inner-header a {
  color: var(--header-text-color);
}

.inner-header.dark {
  position: absolute;
  --header-bg: var(--header-bg-dark);
  --header-text-color: var(--header-text-color-dark);
  --header-dropdown-bg: var(--header-dropdown-bg-dark);
  --header-dropdown-item-bg: var(--header-dropdown-item-bg-dark);
}

header.fixed {
  position: fixed !important;
  top: 0;
  width: 100%;
  left: 0;
}

.inner-header.dark a {
  --header-text-color: var(--header-text-color-dark);
}

body.page-chatbot {
  background: url(../img/chat-bg.png);
  background-position: center;
  background-size: cover;
}

.page-chatbot main::before{
  display: none;
}

.page-chatbot main{
  padding-top: 120px;
}

#header .inner-header.dark .sub-menu {
  --header-dropdown-bg: var(--header-dropdown-bg-dark);
  --header-dropdown-item-bg: var(--header-dropdown-item-bg-dark);
  color: var(--header-text-color);
}

#header .menu>ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

#header .sub-menu>ul {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

#header .sub-menu {
  background-color: var(--header-dropdown-bg);
  border-radius: 12px;
}


main::before {
  content: "";
  background-image: url(../img/main-top.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scale(-1, 1);
}

[dir="rtl"] main::before {
  transform: scale(1, 1);
}

main {
  overflow: hidden;
}

#header .btn-icon {
  background: none;
  outline: none !important;
  text-decoration: none !important;
  color: var(--header-text-color);
  border: none;
  cursor: pointer;
}

#header .btn-icon:hover {
  color: var(--header-text-color-hover);
}

.hidden {
  display: none;
}

#header .flag {
  width: 28px;
  cursor: pointer;
}

.inner-header img.logo {
  height: 50px;
  max-width: 240px;
  object-position: center;
  object-fit: contain;
}

.inner-header.dark img.logo {
  filter: grayscale(100%) invert(1)
}

#header .dropdown-menu {
  background: var(--header-dropdown-bg);
  padding: 5px;
  border-radius: 12px;
  color: var(--header-text-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#header .dropdown-menu .dropdown-item {
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s;
}

#header .dropdown-menu .dropdown-item:hover {
  background-color: var(--header-dropdown-item-bg);
  color: var(--header-text-color);
}



.inner-header .toggle-btn {
  display: none;
}


.inner-header .inner-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.inner-header .show-dropmenu {
  display: none;
}

.inner-header.show-toggles .toggle-btn {
  display: inline-block;
}


/* .inner-header.show-toggles .show-dropmenu{
  display: inline-block;

} */

.tab-hidden{
  display: none !important;
}


.inner-header.show-toggles .inner-buttons,
.inner-header.show-toggles .menu {
  display: block;
  position: absolute;
  opacity: 0.01;
  height: 0px;
  width: 0px;
  overflow: hidden;
  transition: height 0.3s, opacity 0.3s;
  background: var(--header-dropdown-bg);
  border-radius: 12px;
  left: 0;
}

.inner-header.show-toggles .menu.opened,
.inner-header.show-toggles .inner-buttons.opened {
  position: absolute;
  opacity: 0.99;
  height: calc(100vh - 30px);
  top: 0px;
  width: 100%;
  padding: 10px;
  max-height: calc(100vh - 30px);
  z-index: 999999;
  overflow-y: scroll;
}

.inner-header.show-toggles .menu.opened > ul.top-menu{
  flex-direction: column !important;
}

.inner-header.show-toggles .dropdown-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-header.show-toggles #_desktop_top_menu .top-menu[data-depth="0"] li:hover .sub-menu {
  visibility: visible;
  opacity: 1
}

.top-menu .sub-menu {
  z-index: 18;
  visibility: hidden;
  border: none;
  border-radius: 50px;
  box-shadow: 2px 1px 11px 2px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease
}
.inner-header.show-toggles .top-menu .sub-menu{
  visibility: visible;
  position: relative;
  box-shadow: none;
  opacity: 1;
  top: 0 !important;
}

.inner-header .close-menu{
  display: none;
}

.inner-header.show-toggles .close-menu{
  display: flex;
  justify-content: flex-start;
  padding: 9px 5px;
}

.overflow-hidden {
  overflow: hidden;
}

.inner-header .close-menu button{
  background-color: transparent;
  border: none;
  outline: none !important;
  cursor: pointer;
  color: #000;
  padding: 5px;
}

.inner-header.dark .close-menu button{
  color: #fff;
}



.inner-header.show-toggles .inner-buttons.opened {
  display: flex;
  justify-content: center;
}

.inner-header .sub-menu {
  top: 100%;
}

.inner-header.show-toggles .inner-buttons.opened .dropdown-menu {
  right: 0px;
  top: calc(100% + 36px);
  width: 100%;
  position: fixed;
}

.wishlist-button-add {
  box-shadow: none !important;
}


.js-product-miniature .wishlist-button-add{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  min-width: 2.5rem;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-out;
  border: none;
  top: 5px;
  opacity: 1.01;
  right: 10px;
}

[dir="rtl"] .js-product-miniature .wishlist-button-add{
  right: unset;
  left: 10px;
}

.quick-view {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  min-width: 2.5rem;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-out;
  border: none;
  top: 58px;
  opacity: 1.01;
}

.quick-view:hover {
  opacity: 0.8;
}

article.product-miniature {
  padding: 8px;
  border: 1px solid #E8E8E9;
  border-radius: 10px;
  margin: 10px 0px;
  height: calc(100% - 15px);
  display: flex;
}

article.product-miniature .thumbnail-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;

}

article.product-miniature .product-thumbnail img {
  border-radius: 10px;

}

.product-list-reviews {
  position: relative;
  top: unset;
  left: unset;
  justify-content: flex-start;
}


.product-miniature .product-price-and-shipping {
  font-weight: 700;
  color: #232323;
  padding: 0px;
  text-align: start;
  margin-bottom:5px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-miniature .product-price-and-shipping > span {
  padding: 5px 0px !important;
}


.product-miniature .product-price-and-shipping .discount-product {
  display: none
}

.product-miniature .product-title {
  margin-top: 0.7rem;
  padding: 0px;
}

.product-miniature .product-title a {
  font-size: 16px;
  font-weight: bold;
  color: #6E6C85;
  text-align: start;
  text-decoration: none
}

.product-miniature .product-description {
  padding: 0px 1rem;
  flex: 1;
}

.product-miniature .product-min-description {
  font-size: 14px;
  padding: 0px;
  color: #0C0C0C;
  text-align: start;
  text-decoration: none
}

.small-stars .star-content div.star,
.small-stars .star-content div.star-on,
.small-stars .star-content div.star-hover,
.star-content div.star, .star-content div.star-on, .star-content div.star-hover{
  background: url(../img/small_stars.png) no-repeat 0 0 transparent;
}

.small-stars .star-content div.star-on,
.small-stars .star-content div.star-hover,
.star-content div.star-on, .star-content div.star-hover {
  background-position: -19px 0 !important;
}

.product-flags {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  pointer-events: none;
  padding: 0px 10px;
}

.product-flags li.product-flag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3125rem 0.4375rem;
  margin-top: .625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  pointer-events: auto;
  background: #DB4444;
  border-radius: 4px;
}


.product-miniature .thumbnail-container .product-thumbnail {
  position: relative;
  height: calc(100% - 70px)
}

.product-miniature .thumbnail-container .product-thumbnail img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto;
  width: 100%;
  transition: all 0.4s ease-out;
  transform: scale(1);
}

.product-miniature .thumbnail-container .product-thumbnail img:hover{
  transform: scale(1.1);
}

.product-miniature .thumbnail-top {
  border-radius: 10px;
}

.ai-button {
  margin: 12px 0px;
  --border-radius: 35px;
  border-radius: var(--border-radius);
  display: inline-flex;
  background-image: linear-gradient(305deg, #DD7BF8 0%, #25AFF7 50%, #17BFC3 100%);
  justify-content: center;
  align-items: center;
  padding: 1px;
  height: 40px;
  position: relative;
  width: 100%;
}

.ai-button a {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  height: 100%;
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 0px;
  padding-left: 55px;
  transition: all 0.3s ease-out;
  font-weight: bold;
  /* padding-top: 5px; */
}

.add-to-cart-list {
  height: 40px;
  width:100%;
  font-size: 1em !important;
}

.continue-shopping-btn {
  font-size: 18px;
  border-radius: 30px;
  font-weight: 600;
}
.box-show-more{
  border: 0 !important;
  font-weight: bold;
}

.box-show-more a{
  font-weight: bold;
}


.ai-button:hover a{
  background-color: rgba(0, 0, 0, 0.00);
  color: #fff;
}

.ai-button img {
  position: absolute;
  left: -1px;
  top: -6px;
  width: 50px;
}

[dir="rtl"] .ai-button img {
  left: unset;
  right: -1px;
}


.product-container .ai-button a{
  padding-right: 20px;
  padding-left: 55px;
}

[dir="rtl"] .ai-button a {
  padding-left: 0px;
  padding-right: 55px;
}

[dir="rtl"] .product-container .ai-button a{
  padding-left: 20px;
  padding-right: 55px;
}

.product-miniature .thumbnail-container {
  position: relative;
  height: auto;
  overflow: hidden;
  background: #fff
}

#footer {
  background: #0E0C16 linear-gradient(180deg, rgba(109, 236, 235, 0.03) 39.12%, rgba(109, 236, 235, 0.17) 65.3%, rgba(109, 236, 235, 0.48) 100%);
  color: #fff;
}

#footer p,
#footer span {
  color: #fff;
}


.footer-container {
  padding-top: 2.5rem;
  overflow: hidden;
  color: #fff;
}

.footer-container .h3,
.footer-container .h4 {
  margin-bottom: 1rem;
  font-size: 1rem
}

.footer-container li {
  margin-bottom: 0.3125rem
}

.footer-container li a {
  font-size: .875rem;
  color: #fff;
  cursor: pointer
}

.footer-container li a:hover {
  color: #24b9d7
}

.links .collapse {
  display: inherit
}

@media (max-width: 767px) {
  .block_newsletter {
    padding-bottom: 0.625rem;
    border-bottom: 1px solid #f6f6f6
  }

  .footer-container {
    margin-top: 0;
    box-shadow: none
  }

  .footer-container .wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important
  }

  .footer-container .links .h3 {
    font-size: 1rem;
    line-height: 1.5
  }

  .footer-container .links ul {
    margin-bottom: 0;
    background-color: #f6f6f6
  }

  .footer-container .links ul>li {
    padding: 0.625rem;
    font-weight: 600;
    border-bottom: 1px solid #fff
  }

  .footer-container .links ul>li a {
    color: #232323
  }

  .links .collapse {
    display: none
  }

  .links .collapse.in {
    display: block
  }

  .links .title {
    padding: 0.625rem;
    cursor: pointer;
    border-bottom: 1px solid #f6f6f6
  }

  .links .title .collapse-icons .remove {
    display: none
  }

  .links .title[aria-expanded="true"] .collapse-icons .add {
    display: none
  }

  .links .title[aria-expanded="true"] .collapse-icons .remove {
    display: block
  }

  .links .navbar-toggler {
    display: inline-block;
    padding: 0
  }

}

@media (max-width: 991px) {
  .block-social {
    text-align: center
  }

  .block-contact {
    padding-right: 1.5rem
  }

}


#footer {
  padding-top: 2.5rem
}

.block-contact {
  font-size: 0.875rem;
  color: #fff
}

.block-contact .block-contact-title {
  color: #fff
}

.block-contact .navbar-toggler .material-icons {
  color: #fff
}

@media (max-width: 767px) {
  .block-contact #contact-infos {
    padding: 0.625rem;
    padding-top: 0
  }

}

.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

.page-home {
  min-height: 100vh;
  background-image: url(/themes/techbeauty/assets/img/main-top-bg.svg);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding-top: 150px;
  /* padding-bottom: 50px; */
  margin-bottom: 0px !important;
}

[dir="rtl"] .page-home{
  background-image: url(/themes/techbeauty/assets/img/main-top-bg-rtl.svg);
}

.page-home h2, .page-home p{
  color: #fff;
  font-size: 20px;
}

.page-home>.row {
  width: 100%;
}

.page-home h2 {
  font-weight: 700;
  font-size: 60px;
}

.page-home .video{
  display: inline-block;
  padding: 40px;
  overflow: hidden;
  position: relative;
}

.page-home > .row{
  align-items: center;
}

.page-home .video::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background: RGBA(32, 51, 60, 0.8);
  background: radial-gradient(circle, #388A8A 0%, RGBA(32, 51, 60, 1) 100%);
  border-radius: 30px;
  z-index: 0;
  /* filter: blur(20px); */
}

.page-home .video::before{
  content: "";
  display: block;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  position: absolute;
  left: 20px;
  top: 20px;
  background: #211D30;
  border-radius: 30px;
  z-index: 1;
}
.page-home .video > div, .page-home .video > img{
  position: relative;
  z-index: 2;
  max-width: 100%;
}
.page-home .video > img {
    border-radius: 29px;
  scale: 1.1 1.07;
}
.page-home .video iframe{
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  min-height: 35vw;
  max-height: 90vh;
}
.colored {
  background: linear-gradient(90deg, #DC7BF8 0%, #823AE3 59%, #6DECEB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-top: 20px;
}

.btn-rounded {
  border-radius: 50px;
}

.btn{
  padding: 15px 40px;
  font-size: 18px;
  transition: all 0.5ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}


.js-product.product {
  height: 100%;
}


.left-svg, .right-svg{
  position: relative;
}

.left-svg:before{
  content: "";
  background-image: url(../img/main-top.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 100%;
  min-height: 500px;
  z-index: -1;
}

[dir="rtl"] .left-svg:before{
  transform: scale(-1, 1);
}

.row.container{
  margin: auto;
}

.right-svg:before{
  opacity: 0.4;
  content: "";
  background-image: url(../img/main-top.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 100%;
  min-height: 500px;
  z-index: -1;
  transform: scale(-1, 1);
}

[dir="rtl"] .right-svg:before{
  transform: scale(1, 1);
}

.section{
  padding: 20px;
  padding-top: 120px;
  text-align: center;
  font-size: 20px;
}

.section-bg-1{
  background-color: #FBF7FF;
}

.section-bg-2{
  background-color: #F0FBF8;
}

.section-bg-3{
  background-color: #EDFAFE;
}

.svg-1{
  position: relative;
}

.svg-3{
  position: relative;
}

.svg-bg{
  background: url(../img/boxes.svg) center / contain no-repeat;
}

.boxes .row.container .ApColumn{
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
  position: relative;
  padding-top: 20px;
}

.boxes .ApColumn:before{
  content: "";
  background-color: #fff;
  border-radius: 16px;
  position: absolute;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  top: 0px;
  left: 20px;
  z-index: -1;
}

.svg-1:before{
  content: "";
  background-image: url(../img/section-1.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 100% 20px;
  width: 100%;
  min-height: 100%;
  z-index: 1;
}
.svg-2{
  position: relative;
}

.svg-2:before{
  content: "";
  background-image: url(../img/section-2.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 100% 20px;
  width: 100%;
  min-height: 100%;
  z-index: 1;
}

.svg-2:after{
  content: "";
  background-image: url(../img/section-2.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 100% 20px;
  width: 100%;
  min-height: 100%;
  z-index: 1;
  transform: scale(-1,-1);
}

.svg-3:before{
  content: "";
  background-image: url(../img/section-3.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 100% 20px;
  width: 100%;
  min-height: 100%;
  z-index: 1;
}

.svg-3:after{
  content: "";
  background-image: url(../img/section-4.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) calc(100% - 20px);
  width: 100%;
  min-height: 100%;
  z-index: 1;
  transform: scale(-1, 1);
}

[dir="rtl"] .svg-1:before{
  transform: scale(-1, 1);
}

[dir="rtl"] .svg-3:before{
  transform: scale(-1, 1);
}

[dir="rtl"] .svg-3:after{
  transform: scale(1, 1);
}

.section .row.container .ApColumn{
  --bs-gutter-x: 50px;
}

.section > div{
  position: relative;
  z-index: 2;
}


.image-border .ApImage{
  padding: 10px;
  border-radius: 10px;
}

.image-border img{
  border-radius: 10px;
}


.section-bg-1 .image-border .ApImage{
  background: #F2E5FF;
  border: 1px solid #E8D0FF;
}

.section-bg-2 .image-border .ApImage{
  background: #DFF6F0;
  border: 1px solid #CBEFE6;
}


.section-bg-3 .image-border .ApImage{
  background: #D8EEF4;
  border: 1px solid #CFE8EF;
}

.max-text{
  max-width: 700px;
  margin: auto;
}
.section h2{
  font-size: 48px;
}

.section p{
  font-size: 20px;
  line-height: 30px;
  /* padding: 25px 0px; */
  color: #4F5153;
}

.custom-black-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.custom-black-buttons .btn {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  border-radius: 5px;
  padding: 10px 20px;
  transition: all 0.4s;
  outline: none;
}

.custom-black-buttons .btn.selected {
  background-color: #000;
  color: #fff;
}



[dir="rtl"] .grade-stars.small-stars {
  transform: scale(-1, 1);
}

.footer-logo{
  filter: grayscale(100%) invert(1);
  max-width: 200px;
}

.contact-bar{
  background: url(../img/contact-bar.svg) center/cover no-repeat;
  color: #fff;
  padding-top: 40px;
}

.contact-bar a, .contact-bar p, .contact-bar h3{
  color: #fff;
}

#footer{
  color: #fff;
}

#footer a, #footer h2, #footer h1, #footer h3, #footer h4, #footer p, #footer span{
  color: #fff;
}

body:not(#index) header + *{
  padding-top: 30px;
}


.block-categories {
  padding: 10px;
  /* background: #fff; */
  /* border: 1px solid #E8E8E9; */
  border-radius: 10px;
  color: #0F0F0F;
}

.block-categories .category-header, .sub-category-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.block-categories .category-header{
  border-bottom: 1px solid #E8E8E9;
  font-weight: bold;
}

.block-categories .category-sub-menu li:last-child .category-header{
  border-bottom: none;
}

.block-categories a{
  color: #0F0F0F;
  padding: 5px 0px;
}

.block-categories a:not(.category-sub-link){
  padding: 10px 0px;
}

.block-categories li{
  padding: 5px 0px;
}

.block-categories .category-sub-link.selected{
  position: relative;
}

.block-categories .category-sub-link.selected::before{
  position: absolute;
  content: "check";
  font-family: "Material Icons";
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  color: var(--text-color);
  left: -20px;
  top: 2px;
}

[dir="rtl"] .block-categories .category-sub-link.selected::before{
  right: -20px;
  left: unset;
}

.block-categories .category-sub-menu {
  width: 100%;
  padding-left: 20px;
  padding-top: 10px;
}

[dir="rtl"] .block-categories .category-sub-menu {
  padding-left: 0px;
  padding-right: 20px;
}

.category-top-menu > li > .category-sub-menu{
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.block-categories .arrows{
  padding: 10px 5px;
  cursor: pointer;
}

.block-categories .arrows[aria-expanded="false"] .add {
  display: inline-block;
}

.block-categories .arrows[aria-expanded="false"] .remove {
  display: none
}


.block-categories .arrows[aria-expanded="true"] .add {
  display: none;
}

.block-categories .arrows[aria-expanded="true"] .remove {
  display: inline-block;
}

.category-top-menu > li{
  padding: 0px !important;
}

.category-top-menu > li, .category-top-menu > li > ul{
  padding: 0px !important;
}

.products-selection {
  margin: 1.25rem 0px;
}

.products-selection h2 {
  color: #000;
}

.products-sort-order .select-title,
.brands-sort .select-title,
.suppliers-sort .select-title {
  display: inline-block;
  width: 100%;
  padding: 10px 5px;
  color: #232323;
  cursor: pointer;
  background: #fff;
  border: 1px solid #E8E8E9;
  border-radius: 8px;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 0;
}

#product #content {
  position: relative;
  margin: 0 auto
}

.stars-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.stars-rating-label {
  padding-top: 10px;
}

.has-discount.product-price,
.has-discount p,
.has-discount .page-content.page-cms ul,
.page-content.page-cms .has-discount ul {
  color: #000;
  font-size: 2rem;
}

label .color,
.variant-links .color,
.custom-checkbox input[type="checkbox"]+span.color {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px;
  cursor: pointer;
  background-size: contain;
  border: 1px solid #979797;
  border-radius: 50%;
}

.form-control {
  padding: 0.5rem 1rem;
  color: #3A3B3E;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
}

.product-variants.js-product-variants {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}



.btn-primary {
  color: #fff;
  background: #25AFF7;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s;
}

.btn-primary:hover {
  color: #fff;
  background-color: #2195d3;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #2195d3;
  border-color: rgba(0, 0, 0, 0)
}

.btn-primary:active,
.btn-primary.active,
.open>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #2195d3;
  border-color: rgba(0, 0, 0, 0);
  background-image: none
}

.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus,
.open>.btn-primary.dropdown-toggle:hover,
.open>.btn-primary.dropdown-toggle:focus,
.open>.btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #2195d3;
  border-color: rgba(0, 0, 0, 0)
}

.btn-primary.disabled:focus,
.btn-primary.disabled.focus,
.btn-primary:disabled:focus,
.btn-primary:disabled.focus {
  background-color: #24b9d7;
  border-color: rgba(0, 0, 0, 0)
}

.btn-primary.disabled:hover,
.btn-primary:disabled:hover {
  background-color: #2195d3;
  border-color: rgba(0, 0, 0, 0)
}

.btn-secondary,
.btn-tertiary {
  color: #232323;
  background-color: #f6f6f6;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s;
  border-color: rgba(0, 0, 0, 0);
}

.btn-secondary:hover,
.btn-tertiary:hover {
  color: #232323;
  background-color: #ddd;
  border-color: rgba(0, 0, 0, 0)
}

.btn-secondary:focus,
.btn-tertiary:focus,
.btn-secondary.focus,
.focus.btn-tertiary {
  color: #232323;
  background-color: #ddd;
  border-color: rgba(0, 0, 0, 0)
}

.btn-secondary:active,
.btn-tertiary:active,
.btn-secondary.active,
.active.btn-tertiary,
.open>.btn-secondary.dropdown-toggle,
.open>.dropdown-toggle.btn-tertiary {
  color: #232323;
  background-color: #ddd;
  border-color: rgba(0, 0, 0, 0);
  background-image: none
}

.btn-secondary:active:hover,
.btn-tertiary:active:hover,
.btn-secondary:active:focus,
.btn-tertiary:active:focus,
.btn-secondary:active.focus,
.btn-tertiary:active.focus,
.btn-secondary.active:hover,
.active.btn-tertiary:hover,
.btn-secondary.active:focus,
.active.btn-tertiary:focus,
.btn-secondary.active.focus,
.active.focus.btn-tertiary,
.open>.btn-secondary.dropdown-toggle:hover,
.open>.dropdown-toggle.btn-tertiary:hover,
.open>.btn-secondary.dropdown-toggle:focus,
.open>.dropdown-toggle.btn-tertiary:focus,
.open>.btn-secondary.dropdown-toggle.focus,
.open>.dropdown-toggle.focus.btn-tertiary {
  color: #232323;
  background-color: #cbcbcb;
  border-color: rgba(0, 0, 0, 0)
}

.btn-secondary.disabled:focus,
.disabled.btn-tertiary:focus,
.btn-secondary.disabled.focus,
.disabled.focus.btn-tertiary,
.btn-secondary:disabled:focus,
.btn-tertiary:disabled:focus,
.btn-secondary:disabled.focus,
.btn-tertiary:disabled.focus {
  background-color: #f6f6f6;
  border-color: rgba(0, 0, 0, 0)
}

.btn-secondary.disabled:hover,
.disabled.btn-tertiary:hover,
.btn-secondary:disabled:hover,
.btn-tertiary:disabled:hover {
  background-color: #f6f6f6;
  border-color: rgba(0, 0, 0, 0)
}


.product-actions .add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 8px;
}


.product-quantity {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.product-quantity .qty,
.product-quantity .add {
  display: inline-flex;
  float: left;
  margin-bottom: 0.5rem
}

.product-quantity .qty {
  margin-right: 0.4rem
}

.product-quantity #quantity_wanted {
  width: 3rem;
  height: 2.75rem;
  padding: 0.175rem 0.5rem;
  color: #232323;
  background-color: #fff
}

.product-quantity .input-group-btn-vertical {
  width: auto
}

.product-quantity .input-group-btn-vertical .btn {
  padding: 0.5rem 0.6875rem
}

.product-quantity .input-group-btn-vertical .btn i {
  font-size: 1rem;
}

.product-quantity .btn-touchspin {
  height: 1.438rem
}

.btn-icon,
.product-add-to-cart .wishlist-button-add{
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #E8E8E9;
  background-color: #fff;
  color: #aaaaaa;
  outline: none !important;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-icon:hover,.product-add-to-cart .wishlist-button-add:hover{
  background-color: #dbdbdb;
  color: #0C0C0C;
}


.product-add-to-cart .wishlist-button-add i{
  color: #aaaaaa;
}
.social-sharing {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-top: 5px;
}


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #363a42;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #E8E8E9;
  border-radius: 8px;
}
.js-product-additional-info .dropdown-menu {
  min-width: fit-content;
  padding:0;
}
.js-product-additional-info .dropdown-menu ul {
  display:flex;
}
table.data-sheet{
  max-width: 100%;
  width: 400px;
}

.product-prices {
  margin-top: 10px;
}

.qty .input-group.bootstrap-touchspin{
  padding: 0px 35px;
  border: 1px solid #E8E8E9;
  border-radius: 35px;
}

.qty .input-group.bootstrap-touchspin input{
  border: 0;
  text-align: center;
}

.qty .input-group.bootstrap-touchspin .input-group-btn-vertical{
  position: absolute;
  height: 0px;
  display: flex;
  left: 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.qty .input-group.bootstrap-touchspin .input-group-btn-vertical button{
  border: 0;
  padding: 5px;
  width: 30px;
  top: 20px;
  margin: 0px 5px;
  border-radius: 50%;
}

.bootstrap-touchspin .input-group-btn-vertical .touchspin-up::after{
  content: "+" !important;
  font-size: 18px;
}

.bootstrap-touchspin .input-group-btn-vertical .touchspin-down::after{
  content: "-" !important;
  font-size: 18px;
}

.top-menu > li{
  position: relative;
}

.modal-body p,
.modal-body span,
.model-title span{
  color: #000 !important;
}

.quickview.modal .modal-body .product-additional-info, 
.quickview.modal .modal-body .wishlist-button{
  display: none;
}


.ai-animation{
  min-height: 40px;
}
.ai-animation > div{
  color: #fff !important;
  display: none;
  background-color: #6E6C85;
  border-radius: 20px;
  padding: 5px;
}

.ai-animation > div.show{
  display: inline-block;
}

.page-chatbot .chat-box{
  max-height: calc(100vh - 280px);
  overflow-y: scroll;
  color: #fff;
}


.custom-cart-icon {
  position: relative;
  padding: 5px;
}

.custom-cart-icon .cart-products-count {
  position: absolute;
  background: #25AFF7;
  display: flex;
  width: 15px;
  line-height: 0px;
  height: 15px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  padding-top: 5px;
  top: 0px;
  right: 0px;
}

@media (max-width: 756px) {
  .inner-header img.logo{
    max-width: 135px;
  }
}

@media (max-width: 375px) {
  .inner-header img.logo{
    max-width: 100px;
  }
}

.section h3{
  font-size: 1.8rem;
}

.product-price-and-shipping .price{
  font-size: 1.6rem;
}

.js-product-images-modal .js-modal-product-cover.product-cover-modal.img-fluid{
  width: 100%;
  max-width: calc(100vw - 230px);
}

[dir="rtl"] .wishlist-toast{
  right: unset;
  left: 1.25rem;
}


.product-flag.top_rated {
  background-color: #23b9d7 !important;
}

.product-flag.low_stock {
  background-color: #1a1f28 !important;
  color: #fff !important;
}


[dir="rtl"] .scroll-box-arrows .left {
  right: 38px;
  bottom: -50px;
  transform: rotate(-90deg);
}

.scroll-box-arrows .left {
  left: 38px;
  bottom: -50px;
  transform: rotate(-90deg);
}

[dir="rtl"] .scroll-box-arrows .right {
  right: 38px;
  top: -60px;
  transform: rotate(-90deg);
}

.scroll-box-arrows .right {
  left: 38px;
  top: -60px;
  transform: rotate(-90deg);
}

@media (max-width: 991px) {
  li.thumb-container.js-thumb-container {
    display: inline-block;
  }

  [dir="rtl"] .scroll-box-arrows .left {
    right: 0px;
    left: unset;
    transform: rotate(180deg);
    top: unset;
    bottom: 9px;
  }
  
  .scroll-box-arrows .left {
    left: 0px;
    right: unset;
    transform: rotate(0deg);
    top: unset;
    bottom: 9px;
  }
  
  [dir="rtl"] .scroll-box-arrows .right {
    left: 0px;
    right: unset;
    transform: rotate(180deg);
    top: unset;
    bottom: 9px;
  }
  
  .scroll-box-arrows .right {
    right: 0px;
    left: unset;
    transform: rotate(0deg);
    top: unset;
    bottom: 9px;
  }
}

.js-product-images-modal .modal-dialog{
  max-width: max-content !important;

}

.page-my-account #content .links a {
  display: flex;
  padding: 10px;
  margin: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #161C28;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #ccc;
  border-radius: 8px;
  align-items: center;
}

.page-my-account #content .links .colored{
  padding: 10px !important;
}

.page-my-account #content .links a i {
  display: block;
  width: 100%;
  font-size: 2.6rem;
}
