#modal-captha-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .225s linear;
    overflow: hidden;
}

body:has(#modal-captha-box.active-captha) {
    overflow: hidden;
}

#modal-captha-box.active-captha {
    opacity: 1;
    pointer-events: auto;
}

#modal-captha-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    backdrop-filter: blur(5px);
    z-index: -1;
}

#modal-captha-box .center-box {
    overflow: hidden;
    width: 100%;
    min-width: 290px;
    max-width: 350px;
    height: auto;
    background-color: rgba(255, 255, 255);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: block;
    padding: 20px;
}

#modal-captha-box .center-box .title {
    font-weight: bold;
    margin-bottom: 10px;
}

#modal-captha-box .center-box .subtitle {
    font-weight: normal;
    margin-bottom: 20px;
}

#modal-captha-box .captcha-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#modal-captha-box .chrome-box {
    width: auto;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

#modal-captha-box .chrome-content {
    padding: 20px;
}

#modal-captha-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#modal-captha-box ul li {
    font-size: 16px;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

#modal-captha-box ul li:before {
    content: '\2022';
    color: #000000;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

#modal-captha-box .fkrc-container {
    font-family: 'Source Sans Pro', sans-serif;
}

#modal-captha-box .fkrc-m-p {
    margin: 0;
    padding: 0;
}

#modal-captha-box .fkrc-block {
    display: block;
}

#modal-captha-box .fkrc-line-normal {
    line-height: normal;
}

#modal-captha-box .fkrc-checkbox-window {
    height: 74px;
    width: 306px;
    background-color: #f9f9f9;
    border-radius: 3px;
    border: 1px solid #d3d3d3;
}

#modal-captha-box .fkrc-checkbox-container {
    width: 28px;
    height: 28px;
}

#modal-captha-box .fkrc-checkbox {
    position: relative;
    background-color: #fff;
    border-radius: 2px;
    height: 100%;
    width: 100%;
    border: 2px solid #c1c1c1;
    margin: 21px 0 0 12px;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    transition: width 500ms, height 500ms, border-radius 500ms, margin-top 500ms, margin-left 500ms, opacity 700ms;
}

#modal-captha-box .fkrc-checkbox:hover {
    border: 2px solid #b2b2b2;
}

#modal-captha-box .fkrc-im-not-a-robot {
    position: relative;
    left: 52px;
    bottom: 2px;
    font-size: 15px;
    color: #282727;
}

#modal-captha-box .fkrc-captcha-logo {
    position: relative;
    left: 246px;
    bottom: 40px;
    width: 33px;
    height: 33px;
    vertical-align: baseline;
}

#modal-captha-box .fkrc-checkbox-desc {
    color: #555555;
    position: relative;
    font-size: 10px;
    text-align: center;
    bottom: 41px;
    left: 112px;
}

#modal-captha-box .fkrc-spinner {
    visibility: hidden;
    position: relative;
    height: 35px;
    width: 35px;
    bottom: 90px;
    left: 9px;
    opacity: 0;
    transition: opacity 400ms;
}

#modal-captha-box .fkrc-verifywin-window {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    margin: auto;
    background-color: #fff;
    border: 1px solid #cecece;
    -webkit-box-shadow: 5px 6px 7px -3px rgba(0, 0, 0, 0.12);
    box-shadow: 5px 6px 7px -3px rgba(0, 0, 0, 0.12);
    transition: opacity 400ms;
}

#modal-captha-box .fkrc-verifywin-window-arrow {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    transition: opacity 200ms;
    width: 10px;
    height: 23px;
}

#modal-captha-box .fkrc-verifywin-container {
    padding: 8px;
}

#modal-captha-box .fkrc-verifywin-header {
    background-color: #1a73e8;
    padding: 16px 16px 24px 16px;
    color: #fff;
}

#modal-captha-box .fkrc-verifywin-header-text-small {
    font-size: 14px;
    line-height: normal;
}

#modal-captha-box .fkrc-verifywin-header-text-medium {
    font-size: 16px;
}

#modal-captha-box .fkrc-verifywin-header-text-big {
    font-size: 21px;
    font-weight: 700;
}

#modal-captha-box .fkrc-verifywin-main {
    padding: 9px 0px 7px 0px;
}

#modal-captha-box .fkrc-verifywin-verify-button {
    text-transform: uppercase;
    background-color: #5a89e2;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 12px 0 12px 0;
    text-decoration: none;
    font-weight: 600;
    height: min-content;
    border-radius: 3px;
    font-size: 14px;
    border: none;
    outline: none;
    cursor: pointer;
}

#modal-captha-box .captcha-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#modal-captha-box .captcha-image {
    width: 100px;
    height: 100px;
    cursor: pointer;
}

#modal-captha-box .keyboard-btn {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border-radius: 2px;
    background-color: #1a1a1a;
    padding: .5rem;
    min-width: 34px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

#modal-captha-box .keyboard-btn>svg {
    display: inline;
}

#modal-captha-box .bui-alert__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
    display: block;
    margin-bottom: 8px;
}