/*
 * @Author       : BitTheme
 * @Website      : https://www.wpbit.cn/
 * @Date         : 2022-06-04 12:33:20
 * @LastEditTime : 2023-05-04 22:02:14
 * @LastEditors  : FujiW
 */
@charset "UTF-8";

.notyf__wrapper {
    padding-right: 0;
}

:root {
    --bitbox-blur: 20px;
    --bitbox-blur-saturate: 180%;
    --bitbox-blur-background: rgba(255, 255, 255, .72);
    --bitbox-blur-background-2: rgba(255, 255, 255, .28);
    --bitbox-dark-blur-background: rgba(0, 0, 0, .72);
    --bitbox-dark-blur-background-2: rgba(0, 0, 0, .28);
    --bitbox-modal-close-clor: #000;
    --bitbox-font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    --bitbox-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

[data-theme="dark"]:root {
    --bitbox-blur-background: rgba(0, 0, 0, .72);
    --bitbox-blur-background-2: rgba(0, 0, 0, .28);
    --bitbox-dark-blur-background: rgba(255, 255, 255, .72);
    --bitbox-dark-blur-background-2: rgba(255, 255, 255, .28);
    --bitbox-modal-close-clor: #fff;
}

.bitbox-loader {
    width: 36px;
    height: 36px;
    border: 6px solid #000;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.bitbox-like-wrapper .bitbox-loader {
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    border-bottom-color: transparent;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bitbox-display-1-lines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.bitbox-display-2-lines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}