.webpaper-self-check-quick {
    position: fixed;
    z-index: 9990;
    top: auto;
    right: 22px;
    bottom: 30px;
    width: 94px;
    min-height: 94px;
    padding: 15px 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 22px;
    color: #fff;
    background: rgba(28, 28, 33, .94);
    box-shadow: 0 14px 38px rgba(28, 28, 33, .22);
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    cursor: pointer;
    transform: none;
    /* transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease, height 0.5 ease; */
    transition: all .5s ease;
    backdrop-filter: blur(10px);
}

.webpaper-self-check-quick::before {
    content: "";
    position: absolute;
    inset: -5px;
    z-index: -1;
    border: 1px solid rgba(41, 72, 200, .24);
    border-radius: 26px;
    opacity: .7;
    animation: webpaper-self-check-pulse 2.8s ease-in-out infinite;
}

.webpaper-self-check-quick__animation {
    display: block;
    width: 62px;
    height: 62px;
}

.webpaper-self-check-quick__animation[hidden],
.webpaper-self-check-quick__label[hidden] {
    display: none;
}

.webpaper-self-check-quick__animation svg {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.webpaper-self-check-quick__label {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 750;
    text-align: center;
    word-break: keep-all;
}

.webpaper-self-check-quick:hover,
.webpaper-self-check-quick:focus-visible {
    background: #2948c8;
    box-shadow: 0 18px 44px rgba(41, 72, 200, .3);
    transform: translateY(-3px);
    outline: none;
}

@keyframes webpaper-self-check-pulse {
    0%, 100% { opacity: .32; transform: scale(.98); }
    50% { opacity: .78; transform: scale(1.035); }
}

@media (max-width: 760px) {
    .webpaper-self-check-quick {
        top: auto;
        right: 16px;
        bottom: 18px;
        width: auto;
        min-height: 54px;
        padding: 10px 17px;
        flex-direction: row;
        gap: 8px;
        border-radius: 999px;
        transform: none;
    }

    .webpaper-self-check-quick__label {
        font-size: 14px;
    }

    .webpaper-self-check-quick__animation {
        width: 38px;
        height: 38px;
    }

    .webpaper-self-check-quick__label br {
        display: none;
    }

    .webpaper-self-check-quick:hover,
    .webpaper-self-check-quick:focus-visible {
        transform: translateY(-2px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .webpaper-self-check-quick,
    .webpaper-self-check-quick::before {
        animation: none;
        transition: none;
    }
}
