@charset "utf-8";
/* CSS Document */

div.lorPopupOuter {

    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: transparent;
    z-index: 1000000;

}

div.lorPopupOuter div.lorPopupInner {

    background-color: var(--lor-color);

    margin-top: calc(50vh - 150px);
    margin-left: calc(50% - 250px);
    height: 300px;
    width: 500px;

    position: relative;
    box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 1)
}

@media(max-width:600px) {

    div.lorPopupOuter div.lorPopupInner {

        box-shadow: none;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        height: 100%;
        width: 100%;
        margin: 0;

    }

}

div.lorPopupOuter div.lorPopupInner div.lorPopupTitle {

    padding: 15px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    min-height: 50px !important;
    height: 50px;

    background-color: white !important;
    color: var(--lor-color);
    text-overflow: ellipsis;
    font-weight: bold;

}

div.lorPopupOuter div.lorPopupInner div.lorPopupContent {

    padding: 15px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 56px;
    top: 50px;

    color: white !important;
}

div.lorPopupOuter div.lorPopupInner div.lorPopupButtons {

    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    height: 56px;
}

div.lorPopupOuter div.lorPopupInner div.lorPopupButtons ul {
    margin: 0 10px 10px 10px;
    list-style: none;
    float: right;
}

div.lorPopupOuter div.lorPopupInner div.lorPopupButtons ul li {
    display: inline-block;
    background-color: white;
    margin: 0 0 0 5px;
    height: 46px;
    white-space: nowrap;
}

div.lorPopupOuter div.lorPopupInner div.lorPopupButtons ul li:hover {
    background-color: var(--lor-color-dark);
    color: white !important;
    cursor: pointer;
}
div.lorPopupOuter div.lorPopupInner div.lorPopupButtons ul li:hover i {
    color:white !important;
}

div.lorPopupOuter div.lorPopupInner div.lorPopupButtons ul li div {
    display: inline-block;
    padding: 10px;
}

div.lorPopupOuter div.lorPopupInner div.lorPopupButtons ul li div + div {
    padding-left: 0;
}

div.lorPopupOuter div.lorPopupInner div.lorPopupButtons ul li div i.green {
    color: green;
}

div.lorPopupOuter div.lorPopupInner div.lorPopupButtons ul li div i.red {
    color: red;
}

div.lorPopupOuter div.lorPopupInner div.lorPopupContent div.lorPopupContentScroller {
    overflow-x: hidden;
    overflow-y: scroll;
}

div.lorPopupOuter div.lorPopupInner div.lorPopupTitle div.lorPopupCloseInner {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--lor-color);
    color: white;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 29px;
}

div.lorPopupOuter div.lorPopupInner div.lorPopupTitle div.lorPopupCloseInner:hover {
    background-color: var(--lor-color-dark);
    cursor: pointer;
}