.JFCaptcha-CheckBoxButton-iconBox .checkbox-selector {
    width: inherit;
    height: inherit;
    border: 1px solid;
}

.JFullCaptcha-FormInput-wrapper {
    position: relative;
    display: block;
    width: fit-content;
}

.JFCaptcha-Input-ModalBox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 10px;
    display: none !important;
    padding: 1rem;
    z-index: 99;
}

.JFCaptcha-Input-ModalBox:target {
    display: flex !important;
}

.JFCaptcha-Input-ModalBox .ModalBox-content {
    padding: 1rem;
    background: white;
    box-shadow: 0 0 3px #00000052;
    border-radius: 0.5rem;
    max-height: 100%;
    min-height: 300px;
    overflow-y: auto;
}


.JFCaptcha-CheckBoxButton-iconBox {
    position: relative;
}

.JFCaptcha-CheckBoxButton-iconBox .check-icon {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: drawCheck 333ms cubic-bezier(0.15, 0.01, 0.58, 1) forwards;
}


.JFCaptcha-CheckBoxButton-iconBox > * {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.JFCaptcha-CheckBoxButton[status="not-checked"] .JFCaptcha-CheckBoxButton-iconBox .checkbox-selector {
    display: block;
}

.JFCaptcha-CheckBoxButton[status="checked"] .JFCaptcha-CheckBoxButton-iconBox .check-icon {
    display: block;
}

.JFCaptcha-CheckBoxButton[status="loading"] .JFCaptcha-CheckBoxButton-iconBox .jfc-btn-spinner {
    display: block;
}


.jfc-btn-spinner {
  position: relative;
}
.jfc-btn-spinner .spinner {
  position: relative;
  right: 0;
  top: 50%;
  width: inherit;
  height: inherit;
  border: 2.5px solid #eee;
  border-top: 2.5px solid #007bff;
  border-radius: 50%;
  animation: jfcspin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

.JFullCaptcha-Float-loading-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.JFullCaptcha-Float-loading-box .jfc-btn-spinner {
    width: 30px;
    height: 30px;
}


.captcha-form-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: inherit;
}


.CaptchaPickimage-grid-item .grid-item-label {
    border: 1px solid var(--bs-gray-400);
    transition: all 119ms ease;
}

.CaptchaPickimage-grid-item input[type=checkbox]:checked + .grid-item-label {
    padding: 1rem;
    border-color: var(--bs-blue);
}
.CaptchaPickimage-grid-item input[type=checkbox] {
    display: none;
}





@keyframes jfcspin {
  0% { transform: translateY(-50%) rotate(0deg);}
  100% { transform: translateY(-50%) rotate(360deg);}
}



@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}