/*========================================
            Search SECTION
*========================================*/
.menu-details{
    width: auto;
    margin-top: 10px;
    background: #fff;
    position: absolute;
    left: 0;
    padding-left: 0;
    padding-right: 0;
    -webkit-box-shadow: 6px 6px 16px rgb(0 0 0 / 16%);
    box-shadow: 6px 6px 16px rgb(0 0 0 / 16%);
    z-index: 1024;
    border: 1px solid #cccccc;
}
#megaMenu .menu-details {
    width: 40%;
    left: 40%;
    border-radius: 10px;
}
#search-megaMenu ul.nav-tabs li a {
    border-bottom: 2px solid #ccc;
    padding: 13px 10px;
    font-weight: 800;
    border-width: 0 0 2px 0;
    background-color: #fff;
    color: #04091e;
    font-size: 13px;
    margin-right: 0px !important;
}
#search-megaMenu ul.nav-tabs li a.show {
    /* border-bottom: 2px solid #000; */
    color: #fa9007;
    border-bottom: 2px solid #fa9007;
}
#megaMenu .pd-10 {
    padding: 10px;
}
.menu-innerItem:before {
    content: '';
    position: absolute;
    border-bottom: 15px solid #ccc;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    left: 50%;
    top: -16px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.menu-innerItem:after {
    content: '';
    position: absolute;
    border-bottom: 15px solid #fff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    left: 50%;
    top: -15px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.search-result-col {
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
}
.icon-bg {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    box-shadow: 0px 1px 16px rgb(0 0 0 / 20%);
    overflow: hidden;
}
.icon-bg img {
    height: 100%;
    /*width: 100%;*/
    border-radius: 50%;
}
.search-result-col .name-col {
    flex: 1;
    padding-left: 15px;
}
.font-15 {
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
}
.search-result {
    /*margin-bottom: 10px;*/
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-right: 1px solid rgba(0,0,0,0.1);
}
#search-megaMenu .tab-content {
    text-align: left;
    height: auto;
    overflow-x: auto;
    max-height: 300px;
}
#search-megaMenu ::-webkit-scrollbar, #scDescription ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
#search-megaMenu ::-webkit-scrollbar-thumb, #scDescription ::-webkit-scrollbar-thumb {
     background: var(--orange);
    /*background: rgba(0, 0, 0, 0.3);*/
    border-radius: 5px;
}
#search-megaMenu ::-webkit-scrollbar-track, #scDescription ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}


/*===================================================
                    Responsive View
===================================================*/
/*991px*/
@media (max-width: 991px) {
    #megaMenu .menu-details {
        width: 97%;
        left: 1.5%;
        border-radius: 10px;
    }
}

/*575px*/
@media (max-width: 575px) {
    #megaMenu .menu-details{
        width: 95%;
        left: 2.5%;
    }
    .icon-bg {
        width: 60px;
        height: 60px;
    }
    .font-15 {
        font-size: 16px;
    }

}