/* src/styles/custom.css */
@import "/fonts/assistant/fonts.css";
@tailwind base;
@tailwind components;
@tailwind utilities;
/* @import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap'); */

* {
  font-family: 'Assistant', Arial, sans-serif;

  /* מעלים היילייט כחול בלחיצה במובייל */
  -webkit-tap-highlight-color: transparent;
}

html {
  @apply font-sans;
  /* overflow-x: hidden; */
  font-size: 1.2rem;
  /* הגדלת הפונט ב-20% */
}

/* הגדלת פונט גלובלית לכל האלמנטים */
* {
  font-size: inherit;
}

/* הגדלת פונט ספציפית לאלמנטים שונים */
body {
  font-size: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
}

p,
span,
div,
a,
button,
input,
textarea,
select {
  font-size: inherit;
}

@keyframes leftToRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

.left-right-animation {
  animation: leftToRight 2s ease-in-out infinite;
}

@keyframes rightToLeft {

  0%,
  50% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-4px);
  }
}

.right-left-animation {
  animation: rightToLeft 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.animate-bounce-2s {
  animation: bounce 2s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25%);
  }
}

/* Responsive zoom for blog content */
.blog-content-responsive-zoom {
  zoom: 1.6;
  /* ברירת מחדל למסכים גדולים */
}

@media (max-width: 640px) {

  /* sm ומטה */
  .blog-content-responsive-zoom {
    zoom: 1.2;
  }
}

/* הסתרת כפתורי העלאהוהורה של אינפוט מספר */
/* Chrome, Safari, Edge, Opera */
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.no-spinner[type="number"] {
  -moz-appearance: textfield;
}

.glow-btn {
  width: 100%;
  position: relative;
  min-height: 48px;
  border: 2px solid #f1c61a;
  outline: none;
  background: #fffbec;
  color: rgb(41, 41, 41);
  transition: all 0.3s ease;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  /* transform: translateY(-2px); */
  /* box-shadow: 0 3px 20px rgba(255, 222, 22, 0.4); */
}

.glow-btn:hover::before {
  opacity: 0;
  transform: scale(1.05);
}

.glow-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  /* box-shadow: 0 3px 20px rgba(255, 222, 22, 0.6); */
}

/* Payment button with inviting design */
.payment-glow-btn {
  width: 100%;
  position: relative;
  min-height: 52px;
  border: 2px solid #059669;
  outline: none;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
  overflow: hidden;
}

.payment-glow-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.payment-glow-btn:hover::before {
  left: 100%;
}

.payment-glow-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(5, 150, 105, 0.5);
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  border-color: #34d399;
}

.payment-glow-btn:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.4);
}

.payment-glow-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: 0 2px 5px rgba(5, 150, 105, 0.2);
}

/* Simple back button that complements the payment button */
.back-btn-simple {
  width: fit-content;
  position: relative;
  min-height: 52px;
  border: 2px solid #e5e7eb;
  outline: none;
  background: #ffffff;
  color: #374151;
  transition: all 0.3s ease;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-btn-simple:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-btn-simple:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInSlideDelayed {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  30% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-title {
  animation: fadeInSlide 1.5s cubic-bezier(0, 0, 0.2, 1) forwards;
}

.animate-subtitle {
  animation: fadeInSlideDelayed 1.5s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-scale-in {
  animation: scaleIn 0.3s ease-out forwards;
}

.dynamicPopup h1 {
  font-size: xx-large;
}

.dynamicPopup h2 {
  font-size: x-large;
}

.dynamicPopup h3 {
  font-size: large;
}

@keyframes upAndDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
    /* ניתן לשנות את הערך בהתאם לכמות התזוזה הרצויה */
  }
}

.up-down-animation {
  animation: upAndDown 2s ease-in-out infinite;
  /* משך האנימציה ואופציה לאינסופיות */
}


.noScroller {
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}

.noScroller::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.scrollbar-hide {
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

/* כל מה שקשור לגלילה האוטומטית של מוצרים במבצע בעמוד הבית */
@keyframes scroll {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-50%);
  }
}

