.cf-modal-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: visibility;
    top: 0;
    left: 0;
    opacity: 1;
    /*background: rgba(143, 27, 15, 0.8);*/
    background: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index:9998
}

.cf-modal {
    display:block;
    position:absolute;
    width:600px;
    max-width: 95%;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
.cf-modal .cf-modal-header {
    background: #ffcd02;
    color: #333;
    padding: 1em 1em;
    text-align: center;
    /*border-radius: 10px 10px 0 0 !important;*/
}
.cf-modal .cf-modal-header h3 {
    padding: 0;
    text-align: center;
    display: block;
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}
.cf-modal .cf-modal-body {
    background: #fff;
    color: #333;
    padding: 1em 2em 1em;
    font-size: 18px;
    text-align: center;
    /*border-radius: 0 0 10px 10px !important;*/
}

.cf-modal .btn-wrapper {
    text-align: center;
    padding: 2em 0em 0em;
}

.cf-modal .btn-ok {
    display: inline-block;
    width: auto;
    background-color: #ffcd02;
    border-color: #ffcd02;
    padding: 5px 15px 5px;
    text-decoration: none;
    color:#3c3d38;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

.cf-modal .cf-modal-body a {
    color: #ffcd02;
    font-weight: bold;
}
