:root {
    --primary-color: #0096ff;
    --primary-color-light: #e6f3ff;
    --text-color: #ccc;
    --bg-color: #f0f0f7;
    --body-bg-color: #f0f0f7;
    --border-color: #ccc;
}

body {
    height: 100vh;
    overflow: hidden;
}

.main {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.header {
    height: 56px;
    display: flex;
    align-items: center;
    z-index: 7;
    padding: 14px 15px 0;
}

.contentMain {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    padding: 14px 7px 14px 7px;
    max-width: 100vw;
}

.bottomPanel {
    display: flex;
    align-items: center;
    padding: 0 14px 14px 14px;
    z-index: 2;
    position: relative;
}

.light .bottomPanel,
.light .header,
.light .contentMain {
    background-color: #f0f0f7;
}

.aside_tabs {
    flex: 0 0 330px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0px 15px 0px 0px;
}

.aside_tabs .aside_tabs_inner {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 15px 2px 0 15px;
}

.aside_tabs_dragger {
    position: absolute;
    top: 10px;
    right: 3px;
    width: 9px;
    height: calc(100% - 20px);
    cursor: col-resize;
    opacity: 0;
}

.aside_tabs_dragger:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    left: calc(50% - 1px);
    border-right: 2px dashed #0096ff;
}

.aside_tabs_dragger:hover {
    opacity: 1;
}

.light .aside_tabs .aside_tabs_inner {
    background-color: #fff;
}

.light .hide_show_tab_block {
    border-color: #f0f0f7;
    background-color: #c2c2d1;
}

.hide_show_tab_block {
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
    width: 30px;
    height: 30px;
    border-width: 2px;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-property: visibility;
    border-radius: 50%;
    z-index: 3;
}

.light .hide_show_fast_access_bar {
    border-color: #f0f0f7;
    background-color: #c2c2d1;
}

.hide_show_fast_access_bar {
    position: absolute;
    left: 25%;
    bottom: 0;
    width: 30px;
    height: 30px;
    border-width: 2px;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-property: visibility;
    border-radius: 50%;
    z-index: 2;
}

.light .content {
    background-color: #dcdce5;
}

.content {
    flex: 1;
    position: relative;
    margin: 0 7px 0 0;
    border-radius: 15px;
    overflow: hidden;
}

.sidebar {
    width: 250px;
    transition: width 0.3s;
}

.collapsed-sidebar {
    width: 0;
    overflow: hidden;
}

.bottom-bar {
    height: 200px;
    transition: height 0.3s;
}

.collapsed-bottom-bar {
    height: 0;
    overflow: hidden;
}

.main-content {
    transition: all 0.3s;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background: #222;
}

.user-box {
    background: #444;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.layout-buttons {
    text-align: center;
    margin-top: 10px;
}

.tabs_header {
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    position: relative;
    margin-right: 13px;
}

.light .aside_tabs .tabs_header {
    border-bottom-color: #efeff7;
    border-right-color: #efeff7;
}

.aside_tabs .tabs_header .tabs_header_item {
    height: 50px;
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 300;
}

.empty_btn {
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0);
}