.scroll-container {
  position: relative;
  overflow: hidden;
}

.scroll-content {
  display: flex;
  flex-direction: column;
  animation: scroll 80s linear infinite;
  /* Adjust duration as needed */
}

.scroll-content.paused {
  animation-play-state: paused;
}

.discount-info {
  display: flex;
  align-items: center;
}

.product-button {
  display: none;
}

.scroll-item:hover .discount-info {
  display: none;
}

.scroll-item:hover .product-button {
  display: inline-block;
}

/* carousel.css */
.swiper-pagination-bullet-active {
  background-color: #FFF !important;
  /* הצבע של הכדור הפעיל */
}

/* Main carousel navigation arrows styling */
.mySwiper .swiper-button-prev,
.mySwiper .swiper-button-next {
  color: #594e09 !important;
  /* צבע החצים */
}

.mySwiper .swiper-button-prev:after,
.mySwiper .swiper-button-next:after {
  font-size: clamp(12px, 4vw, 30px) !important;
  font-weight: bold !important;
}

.custom-select {
  border: 1px solid #e5e7eb !important;
}

.custom-select:focus {
  box-shadow: 0 0 0 1px #ffde16 !important;
  border: 1px solid #ffde16 !important;
  box-shadow: 0 0 0 1px #ffde16 !important;
  border: 1px solid #ffde16 !important;
}

.option:hover {
  background-color: #ffde16 !important;
  background-color: #ffde16 !important;
  /* צבע ירוק לרקע כאשר מרחפים מעליו */
}

/* style for the scrollbar thumb */
::-webkit-scrollbar {
  width: 8px;
  /* width of the scrollbar */
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #ffde16;
  background-color: #ffde16;
  /* color of the scrollbar thumb */
  border-radius: 4px;
  /* radius of the scrollbar thumb */
}

::-webkit-scrollbar-track {
  background-color: #f7f2cd;
  /* color of the scrollbar track */
  border-radius: 4px;
}

[type="radio"]:checked {
  background-image: none;
  /* background-color: rgb(252, 255, 244); */
}

.StripeElement {
  box-sizing: border-box;
  height: 50px;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  background-color: #fff;
  transition: border 0.15s ease;
}

.c-h-65vh {
  height: 65vh;
}

p:not(:last-of-type) {
  margin-bottom: 1rem;
}

.coupon .info::after,
.coupon .info::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fafafa;
  border-radius: 100%;
}

.coupon .info::before {
  top: -10px;
  left: -11px;
}

.coupon .info::after {
  bottom: -10px;
  left: -11px;
}

.coupon-home .info::before,
.coupon-home .info::after {
  background: #fafafa;
}

.coupon-home .info::before {
  top: -35px;
}

.coupon-home .info::after {
  bottom: -35px;
}

@media (min-width: 320px) and (max-width: 767px) {

  .coupon .info::after,
  .coupon .info::before {
    display: none !important;
  }
}

.react-multi-carousel-dot-list.custom-dot {
  bottom: 12px !important;
  line-height: 0;
}

.react-multi-carousel-dot-list.custom-dot li {
  padding: 2px;
}

.react-multi-carousel-dot button {
  border-width: 1px !important;
  width: 12px !important;
  height: 12px !important;
  border-color: #059669 !important;
}

.react-multi-carousel-dot--active button {
  background: #059669 !important;
}

@media (min-width: 320px) and (max-width: 767px) {
  .react-multi-carousel-dot-list.custom-dot {
    display: none !important;
  }
}

/* drawer style */

.drawer {
  overflow: visible;
}

.drawer .drawer-content-wrapper {
  width: 100%;
  left: 0;
}

@media (min-width: 480px) {
  .drawer .drawer-content-wrapper {
    width: 500px;
  }
}

