/**
 * Table of Contents
 *
 * 1.0 - General
 * -----------------------------------------------------------------------------
 */

/**
 * 1.0 - General
 * -----------------------------------------------------------------------------
 */

.h4a-modal-backdrop{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 360px;
    background: #000;
    opacity: 0.7;
    z-index: 159900;
}

.h4a-modal{
    position: fixed;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 160000;
    font-size: 12px;
}

.h4a-modal-content{
    /* Caution : No overflow : auto here !*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    background: #fcfcfc;
    -webkit-font-smoothing: subpixel-antialiased;
}

.h4a-modal-header{
    right: 50px;
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    z-index: 200;
}

.h4a-modal-header h1{
    padding: 0 16px;
    font-size: 22px;
    line-height: 50px;
    margin: 0;
    overflow: hidden;
    height: 50px;
}

.h4a-modal-frame-content{
    /* Caution : No overflow : auto here !*/
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    width: auto;
    margin: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
}

.h4a-modal-content-left{
    flex: 3;
    background: #f1f1f1;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.h4a-modal-content-right .button{
    padding: 0 5px !important;
    text-align: center;
}

.h4a-modal-content-right{
    flex: 1;
    overflow: auto;
    box-sizing: border-box;
    margin-bottom: 0;
    padding: 12px 16px 0;
    box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, 0.1);
    border-bottom: 0;
    border-left: 1px solid #ddd;
    background: #f3f3f3;
    min-width: 210px;
}

.h4a-modal-content-right .notice{
    margin: 5px 0 2px;
}

.h4a-modal-button .h4a-modal-icon{
    background: none;
}

.h4a-modal-button .h4a-modal-icon::before{
    content: "\f158";
    font: normal 20px dashicons;
    speak: none;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.h4a-modal-close-button{
    top: 0;
    right: 0;
    z-index: 1000;
    cursor: pointer;
    color: #72777c;
    background-color: transparent;
    height: 50px;
    width: 50px;
    padding: 0;
    position: absolute;
    text-align: center;
    border: 0 currentcolor;
    border-left: 1px solid rgb(221, 221, 221);
    transition: color .1s ease-in-out, background .1s ease-in-out;
}

.h4a-modal-close-button:hover{
    background: #ddd;
    border-color: #ccc;
    color: #000;
    outline: none;
    box-shadow: none;
}

.h4a-modal-close-button .h4a-modal-close-icon::before {
    content: "\f335";
    font-size: 22px;
}