#informative_popup_modal .modal-content{
}
#informative_popup_modal .modal-header{
	color: #ffffff;
    background: var(--tertiary-color-hex);
	border: none;
	padding: 15px 60px 15px 15px;
}
#informative_popup_modal .modal-header .modal-title{
	font-family: var(--secondary-font), "Georgia";
    font-weight: 500;
    font-size: 32px;
    line-height: 1.4em;
}
#informative_popup_modal .modal-header .close{
    position: absolute;
	right: 15px;
	top: 20px;
    font-size: 40px;
	outline: none;
	display: inline-block;
    height: 32px;
    width: 32px;
    border: 2px solid #ffffff;
    border-radius: 50%;
	overflow: hidden;
    background: transparent;
    -webkit-transition: background 0.35s ease;
    -moz-transition: background 0.35s ease;
    -ms-transition: background 0.35s ease;
    -o-transition: background 0.35s ease;
    transition: background 0.35s ease;
	opacity: 1;
    filter: alpha(opacity=100);
}
#informative_popup_modal .modal-header .close:hover {
    background: #ffffff;
}
#informative_popup_modal .modal-header .close span:first-child{
	font-size: 0px;
	color: transparent;
}
#informative_popup_modal .modal-header .close span:first-child:before, 
#informative_popup_modal .modal-header .close span:first-child:after {
    content: "";
    display: inline-block;
    height: 2px;
    width: 16px;
    background: #ffffff;
    position: absolute;
    top: 13px;
    left: 6px;
    -webkit-transition: background 0.35s ease;
    -moz-transition: background 0.35s ease;
    -ms-transition: background 0.35s ease;
    -o-transition: background 0.35s ease;
    transition: background 0.35s ease;
}
#informative_popup_modal .modal-header .close span:first-child:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: translateZ(0) rotate(45deg);
}
#informative_popup_modal .modal-header .close span:first-child:after  {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: translateZ(0) rotate(135deg);
}
#informative_popup_modal .modal-header .close:hover span:first-child:before, 
#informative_popup_modal .modal-header .close:hover span:first-child:after {
    background: var(--primary-color-hex);
}
#informative_popup_modal .modal-body{
    padding: 25px 15px;
	font-size: 18px;
    line-height: 1.4em;
}
#informative_popup_modal .modal-body p{
    margin: 0 0 30px;
}
#informative_popup_modal .modal-body p:last-child{
    margin-bottom: 0;
}
#informative_popup_modal .modal-footer{
    text-align: center;
}
@media (max-width: 991px) {
    #informative_popup_modal .modal-header .modal-title{
        font-size: 28px;
    }
	#informative_popup_modal .modal-header .close{
		top: 16px;
	}
    #informative_popup_modal .modal-body{
        font-size: 16px;
    }
	#informative_popup_modal .modal-body p:not(:last-child){
		margin-bottom: 25px;
	}
}
@media (max-width: 776px) {
    #informative_popup_modal .modal-header .modal-title{
        font-size: 24px;
    }
}