



/*--------------------------------------------------------------
# Inline Popup
--------------------------------------------------------------*/

.lightbox {
    display: none;
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
	  font-family: Verdana, sans-serif;
}

.inlinebox {
    position: absolute;
    padding: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    color: #fff;
}



.close {
    position: absolute;
    left: 100%;
    top: 0;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 220%;
    background-color: #5c5c5c;
    cursor: pointer;
    text-decoration: none;
}