.bx-form-row-view-value  {
    word-break: break-all;
}


::-webkit-input-placeholder {
    color: #808080c4 !important;
    font-size: 14px !important;
}

.icon-ai {
    display: inline-block;
    background-image: url("../images/ai-btn.svg");
    background-size: cover;
    width: 1rem;
    height: 1rem;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    /*display: none;*/
    z-index: 99;
    justify-content: center;
    align-items: center;
}

.loader {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #a7a0a0;
    border-top: 4px solid #1a1e21;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bx-artificer .bx-popup-content .bx-form-element-wrapper label.bx-btn{
    color: #fff;
}

.bx-artificer .bx-popup-content .bx-form-element-wrapper label.bx-btn:hover{
    color: #ff6600;
}

.ai-btn {
    border-radius: var(--Spacing-System-radius-sm, 8px);
    border: 0.5px solid #9149EE;
    max-width: 100%;
    color: #7727DD;
    font-style: normal;
    font-weight: 450;
    text-align: center;
    padding: 4px 8px;
    font-size: 14px;

    &:hover{
        border: 0.443px solid #ff6600;
        background: #fff0e5;
        color: #ff6600;
    }
}