.dark-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 99;
    display: none;
}

.processing {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    padding: 20px;
    background-color: #eee;
    border: 2px solid #333;
    border-radius: 12px;
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    z-index: 100;
}

.processing-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.processing p {
    font-family: "Arial", sans-serif;
    font-size: 20px;
    color: #000;
    font-weight: 600;
    text-align: center;
    margin: 0;
    margin-bottom: 5px;
}

.processing img {
    width: 45px;
    height: 45px;
    margin-right: 15px;
}

p.attention-mark {
    font-size: 16px;
    font-weight: 500;
    color: #cd0a0a;
    margin-bottom: 0px;
}

p.attention-mark:before {
    margin: -3px 3px 0 0;
    content: " ";
    display: inline-block;
    width: 17px;
    height: 17px;
    background: url(../images/attention-mark.svg) no-repeat center center;
    background-size: contain;
    vertical-align: middle;
}

@media screen and (max-width: 600px) {
    .processing {
        width: 90%;
        padding: 15px;
    }

    .processing img {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 350px) {
    .processing {
        width: 95%;
        padding: 15px;
    }
}