/*  Modal */
.modal-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(61, 61, 61);
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    z-index: 1000;
}

.modal-container {
    background-color: white;
    box-shadow: 0 0 20px 0 #222;
    -webkit-box-shadow: 0 0 20px 0 #222;
    -moz-box-shadow: 0 0 20px 0 #222;
    display: none;
    height: auto;
    position: fixed;
    z-index: 1000;
    /* font-family: 'Exo 2'; */
    padding: 5px;
    border: 5px solid #666;
    max-height: calc(100% - 50px);
    overflow: auto;
}

.modal-cont {
	overflow: auto;
	height: 100%;
	width: 100%;
}

.app-modal .modal-close {
    display: none;
    padding: 1px 8px;
    text-transform: uppercase;
    position: fixed;
    right: 1px;
    top: 1px;
    height: 35px;
    border: 5px solid #666;
    background: #c05f5f;
    z-index: 1001;
    text-align: center;
    color: #fff;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.modal-close:hover {
    background: #ccc;
    color: #000;
    cursor: pointer;
}

.app-modal .modal-background.active, .app-modal .modal-container.active, .app-modal .modal-close.active  {
    display: block;
}


.app-modal .warning {
	font-size: 16px;
}