.drawer {
  position: fixed;
  z-index: 9999;
  transition: width 0s ease 0.3s, height 0s ease 0.3s,
    transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.drawer>* {
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
    opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
    box-shadow 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.drawer.drawer-open {
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.drawer .drawer-mask {
  background: #000;
  opacity: 0;
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
    height 0s ease 0.3s;
}

.drawer-content-wrapper {
  position: absolute;
  background: #fff;
}

.drawer-content {
  overflow: auto;
  z-index: 1;
  position: relative;
}

.drawer-handle {
  position: absolute;
  top: 72px;
  width: 41px;
  height: 40px;
  cursor: pointer;
  z-index: 0;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  display: none;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.drawer-handle-icon {
  width: 14px;
  height: 2px;
  background: #333;
  position: relative;
  transition: background 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.drawer-handle-icon:before,
.drawer-handle-icon:after {
  content: "";
  display: block;
  position: absolute;
  background: #333;
  width: 100%;
  height: 2px;
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.drawer-handle-icon:before {
  top: -5px;
}

.drawer-handle-icon:after {
  top: 5px;
}

.drawer-left,
.drawer-right {
  width: 0%;
  height: 100%;
}

.drawer-left .drawer-content-wrapper,
.drawer-right .drawer-content-wrapper,
.drawer-left .drawer-content,
.drawer-right .drawer-content {
  height: 100%;
}

.drawer-left.drawer-open,
.drawer-right.drawer-open {
  width: 100%;
}

.drawer-left.drawer-open.no-mask,
.drawer-right.drawer-open.no-mask {
  width: 0%;
}

.drawer-left {
  top: 0;
  left: 0;
}

.drawer-left .drawer-handle {
  right: -40px;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
  border-radius: 0 4px 4px 0;
}

.drawer-left.drawer-open .drawer-content-wrapper {
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}

.drawer-right {
  top: 0;
  right: 0;
}

.drawer-right .drawer-content-wrapper {
  right: 0;
}

.drawer-right .drawer-handle {
  left: -40px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px 0 0 4px;
}

.drawer-right.drawer-open .drawer-content-wrapper {
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}

.drawer-right.drawer-open.no-mask {
  right: 1px;
  transform: translateX(1px);
}

.drawer-top,
.drawer-bottom {
  width: 100%;
  height: 0%;
}

.drawer-top .drawer-content-wrapper,
.drawer-bottom .drawer-content-wrapper,
.drawer-top .drawer-content,
.drawer-bottom .drawer-content {
  width: 100%;
}

.drawer-top .drawer-content,
.drawer-bottom .drawer-content {
  height: 100%;
}

.drawer-top.drawer-open,
.drawer-bottom.drawer-open {
  height: 100%;
}

.drawer-top.drawer-open.no-mask,
.drawer-bottom.drawer-open.no-mask {
  height: 0%;
}

.drawer-top .drawer-handle,
.drawer-bottom .drawer-handle {
  left: 50%;
  margin-left: -20px;
}

.drawer-top {
  top: 0;
  left: 0;
}

.drawer-top .drawer-handle {
  top: auto;
  bottom: -40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 4px 4px;
}

.drawer-top.drawer-open .drawer-content-wrapper {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.drawer-bottom {
  bottom: 0;
  left: 0;
}

.drawer-bottom .drawer-content-wrapper {
  bottom: 0;
}

.drawer-bottom .drawer-handle {
  top: -40px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px 4px 0 0;
}

.drawer-bottom.drawer-open .drawer-content-wrapper {
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.drawer-bottom.drawer-open.no-mask {
  bottom: 1px;
  transform: translateY(1px);
}

.drawer.drawer-open .drawer-mask {
  opacity: 0.3;
  height: 100%;
  transition: opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.drawer.drawer-open .drawer-handle-icon {
  background: transparent;
}

.drawer.drawer-open .drawer-handle-icon:before {
  transform: translateY(5px) rotate(45deg);
}

.drawer.drawer-open .drawer-handle-icon:after {
  transform: translateY(-5px) rotate(-45deg);
}

.hr-line {
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: 1px !important;
  border-width: 0;
}

.hr-line::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: " ";
  background: linear-gradient(to right, #ffffff 0, #d6d6d6 50%, #ffffff 100%);
}

/* category slider */
.category-slider .swiper-button-prev,
.category-slider .swiper-button-next {
  display: none;
}

.category-slider button {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.category-slider button.prev,
.category-slider button.next {
  text-align: center;
  background-color: #ffde16;
  background-color: #ffde16;
  color: #ffffff;
  margin: 15px 2px 0 2px;
  position: absolute;
  z-index: 10;
  top: 15%;
  border-radius: 3px;
}

.category-slider button.prev {
  left: -1px;
  right: auto;
}

.category-slider button.next {
  right: -1px;
  left: auto;
}

.category-slider button.next:hover,
.category-slider button.prev {
  background-color: #ffde16;
  background-color: #ffde16;
}

.category-slider button.prev svg,
.category-slider button.next svg {
  margin: 0 auto;
}

.paginationOrder ul {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 5px;
}

.paginationOrder ul li:first-child {
  margin-left: 0;
}

.page--item {
  border: 1px solid #e2e8f0;
  width: 28px;
  height: 28px;
  line-height: 25px;
  text-align: center;
  margin: 0px 7px;
}

/* .paginationOrder ul li a { */
.page--link {
  width: 28px;
  height: 28px;
  line-height: 25px;
  font-size: 14px;
  font-weight: 500;
}

.page-previous-link {
  padding: 5px 10px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  font-weight: 500;
}

.page-previous-link:hover {
  border: 1px solid #ffde16;
  background-color: #ffde16;
  border: 1px solid #ffde16;
  background-color: #ffde16;
  color: #fff;
}

.page-next-link {
  padding: 5px 10px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  font-weight: 500;
}

.page-next-link:hover {
  border: 1px solid #ffde16;
  background-color: #ffde16;
  border: 1px solid #ffde16;
  background-color: #ffde16;
  color: #fff;
}

.page--link:hover {
  color: #000;
}

.activePagination {
  text-align: center;
  border-radius: 3px;
  background: #ffde16;
  border: 1px solid #ffde16;
  background: #ffde16;
  border: 1px solid #ffde16;
  color: #fff;
}

/*---=========================

=========================---*/
.lang-dropdown .fa-globe {
  margin-right: 7px;
  color: var(--heading);
  font-size: 18px;
}

.lang-flag {
  margin-right: 7px;
}

.dropbtn {
  background-color: transparent;
  color: #222;
  padding-left: 10px;
  border: none;
  cursor: pointer;
  margin-right: 20px;
  font-size: 14px;
  color: #162542;
  text-transform: uppercase;
  font-weight: 400;
}

.dropdown img {
  display: initial;
}

.dropdown {
  position: relative;
  display: inline-block;
  background-color: transparent;
  margin-top: 6px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  color: #162542;
  font-family: var(--rajdhani);
  text-transform: uppercase;
  font-weight: 400;
}

.dropdown-content a img {
  margin-right: 7px;
}

.dropdown-content a:hover {
  background-color: #f2f2f2;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Footer language Drop */

.footer .dropbtn {
  background-color: transparent;
  color: #222;
  padding-left: 10px;
  border: none;
  cursor: pointer;
  margin-right: 20px;
  font-size: 13px;
  color: #162542;
  text-transform: uppercase;
  font-weight: 400;
}

.footer .dropdown img {
  display: initial;
}

.footer .dropdown {
  position: relative;
  display: inline-block;
  background-color: transparent;
  margin-top: 6px;
}

.footer .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 115px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  bottom: 100%;
  text-align: left;
}

.footer .dropdown-content a {
  color: black;
  padding: 8px 5px;
  text-decoration: none;
  display: block;
  font-size: 13px;
  color: #162542;
  font-family: var(--rajdhani);
  text-transform: uppercase;
  font-weight: 400;
}

.footer .dropdown-content a img {
  margin-right: 5px;
}

.footer .dropdown-content a:hover {
  background-color: #f2f2f2;
}

.footer .dropdown:hover .dropdown-content {
  display: block;
}

.more-link {
  color: darkorange;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  margin-top: -25px;
}

.text {
  display: inline;
  width: 100%;
}

.read-or-hide {
  color: darkorange;
  font-size: 13px;
  cursor: pointer;
  display: block;
  text-align: right;
}

.carousel-root .carousel .control-dots .dot .selected {
  color: green !important;
  background: green !important;
}

.control-arrow control-next {
  color: #059669;
  background: #059669;
}

.carousel .carousel-status {
  color: #000 !important;
  text-shadow: none !important;
}

.carousel .control-dots .dot {
  background: #ffde16 !important;
  background: #ffde16 !important;
}

.invoice-address-width {
  width: 280px;
  white-space: normal;
  text-align: right;
}

.paginationOrder ul {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.paginationOrder ul li:first-child {
  margin-left: 0;
}

.page--item {
  border: 1px solid #e2e8f0;
  width: 28px;
  height: 28px;
  line-height: 25px;
  text-align: center;
  margin: 0px 7px;
}

/* .paginationOrder ul li a { */
.page--link {
  width: 28px;
  height: 28px;
  line-height: 25px;
  font-size: 14px;
  font-weight: 500;
}

.page-previous-link {
  padding: 5px 10px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  font-weight: 500;
}

.page-previous-link:hover {
  border: 1px solid #ffde16;
  background-color: #ffde16;
  border: 1px solid #ffde16;
  background-color: #ffde16;
  color: #fff;
}

.page-next-link {
  padding: 5px 10px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  font-weight: 500;
}

.page-next-link:hover {
  border: 1px solid #ffde16;
  background-color: #ffde16;
  border: 1px solid #ffde16;
  background-color: #ffde16;
  color: #fff;
}

.page--link:hover {
  color: #000;
}

.activePagination {
  text-align: center;
  border-radius: 3px;
  background: #ffde16;
  border: 1px solid #ffde16;
  background: #ffde16;
  border: 1px solid #ffde16;
  color: #fff;
}

.flot-l {
  float: left;
  margin-right: 7px;
}

/* country flag css */
.flag {
  width: 25px;
  height: 20px;
  background-image: url("https://raw.githubusercontent.com/bl00mber/react-phone-input-2/master/src/style/common/high-res.png");
  background-repeat: no-repeat;
}

.ad {
  background-position: -48px -24px;
}

.ae {
  background-position: -72px -24px;
}

.af {
  background-position: -96px -24px;
}

.ag {
  background-position: -120px -24px;
}

.ai {
  background-position: -144px -24px;
}

.al {
  background-position: -168px -24px;
}

.am {
  background-position: -192px -24px;
}

.an {
  background-position: -216px -24px;
}

.ao {
  background-position: -240px -24px;
}

.aq {
  background-position: -264px -24px;
}

.ar {
  background-position: -288px -24px;
}

.as {
  background-position: -312px -24px;
}

.at {
  background-position: -336px -24px;
}

.au {
  background-position: -360px -24px;
}

.aw {
  background-position: -384px -24px;
}

.ax {
  background-position: 0px -48px;
}

.az {
  background-position: -24px -48px;
}

.ba {
  background-position: -48px -48px;
}

.bb {
  background-position: -72px -48px;
}

.bd {
  background-position: -96px -48px;
}

.be {
  background-position: -120px -48px;
}

.bf {
  background-position: -144px -48px;
}

.bg {
  background-position: -168px -48px;
}

.bh {
  background-position: -192px -48px;
}

.bi {
  background-position: -216px -48px;
}

.bj {
  background-position: -240px -48px;
}

.bl {
  background-position: -264px -48px;
}

.bm {
  background-position: -288px -48px;
}

.bn {
  background-position: -312px -48px;
}

.bo {
  background-position: -336px -48px;
}

.br {
  background-position: -360px -48px;
}

.bs {
  background-position: -384px -48px;
}

.bt {
  background-position: 0px -72px;
}

.bw {
  background-position: -24px -72px;
}

.by {
  background-position: -48px -72px;
}

.bz {
  background-position: -72px -72px;
}

.ca {
  background-position: -96px -72px;
}

.cc {
  background-position: -120px -72px;
}

.cd {
  background-position: -144px -72px;
}

.cf {
  background-position: -168px -72px;
}

.cg {
  background-position: -192px -72px;
}

.ch {
  background-position: -216px -72px;
}

.ci {
  background-position: -240px -72px;
}

.ck {
  background-position: -264px -72px;
}

.cl {
  background-position: -288px -72px;
}

.cm {
  background-position: -312px -72px;
}

.cn {
  background-position: -336px -72px;
}

.co {
  background-position: -360px -72px;
}

.cr {
  background-position: -384px -72px;
}

.cu {
  background-position: 0px -96px;
}

.cv {
  background-position: -24px -96px;
}

.cw {
  background-position: -48px -96px;
}

.cx {
  background-position: -72px -96px;
}

.cy {
  background-position: -96px -96px;
}

.cz {
  background-position: -120px -96px;
}

.de {
  background-position: -144px -96px;
}

.dj {
  background-position: -168px -96px;
}

.dk {
  background-position: -192px -96px;
}

.dm {
  background-position: -216px -96px;
}

.do {
  background-position: -240px -96px;
}

.dz {
  background-position: -264px -96px;
}

.ec {
  background-position: -288px -96px;
}

.ee {
  background-position: -312px -96px;
}

.eg {
  background-position: -336px -96px;
}

.eh {
  background-position: -360px -96px;
}

.er {
  background-position: -384px -96px;
}

.es {
  background-position: 0px -120px;
}

.et {
  background-position: -24px -120px;
}

.eu {
  background-position: -48px -120px;
}

.fi {
  background-position: -72px -120px;
}

.fj {
  background-position: -96px -120px;
}

.fk {
  background-position: -120px -120px;
}

.fm {
  background-position: -144px -120px;
}

.fo {
  background-position: -168px -120px;
}

.fr {
  background-position: -192px -120px;
}

.ga {
  background-position: -216px -120px;
}

.gb {
  background-position: -240px -120px;
}

.gd {
  background-position: -264px -120px;
}

.ge {
  background-position: -288px -120px;
}

.gg {
  background-position: -312px -120px;
}

.gh {
  background-position: -336px -120px;
}

.gi {
  background-position: -360px -120px;
}

.gl {
  background-position: -384px -120px;
}

.gm {
  background-position: 0px -144px;
}

.gn {
  background-position: -24px -144px;
}

.gq {
  background-position: -48px -144px;
}

.gr {
  background-position: -72px -144px;
}

.gs {
  background-position: -96px -144px;
}

.gt {
  background-position: -120px -144px;
}

.gu {
  background-position: -144px -144px;
}

.gw {
  background-position: -168px -144px;
}

.gy {
  background-position: -192px -144px;
}

.hk {
  background-position: -216px -144px;
}

.hn {
  background-position: -240px -144px;
}

.hr {
  background-position: -264px -144px;
}

.ht {
  background-position: -288px -144px;
}

.hu {
  background-position: -312px -144px;
}

.ic {
  background-position: -336px -144px;
}

.id {
  background-position: -360px -144px;
}

.ie {
  background-position: -384px -144px;
}

.il {
  background-position: 0px -168px;
}

.im {
  background-position: -24px -168px;
}

.in {
  background-position: -48px -168px;
}

.iq {
  background-position: -72px -168px;
}

.ir {
  background-position: -96px -168px;
}

.is {
  background-position: -120px -168px;
}

.it {
  background-position: -144px -168px;
}

.je {
  background-position: -168px -168px;
}

.jm {
  background-position: -192px -168px;
}

.jo {
  background-position: -216px -168px;
}

.jp {
  background-position: -240px -168px;
}

.ke {
  background-position: -264px -168px;
}

.kg {
  background-position: -288px -168px;
}

.kh {
  background-position: -312px -168px;
}

.ki {
  background-position: -336px -168px;
}

.km {
  background-position: -360px -168px;
}

.kn {
  background-position: -384px -168px;
}

.kp {
  background-position: 0px -192px;
}

.kr {
  background-position: -24px -192px;
}

.kw {
  background-position: -48px -192px;
}

.ky {
  background-position: -72px -192px;
}

.kz {
  background-position: -96px -192px;
}

.la {
  background-position: -120px -192px;
}

.lb {
  background-position: -144px -192px;
}

.lc {
  background-position: -168px -192px;
}

.li {
  background-position: -192px -192px;
}

.lk {
  background-position: -216px -192px;
}

.lr {
  background-position: -240px -192px;
}

.ls {
  background-position: -264px -192px;
}

.lt {
  background-position: -288px -192px;
}

.lu {
  background-position: -312px -192px;
}

.lv {
  background-position: -336px -192px;
}

.ly {
  background-position: -360px -192px;
}

.ma {
  background-position: -384px -192px;
}

.mc {
  background-position: 0px -216px;
}

.md {
  background-position: -24px -216px;
}

.me {
  background-position: -48px -216px;
}

.mf {
  background-position: -72px -216px;
}

.mg {
  background-position: -96px -216px;
}

.mh {
  background-position: -120px -216px;
}

.mk {
  background-position: -144px -216px;
}

.ml {
  background-position: -168px -216px;
}

.mm {
  background-position: -192px -216px;
}

.mn {
  background-position: -216px -216px;
}

.mo {
  background-position: -240px -216px;
}

.mp {
  background-position: -264px -216px;
}

.mq {
  background-position: -288px -216px;
}

.mr {
  background-position: -312px -216px;
}

.ms {
  background-position: -336px -216px;
}

.mt {
  background-position: -360px -216px;
}

.mu {
  background-position: -384px -216px;
}

.mv {
  background-position: 0px -240px;
}

.mw {
  background-position: -24px -240px;
}

.mx {
  background-position: -48px -240px;
}

.my {
  background-position: -72px -240px;
}

.mz {
  background-position: -96px -240px;
}

.na {
  background-position: -120px -240px;
}

.nc {
  background-position: -144px -240px;
}

.ne {
  background-position: -168px -240px;
}

.nf {
  background-position: -192px -240px;
}

.ng {
  background-position: -216px -240px;
}

.ni {
  background-position: -240px -240px;
}

.nl {
  background-position: -264px -240px;
}

.no {
  background-position: -288px -240px;
}

.np {
  background-position: -312px -240px;
}

.nr {
  background-position: -336px -240px;
}

.nu {
  background-position: -360px -240px;
}

.nz {
  background-position: -384px -240px;
}

.om {
  background-position: 0px -264px;
}

.pa {
  background-position: -24px -264px;
}

.pe {
  background-position: -48px -264px;
}

.pf {
  background-position: -72px -264px;
}

.pg {
  background-position: -96px -264px;
}

.ph {
  background-position: -120px -264px;
}

.pk {
  background-position: -192px -264px;
}

.pl {
  background-position: -216px -264px;
}

.pn {
  background-position: -240px -264px;
}

.pr {
  background-position: -264px -264px;
}

.ps {
  background-position: -288px -264px;
}

.pt {
  background-position: -312px -264px;
}

.pw {
  background-position: -336px -264px;
}

.py {
  background-position: -360px -264px;
}

.qa {
  background-position: -384px -264px;
}

.ro {
  background-position: 0px -288px;
}

.rs {
  background-position: -24px -288px;
}

.ru {
  background-position: -48px -288px;
}

.rw {
  background-position: -72px -288px;
}

.sa {
  background-position: -96px -288px;
}

.sb {
  background-position: -120px -288px;
}

.sc {
  background-position: -144px -288px;
}

.sd {
  background-position: -168px -288px;
}

.se {
  background-position: -192px -288px;
}

.sg {
  background-position: -216px -288px;
}

.sh {
  background-position: -240px -288px;
}

.si {
  background-position: -264px -288px;
}

.sk {
  background-position: -288px -288px;
}

.sl {
  background-position: -312px -288px;
}

.sm {
  background-position: -336px -288px;
}

.sn {
  background-position: -360px -288px;
}

.so {
  background-position: -384px -288px;
}

.sr {
  background-position: 0px -312px;
}

.ss {
  background-position: -24px -312px;
}

.st {
  background-position: -48px -312px;
}

.sv {
  background-position: -72px -312px;
}

.sy {
  background-position: -96px -312px;
}

.sz {
  background-position: -120px -312px;
}

.tc {
  background-position: -144px -312px;
}

.td {
  background-position: -168px -312px;
}

.tf {
  background-position: -192px -312px;
}

.tg {
  background-position: -216px -312px;
}

.th {
  background-position: -240px -312px;
}

.tj {
  background-position: -264px -312px;
}

.tk {
  background-position: -288px -312px;
}

.tl {
  background-position: -312px -312px;
}

.tm {
  background-position: -336px -312px;
}

.tn {
  background-position: -360px -312px;
}

.to {
  background-position: -384px -312px;
}

.tr {
  background-position: 0px -336px;
}

.tt {
  background-position: -24px -336px;
}

.tv {
  background-position: -48px -336px;
}

.tw {
  background-position: -72px -336px;
}

.tz {
  background-position: -96px -336px;
}

.ua {
  background-position: -120px -336px;
}

.ug {
  background-position: -144px -336px;
}

.us {
  background-position: -168px -336px;
}

.uy {
  background-position: -192px -336px;
}

.uz {
  background-position: -216px -336px;
}

.va {
  background-position: -240px -336px;
}

.vc {
  background-position: -264px -336px;
}

.ve {
  background-position: -288px -336px;
}

.vg {
  background-position: -312px -336px;
}

.vi {
  background-position: -336px -336px;
}

.vn {
  background-position: -360px -336px;
}

.vu {
  background-position: -384px -336px;
}

.wf {
  background-position: 0px -360px;
}

.ws {
  background-position: -24px -360px;
}

.ye {
  background-position: -48px -360px;
}

.za {
  background-position: -96px -360px;
}

.zm {
  background-position: -120px -360px;
}

.zw {
  background-position: -144px -360px;
}

.nsm7Bb-HzV7m-LgbsSe {
  background: #e4e9e7 !important;
  height: 48px !important;
}

.nsm7Bb-HzV7m-LgbsSe:hover {
  background: #ffde16 !important;
  background: #ffde16 !important;
  color: #e2e8f0;
}

.text-mainColor-darker {
  background: #3c6d16a3 !important;
  font-size: 16px !important;
  border-radius: 2px 9px 2px 14px !important;
  width: 69% !important;
  color: #fff !important;
  font-weight: bold;
  box-shadow: 2px 2px #afdc34 !important;
}

.cursor .text-mainColor-darker {
  width: 100% !important;
}



@media only screen and (min-width: 600px) {
  .bgship {
    background-image: url(/_next/image?url=https%3A%2F%2Fres.cloudinary.com%2Fahossain%2Fimage%2Fupload%2Fv1697688032%2Fsettings%2Fdelivery-boy_rluuoq.webp&w=384&q=75);
    background-position: left;
    background-repeat: no-repeat;
    min-height: 300px;
  }
}

@media only screen and (max-width: 600px) {
  .bgship {
    background-image: none;
  }
}