
/* Scrollbar styles */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-track {
background: #f5f5f5;
border-radius: 6px;
position: absolute;
}

::-webkit-scrollbar-thumb {
border-radius: 6px;
background: #999;  
}

::-webkit-scrollbar-thumb:hover {
background: #555;
}

.main-block {
    position: absolute;
    height: 100%;
    min-height: 650px;
    width: 100%;
    min-width: 1000px;
    padding: 0px;
    margin: 0px;
}

.constructor-block {
    float: left;
    height: 100%;
    width: 60%;
    min-width: 600px;
    padding: 0px;
    margin: 0px;
    padding-left: 300px;
}

.side-panel-block {
    position: absolute;
    float: left;
    width: 0px;
    height: 100%;
    background-color: rgb(34, 34, 34);
}

.side-panel-block2 {
    position: absolute;
    left: 0px;
    width: 300px;
    height: 100%;
    background-color: rgb(255, 255, 255);
    overflow-y: auto;
}

.work-block {
    padding: 0px 0px;
    float: left;
    width: 100%;
    height: 100%;
    background-color: white;
    text-align: center;
}

.preview-block {
    float: right;
    height: 100%;
    width: 40%;
    background-color: rgb(245, 245, 245);
    padding: 0px;
    margin: 0px;
    position: relative;
    text-align: center;
}

.non-selectable {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.close_modal_button {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
}