.aside_tabs .tabs_body {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.aside_tabs .tabs_header.tabs_footer {
    border-top-width: 1px;
    border-top-style: solid;
    border-bottom: none;
}

.light .aside_tabs .tabs_header.tabs_footer {
    border-top-color: #efeff7;
}

.aside_tabs .tabs_header.tabs_footer .tabs_header_item {
    flex-direction: row;
    justify-content: center;
}

.tabbodyContent {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tabbodyContent_inner {
    overflow-y: scroll;
    padding-right: 13px;
}

.custScrollStyle::-webkit-scrollbar {
    width: 4px;
    height: 4px
}

.custScrollStyle::-webkit-scrollbar-thumb {
    border-radius: 1.5px;
    border: none
}

.light .custScrollStyle::-webkit-scrollbar-track {
    background-color: hsla(0, 0%, 100%, .015)
}

.light .custScrollStyle::-webkit-scrollbar {
    background-color: hsla(0, 0%, 100%, .015)
}

.light .custScrollStyle::-webkit-scrollbar-thumb {
    background-color: hsla(0, 0%, 80%, .9)
}

.light .aside_tabs .tabs_header .tabs_header_item.active i,
.light .aside_tabs .tabs_header .tabs_header_item.active {
    color: #0096ff
}

.tabbodyContent.active {
    display: block;
}

.tabbodyContent {
    display: none;
}

.light .aside_tabs .tabs_header .tabs_header_item.active {
    border-bottom: 1px solid;
}

.light .aside_tabs .tabs_header.tabs_footer .tabs_header_item.active {
    border-top: 1px solid;
    border-bottom: 0;
}

.btmBtnGroup {
    flex: 1;
    min-width: 140px;
    position: relative;
    display: flex;
    height: 112px;
    margin-left: 12px;
}

.btmBtnGroup_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btnLight {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.light .btnLight {
    background-color: #e5e5ee;
}

.light .btnLight:hover {
    background-color: #e0e0e0;
}

.empty_btn {
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0);
}

.userAccess_item {
    position: relative;
    height: 112px;
    display: flex;
    z-index: 1;
}

.userAccess_item .userAccess_item_inner {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    width: 150px;
    height: 100%;
    border-width: 1px;
    border-style: solid;
    z-index: 2;
}

.light .userAccess_item .userAccess_item_inner {
    border-color: #d5d5e5;
    background-color: #efeff7;
}

.userAccess_item .userAccess_item_aside {
    height: 100%;
    flex: 0 0 50px;
    width: 50px;
    display: flex;
    flex-direction: column;
    border-width: 1px;
    border-style: solid;
    padding-left: 12px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-left: -12px;
}

.light .userAccess_item .userAccess_item_aside {
    background-color: #efeff7;
    border-color: #d5d5e5;
}

.userAccess_item .userAccess_item_inner .camera_source_wr {
    flex: 1;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.light .userAccess_item .userAccess_item_inner .camera_source_wr {
    background-color: #dedee5;
}

.userAccess_item .userAccess_item_inner .camera_source_wr:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.userAccess_item .userAccess_item_inner .sound_n_avatar {
    width: 54px;
    height: 54px;
    z-index: 1;
    position: absolute;
    top: calc(50% - 27px);
    left: calc(50% - 27px);
}

.light .userAccess_item .userAccess_item_inner .sound_n_avatar .sound_n_avatar_inner {
    background-color: #f7f7f7;
}

.userAccess_item .userAccess_item_inner .sound_n_avatar .sound_n_avatar_inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.userAccess_item .add_remove {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    letter-spacing: -0.1px;
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 10px;
    padding: 0 5px;
    z-index: 2;
    cursor: pointer;
    background-color: #0096ff;
    opacity: 0;
}

.btnOption {
    position: absolute;
    left: 5px;
    right: 5px;
    top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    opacity: 0;
}

.userAccess_item:hover .btnOption,
.userAccess_item:hover .add_remove {
    opacity: 1;
}

.userAccess_item_name {
    flex: 0 0 26px;
    height: 26px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 6px;
}

.light .userAccess_item_name span {
    color: #676778;
}

.userAccess_item_name span {
    font-weight: 500;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 18px;
    flex: 1;
    overflow: hidden;
}

.userAccess_item .userAccess_item_aside span {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
}

.userAccess_item .userAccess_item_inner.on_scene:before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 10px;
    border-width: 3px;
    border-style: solid;
    border-color: #0096ff;
    box-sizing: border-box;
    z-index: 1;
    pointer-events: none;
}

.on_scene .userAccess_item_name {
    background-color: #0096ff;
}

.light .on_scene .userAccess_item_name span {
    color: #fff;
}

.content_inner {
    display: flex;
    height: 100%;
    overflow: hidden;
}

.light .content_inner {
    background-color: #dcdce5;
}

.mainScreen_ui {
    padding: 16px 24px 90px 24px;
}

.mainScreen {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    flex: 50% 0 0;
    padding: 16px 24px 90px 24px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

#scalelayers.landscape,
#scalelive.landscape {
    width: 1920px;
    height: 1080px;
}

.fast_changes_bar {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform-origin: top center;
    display: flex;
    align-items: center;
    transform: translateX(-50%) translateY(14px);
    z-index: 4;
}

.presets_overlay {
    position: relative;
    z-index: 2;
    pointer-events: none;
    background: transparent;
}

.mainScreenView {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
}

.mainScreen_bottomBar {
    position: absolute;
    left: 15px;
    width: calc(100% - 30px);
    bottom: 15px;
    z-index: 6;
    display: flex;
    align-items: center;
}

.mainScreen_bottomBar_inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.change_layout_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

}

.fast_changes_bar_btn {
    width: 42px;
    cursor: pointer;
    border-radius: 10px;
    color: #818181;
}

.fast_changes_bar_btn.active {
    color: #0096ff;
}

.presets_overlay_item {
    position: absolute;
    background: #222;
}

.collapseLink {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 8px 0;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    gap: 8px;
}

.light .collapseLink,
.light .collapseContent {
    color: #333;
}

.collapseLink i {
    font-size: 12px;
}

.collapseLink.collapsed i {
    transform: rotate(180deg);
}

.collapseContent {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.btnIcon30 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.thumbnailList {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.thumbnailList li {
    flex: 0 0 calc(33.3333% - 10px);
    min-width: 86px;
    min-height: 104px;
    aspect-ratio: 86 / 104;
    padding: 2px;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0);
}

.light .thumbnailList li.active {
    border-color: #0096ff;
    background-color: #e5f4ff;
}

.light .thumbnailList li {
    background-color: #f0f0f7;
}

.thumbnailList li img {
    display: block;
    width: 100%;
    height: calc(100% - 25px);
    border-radius: 8px;
    object-fit: contain;
}

.thumbnailList li .filename {
    display: block;
    font-weight: 400;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 6px;
    pointer-events: none;
}

.light .thumbnailList li .filename {
    color: #42425a;
}

.thumbnailList li .click_catcher {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    padding-bottom: 25px;
}

.thumbnailList li .enable_disable_indicator.hide {
    background-color: rgba(66, 66, 92, .8);
}

.thumbnailList li .enable_disable_indicator {
    width: 60px;
    height: 36px;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.light .thumbnailList li.active .click_catcher:before {
    background-color: hsla(0, 0%, 100%, .75);
}

.thumbnailList li.active .click_catcher:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 25px);
}

.thumbnailList li:hover .enable_disable_indicator {
    display: flex;
}

.thumbnailList li .enable_disable_indicator.show {
    background-color: rgba(0, 150, 255, .8);
}
.thumbnailList li .enable_disable_indicator em {
    font-size: 11px;
    line-height: 12px;
    color: #fff;
    font-weight: 400;
    margin-left: 4px;
}
.thumbnailList li .thumbnailListOptions {
    position: absolute;
    top: 4px;
    right: 0;
    z-index: 3;
    display: none;
}
.thumbnailList li:hover .thumbnailListOptions{
    display: flex;
}

.mainScreenView_bg {
    position: absolute;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #000;
    background-repeat: no-repeat;
    background-size: cover;
}
.mainScreenView_overlay{
    position: absolute;
    z-index: 8;
    overflow: hidden;
    pointer-events: none;
    background: transparent;
    background-repeat: no-repeat;
    background-size: cover;
}
.mainScreenView_logo{
    position: absolute;
    z-index: 10;
    overflow: hidden;
    pointer-events: none;
    background: transparent;
}

.custom-dropdown {
    position: fixed;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 4px;
    display: none;
    z-index: 1000;
    max-width: 350px;
    border-radius: 12px;
}
.font14{
    font-size: 14px;
}
.font11{
    font-size: 11px;
}
.light .textColor {
    color: #7f7f93;
}
.input_wr input {
    height: 30px;
    font-size: 12px;
}
.input_wr {
    height: 40px;
    border-width: 1px;
    border-style: solid;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    overflow: hidden;
}
.input_wr input {
    height: 30px;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    font-size: 14px;
    flex: 1;
    box-shadow: none;
    outline: none;
    border: none;
    background-color: rgba(0, 0, 0, 0);
}
input[type=text] {
    appearance: none;
    -webkit-appearance: none;
}
.input_wr span {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    flex: 0 0 60px;
    font-weight: 600;
    font-size: 15px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
    color: #0096ff;
    background-color: rgba(0, 0, 0, 0);
}
.light .input_wr span:hover {
    background-color: #e6f3ff;
}
.regenerateGuestLink a {
    cursor: pointer;
    color: #0296ff!important;
    font-size: 14px;
    display: inline-block;
    border-bottom: 1px dashed #0096ff;
    padding-bottom: 3px;
}
.btn_wr {
    display: flex
;
    align-items: center;
    justify-content: center;
    margin: 0 -10px;
}
.btn_wr div {
    background-color: #e5e5ee;
    color: #42425a;
}
.btn_wr div {
    flex: 1;
    margin: 0 10px;
    display: flex
;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 10px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}

.presets_overlay_item_content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.userImgProfile{
    /* width: 400px;
    height: 400px; */
     width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
}
.userNameScreen{
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 28px;
    text-transform: capitalize;
    color: #fff;
    background-color: #0296ff;
    border-right: 8px solid #fff;
    padding: 4px 8px;
}
.screenOption{
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 9;
}










