.flex-center {
    display: flex;
    align-items: center;
}
.p-10 {
    padding: 10px;
}
.font-12 {
    font-size: 12px;
}
.font-16 {
    font-size: 16px;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
.text-center {
    text-align: center;
}
.lofty-overflow-hidden {
    overflow: hidden;
    height: 100vh;
}
.lofty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111111;
    font-size: 14px;
    font-weight: 400;
    min-height: 40px;
    line-height: 100%;
    color: #fff;
    border: 0;
    text-align: center;
    cursor: pointer;
    padding: 0 10px;
    border: none;
}
.lofty-btn.disabled {
    cursor: not-allowed !important;
    opacity: 0.3;
}
.lofty-btn[disabled] {
    cursor: no-drop !important;
    opacity: 0.3;
}
.lofty-hidden {
    display: none;
}
.lofty-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lofty-link,
.lofty-a-link {
    color: rgba(76, 132, 255, 1);
    text-decoration: underline;
    cursor: pointer;
}

.lofty-reset-style {
    .form-wrap p,
    p.description,
    p.help,
    span.description {
        font-size: 13px;
        font-style: normal;
    }
    ::-webkit-scrollbar {
        width: 0;
    }
    ::-webkit-scrollbar-track-piece {
        background-color: transparent;
        border-radius: 0;
    }
    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
        &:hover {
            &::-webkit-scrollbar-thumb {
                background: #999;
            }
        }
    }
    ::-webkit-scrollbar-thumb {
        height: 50px;
        background-color: rgba(32, 36, 55, 0.2);
        border-radius: 6px;
    }
}

#wpbody-content {
    padding-bottom: 0;
    float: none;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    .update-nag {
        width: fit-content;
    }
    #app {
        flex: 1;
        height: 100%;
        overflow: hidden;
    }
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.ml-auto {
    margin-left: auto;
}
.mr-auto {
    margin-right: auto;
}
.lofty-mobile-fix-bottom {
    position: fixed;
    width: 100vw;
    bottom: 0;
    left: 0;
    height: 60px;
    background: #fff;
    box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.05);
    z-index: 1040;
}
.lofty-under-mask-pop {
    .pop-mask {
        z-index: 950;
    }
    .pop {
        z-index: 1050;
    }
}
