.popper-overlay {
    display: none;
    z-index: 10;
}

.popper-overlay[x-placement="bottom"], .popper-overlay[x-placement="top"] {
    display: block;
}

.popper-popup-wrapper {
    background: white;
    padding: 0px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    border-radius: 5px !important;
    overflow: hidden;
}

.popper-overlay[x-placement="bottom"] .popper-arrow.top {
    border-bottom: 10px solid #243d72;
    visibility: visible;
}

.popper-overlay[x-placement="top"] .popper-arrow.bottom {
    border-top: 10px solid #fff;
    visibility: visible;
}

.popper-arrow {
    margin: auto;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    visibility: hidden;
}

.popper-popup-header {
    min-height: 85px;
    min-width: 330px;
    background: #243d73;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 5px solid white;
}

.popper-popup-avatar {
    height: 100px;
    width: 100px;
    background: #eaeaea;
    border-radius: 50% !important;
    margin-bottom: -70px;
    z-index: 10;
    border: 5px solid white;
    background-size: contain;
    background-repeat: no-repeat;
}

.popper-popup-body {
    padding: 10px 0px 20px 0px;
    margin-top: 50px;
}

.popper-popup-body-element {
    display: flex;
    align-items: center;
    margin: 0px 10px;
    padding: 2px 0px;
    border-bottom: 1px solid #e4e4e4;
}

.popper-popup-body-element:first-child {
    border-top: 1px solid #e4e4e4;
}

.popper-popup-body-element:nth-last-of-type(2) {
    border-bottom: 0px;
}

span.ppbe-left {
    width: 35%;
    text-align: right;
    margin-right: 10px;
    overflow: hidden;
    /* white-space:  nowrap; */
    text-overflow: ellipsis;
    color: #7d7d7d;
}

span.ppbe-right {
    width: 65%;
    word-break: break-word;
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
}

span.ppbe-full {
    padding-top: 20px;
    width: 100%;
}

span.ppbe-full .btn {
    min-width: calc(50% - 10px);
    border-radius: 3px !important;
    border-color: transparent;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.35);
}

.link-user-id {
    cursor: pointer;
}

.loader {
    position: relative;
    margin: 0 auto;
    width: 25px;
}

.loader.tiny {
    position: relative;
    margin: 0 auto;
    width: 10px;
}

.loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}


.popper-popup-loading-cover-container {
    position: relative;
}

.popper-popup-loading-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    z-index: 999999999999;
    grid-gap: 10px;
    background: black;
}


@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes color {
    100%, 0% {
        stroke: #ffffff;
    }

    40% {
        stroke: #ffffff;
    }

    66% {
        stroke: #ffffff;
    }

    80%, 90% {
        stroke: #ffffff;
    }
}