body.modal-active{
    overflow:hidden !important;
}
.modal-wrapper{
    display:none;
    overflow:auto;
    position:fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.modal-wrapper.modal-active{
    display:block;
}
.modal-backdrop{
    z-index:999999998;
    position:fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:#000;
    opacity: 0.5;
}
.modal-dialog{
    z-index:999999999;
    position: absolute;
    top: 2em;
    left: 0;
    right: 0;
    width: 20%;
    max-width:50em;
    margin: 0 auto 2em auto;
    box-sizing: border-box;
    background: #FFF;
    box-shadow: 0px 0px 2px 2px #6B6B6B;
}
.modal-close-in, .modal-close-out{
    position:absolute;
    right: 1em;
    top: 1em;
    width: 32px;
    height: 32px;
    opacity: 0.5;
}
.modal-close-in:hover, .modal-close-out:hover{
    opacity:1;
}
.modal-close-in:before, .modal-close-in:after, .modal-close-out:before, .modal-close-out:after{
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
}
.modal-close-in:before, .modal-close-in:after{
    background-color: #333;
}
.modal-close-out:before, .modal-close-out:after{
    background-color: #CCC;
}
.modal-close-in:before, .modal-close-out:before{
    transform: rotate(-45deg);
}
.modal-close-in:after, .modal-close-out:after{
    transform: rotate(45deg);
}
.modal-title{
    padding: 1em;
    text-align: center;
    FONT-FAMILY: 'neue_light', Helvetica, Arial CE, Tahoma,  Arial CE ;

	color:#10BEFD;
/* 	FONT-SIZE: 15px;   */
   font-size: 1.25em;  
    box-sizing:border-box;
}
.modal-body{
    padding: 1em;
    overflow:auto;
    max-height:10%;
    box-sizing:border-box;
    FONT-FAMILY: 'neue_light', Helvetica, Arial CE, Tahoma,  Arial CE ;
    text-align: center;

}
.modal-buttons{
    box-sizing:border-box;
    text-align:center;
}
.modal-button{
    padding: 0.6em 1em;
    border:0;
    margin:1em 0.5em;
    color:#FFF;
    text-transform:uppercase;
    cursor:pointer;
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.modal-button-red{background-color:#e51c23;}
.modal-button-blue{background-color:#10BEFD;}
.modal-button-green{background-color:#00ca3c;}
.modal-button-gray{background-color:#969696;}

@media only screen and (max-width:53em){
    .modal-dialog{
        width: auto;
        margin: 0 auto 5px auto;
        top: 5px;
        right: 5px;
        left: 5px;
    }
}
@media only screen and (max-width:32em){
    .modal-button{
        display:block;
        margin: 0.5em;
    }
}