a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: white;
    cursor: pointer;
}

body {
    font-family: 'Montserrat', sans-serif;
    /* overflow: hidden;*/
}

.app-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 5;
}

.app-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 6;
    background: #000;
    opacity: .5;
}

.app-bg img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
}

.app-header {
    padding: 15px 45px;
    background: transparent;
    position: relative;
    z-index: 50;
}

    .app-header .logo img {
        width: 65%;
    }

.app-book {
    width: 80%;
    position: relative;
    z-index: 55;
    display: flex;
    padding: 0px 0px;
    border-radius: 4px;
    padding: 0px 0px;
    margin-left: 15px !important;
    box-shadow: 0px 0px 4px #222;
}

    .app-book img {
        width: 100%;
        border-radius: 4px;
    }

.app-holder {
    width: 100%;
    padding: 0px 100px;
    margin-top: 50px;
}

.app-controls {
    width: 18%;
    float: left;
    display: block;
    position: relative;
    z-index: 60;
    margin-right: 2%;
}

.user-box {
    width: 100%;
    display: block;
    padding: 8px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0px 4px #222;
    margin-bottom: 15px;
    position: relative;
}

    .user-box img {
        width: 100%;
    }

.user-controls {
    width: 100%;
    display: block;
    padding: 8px;
    border-radius: 5px;
    background: #ff6700;
    margin-bottom: 15px;
}

    .user-controls a {
        color: #fff;
        font-size: .8em;
        padding: 0px 8px;
        border-right: 1px solid rgb(219, 90, 3);
    }

        .user-controls a:hover {
            color: #6d2f05;
        }

    .user-controls .last {
        border-right: none !important;
    }

    .user-controls .first {
        border-left: 1px solid rgb(219, 90, 3);
    }

.user-box .user-name {
    position: absolute;
    left: 15px;
    bottom: 15px;
    border-radius: 3px;
    background: #007fff;
    color: #fff;
    font-size: .7em;
    padding: 3px 9px;
}

.bottom-controls {
    width: 100%;
    padding: 0px 0px;
    position: fixed;
    z-index: 60;
    top: 100%;
    margin-top: -38px;
}

.control-slide {
    margin-top: -220px;
}

.tab {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 8px 16px;
    display: inline-block;
    font-weight: bold;
    font-size: .9em;
    cursor: pointer;
    color: #fff;
    transition: .2s ease-in all;
    text-decoration: none;
    z-index: 99999;
}

.pulse {
    animation: pulse 1s infinite;
    animation-iteration-count: 5;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        /*box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);*/
        box-shadow: rgba(0, 0, 0, 0.17) 1px 1px 2px 2px;
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}



@media (max-width: 767px) {
    button {
        padding: 2px 4px !important;
    }
}

@media (max-width: 834px) {

    .chat-box .f-img {
        float: unset !important;
        margin: 0px auto !important;
    }

    .chat-box ul li > a {
        text-align: center !important;
    }
  
    .grplabel {
        font-size: 12px !important;
    }

    .profilelink {
        top: 4px !important;
        font-size: 11px !important;
    }

    .accordion-button {
        padding: 0.6rem 0.4rem !important;
    }

        .accordion-button::after {
            width: 1rem !important;
            height: 1rem !important;
            background-size: 1rem !important;
        }

    .add-friend {
        font-size: 12px !important;
    }

    .accordion-body {
        padding: 0.4rem 0.8rem !important;
    }

    .chat-box ul li {
        border-radius: 15px !important;
    }

    .actions {
        top: 0px !important
    }
   
}

@media (max-width: 428px) {
    .badge {
        display: none;
    }

    .accordion-button {
        padding: 4px 1px !important;
    }

    .slider-text h2 {
        font-size: 1em !important;
    }

    .accordion-body {
        padding: 0.1rem 0.2rem !important;
    }

    button {
        padding: 2px 4px !important;
    }
}

@media (min-width: 320px) {

    .tab {
        padding: 8px 3px;
    }
}

@media (min-width: 576px) {
    .tab {
        padding: 8px 6px;
    }
}

@media (min-width: 768px) {
    .tab {
        padding: 8px 9px;
    }
}

@media (min-width: 992px) {
    .tab {
        padding: 8px 16px;
    }
}

@media (min-width: 1200px) {
    .tab {
        padding: 8px 20px;
    }
}

