@charset "utf-8";

.main-content {
    height: 800px;
    width: 1000px;
    margin: 0 auto;
}

.overlay-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    z-index: 9999; /* high z-index */
    background: #000; /* fallback */
    background: rgba(0, 0, 0, 0.75);
}
.overlay-content {
    display: none;
    background: #fff;
    padding: 1%;
    width: 40%;
    position: absolute;
    top: 2%;
    left: 50%;
    margin: 0 0 0 -20%; /* add negative left margin for half the width to center the div */
    cursor: default;
    z-index: 10001;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}

.overlay-content img {
    /*padding: 0 15px 15px 0;	*/
    width: 100% !important;
    height: auto !important;
}

.close-btn {
    cursor: pointer;
    border: 1px solid #fff;
    padding: 1% 2%;
    background: #c4161c; /* fallback */
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: auto;
    right: -15px;
    border-radius: 5px;
    color: #fff;
}
.close-btn:hover {
    background: #053f88;
}
