/*
*
* Element styles for:
* Exit popup, Sticky top and Sticky bottom, All slide in's
*
*/

/* LOADING ICON */


/* POPUP AND EXIT POPUP STYLING */ 
.agora_live_content_exit_popup_overlay, .agora_live_content_popup_overlay {
    display: none;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255 255 255 / 80%);
    z-index: 999;
}
.agora_live_content_exit_popup,.agora_live_content_popup {
    overflow: hidden;
    position: fixed;
    z-index: 9991;
    background: #fff;
    width: 800px;
    max-width: 100%;
    height: 0px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    border: 1px solid #000;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 30%);
}
.agora_live_content_exit_popup_active,.agora_live_content_popup_active {
    height: calc(100vh - 50%);
    padding: 50px;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 1s;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}
#agora_live_content_exit_popup_close,#agora_live_content_popup_close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 15px;
    border: 1px solid #000;
    cursor: pointer;
}

/* STICKY TOP STYLING */
#agora_live_content_sticky_top {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    padding: 7px;
    width: 100%;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #000;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 30%);
    text-align: center;
}
#agora_live_content_sticky_top_close {
    position: absolute;
    right: 0;
    padding: 5px;
    cursor: pointer;
}

/* STICKY BOTTOM STYLING */
#agora_live_content_sticky_bottom {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 7px;
    width: 100%;
    z-index: 999;
    background: #fff;
    border-top: 1px solid #000;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 30%);
    text-align: center;
}
#agora_live_content_sticky_bottom_close {
    position: absolute;
    right: 0;
    padding: 5px;
    cursor: pointer;
}

/* SLIDE IN FROM LEFT STYLING */
.agora_live_content_slide_in_left {
    display: none;
    position: fixed;
    overflow: hidden;
    background: #fff;
    z-index: 999;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 1px solid #000;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 30%);
    height: 300px;
    word-wrap: break-word;
}
.agora_live_content_slide_in_left_active {
    padding: 7px;
    width: 400px;
    transition: 1s;
}
#agora_live_content_slide_in_left_close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
    cursor: pointer;
}

/* SLIDE IN FROM RIGHT STYLING */
.agora_live_content_slide_in_right {
    display: none;
    position: fixed;
    overflow: hidden;
    background: #fff;
    z-index: 999;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 1px solid #000;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 30%);
    height: 300px;
    word-wrap: break-word;
}
.agora_live_content_slide_in_right_active {
    padding: 7px;
    width: 400px;
    transition: 1s;
}
#agora_live_content_slide_in_right_close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
    cursor: pointer;
}

/* SLIDE IN BOTTOM LEFT STYLING */
.agora_live_content_slide_in_bottom_left {
    display: none;
    width: 300px;
    position: fixed;
    overflow: hidden;
    background: #fff;
    z-index: 999;
    bottom: 0;
    left: 50px;
    border: 1px solid #000;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 30%);
    word-wrap: break-word;
}
.agora_live_content_slide_in_bottom_left_active {
    padding: 7px;
    height: 300px;
    transition: 1s;
}
#agora_live_content_slide_in_bottom_left_close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
    cursor: pointer;
}

/* SLIDE IN BOTTOM RIGHT STYLING */
.agora_live_content_slide_in_bottom_right {
    display: none;
    width: 300px;
    position: fixed;
    overflow: hidden;
    background: #fff;
    z-index: 999;
    bottom: 0;
    right: 50px;
    border: 1px solid #000;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 30%);
    word-wrap: break-word;
}
.agora_live_content_slide_in_bottom_right_active {
    padding: 7px;
    height: 300px;
    transition: 1s;
}
#agora_live_content_slide_in_bottom_right_close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
    cursor: pointer;
}
