@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800;900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
 
}

a:hover,
a:focus {
  text-decoration: none !important;
}

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #262B2E;
}

p {
  margin: 0;
  color: #262B2E;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: #142740;
}

a:hover {
  color: #142740;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "noto-kufi-arabic-regular";
  src: url(../fonts/noto-kufi-arabic-regular.ttf);
}
@font-face {
  font-family: "noto-kufi-arabic-bold";
  src: url(../fonts/noto-kufi-arabic-bold.ttf);
}
body {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  background-color: #fff;
  color: #111111;
  overflow-x: hidden;
}

html[dir=rtl] body {
  text-align: right;
  direction: rtl;
  font-family: "Tajawal", Sora;
}

html[dir=ltr] body {
  font-family: "Sora", Tajawal;
}

.font-light {
  font-weight: 300;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-semi-bold {
  font-weight: 600;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  height: 45px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  box-shadow: none;
  padding: 8px 16px;
  font-size: 14px;
  color: #283946;
}
.form-control.form-sm {
  height: 45px;
}

.form-control:focus {
  box-shadow: none;
  background-color: #fff;
  border-color: #142740;
}

textarea.form-control {
  height: auto;
}

.main-wrapper {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.main-content {
  padding: 60px 0px;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

::-moz-placeholder {
  color: #808080 !important;
  font-size: 14px !important;
}

::placeholder {
  color: #808080 !important;
  font-size: 14px !important;
}

::-moz-placeholder {
  color: #808080 !important;
  font-size: 14px !important;
}

::-ms-placeholder {
  color: #808080 !important;
  font-size: 14px !important;
}

::-o-placeholder {
  color: #808080 !important;
  font-size: 14px !important;
}

::-webkit-placeholder {
  color: #808080 !important;
  font-size: 14px !important;
}

.loader-page {
  background: #f8f8f8;
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-page span {
  position: absolute;
  display: inline-block;
  background-color: #142740;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  animation: loader3 1.5s linear infinite;
}

.loader-page span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
.bg-gray {
  background-color: #F8F8F8;
}

.text-gray-1 {
  color: #444444 !important;
}

.text-gray-2 {
  color: #72809D !important;
}

.text-primary {
  color: #142740 !important;
}

.bg-primary {
  background-color: #142740 !important;
}

.box-shadow {
  box-shadow: 0 0 35px rgba(140, 152, 164, 0.13);
}

.rounded-15 {
  border-radius: 15px;
}

.rounded-25 {
  border-radius: 25px;
}

.bg-light {
  background-color: #F7F9FC !important;
}

.bg-blue {
  background-color: #122947 !important;
}

.text-underline {
  text-decoration: underline;
}

.text-through {
  text-decoration: line-through;
}

.bg-blue {
  background-color: #3A10E5;
}

.bg-blue-light {
  background-color: #97CBFF;
}

.bg-primary-light {
  background-color: #F0F3FF;
}

.bg-yellow {
  background-color: #FACB3B;
}

.bg-pink {
  background-color: #FF71DA;
}

.input-icon {
  position: relative;
}
.input-icon.icon-right .icon {
  position: absolute;
  inset-inline-end: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}
.input-icon.icon-left .form-control {
  -webkit-padding-start: 50px;
          padding-inline-start: 50px;
}
.input-icon.icon-left .icon {
  position: absolute;
  inset-inline-start: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}

.font-size-14 {
  font-size: 14px !important;
}

.text-line-through {
  text-decoration: line-through;
}

.text-danger {
  color: #E93535 !important;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.btn {
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 0;
}

.btn-primary {
  color: #fff;
  background: #142740;
  border-color: #142740;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  background-color: #FBB243 !important;
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 6px;
  z-index: -1;
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff !important;
  border-color: #FBB243 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-black {
  color: #fff;
  background: #000;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-black::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  background-color: #142740;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
}
.btn-black:hover, .btn-black:focus {
  color: #fff !important;
  box-shadow: none !important;
}
.btn-black:hover::before, .btn-black:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-primary {
  color: #142740;
  border-color: #142740;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: #142740 !important;
  color: #FFF !important;
  border-color: #142740 !important;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
.bootstrap-select .dropdown-toggle:focus {
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: 0px;
}

.bootstrap-select > .dropdown-toggle {
  background-color: #F3F3F3;
  border: 1px solid #DFDFDF;
  padding: 14px 16px;
  font-size: 14px;
  color: #000000 !important;
  height: 50px;
  border-radius: 6px;
  box-shadow: none;
  font-weight: 600;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder {
  color: #000000 !important;
}

.bootstrap-select.select-small > .dropdown-toggle {
  padding: 10px 16px;
  height: 44px;
}

.bootstrap-select.rounded-10 > .dropdown-toggle {
  border-radius: 10px;
}

.bootstrap-select.text-gray > .dropdown-toggle.bs-placeholder {
  color: #C2C8DD !important;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
  background-color: #fff !important;
  border-color: #142740 !important;
  box-shadow: none;
}

.bootstrap-select .dropdown-menu li.selected.active a:hover {
  color: #fff;
}

.bootstrap-select .dropdown-toggle::after {
  content: unset;
}
.bootstrap-select .dropdown-toggle::before {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 6 pro";
  font-weight: 900;
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #212529;
  font-size: 14px;
  inset-inline-end: 15px;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.4rem 1.5rem;
  transition: all 0.2s ease-in-out;
  margin-bottom: 2px;
}

.dropdown-item.active, .dropdown-item:active {
  color: #35498E !important;
  background-color: #EAECF3;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  background-color: #fff !important;
  border-color: #142740 !important;
  box-shadow: 0px 2px 10.45px 0.55px rgba(66, 66, 66, 0.0784313725);
}

.bootstrap-select .dropdown-toggle .filter-option {
  text-align: start;
}

.dropdown-menu {
  border: 0;
  border-radius: 4px;
  box-shadow: 0px 3px 32px rgba(0, 0, 0, 0.1215686275);
  border: 0px solid rgba(221, 221, 221, 0.5019607843);
  min-width: 208px;
  text-align: start;
  animation: animation-dropdown-menu-fade-in 0.4s ease 1, animation-dropdown-menu-move-up 0.4s ease-out 1;
}
.dropdown-menu.dropdown-lg {
  min-width: 350px;
  max-width: 100%;
}
@keyframes animation-dropdown-menu-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bootstrap-select.bg-transparent .dropdown-toggle {
  box-shadow: none;
}

.bootstrap-select.select-country > .dropdown-toggle {
  border: 0px solid #D6DAE8 !important;
  border-radius: 8px !important;
}

@media (max-width: 991px) {
  .main-header {
    padding: 10px 0;
  }
  .main-header .menu-nav {
    border-bottom: 1px solid #EAECF3;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-header .logo img {
    max-height: 35px;
  }
  .main-header .btn-outline-primary {
    padding: 10px;
    width: 100%;
  }
  .main-header .menu-container .main-menu .menu_item .menu_link.req {
    padding: 8px 20px !important;
  }
  .active-body {
    overflow: hidden;
  }
  .mobile-menu-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    visibility: hidden;
    background-color: rgba(51, 51, 51, 0.51);
  }
  .mobile-menu-overlay-active {
    visibility: visible;
  }
  .menu--mobile {
    min-width: 100px;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background: #fff;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-in-out;
  }
  .menu--mobile > .container {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% - 0px);
  }
  .menu--mobile .list-main-menu {
    width: 100%;
  }
  .menu--mobile .main-menu .menu_item.w-m-100 {
    width: 100%;
  }
  .menu--mobile .main-menu .menu_item .menu_link {
    color: #707070 !important;
    padding: 10px 10px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    position: relative;
  }
  .menu--mobile .main-menu .menu_item .header-dropdown {
    padding: 0 15px;
    display: none;
  }
  .menu--mobile .main-menu .menu_item .header-dropdown li a {
    display: block;
    padding: 5px;
  }
  .menu--mobile .main-menu .menu_item .header-dropdown li:not(:last-of-type) a {
    border-bottom: 1px solid #EEE;
  }
  .btn-close-header-mobile {
    color: #000;
    cursor: pointer;
  }
  .menu-mobile-active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
.top-header {
  background: #000;
  position: relative;
}
.top-header::before {
  background-image: url(//cdn.shopify.com/s/files/1/0625/1285/7260/t/4/assets/snow-1.png?v=5553551…), url(//cdn.shopify.com/s/files/1/0625/1285/7260/t/4/assets/snow-2.png?v=1729256…), url(//cdn.shopify.com/s/files/1/0625/1285/7260/t/4/assets/snow-2.png?v=1729256…);
  animation: snow 10s linear infinite;
  content: "";
  background-color: transparent;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

@keyframes snow {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 500px 1000px, 400px 400px, 300px 300px;
  }
}
@media (min-width: 992px) {
  .main-header {
    display: flex;
    align-items: center;
    top: 0px;
    right: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    position: relative;
    background-color: #FFF;
    z-index: 3;
  }
  .main-header .logo img {
    max-height: 60px;
  }
  .main-header .menu--mobile {
    display: flex;
    align-items: center;
    flex: auto;
  }
  .main-header .menu-container {
    position: relative;
  }
  .main-header .menu-container .main-menu .menu_item {
    display: inline-block;
    position: relative;
  }
  .main-header .menu-container .main-menu .menu_item .menu_link {
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: 45px;
    position: relative;
    color: #142740;
    margin: 0px 16px;
    font-weight: 500;
    font-size: 17px;
    transition: color 0.2s ease-in-out;
  }
  .main-header .menu-container .main-menu .menu_item .menu_link:hover, .main-header .menu-container .main-menu .menu_item .menu_link.active {
    color: #142740;
  }
  .main-header .menu-container .main-menu .menu_item .menu_link.btn-property {
    border-radius: 6px;
    padding: 0px 14px;
  }
  .main-header .menu-container .main-menu .menu_item .header-dropdown {
    border: 1px solid #eeeeee;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    width: 240px;
    position: absolute;
    top: auto;
    right: -17px;
    z-index: 999;
    background-color: #fff;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3019607843);
    transition: all 0.3s ease-in-out;
  }
  .main-header .menu-container .main-menu .menu_item .header-dropdown li a {
    color: #444;
    padding: 8px 5px;
    background-color: #fff;
    display: block;
    transition: all 0.2s ease-in-out;
  }
  .main-header .menu-container .main-menu .menu_item .header-dropdown li a:hover {
    color: #000;
    background-color: #fafafa;
    padding-right: 10px;
  }
  .main-header .menu-container .main-menu .menu_item .header-dropdown li:not(:last-of-type) a {
    border-bottom: 1px solid #eeeeee;
  }
  .main-header .menu-container .main-menu .menu_item:hover .header-dropdown {
    top: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .menu-container .main-menu .menu_item .menu_link {
    font-size: 12px;
  }
}
.header-action {
  position: relative;
  color: #030505;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0 9px;
  background-color: transparent;
  cursor: pointer;
  font-size: 16px;
}
.header-action .header-cart-count {
  position: absolute;
  background: #030505;
  color: #fff;
  min-width: 16px;
  height: 16px;
  border-radius: 16px;
  line-height: 17px;
  font-size: 11px;
  left: -7px;
  top: -3px;
}

@media (min-width: 1400px) {
  .container {
    width: 1200px;
    max-width: 100%;
  }
}
.section {
  padding: 70px 0px;
}
@media (max-width: 991px) {
  .section {
    padding: 30px 0px;
  }
}

.section-home {
  position: relative;
  z-index: 1;
  background: url(../images/bg-home.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-home .home-text {
  background-color: rgba(255, 255, 255, 0.1);
}
.section-home .btn-orge {
  font-size: 18px;
}
.section-home::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(129deg, rgb(0, 0, 0) 0%, rgb(84, 84, 84) 100%);
  opacity: 0.85;
  z-index: -1;
}
@media (min-width: 992px) {
  .section-home .home-title {
    font-size: 46px;
  }
}
@media (max-width: 991px) {
  .section-home {
    padding: 50px 0 40px;
    text-align: center;
  }
  .section-home .home-title {
    font-size: 24px;
  }
  .section-home .home-text {
    font-size: 16px;
  }
}

.font-size-12 {
  font-size: 12px !important;
}

.video-content {
  left: 7%;
  text-align: left;
  top: 50%;
  position: absolute;
  z-index: 1;
}

.widget_item-product {
  position: relative;
}
.widget_item-product .widget_item-image {
  padding-bottom: 149.708%;
  position: relative;
}
.widget_item-product .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.widget_item-product .widget_item-content {
  right: 50%;
  transform: translate(50%);
  position: absolute;
  bottom: 30px;
  left: 0;
  padding: 20px;
  text-align: center;
}
.widget_item-product .widget_item-content .widget_item-text {
  font-size: 16px;
}

.section-info {
  background-color: #131313;
  padding: 30px 0;
}

.payment-method img {
  margin-left: 5px;
  width: 35px;
}

.widget-filter-title {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.widget-filter-title::before {
  background-color: rgba(0, 0, 0, 0.1);
  width: 30px;
  height: 3px;
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
}

.filter-label-size {
  display: inline-block;
  cursor: pointer;
  margin: 0 0 5px 5px;
}
.filter-label-size input {
  display: none;
}
.filter-label-size .filter-label-number {
  display: inline-block;
  border: 1px solid #aaaaaa;
  color: #aaaaaa;
  font-weight: 600;
  padding: 5px 10px;
  font-size: 15px;
}
.filter-label-size input:checked + .filter-label-number {
  border-color: #09020c;
  color: #09020c;
}

.filter-item-category li a {
  display: block;
  color: #334862;
  padding: 6px 0;
  font-size: 16px;
}
.filter-item-category li:not(:last-of-type) a {
  border-bottom: 1px solid #ececec;
}

.widget-filter .widget_item-product-3:not(:last-of-type) {
  border-bottom: 1px solid #EEE;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.widget_item-product-2 {
  position: relative;
}
.widget_item-product-2 .widget_item-image{
  position: relative;
}
.widget_item-product-2 .widget_item-image-master {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 150%;
  transition: all .3s ease-in-out;
}
.widget_item-product-2 .widget_item-image-master img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.widget_item-product-2 .widget_item-image-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all .3s ease-in-out;
}
.widget_item-product-2 .widget_item-image-hover img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.widget_item-product-2:hover .widget_item-image-master{
  opacity: 0;
}
.widget_item-product-2:hover .widget_item-image-hover{
  opacity: 1;
}

.widget_item-product-2 .widget_item-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0px;
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.widget_item-product-2 .widget_item-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background-color: #000;
  position: relative;
  font-size: 16px;
  padding: 0;
  margin: 2px;
  line-height: 35px;
  height: 36px;
  cursor: pointer;
  width: 38px;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
}
.widget_item-product-2 .widget_item-content {
  padding: 15px 10px 10px;
}
.widget_item-product-2 .widget_item-price_discount,
.widget_item-product-2 .widget_item-price {
  font-size: 24px;
  font-weight: 600;
}
.widget_item-product-2 .widget_item-price_discount {
  color: rgba(0, 0, 0, 0.6);
}
.widget_item-product-2 .widget_item-price {
  color: #f77575;
}
.widget_item-product-2:hover .widget_item-action {
  bottom: 10px;
  opacity: 1;
}
.widget_item-product-2 .widget_item-switch li {
  margin: 3px;
  width: 40px;
  border-radius: 5px;
  height: 40px;
  margin: 3px;
  background-repeat: no-repeat !important;
  background-size: 100% auto !important;
  box-shadow: 0 0 1px 1px #ddd;
  border: 2px solid #fff;
  cursor: pointer;
}
.widget_item-product-2 .widget_item-switch li.selected {
  border-color: #e34848;
}

.irs {
  font-family: "Tajawal", sans-serif;
}

.irs--flat {
  height: 40px;
  margin-top: -20px;
  margin-bottom: 40px;
  padding: 0px 15px;
}

.irs--flat .irs-handle {
  top: 26px;
  width: 10px;
  height: 10px;
  background-color: #142740;
  border-radius: 50%;
}

.irs--flat .irs-bar {
  top: 29px;
  height: 5px;
  background-color: #142740;
}

.irs--flat .irs-line {
  top: 30px;
  height: 2px;
  background-color: #e3e3e3;
  border-radius: 4px;
}

.irs--flat .irs-handle > i:first-child {
  display: none;
}

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
  color: #999999;
  font-size: 12px;
  line-height: 1.333;
  text-shadow: none;
  padding: 0px 12px;
  background-color: #fff;
  border-radius: 4px;
  top: 49px;
  direction: ltr;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
  display: none;
}

.irs--flat .irs-min,
.irs--flat .irs-max {
  display: none;
}

/**
 * EasyZoom core styles
 */
.easyzoom {
  position: relative;
  /* 'Shrink-wrap' the element */
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.easyzoom img {
  vertical-align: bottom;
}

.easyzoom.is-loading img {
  cursor: progress;
}

.easyzoom.is-ready img {
  cursor: crosshair;
}

.easyzoom.is-error img {
  cursor: not-allowed;
}

.easyzoom-notice {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 150;
  width: 10em;
  margin: -1em 0 0 -5em;
  line-height: 2em;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 10px #888;
}

.easyzoom-flyout {
  position: absolute;
  z-index: 100;
  overflow: hidden;
  background: #fff;
}

/**
 * EasyZoom layout variations
 */
.easyzoom--overlay .easyzoom-flyout {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.easyzoom--adjacent .easyzoom-flyout {
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  margin-left: 20px;
}

.thumbnails {
  overflow: hidden;
  margin: 1em 0;
  padding: 0;
  text-align: center;
}

.thumbnails li {
  display: inline-block;
  width: 140px;
  margin: 0 5px;
}

.thumbnails img {
  display: block;
  min-width: 100%;
  max-width: 100%;
}

.toggle {
  display: block;
  margin: 10px auto 1.5em;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 1px 1px 3px 0px #ddd;
  border: 1px solid #e9e9e9;
  background: #fff;
  margin: 0 !important;
}
.product-table tr,
.product-table th {
  text-align: center;
  vertical-align: middle;
  color: #777;
  height: 50px;
}
.product-table thead th {
  padding: 0;
  background: #f9f9f9;
  font-weight: 700;
}
.product-table tbody tr td:nth-of-type(1) {
  background: #f9f9f9;
  font-weight: bold;
}

.widget_item-product-3 .widget_item-product-image img {
  width: 60px;
  height: 60px;
}

.image-single-product {
  position: relative;
  /*height: 560px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.image-single-product img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-thumbs {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background-color: #fff;
}
.image-thumbs img {
  box-sizing: border-box;
  width: 100%;
}

.product-single-title h3 {
  font-size: 22px;
  color: #555;
  position: relative;
}

.product-single-price {
  font-size: 20px;
}
.product-single-price del {
  color: rgba(17, 17, 17, 0.6);
}
.product-single-price ins {
  font-weight: bold;
  text-decoration: none;
}

.label-size-option {
  box-shadow: 0 0 0 0.07rem #d5d5d5;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}
.label-size-option:not(:last-of-type) {
  margin-left: 10px;
}
.label-size-option.disabled {
  pointer-events: none;
  background: linear-gradient(to top left, transparent calc(50% - 0.031rem), black, transparent calc(50% + 0.031rem));
}
.label-size-option.selected {
  -webkit-box-shadow: 0 0 0 0.1rem #d26e4b;
  box-shadow: 0 0 0 0.1rem #d26e4b;
}

.product-single-size {
  border-bottom: 1px dashed #ddd;
}

.widget_item-product-3 .widget_item-image img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}

.font-size-18 {
  font-size: 18px;
}

.product-meta > div {
  display: block;
  border-top: 1px dotted #ddd;
  padding: 5px 0;
}

.is-divider {
  height: 3px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 1em 0 1em;
  width: 100%;
  max-width: 30px;
  margin-left: auto;
  margin-right: auto;
}

.product-share a {
  color: #999;
  font-size: 22px;
  padding: 4px 5px;
  margin: 0px 4px;
}

.nav-pills.nav-product .nav-link {
  color: #999;
  border-radius: 0;
  border-top: 2px solid transparent;
}
.nav-pills.nav-product .nav-link.active {
  color: #000;
  border-top: 2px solid #000;
  background-color: transparent;
}

.tab-content.tab-product li {
  font-size: 16px;
  margin: 2px 0;
  color: #777;
}

.swiper-product .widget_item-product-2 .widget_item-price_discount,
.swiper-product .widget_item-product-2 .widget_item-price {
  font-size: 18px;
  font-weight: 600;
}

.cart-drawer {
  width: 90%;
  max-width: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: -400px;
  z-index: 555;
  color: #000;
  text-align: right;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1019607843);
  transition: all 0.3s ease-in-out;
}
.cart-drawer.active {
  left: 0;
}

.aside-product {
  padding: 15px 20px 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.05);
}
.aside-product .widget_item-product-3:not(:last-of-type) {
  border-bottom: 1px solid #ececec;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.aside-product .accordion .accordion-item:not(:last-of-type) {
  border-bottom: 1px solid #ececec !important;
}
.aside-product .accordion .accordion-title {
  padding: 10px 0;
  font-size: 16px;
}
.aside-product .accordion .accordion-title i {
  transition: all 0.2s ease-in-out;
}
.aside-product .accordion .accordion-title:not(.collapsed) .fa-chevron-down {
  transform: rotate(180deg);
}
.aside-product .accordion .accordion-body li a {
  font-size: 16px;
  padding: 4px 0;
  display: block;
}
.aside-product .accordion .accordion-body li a.active {
  color: #000;
  font-weight: bold;
}

.list-cart-item {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 60vh;
}

.cart-item .cart-item-image img {
  width: 72px;
  height: 108px;
}

.btn-checkout {
  font-size: 24px;
}

.qty {
  overflow: hidden;
  height: 33px;
  border: 1px solid #c4c4c4;
}
.qty input[type=number]::-webkit-outer-spin-button,
.qty input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty input[type=number] {
  -moz-appearance: textfield;
}

.qty .minus,
.qty .add {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background-color: #fff;
  height: 31px;
  width: 28px;
}

.qty .number {
  width: 50px;
  background-color: #fff;
  height: 32px;
  text-align: center;
  font-size: 14px;
  font-family: Arial;
}

html[dir=rtl] .qty.qty .minus {
  border-right: 1px solid #c4c4c4;
}
html[dir=rtl] .qty.qty .add {
  border-left: 1px solid #c4c4c4;
}

html[dir=ltr] .qty.qty .minus {
  border-left: 1px solid #c4c4c4;
}
html[dir=ltr] .qty.qty .add {
  border-right: 1px solid #c4c4c4;
}

.form-select {
  background-position: left 0.75rem center;
}

.breadcrumb-item + .breadcrumb-item {
  padding-right: var(--bs-breadcrumb-item-padding-x);
  padding-left: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f053";
  border: 0;
  float: right;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  padding-left: var(--bs-breadcrumb-item-padding-x);
  padding-right: 0;
}

.breadcrumb-item {
  color: #737373;
  font-size: 12px;
}

.breadcrumb-item.active {
  font-weight: 500;
  color: #000;
}

.m-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.cart-checkout .cart-item-image {
  position: relative;
}
.cart-checkout .cart-item-image img {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-checkout .cart-item-quantity {
  font-size: 0.8571428571em;
  font-weight: 500;
  line-height: 1.75em;
  white-space: nowrap;
  text-align: center;
  border-radius: 1.75em;
  background-color: rgba(114, 114, 114, 0.9);
  color: #fff;
  box-sizing: border-box;
  min-width: 1.75em;
  height: 1.75em;
  padding: 0 0.5833333333em;
  position: absolute;
  left: -0.75em;
  top: -0.75em;
  z-index: 1;
}

.sidebar-checkout {
  position: relative;
}
@media (min-width: 992px) {
  .sidebar-checkout {
    min-height: 100vh;
  }
}

.sidebar-checkout::after {
  content: "";
  display: block;
  width: 300%;
  position: absolute;
  top: 0;
  right: -100%;
  bottom: 0;
  background: #f5f5f5;
  z-index: -1;
  box-shadow: 0 -1px 0 #dddddd inset;
}

@media (min-width: 992px) {
  .sidebar-checkout::after {
    right: 0;
    background-position: left top;
    box-shadow: 1px 0 0 #dddddd inset;
  }
}
.table-shoping-row:not(:last-of-type) {
  border-bottom: 1px solid #dee2e6;
}

.content-box {
  border: 1px solid #d9d9d9;
}
.content-box .radio__label {
  position: relative;
  z-index: -1;
}

.content-box__row {
  padding: 1.1428571429em;
  position: relative;
  cursor: pointer;
}
.content-box__row:not(:last-of-type) {
  border-bottom: 1px solid #d9d9d9;
}

.radio__input,
.checkbox__input {
  padding-left: 0.75em;
  white-space: nowrap;
}

.input-radio:checked {
  border-width: 7px;
}

.content-box .input-checkbox,
.content-box .input-radio {
  border-color: #d9d9d9;
  background-color: white;
}

.input-checkbox:checked,
.input-radio:checked {
  border-color: #1773b0;
}

.input-checkbox,
.input-radio {
  width: 18px;
  height: 18px;
  transition: all 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
  vertical-align: -4px;
  border: 1px solid;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.input-radio {
  border-radius: 50%;
}

.input-checkbox,
.main .input-radio {
  border-color: #d9d9d9;
  background-color: white;
}

.content-box .input-checkbox,
.content-box .input-radio {
  border-color: #d9d9d9;
  background-color: white;
}

.input-checkbox:checked,
.input-radio:checked {
  border-color: #1773b0;
}

.input-radio:checked {
  border-width: 7px;
}

#billing-address__different {
  background-color: #fafafa;
  padding: 20px;
  border: 1px solid #d9d9d9;
  border-top: 0;
}

#searchPopup {
  width: 100%;
  padding: 40px 50px;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  transform: translateY(-100%);
  color: #000;
  text-align: right;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1019607843);
  transition: all 0.3s ease-in-out;
}
#searchPopup .closeSearch {
  color: #000;
  font-size: 24px;
  position: absolute;
  top: 10px;
  left: 20px;
}
#searchPopup h4 {
  color: #000;
}
#searchPopup .search-header {
  position: relative;
}
#searchPopup .input-group {
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#searchPopup .input-group .search__input {
  padding: 15px 0;
}
#searchPopup.active {
  opacity: 1;
  transform: translateY(0);
}

.page-overlay {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.29, 0.63, 0.44, 1);
}
.page-overlay.active {
  display: block;
}

.widget_item-sale {
  background-color: #ff708e;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 18px;
  text-align: center;
  padding: 0 5px;
  height: 19px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
}

.main-footer .footer-top {
  padding: 55px 0;
  padding-bottom: 30px;
}
.main-footer .footer-bottom {
  padding: 15px 0;
  border-top: 1px dotted #eeeeee;
}
.main-footer .menu li {
  width: 50%;
}
.main-footer .link-footer a {
  color: rgb(0, 0, 0);
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 0px;
  margin-bottom: 3px;
  position: relative;
  transition: color 200ms;
  cursor: pointer;
}
.main-footer .link-footer a:hover {
  color: #FBB243 !important;
}

.social-media {
  display: flex;
  align-items: center;
}

.social-media li:not(:last-of-type) {
  -webkit-margin-end: 14px;
          margin-inline-end: 14px;
}

.social-media li a {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
}
.social-media li a i {
  transition: color 0.3s ease-in-out;
  color: #FFF;
}
.social-media li a:hover {
  background-color: #142740;
  color: #FFF;
}

.social-media li a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .tab-filter .nav-item {
    width: calc(50% - 8px);
    margin: 4px !important;
  }
  .tab-filter .nav-item .nav-link {
    font-size: 14px;
    width: 100%;
  }
  .search-form .btn-submit {
    width: 100%;
  }
  .bg-banner img {
    height: 300px;
  }
}
.main-header.internal{
  background-color: #f5f5f5;
}

.dashboard-list li a {
  color: #000;
  display: block;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px;
  text-transform: uppercase;
  border: 0 !important;
  cursor: pointer;
  border-radius: 0 !important;
  border-bottom: 1px solid #ebebeb !important;
}
.dashboard-list li a.active, .dashboard-list li a:hover {
  color: #fff !important;
  border: 0;
  background-color: #000 !important;
}
.dashboard-content {
  border: 1px solid #ebebeb;
  padding: 20px;
}

.form-check {
  padding-right: 1.5em;
  padding-left: 0;
}

.form-check .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.table td,
.table th{
  vertical-align: middle;
}

.table.table-cart th{
  font-weight: bold;
}
.cart__image-wrapper img{
  width: 90px;
  height: 135px;
}
.cart__image-wrapper {
  width: 110px;
}
.cart__meta-text {
  font-style: italic;
}
 .bdr-box {
  width: 100%;
  border: 0;
  padding: 25px;
  background: #f5f5f5;
}
@media(max-width:991px){
  .qty .number {
    width: 30px;
  }
  .cart__image-wrapper{
    width: 60px;
    flex: 0 0 auto;
  }
  .cart__image-wrapper img{
    width: 60px;
    height: 90px;
  }
  .table-cart.table>:not(caption)>*>* {
    padding: 0.5rem 0.3rem;
  }
}

@media(min-width:992px){
#ModalProduct .modal-dialog{
    max-width:900px
  }
}

.swiper-button-next:after,.swiper-button-prev:after {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: #FFF;
  font-size: 18px;
  width: 24px;
  height: 23px;
  padding: 3px;
  border-radius: 2px;
}

.widget_item-shopWrapper {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #ffffffe6;
  box-shadow: 0 0 15px #0003;
  padding-top: 25px;
}

.widget_item-shopWrapper.active{
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
.breadcrumbs-product {
  color: #222;
  font-weight: bold;
  letter-spacing: 0;
  padding: 0;
  font-size: 20px;
}
.breadcrumbs-product a {
  color: rgba(102,102,102,.7);
  font-weight: normal;
}
.breadcrumbs-product .divider, .breadcrumbs-product .separator {
  position: relative;
  top: 0;
  opacity: .35;
  margin: 0 0.3em;
  font-weight: 300;
}

.loader {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #ffffffe6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease-in-out;
}

.loader.active{
  opacity: 1;
  visibility: visible;
}
@media(max-width:991px){
  .section-info .d-flex{
    margin-bottom: 30px;
  }
}

.product-single-discount{
  position: absolute;
  width: 35px;
  height: 34px;
  color: #FFF;
  background-color: #e34848;
  border-radius: 3px;
  top: 20px;
  right: -10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.fancybox{
  position: absolute;
  z-index: 2;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #FFF !important;
  font-size: 18px;
  cursor: pointer;
}

@media(max-width:991px){
  .aside-filter{
    padding-top: 30px;
    position: fixed !important;
    width: 300px;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #FFF;
    z-index: 5;
    transform: translateX(100%);
    transition: all .3s ease-in-out;
  }
  .aside-filter.active{
    
    transform: translateX(0%);
  }
}
/*# sourceMappingURL=main.css.map */