.captchaMain {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647;
    text-align: center;
    white-space: nowrap;
    background-color: #000;
    background: rgba(0, 0, 0, .8);
}

.captchaMain:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -.25em;
}

.captchaWrap {
    position: relative;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    overflow: auto;
    padding: 35px;
    margin-left: 5%;
    margin-right: 5%;
    max-width: 90%;
    max-height: 95%;
    background: #080808;
    border: solid 1px #1c1c1c;
    cursor: auto;
    width: 525px;
    white-space: normal;
    border-radius: 20px;
}

.captchaWrap__inner {
    float: left;
    width: 100%;
}

.captchaWrap .cHead {
    position: relative;
    width: 100%;
    float: left;
}
.captchaWrap .cHead  .h4{
    font-size: 29px;
    color: #FF9900;
    text-transform: capitalize;
    font-weight: 600;
    margin: 30px 0 0 0;
}
.captchaWrap .cClose {
    background: url("img/close.png") 0 0 no-repeat;
    position: absolute;
    right: -15px;
    top: -15px;
    width: 21px;
    height: 21px;
}

.captchaWrap .cDataWrap {
    position: relative;
    width: 100%;
    float: left;
}

.captchaWrap .cDataWrap p {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    color: #fff;
    font-size: 13px;
}

.captchaWrap .cDataWrap .h4 {
    float: left;
    width: 100%;
}

.captchaWrap .cDataWrap .h3 {
    float: left;
    width: 100%;
    font-size: 18px;
    color: #fff;
}

.captchaWrap .captchaInner {
    position: relative;
    float: left;
    width: 100%;
    margin: 0;
    text-align: center;
}

.captchaWrap .captchaInner img {
    display: inline-block;
}

.captchaWrap .captchaInner .captcha {
    position: relative;
    width: 149px;
    height: 150px;
    display: inline-block;
    vertical-align: top;
    float: none;
    cursor: pointer;
}

.Q {
    background: transparent url(./img/captcha1.svg) no-repeat center;
    background-size: contain;
    transition: all .4s;
}

.Q:hover{
    background-image: url(./img/captcha1-active.svg);
}

.B {
    background: transparent url(./img/captcha2.svg) no-repeat center;
    background-size: contain;
    transition: all .4s;
}

.B:hover{
    background-image: url(./img/captcha2-active.svg);
}

.H {
    background: transparent url(./img/captcha3.svg) no-repeat center;
    background-size: contain;
    transition: all .4s;
}

.H:hover{
    background-image: url(./img/captcha3-active.svg);
}

.K {
    background: transparent url(./img/captcha4.svg) no-repeat center;
    background-size: contain;
    transition: all .4s;
}

.K:hover{
    background-image: url(./img/captcha4-active.svg);
}

.C {
    background: transparent url(./img/captcha5.svg) no-repeat center;
    background-size: contain;
    transition: all .4s;
}

.C:hover{
    background-image: url(./img/captcha5-active.svg);
}

.J {
    background: transparent url(./img/captcha6.svg) no-repeat center;
    background-size: contain;
    transition: all .4s;
}

.J:hover{
    background-image: url(./img/captcha6-active.svg);
}


/*    thank you page */

.captchaThanksWrap {
    position: relative;
    float: left;
    width: 100%;
}

.captchaThanksWrap .cClose {
    background: url("img/close.png") 0 0 no-repeat;
    position: absolute;
    right: -5px;
    top: -5px;
    width: 21px;
    height: 21px;
}

.captchaThanksWrap .thumbs {
    position: relative;
    width: 56px;
    height: 59px;
    float: none;
    margin: 16px 0px 0px 16px;
    display: inline-block;
}

.captchaThanksWrap .thumbs .thumbsImg {
    height: 59px;
    width: 55px;
}

.captchaThanksWrap p {
    position: relative;
    width: 100%;
    float: left;
}

.captchaThanksWrap p strong {
    font-weight: bold;
}

.captchaWrap .pleaseWait {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1001;
    margin-left: -16px;
    margin-top: -16px;
}


/*responsive tweaks*/

@media (max-width: 1199px) {
    .captchaWrap {
        padding: 15px 15px;
    }
}

@media (max-width: 767px) {
    .captchaWrap .captchaInner {
        width: 100%;
        width: calc(100% + 30px);
        margin-right: -15px;
        margin-left: -15px;
        overflow: hidden;
    }
    .captchaWrap .captchaInner .captcha {
        width: 130px;
        height: 130px;
    }
    .captchaWrap .cDataWrap .h3 {
        font-size: 26px;
    }
}