.progress-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #3aaee0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 25px auto;
}
.progress-circle::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 1;
}
.progress-circle span {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: center;
    z-index: 2;
}
.status-message {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.main {
    display: none;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 5%);
    width: 100%;
    z-index: 9;
}
.successCard {
    padding: 14px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}
.successCard p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}
.successCard h3 {
    margin: 10px;
    font-size: 18px;
    font-weight: 700;
}
.successCard a {
    display: block;
    margin: 10px 0;
}
.successCard button {
    border: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    padding: 10px;
    margin: 10px 0;
}
.flexBox {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 600px) {
    .progress-circle {
        width: 100px;
        height: 100px;
    }
    .progress-circle::before {
        width: 70px;
        height: 70px;
    }
}

.branding-container {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 5px;
}
.lwd-branding {
    display: inline-block;
    background-color: #fff;
    padding: 5px 10px;
    line-height: 0;
    border-radius: 25px;
}
.branding-container:hover .lwd-branding {
    animation: tada 2s;
}

.lwd-ellipsis,
.lwd-ellipsis div {
    box-sizing: border-box;
}
.lwd-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 16px;
}
.lwd-ellipsis div {
    position: absolute;
    top: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lwd-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lwd-ellipsis1 0.6s infinite;
}
.lwd-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lwd-ellipsis2 0.6s infinite;
}
.lwd-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lwd-ellipsis2 0.6s infinite;
}
.lwd-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lwd-ellipsis3 0.6s infinite;
}
@keyframes lwd-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lwd-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lwd-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
