/* $Id: $ */
#screenSharePopup{
    padding-top:0px;
    background:rgb(0 0 0 / 30%);
}
.zc-appScreenshareDialog {
    padding: 14px 36px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}
.zc-appScreenshareHeader{
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}
.zc-appScreenshareHeaderDesc{
    font-size: 1.4rem;
    margin: 15px 0px; 
    flex-shrink: 0;
    color: var(--secondaryColor);
}
.zc-appScreenshareTab{
    display: inline-flex; 
    width: fit-content;
    flex-shrink: 0;
}
.zc-appScreenshareTabitem{
    position: relative;
    min-width: 130px;
    padding: 12px 20px;
    width: fit-content;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    color: var(--secondaryColor);
    transition: all .3s;
}
.zc-appScreenshareTabitem.active{
    border-bottom: 2px solid var(--primaryThemeColor);;
	color: var(--primaryThemeColor);
}
.zc-screenshareAppsCont{
    flex-grow: 1;    
    overflow:hidden;
}
.zc-screenshareAppsContTray { 
    border: 1px solid #e6e6e6; 
    background-color: #F1F4F7; 
    padding: 10px; 
    display: flex; 
    flex-wrap: wrap; 
    overflow: auto; 
    max-height:300px;
}

.zc-screenshareAppsContTray .zc-screenshareAppsContTrayItem{ 
    width: 155px; 
    height: auto; 
    flex-shrink: 0; 
    padding:13px;
}
.zc-screenshareAppsContTray .zc-screenshareAppsContTrayItem:hover {
    background: #dae1e8;
}
.zc-screenshareAppsContTray .zc-screenshareAppsContTrayItem.active,
.zc-screenshareAppsContTray .zc-screenshareAppsContTrayItem:hover.active{
    background:#fff;
}
.zc-screenshareAppsContTray.zc-entirescreen .zc-screenshareAppsContTrayItem{
    width: 300px;
}
.zc-screenshareAppsContTray .zc-screenshareAppsContTrayItem > img { 
    height: 100px; 
    width: 100%; 
    border-radius: 6px; 
}
.zc-screenshareAppsContTray.zc-entirescreen .zc-screenshareAppsContTrayItem > img { 
    height: 200px;
}
.zc-screenshareAppsItemTitleCont{
    display: flex; 
    align-items: center;
    margin-top:10px;
}
.zc-screenshareAppsItemTitle{
    display: inline-block;; 
    align-items: center;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}
.zc-screenshareAppsContTray .zc-screenshareAppsContTrayItem.active .zc-screenshareAppsItemTitle{
    font-weight: 700;
}
.zc-screenshareBttnCont { 
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
    margin-top: 14px; 
}

.ui-rte-editor .zc-resize-overlay-outer-div {
    display: inline-block;
}

.zc-resize-overlay-outer-div
{
    position:relative;
}

.ui-rte-editor .zc-resize-overlay-inner-div{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid rgb(51, 102, 255);
}

.ui-rte-editor .zc-resize-marker-outer {
    position: absolute;
    z-index: 1000;
    height: 16px;
    width: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ui-rte-editor .zc-resize-marker-inner {
    height: 8px;
    width: 8px;
    border: 1px solid var(--rte-bg-color);
    position: absolute;
    background-color: rgb(51, 102, 255);
    z-index: 1000;
}
.ui-rte-editor .zc-resize-top-left {
    cursor: nw-resize;
    top: -8px;
    left: -8px;
}
.ui-rte-editor .zc-resize-top-right {
    cursor: ne-resize;
    top: -8px;
    right: -8px;
}
.ui-rte-editor .zc-resize-bottom-left {
    cursor: sw-resize;
    top: calc(100% - 8px);
    left: -8px;
}
.ui-rte-editor .zc-resize-bottom-right {
    cursor: se-resize;
    top: calc(100% - 8px);
    right: -8px;
}