.reply-captcha {
    background-color: #fff;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #1a1a1a;
}

.reply-captcha-checkbox input {
    display: none;
}

.reply-captcha:before {
    top: calc(100% + 1px);
    border-color: rgb(208, 208, 208) transparent transparent transparent;
}

.reply-captcha-checkbox input:checked ~ .reply-captcha {
    visibility: visible;
    opacity: 1;
}

.reply-captcha-bg {
   border: 3px solid #000;
   margin-bottom: -3px;
}

.reply-captcha input[type="checkbox"][id^="cc"] {
    display: none;
}

.reply-captcha label[id^="cl"] {
    /*border: 2px solid red;*/
    padding: 0;
    display: block;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    width: 64px;
    height: 64px;
    user-select: none;
    margin: 0;
}

.reply-captcha label[id^="cl"]::before {
    background-color: #0d6efd;
    color: white;
    content: " ";
    display: block;
    border-radius: 15%;
    position: absolute;
    top: 20px;
    left: 22px;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 16px;
    transform: scale(0);
}

.reply-captcha :checked + label[id^="cl"]::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-color: #0d6efd;
    transform: scale(1);
}

.reply-captcha-reply input[type=checkbox]{
    display:none;
}

/* Captcha Modal Start */
.captcha_modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: left;
    background: rgba(0,0,0, .7);
    transition: opacity .25s ease;
}

.captcha_modal__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
}

.captcha_modal-state {
    display: none;
}

.reply-captcha-checkbox input:checked ~ .captcha_modal {
    opacity: 1;
    visibility: visible;
}

.reply-captcha-checkbox input:checked ~ .captcha_modal .captcha_modal__inner {
    top: 0;
}

.captcha_modal__inner {
    transition: top .25s ease;
    position: absolute;
    top: -20%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 397px;
    margin: auto;
    overflow: hidden;
    height: 432px;
}

.captcha_modal__inner p{
    font-size: 14px;
}

.captcha_modal_checkmark {
    height: 17px;
    width: 17px;
    cursor: pointer;
    vertical-align: text-bottom;
    display:inline-block;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #EAF0F6;
    border-top: 1.3px solid transparent;
    border-bottom: 1.3px solid transparent;
    transform: rotate(45deg);
    animation: spinner 1s linear infinite;
}

.captcha_modal__close {
    cursor: pointer;
}
