/*tooltip */
#tooltip {
    position: fixed;
    z-index: 600;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4em 1em;
    border-radius: 0.4em;
    box-shadow: 0 0rem 0.2rem 0 rgba(0, 0, 0, 0.14);
    bottom: -100%;
    right: -100%;
    max-width: 300px;
    /*width: 300px;*/
    max-height: 250px;
    width: fit-content;
    height: fit-content;
}

#tooltipContent p {
    margin: 0;
}

#tooltip .fw-bold{
    font-weight: 500 !important;
}
#tooltip .badge{
    color: #08519c;
    border: 1px solid #08519c;
}
/*popup*/
#popup {
    background: #ffffff;
    position: absolute;
    top: 0px;
    right: -120vw;
    z-index: 90;
    transition: all 0.5s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /*box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 8px 17px -3px, rgba(0, 0, 0, 0.3) 0px 5px 10px -5px;*/
    /*-webkit-box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 8px 17px -3px, rgba(0, 0, 0, 0.3) 0px 5px 10px -5px;*/
    /*z-index: 600;*/
    width: 25em;
    padding-right: 3px;

}
#popup .icon{
    width: 1.5em;
    height: 1.5em;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    border-radius: 100%;
}
#popup.open {
    right: 0px;

}
#popup .clip{
    transform: translate(-28px,36px);
    z-index: 20;
}
#popup.showdetail {
    background: #fff;
}

#popClose,
#popReturn {
    position: absolute;
    top: 0.5em;
    right: 1.5rem;
    background: #fff;
    /*border: 1px solid #51596f;*/
    border: none;
    cursor: pointer;
    /*box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;*/
    border-radius: 100%;
    width: 2em;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    transition: all 0.2s;
    z-index: 1;
}

#popReturn {
    display: none;
}

#popup.showdetail #popReturn {
    display: flex;
}

#popup.showdetail #popClose {
    display: none;
}

#popClose:hover,
#popReturn:hover {
    /*transform: rotate(15deg);*/
    /*box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.3),
        inset 3px 3px 5px rgba(0, 0, 0, 0.1);*/
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}

#popContent {
    width: 100%;
    z-index: 0;
    /*height: calc(100vh - 20px);*/
    height: fit-content;
    overflow-y: auto;
    overflow-x: hidden;
}
#popContent::-webkit-scrollbar {
    width: 4px;
}

#popContent::-webkit-scrollbar-track {
    background: rgb(158, 232, 255, 0);
    -webkit-box-shadow: inset 0 0 6px rgb(158, 232, 255, 0);
}

#popContent::-webkit-scrollbar-thumb {
    background: #eee;
    /*-webkit-box-shadow: inset 0 0 6px rgb(255, 255, 255, 0.6);*/
}

#popContent::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.4);
}
#popContent p{
    margin: 0.2em 0;
}
#popContent .head{
    background: #fff;
}
#popContent .badge{
    background: #f0f2f4;
}
.rightArrow{
    height: 1em;
    width: 2.5em;
    background:#c0c2ce;
    clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
    flex-shrink: 0;
}
/*network popup*/
