.popup_overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0000003b;
    z-index: 999;
    backdrop-filter:blur(3px)
}
.draggable_window{
    box-shadow: 1px 1px 5px grey;
    z-index: 999999999;
    position: fixed !important;
    top:10px ;
    width:81%;
    background: #eee;
    height:80%;
    animation:animation 0.2s  forwards;
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}
.draggable_window_right_dir{
    left:10px;
}
.draggable_window_left_dir{
    right:10px;
}

@keyframes animation{
    0%{
        transform:scale(0.5);

    }
    100%{
        transform:scale(1)
    }
}
.draggable_window_selected {
    z-index: 9999999999;
    border: 2px solid white;
}
.draggable_window_full_screen_inside_iframe,
.draggable_window_full_screen{
    width: 98% !important;
    top: 0 !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    margin: auto !important
}
.draggable_window_full_screen{
    height: 98% !important;
}
.draggable_window_full_screen_inside_iframe{
    height: 97% !important;
}
.draggable_window_minimize_inside_iframe,
.draggable_window_minimize{
    top:90% !important;
    width: 240px !important;
    z-index: 2000;
}
.draggable_window_minimize_inside_iframe{
    top:93% !important;
}
.draggable_window_minimize{
    top:89% !important;
}

.draggable_window_header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    background: var(--primary_color);
    padding: 2px 10px;
}
.draggable_window_name{
    color:white;
    font-weight: bold;
    padding: 0 5px;
    white-space: nowrap
}
.draggable_window_minimize_inside_iframe .draggable_window_name,
.draggable_window_minimize .draggable_window_name{
    width: 115px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.draggable_window_actions{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
}
.draggable_window_header .draggable_window_actions .iconify{
    color: #222;
    cursor: pointer;
    padding:  5px;
    color:white;
}

.draggable_window_header .draggable_window_actions .close{
    color: black;
    background: white;
    border-radius: 100%;
    width: 22px;
    height: 22px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
}


.resize_icon{
    position: absolute;
    bottom: -2px;
    right: -4px;
    transform: rotateZ(-48deg) !important;
    background: white;
    border-radius: 100%;
    color: var(--settings_color);
}
.draggable_window form{
    height:100%;
    overflow: auto;
}
@media screen and (max-width:700px){
    .draggable_window{
        width: 95%;
        height: 95%;
    }

}
/*::-webkit-scrollbar {
  width: 10px;
}

 Track 
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
 Handle 
::-webkit-scrollbar-thumb {
  background: #888; 
}

 Handle on hover 
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}*/