.bixgrow-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 0.5s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.bg-error-message {
    color: #d72c0d;
    font-size: 12px;
    margin-top: 2px;
}
.bg-d-none {
    display: none !important;
}
.bg-text-left {
    text-align: left;
}
.bg-border-error {
    border: 1px solid #d72c0d !important;
}
.bixgrow-loading .bixgrow-spinner {
    display: inline-block;
}
.bixgrow-loading .bixgrow-button-text {
    display: none;
}
.bg-disabled {
    pointer-events: none !important;
}
.bg-checkbox {
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    justify-content: center;
    margin-bottom: 18px;
}
.bg-checkbox__input {
    width: 20px !important;
    height: 20px !important;
    cursor: pointer;
}
.bg-checkbox__label {
    font-size: 13px;
    user-select: none;
}
.bg-checkbox--small .bg-checkbox__label {
    font-size: 12px !important;
}
.bg-checkbox--small .bg-checkbox__input {
    width: 16px !important;
    height: 16px !important;
    cursor: pointer;
}
.bg-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
    margin-bottom: -5px;
}
.bg-social-icon {
    text-decoration: none;
}
