.currency-box {
    margin-left: 20px;
}

.currency-box button {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 0px 10px;
    font-size: 15px;
    color: #fff;
}

.pop-up-msg-container {
    position: fixed;
    z-index: 101;
    bottom: 50px;
    right: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.150);
    width: 300px;
    transition: .3s;
}


.pop-up-msg-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-content {
    padding-left: 10px;
    line-height: 20px;
    font-size: 15px;
}

.pop-close {
    position: absolute;
    z-index: 10;
    right: 10px;
    top: 5px;
    font-size: 14px;
}

.pop-up-msg-container.hide {
    bottom: -100%;
}

.sidebar-widget-wrapper {
    max-height: 80vh;
    overflow: auto;
}

.sidebar-widget-wrapper::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #eee;
}

.sidebar-widget-wrapper::-webkit-scrollbar-thumb {
    width: 8px;
    height: 8px;
    background-color: #0198B0;
    border-radius: 10px;
}

.trip-navigation {
    list-style: none;
    padding: 0;

}

.trip-navigation li {
    padding: 0 !important;
    overflow: hidden;
}

.trip-navigation li .trip-nav-btn {
    width: 100%;
    height: 56px;
    padding: 25px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    color: var(--bd-heading);
    background-color: var(--bd-flash-white);
    border-radius: 8px;
    font-weight: 600;
    /* transition: all 0.3s ease-in-out; */
    margin-bottom: 10px;
    border: none;
}


.trip-navigation li .trip-nav-btn.active {
    background-color: var(--bd-primary);
    color: var(--bd-white);

}

.trip-navigation li .trip-nav-btn:hover {
    border: none;
}

.mobile-trip-nav {
    position: sticky;
    top: 0;
    z-index: 12;
    width: 100%;
    background-color: #fff;
    padding-top: 63px;
    height: 100vh;
}

.mobile-trip-nav-active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFAB49;
    padding: 15px 20px;
}

.mobile-trip-nav-list {
    background-color: #fff;

}


.mobile-trip-nav-list ul {
    list-style: none;
    padding: 0;
    padding: 0 10px;
    max-height: 77vh;
    overflow: auto;
}

.mobile-trip-nav-list ul li button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    background-color: #eee;
    margin: 5px 0;
    border-radius: 10px;
}

.mobile-trip-nav-list.hide {
    display: none;
}

.mobile-trip-nav.height_reset {
    height: auto;
}


.user-account a {
    font-size: 40px;
    color: #c0c0c0;
}

.translate {
    position: fixed;
    bottom: 0px;
    left: 0;
    z-index: 10;
    padding: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.logo-header{
     height: 90px;
}

@media screen and (max-width:600px) {
    .logo-header{
         height: 70px;
    }
}