/**
 * Modal
 */
.eo-modal-overlay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 360px;
    background: #000;
    opacity: .7;
    z-index: 159900;
    display: none;
}

.eo-modal{
    background: white;
    position: fixed;
    z-index: 160000;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    border: thin #000 solid;
    top: 25%;
    left: 25%;
    display: none;
    padding: 20px;
    box-sizing: border-box;
}

.eo-modal-title{
    font-weight:bold;
	font-size: 16px;
}

.eo-modal-close{
    background: none;
    border: none;
    position:absolute;
    right:20px;
}
.eo-modal-close:before {
    content: '\f158';
    font: 400 20px/1 dashicons;
    speak: none;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #666;
}