/* CSS for Restaurant Directory */
body .content-region {
    overflow: hidden;
    /* height: 100vh; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: unset !important;
}

.pdf-swiper {
    /* margin-top: 32px; */
    overflow: visible !important;
}

.pdf-swiper .swiper-slide canvas {
    max-height: calc(100vh - 40px);
    max-width: 96vw;
    box-shadow: 0px 0px 12px 0px #62626226;
}

.pdf-swiper .swiper-slide {
    width: fit-content;
    overflow: visible !important;
    justify-content: center;
    display: flex;
    justify-content: center;
    filter: brightness(.8);
    transition: all .3s;
}

.pdf-swiper .swiper-slide-active {
    filter: brightness(1);
}

.pdf-swiper .swiper-slide-shadow {
    display: none;
}

.scroll-wrapper .swiper-slide {
    margin-bottom: 20px;
    /* box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, .1);
}

.scroll-wrapper canvas {
    max-width: 100%;
}


/* Loading Screen */
.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    opacity: 1;
}

.loader.loaded {
    opacity: 0;
}

/* Menu Btn */
.menu-bar {
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all .3s;
    margin-left: auto;
}

.offcanvas.show+.menu-btn .menu-bar:first-child {
    transform: rotate(-45deg) translate(-5px, 2px);
    width: 125%;
}

.offcanvas.show+.menu-btn .menu-bar:nth-child(2) {
    width: 0px;
}

.offcanvas.show+.menu-btn .menu-bar:last-child {
    transform: rotate(45deg) translate(-5px, -2px);
    width: 125%;
}

/* CTC */
#copied-indicator,
#link-indicator {
    opacity: 0;
}

.copied #link-indicator,
.copied #copied-indicator {
    opacity: 100%;
}

.copied #wifi-container {
    background-color: #E5E7EB;
}

/* PDF Card Swiper Pagination and Nav */
.pdf-swiper .swiper-button-next,
.pdf-swiper .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
    /* border-radius: 50%; */
    background-color: #000;
    cursor: pointer;
}

.pdf-swiper .swiper-button-next {
    right: 0 !important;
}

.pdf-swiper .swiper-button-prev {
    left: 0 !important;
}

.pdf-swiper .swiper-button-next:after {
    content: "" !important;
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23ffffff'%3E%3Cpath d='M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z'/%3E%3C/svg%3E");
}

.pdf-swiper .swiper-button-prev:after {
    content: "" !important;
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23ffffff'%3E%3Cpath d='M560-240 320-480l240-240 56 56-184 184 184 184-56 56Z'/%3E%3C/svg%3E");
}

.pdf-swiper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    transition: all .3s;
    border-radius: 100px;
    box-shadow: 0px 0px 12px 0px #62626226;
}

.pdf-swiper .swiper-pagination-bullet-active {
    width: 24px;
}