.overlay-view {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(51,51,51,0.7);
    z-index: 100000;
}

.loading-view {
    position: absolute;
    width: 150px;
    height: 150px;
    left:0;
    top:0;
    right:0;
    bottom:0;
    margin:auto;
    border-radius: 15px;
    background-color: white;
}

.title-view {
    position: absolute;
    width: 100%;
    height: 40px;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 17px;
    font-weight: 400;
    color: var(--main-color);
    text-align: center;
}

.spinning-view {
    position: absolute;
    left:0;
    top:0;
    right:0;
    bottom:30px;
    margin:auto;
}

#loadingLargeDialog .loading-view {
    position: absolute;
    width: 250px;
    left:0;
    top:0;
    right:0;
    bottom:0;
    margin:auto;
    border-radius: 15px;
    background-color: white;
}

#loadingLargeDialog .title-view {
    position: absolute;
    width: 90%;
    height: auto;
    left: 5%;
    right: 5%;
    top: 120px;
    font-size: 17px;
    font-weight: 400;
    color: var(--main-color);
    text-align: center;
}

.ai-blur-background {
    /* RGBs for #60A0B1 and #5E7DB2 */
    background: linear-gradient(90deg, rgba(96, 160, 177, 0.7) 0%, rgba(94, 125, 178, 0.7) 100%);
    backdrop-filter: blur(7px);
}

.ai-blur-background .loading-view {
    width: 350px !important;
    height: 220px !important;
}
.ai-blur-background .loading-view i {
    position: absolute;
    font-size: 90px;
    left: 130px;
    top: 20px;
    background: linear-gradient(90deg, rgba(96, 160, 177) 0%, rgba(94, 125, 178) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-blur-background .title-view {
    font-weight: 500;
    background: linear-gradient(90deg, rgba(96, 160, 177) 0%, rgba(94, 125, 178) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}