/* IT Popup Modal CSS */

.clear{
	clear: both;
}
button.itpopup_modal_btn {
	background: transparent;
	border: none;
	    font-family: inherit;
    font-size: inherit;
    /* margin-top: -39px; */
    position: relative;
    top: -23px;
    left: -5px;
}
/* The Modal (background) */
.itpopup-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.itpopup-modal .modal-content li {
	list-style: disc!important;
}
.itpopup-modal .modal-content {
    overflow: hidden;
	border-radius: 8px;
    position: relative;
    background-color: #fefefe;
	padding: 1px 9px 0px 27px!important;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    height: auto;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.itpopup-modal .close_itpopup {
    color: #0C2820;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.itpopup-modal .close_itpopup:hover,
.itpopup-modal .close_itpopup:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.itpopup_modal_btn{ cursor: pointer; }

.itpopup-modal .modal-header {
    padding: 15px;
    background-color: #5cb85c;
    color: #ffffff;
    text-align: left;
}

.itpopup-modal .modal-body { padding: 20px; margin-bottom: 31px; overflow: auto; margin-top: -35px; }

.itpopup-modal .modal-footer {
    padding: 15px;
    background-color: #5cb85c;
    color: #ffffff;
    bottom: 0;
    position: absolute;
    width: 100%;
    text-align: left;
}
.itpopup-modal .modal-header h2 {
	float: left;
}
.itpopup-modal .modal-footer h3, .modal-header h2 {
	margin: 0px;
	padding: 0px;
	color: #ffffff;
}
.description_field {
    font-size: 13px;
    font-style: italic;
}
.modal-title {
	font-size: 35px;
}

/* Responsive Code */
@media(max-width: 768px){
    .itpopup-modal .modal-content {
        width: 85% !important;
    }
}