.overflow-y-hidden {
  overflow-y: hidden;
}

body {
  font-family: 'Lato', sans-serif;
}

:root {
  --main-color: #fb883a;
}

.latest-buyer-slider {
  position: relative;
  height: 100vh;
}

.latest-buyer-slider .item {
  position: relative;
  animation: verticalMarquee 20s linear infinite;
  animation-play-state: running;
}

/* Pause animation on hover start */
.latest-buyer-slider:hover .item {
  animation-play-state: paused;
}

/* Pause animation on hover end */

@-webkit-keyframes verticalMarquee {
  from {
    top: 0;
  }

  to {
    top: -100%;
  }
}

/* radio btn checked start */
input[type="radio"]:checked+label {
  background: var(--main-color);
  color: white;
}

/* radio btn checked end */

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0.8);
  }
}

.modal-zoom-in {
  animation: zoomIn 0.4s ease-in-out forwards;
}

.modal-zoom-out {
  animation: zoomOut 0.4s ease-in-out forwards;
}

#modalExitIntent {
  z-index: 999999;
}

.exit-intent-popup-ssn {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: rgba(33, 33, 33, .8);
  transform: translateY(60%) scale(0);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.exit-intent-popup-ssn.visible {
  transform: translateY(0) scale(1);
}

/* menu responsive css  */

@media (max-width: 1024px) {
  .navicon {
    width: 1.125em;
    height: .125em;
  }

  .menu-icon {
    display: block;
  }

  .navicon::before,
  .navicon::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all .2s ease-out;
    content: '';
    background: #3D4852;
  }

  .navicon::before {
    top: 5px;
  }

  .navicon::after {
    top: -5px;
  }

  .menu-btn:not(:checked)~.menu {
    display: none;
  }

  .menu-btn:checked~.menu {
    display: block;
  }

  .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
  }

  .menu-btn:checked~.menu-icon .navicon::before {
    transform: rotate(-45deg);
  }

  .menu-btn:checked~.menu-icon .navicon::after {
    transform: rotate(45deg);
  }

  .menu-btn:checked~.menu-icon .navicon::before,
  .menu-btn:checked~.menu-icon .navicon::after {
    top: 0;
  }
}

.open-menu {
  color: var(--main-color);
  font-weight: bold;
}

@media (min-width: 2160px) {
  .max-w-7xl {
    max-width: 100% !important;
  }

  .banner-slider {
    max-height: 340px !important;
    object-fit: cover;
  }

  .text_block {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    /* width: 200px; */
  }

  body{
    padding: 0px 15px 0px 15px !important;
  }
}

.owl-thumbnail .owl-thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.owl-thumbnail .owl-thumbs .owl-thumb-item {
  height: 100px;
  width: 100%;
  max-width: 150px;
  background: transparent;
  border: none;
  overflow: hidden;
}

.owl-thumbnail .owl-thumbs .owl-thumb-item img {
  max-width: 100%;
  min-height: 85px;
  max-height: 85px;
  min-width: 85px;
  max-width: 85px;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .owl-thumbnail .owl-thumbs .owl-thumb-item{
    display: none;
  }
}

.zoomable {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  /* box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); */
}

.zoomable__img {
  transform-origin: var(--zoom-pos-x, 0%) var(--zoom-pos-y, 0%);
  transition: transform 0.15s linear;
}

.zoomable--zoomed .zoomable__img {
  cursor: zoom-in;
  transform: scale(var(--zoom, 2));
}