﻿
body.no-scroll {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.back-top {
    color: #000;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 15px;
    gap: 8px;
    cursor: pointer;
}

.back-top-icon {
    width: 20px; 
    height: 20px;
}

.favorite-icon {
    width: 23px;
    height: 27px;
    margin-left: 10px;
    margin-bottom: -8px;
    background-image: url('//media.emailer-images.com/image/upload/v1740593382/FAVORITE-ICON_mdhrih.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    transition: background-image 0.3s ease;
    cursor: pointer;
    position: absolute;
}

    .favorite-icon:hover {
        background-image: url('//media.emailer-images.com/image/upload/v1740593515/FAVORITE-ICON-hover_kwwfps.svg');
    }

    .favorite-icon.selected {
        background-image: url('//media.emailer-images.com/image/upload/v1739542434/Asset_15_mugy1v.svg');
    }

.tooltip-fav {
    position: relative;
    bottom: 0;
    left: 110%;
    background-color: #fff;
    color: #111;
    box-shadow: 2px 2px 2px 2px #888888;
    padding: 5px 8px;
    font-size: 12px;
    border-radius: 2px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.favorite-icon:hover .tooltip-fav {
    opacity: 1;
    visibility: visible;
}

.fav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fav-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    padding:0;
}

.fav-card p {
    background-color: #3f526f;
    color: #fff;
    padding: 10px;
    margin: 0;
    line-height: 20px;
    width: 100%;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

.fav-card {
    position: relative;
    border: 1px solid #ddd;
    color: white;
    padding: 35px 0 0 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    text-align: center;
}

.fav-link {
    width: 100%;
}

.fav-logo {
    width: 100px;
    height: auto;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
    margin: 20px auto;
}

.fav-logo img {
    height: auto;
    max-height: 80px;
}

.select-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.bottom-nav-container {
    position: fixed;
    inset: auto 0 0 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1041;
}


.bottom-nav {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    background: #545454;
    position: fixed;
    z-index: 1041;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    width: 100%;
    border-top: 2px solid #ddd;
}

    .bottom-nav span {
        font-size: 12px;
    }

    .bottom-nav li {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 14px;
    }

ul li a {
    color: #000;
}

.bottom-nav img {
    width: 17px;
    height: 17px;
    margin-top: 5px;
    transition: 0.3s ease;
}



.tab {
    position: relative;
    text-align: center;
    padding: 7px;
}

    .tab .top-line {
        position: absolute;
        top: 0;
        left: 50%;
        width: 45px;
        height: 5px;
        border-radius: 0 0 5px 5px;
        background-color: #fff;
        transform: translateX(-50%);
        display: none; 
    }

    .tab.current .top-line {
        display: block; 
    }

.flex-dir {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-dir span{
    color: #fff;
}

.chat-icon-mbl{
    position: fixed;
    bottom: 70px;
    right: 15px;
    z-index: 9999;
}

.categories-nav {
    z-index: 1040;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
    transition: 0.3s ease;
}

.trending-nav {
    z-index: 1040;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
    transition: 0.3s ease;
}

.favorites-nav {
    z-index: 1040;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
    transition: 0.3s ease;
}

.flex-wrap-category {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-inline: -4px;
    height: 100%;
}

.flex-wrap-trending {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-inline: -4px;
    height: 100%;
}

.scroll-nav-bottom {
    overflow-y: scroll;
    padding: 20px 20px 100px 20px;
    height: 100vh;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.categories-nav.show {
    display: block;
}

.trending-nav.show{
    display: block;
}

.favorites-nav.show {
    display: block;
}

.browse-ctgr {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    color: #000;
}

.pad-5 {
    padding: 5px
}

.catg-hdr {
    padding: 10px 0;
}

.col-icon {
    margin-left: 3px !important;
}

.flex-wrap-category a {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    height: 8vh;
}

.text-center {
    text-align: center;
}

.catg-text {
    text-align: left !important;
    font-size: 15px;
}

.pad-bottom-60 {
    padding-bottom: 20px;
    padding-left:0;
    padding-right:0;
}

.trndg-size {
    width: 110px !important;
    height: 100px !important;
    margin-left: 5px !important;
    padding: 0 !important;
}

.trndg-number{
    padding-right: 10px;
}

    .trndg-number:after {
        content: '';
        position: absolute;
        right: 0;
        top: -30%;
        height: 160%;
        width: 1px;
        background: #b1b1b1;
    }

.trndg-img {
    width: 100%;
    height: 100%;
}

.trndg-height{
    height: 8vh;
}

.catg-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    padding: 2px;
}

.trending-text {
    padding-top: 10px;
}

    .trending-text p {
        font-size: 13px;
        color: #111;
    }

.card-attraction .col-icon, .col-icon{
    justify-content: center;
}
.close-favorites {
    cursor: pointer;
}
@media screen and (min-width: 600px) {
    .bottom-nav-container {
        display: none;
    }

    }

@media screen and (max-width: 600px) {

    .page-header h1 {
        margin-right: 20px;
    }

    .tooltip-fav {
        display:none;
    }
    .browse-ctgr{
        border-bottom:none;
        margin-bottom:0;
    }
    .catg-hdr {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .fav-card p {
        min-height: 53px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fav-logo {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px auto;
        max-height: 80px;
    }
    .fav-container {
        margin-bottom: 20px;
    }
}