/*  popup */
.popup-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: 999;
}

.popup-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;
}

.popup-cont {
	overflow: auto;
	height: 100%;
	width: 100%;
}

.app-popup .popup-close {
    display: none;
    padding: 3px 8px;
    text-transform: uppercase;
    position: fixed;
    right: 1px;
    top: 1px;
    height: 35px;
    border: 5px solid #ccc;
    background: #c05f5f;
    z-index: 1001;
    text-align: center;
    color: #fff;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.popup-close:hover {
    background: #ccc;
    color: #000;
    cursor: pointer;
}

.app-popup .popup-background.active, .app-popup .popup-container.active, .app-popup .popup-close.active  {
    display: block;
}


.app-popup .warning {
	font-size: 16px;
}