.close-btn {
    z-index: 100;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}
.close-btn i {
    z-index: 110;
    padding-right: 15px;
    font-size: 25px;
    color: #333;
}

/* .black-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	z-index: 1;
	cursor: pointer;
}  */

.close_button {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.content {
    margin: 0 auto;
    /* padding: 40px; */
    padding: 80%;
}
.modal {
    z-index: 999;
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal-body {
    height: 100%;
    width: 100%;
}
.modal__bg {
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}

@media print, screen and (min-width: 1000px) {
    .modal__content {
        background: #eee;
        left: 50%;
        /* padding: 40px; */
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 70%;
        height: 90%;
    }

    .ifrm {
        width: 100%;
        height: 100% !important;
        margin: 0% !important;
        padding: 0% !important;
    }
}

@media only screen and (max-width: 999px) {
    .modal__content {
        background: #eee;
        left: 50%;
        /* padding: 40px; */
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        height: 90%;
    }

    .ifrm {
        width: 100%;
        height: 100%;
        margin: 0% !important;
        padding: 0% !important;
    }
}

body.fixed {
    position: fixed;
    left: 0;
}
