/* alpine css */
[x-cloak] {
    display: none !important;
}


html {
  scroll-behavior: smooth;
   scroll-padding-top: 80px;
}

*:not(html)::-webkit-scrollbar {
    width: 8px;
}

*:not(html)::-webkit-scrollbar-track {
    background: transparent;
}

*:not(html)::-webkit-scrollbar-thumb {
    background-color: #65A54E;
    border-radius: 6px;
}

/* Firefox */

*:not(html) {
    scrollbar-width: thin;
    scrollbar-color: #65A54E transparent;
}


.container {
    max-width: calc(1280px + 3rem);
}

.pharmacy_service {
    background-image: url('../../images/pharmacy-service.png');
    background-repeat: no-repeat;
}

.popup-seperator {
    left: calc(25% + 80px);
    height: calc(100% - 160px);
}

.mobile-menu {
      transform: translateX(-100%);
       transition: transform 0.5s ease-in-out;
}
.mobile-menu.open {
    transform: translateX(0);
}

.qr-code img {
    padding: 8px;
    border-radius: 12px;
}

.leaflet-tooltip{
    color: white !important;
    opacity: 1 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    left: 1px !important;
    top: -1px !important;
}
@media (min-width: 1320px) {
    .teams .swiper-wrapper .swiper-slide.swiper-slide-next {
        transform: translateY(70px);
        transition: 0.5s ease;
    }

    .teams .swiper-wrapper .swiper-slide.swiper-slide-next+.swiper-slide {
        transform: translateY(140px);
        transition: 0.5s ease;
    }
}

@media (max-width: 1320px) {
    .teams .swiper-wrapper .swiper-slide {
        display: flex;
        justify-content: center;
    }
}