﻿div.layout-modal {
    top:0;
    left:0;
    right:0;
    bottom:0;
    display:block;
    z-index:90210;
    position:fixed;
    background-color:rgba(60, 65, 73, 0.9);
}
div.layout-modal.hidden {
    top:100%;
}
div.layout-modal div.close-panel {
    width:600px;
    top:0;
    position:fixed;
}
div.layout-modal.hidden div.close-panel {
    display:none;
}
div.layout-modal button.close {
    width:73px;
    height:73px;
    border:none;
    border-radius:0;
    background:url("/sources/close.svg") #ea4041 center no-repeat;
    float:right;
}
div.layout-modal button.close:hover {
    background-color:rgba(234,80,80,1);
}
div.layout-modal button.close:active {
    background-color:#ea4041;
}
div.layout-modal div.center {
    width:0;
    height:0;
    top:50%;
    left:50%;
    position:absolute;
}