@media (min-width: 1400px) {
    .tab {
        padding: 8px 26px;
    }
}

.usertab {
    background: #007fff;
    color: #fff;
    margin-left: 6px;
    margin-right: 6px;
    display: none;
}

.open-library {
    background: #007fff;
    color: #fff;
}

    .open-library:hover {
        background: #ff6700;
        color: #fff;
    }

    .open-library i {
        padding-right: 6px;
    }

.open-chat {
    background: #29d307;
    color: #fff;
}

    .open-chat:hover {
        background: #ff6700;
        color: #fff;
    }

    .open-chat i {
        padding-right: 6px;
    }

.page-library {
    background: #ecf0f1;
    box-shadow: 0px 0px 12px #000;
    padding: 6px 50px;
    min-height: 209px !important;
    height: 190px;
    overflow: auto;
}

    .page-library a {
        margin-right: 15px;
        display: inline-flex;
    }

        .page-library a img {
            height: 150px;
            border-radius: 4px;
            transition: .2s ease-in all;
            text-decoration: none;
        }

        .page-library a:hover img {
            transform: rotate( 5deg);
            transform-origin: 50% 50%;
            box-shadow: 5px 0px 10px rgb(153 153 153 / 20%);
        }

.close-app {
    width: 46px !important;
    height: 46px !important;
    right: 0px;
    top: 0px;
    position: fixed;
    background: #ff6700;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    padding: 5px 14px;
    border-bottom-left-radius: 4px;
}


    .close-app:hover {
        background: #007fff !important;
    }

.book-box {
    width: 100%;
    position: relative;
    display: block;
    clear: both;
    padding-left: 40px;
}

.book-page-controls {
    display: block;
    padding: 8px;
    border-radius: 5px;
    background: #ff6700;
    margin-bottom: 15px;
    position: absolute;
    width: 20%;
    left: 50%;
    margin-left: -10%;
    bottom: -70px;
}

.user-controls input {
    background: #db5902;
    width: 25px;
    border: none;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    float: left;
    font-size: .8em;
    margin-right: 4px;
}

    .user-controls input:focus {
        outline: none;
    }


.user-controls span {
    padding-left: 2px;
}

.book-numbers {
    font-weight: bold;
    padding: 2px;
    color: #fff;
    font-size: .8em;
    width: fit-content;
    float: left;
    padding-right: 6px
}

.chat-list {
    cursor: pointer;
    width: 250px;
    /*    min-height: 136px;*/
    border-radius: 4px;
    box-shadow: 0px 0px 12px 2px #444;
    position: absolute;
    z-index: 99999;
    background: #fff;
    padding: 15px 15px;
    display: none;
    top: 100%;
    right: 120px;
}



    .chat-list .avatar img {
        width: 80%;
        border-radius: 12px !important;
        height: auto;
        border: 1px solid #ddd;
        margin: 0 auto;
        position: relative;
        display: block;
    }

    .chat-list ul {
        margin: 0 auto;
        padding: 0px;
    }

        .chat-list ul li {
            list-style: none;
        }

            .chat-list ul li a {
                display: block;
                color: #000;
                border-radius: 15px 8px 8px 15px;
                margin-bottom: 2px;
                font-size: .8em;
                padding: 8px 8px 8px 0px;
                text-decoration: none;
            }

                .chat-list ul li a span {
                    display: block;
                    text-transform: capitalize;
                    color:black;
                }

    .chat-list .f-title {
        font-size: .7em;
        display: none;
    }

    .chat-list .f-img {
        width: 32px;
        height: 32px;
        display: block;
        float: left;
        margin-right: 7px;
        margin-top: -7px;
    }

        .chat-list .f-img img {
            width: 100%;
            height: 32px;
            object-fit: cover;
            object-position: center center;
            border: 4px solid #999;
            border-radius: 100%;
            display: block;
            background: #ddd;
            display: block;
            float: left;
        }

    .chat-list ul li a:hover {
        background: #ecf0f1;
    }

.buddies .chat-list ul li a:hover {
    background: #007fff;
    color: #fff;
}

.online img {
    border: 4px solid #29d307 !important;
}

.online span {
    color: #59ff37 !important;
}

.accept_btn {
    background-color: #24c304 !important;
}

/*.add-friend {
    background: #007fff !important;
    color: #fff !important;
    font-weight: bold;
    margin-top: 10px !important;
    text-align: center;
}

    .add-friend:hover {
        background: #ff6700 !important;
    }

    .add-friend i {
        padding-right: 6px;
    }*/

