.center-page-container {
    height: calc(100vh - 40px);

    display: flex;
    justify-content: center;

    background-color: #dcdcdc;
}

.box-container{
    display: flex;
    justify-content: space-between;

    max-width: 1570px;
    width: 100%;
}

.edm-container{
    max-width: 704px;
    width: 45%;
    border-right: solid 2px black;
    border-left: solid 2px black;

    overflow-y: auto;
    cursor: default !important;

    background-color: #d3d3d3;
}
.edm-container *{
    cursor: default;
}
.middle-container{
    width: 3%;
    max-width: 60px;
}
.control-container{
    flex-grow: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-left: solid 2px black;
    border-right: solid 2px black;

    background-color: #d3d3d3;
}
.control-container .top-options{
    overflow-y: auto;
}
.control-container .bottom-options{
    border-top: 2px dotted #000000;
}

.control-row{
    margin: 15px 10px 15px 10px;
}
.control-row.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}  

.control-row .icons{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.control-row .icons .icon{
    width: 35px;
    height: 35px;
    margin-left: 20px;

    cursor: pointer;
}
.control-row .label{
    font-size: 25px;
}
.control-row .input{
    border: solid 1px black;
    font-size: 20px;
    line-height: 35px;
}
.control-row input::placeholder{
    font-size: 20px;
}
.control-row .control-button{
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 10px;

    /* font-size: 22px; */
    font-size: clamp(15px,2vw,22px);

    background-color: #000000;
    color: #FFFFFF;
    border: solid 2px #000000;
    cursor: pointer;
}
.control-row .control-button:hover{
    background-color: #2c2a2a;
}
.control-row .slice-dim{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px;
    font-size: 22px;

    border: solid 2px black;
    
}
.color-selector-box{
    width: 37px;
    height: 37px;
    border: solid 1px black;
    cursor: pointer;
    background: repeating-conic-gradient(rgb(128, 128, 128) 0%, rgb(128, 128, 128) 25%, transparent 0%, transparent 50%) 50% center / 10px 10px;
}
.color-hash{
    font-size: 34px;
    line-height: 37px;
}

.save-html{
    height: 46px;
    width: fit-content;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.save-html img{
    height: 100%;
    filter:brightness(0%);
}

.mg-h-20{
    margin: 0 0 0 40px;
}
.mg-h-20:first-child{
    margin: 0 0 0 0;
}

.flex-auto{
    flex: auto;
}
.w-30{
    width: 30%;
}
.w-45{
    width: 45%;
}
.w-47{
    width: 47%;
}
.w-80{
    width: 85%;
}
.w-85{
    width: 85%;
}
.w-100{
    width: 100%;
}
.mb-10{
    margin-bottom: 10px;
}
.mt-30{
    margin-top: 30px;
}
.mt-55{
    margin-top: 55px;
}
.flex-between{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.justify-flex-end{
    justify-content: flex-end;
}
.flex-grow-1{
    flex-grow: 1;
}






.edm-container img{
    outline-style: dashed;
    outline-color: #87E911;
    outline-width: 4px;
    outline-offset: -4px;
}
.edm-container img.selected{
    outline-style: solid;
    outline-color: #ff00bd;
}
.edm-container img.hide-lines{
    outline-style: none;;
}
.img-error{
    min-width: 50px;
    height: 100%;
    min-height: 100px;
    background-image: linear-gradient(45deg, #808080 25%, transparent 25%), linear-gradient(-45deg, #808080 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #808080 75%), linear-gradient(-45deg, transparent 75%, #808080 75%);
    background-size: 21px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
table.table-width{
    width: 100%;
    max-width: 100%;
}

.hide-import{
    display: none !important;
}


/* File upload popup */
.file-upload-popup .content{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    width:90%;
    height:84%;
}

.file-upload-popup .content .row{
    display: flex;
    justify-content: space-between;
    align-items: center;

    width:100%;
}


.file-upload-popup .btn{
    padding: 6px 10px;

    background-color: #000000;
    color: #FFFFFF;

    cursor: pointer;
}