/*--------------------------------------------------------------
  Image Captcha
--------------------------------------------------------------*/
.captcha-image {
    border: 1px solid #ccc;
    padding: 10px;
    display: inline-block;
    text-align: center;
}
.captcha-image p span {
    color: red;
    font-weight: bold;
}
.captcha-image i {
    padding: 5px;
    font-size: 40px
}
.captcha-image label {
    display: inline-block;
}
.captcha-image label > input{ /* HIDE RADIO */
  display:none;
}
.captcha-image label > input + i{ /* IMAGE STYLES */
  cursor:pointer;
  border:2px solid transparent;
}
.captcha-image label > input:checked + i{ /* (CHECKED) IMAGE STYLES */
  border:2px solid #f00;
}
.errors-danger {
  color: #DE2626 !important;
}
.refresh-img-btn .wpcf7-form-control {
    float: left;
    width: 88% !important;
}
.refresh-img-btn {
    width: 100%;
}
.captcha-image-change .captcha-img {
    width: 100%;
    padding-bottom: 10px;
}
.refresh-img-btn a {
    float: right;
}

@media(max-width:991px)
{
.refresh-img-btn .wpcf7-form-control {width: 80% !important;}
}