.chat-title {
    font-weight: bold;
    font-size: .8em;
    margin-bottom: 10px;
    color: #222;
    cursor: pointer;
}

.chat-close {
    position: absolute;
    right: -8px;
    top: -8px;
    border-radius: 50%;
    background: #007fff;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

    .chat-close:hover {
        background: #ff6700;
        color: #fff;
    }

.cam-options {
    position: absolute;
    right: 15px;
    top: 15px;
}

    .cam-options a {
        display: block;
        height: 24px;
        width: 24px;
        color: #fff;
        line-height: 24px;
        text-align: center;
        margin-bottom: 3px;
        border-radius: 4px;
        background: #0080ffb7;
        transition: .2s ease-in all;
    }

        .cam-options a:hover {
            background: #ff6700;
        }

        .cam-options a i {
            font-size: .7em;
        }



.videost {
    height: 200px;
    width: 263px;
    z-index: 99999;
    display: block;
    padding: 1px;
    /* padding: 8px;*/
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0px 4px #222;
    /*    overflow: hidden;*/
    position: relative;
    background-color: white;
    box-shadow: 0px 0px 4px #222;
    border-radius: 5px;
    /*  border: 1px solid white;*/
}

.videost-content {
    border-radius: 6px;
    overflow: hidden !important;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    bottom: 0px;
    left: 0px;
    top: 0px;
    right: 0px;
}

.videost .controls {
    position: absolute;
    right: 8px;
    top: 26px;
}

    /* .videost video {
        position: absolute;
        width: calc(100% - 30px) !important;
    }*/

    .videost .controls a {
        font-size: .7em;
        display: block;
        height: 24px;
        width: 24px;
        color: #fff;
        line-height: 24px;
        text-align: center;
        margin-bottom: 3px;
        border-radius: 4px;
        background: #0080ffb7;
        transition: .2s ease-in all;
    }

        .videost .controls a:hover {
            background: #ff6701 !important;
        }



.videost span.username {
    position: absolute;
    left: 10px;
    bottom: 10px;
    border-radius: 3px;
    background: #007fff;
    color: #fff;
    font-size: .7em;
    padding: 3px 9px;
}

.videost span.framerate {
    position: absolute;
    left: 5px;
    color: rgb(0, 88, 255);
    font-size: 0.7em;
    display: none;
}


.cameraminusarea {
    position: absolute;
    border: 1px solid red;
    width: 100%;
    text-align: center;
    margin-top: 12px;
    z-index: -1 !important;
}


#friendemail {
    margin-bottom: 10px;
}


div#reader {
    position: fixed;
    overflow: hidden;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 99997;
    background: rgb(207,231,250); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(207,231,250,1) 0%, rgba(99,147,193,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(207,231,250,1) 0%,rgba(99,147,193,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(207,231,250,1) 0%,rgba(99,147,193,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfe7fa', endColorstr='#6393c1',GradientType=0 );
    opacity: 0;
    transform: scale(0, 0);
    transition-property: opacity, transform;
    transition-duration: 0.5s;
    background-image: url(/images/register-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

    div#reader.opened {
        display: block;
        transform: scale(1, 1);
        opacity: 1;
    }


.bookcoverimage {
    width: 100% !important;
    height: 250px !important;
    border: none !important;
    border-radius: unset !important;
    margin: 0 auto !important;
    position: relative !important;
    display: block !important;
    object-fit: scale-down !important;
    object-position: top center !important;
}

.zIndexTop {
    z-index: 9999999 !important;
}

.resizehelper {
    z-index: 99999;
    background-image: url(/images/resizehelper.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 16px !important;
    height: 16px !important;
    right: 1px !important;
    bottom: 1px !important;
}

.bookghost {
    position: absolute;
    height: 100%;
    width: 100%;
    display: none;
    background-color: white;
    opacity: 0;
    z-index: 99998;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
}

li.bookuserlist.online:hover > span {
    color: #fff !important;
}

li.bookuserlist.online span {
    color: #1a9f00 !important;
    text-transform: capitalize;
}
.cancelinvite {
    float: right;
    padding: 3px 3px 1px 3px;
    border: 1px white solid;
    margin-right: 10px;
    margin-top: 0px;
    border-radius: 4px;
}

.invitationdiv {
  z-index:999999;
}

