.cpay-title{
    margin-top: 30px;
    font-weight: 600;
    font-size: 22px;
    color: var(--main-color);
    text-align: center;
    margin-bottom:25px
}
.cpay-form-row {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--main-border-color);
}
.cpay-form-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.cpay-price ul {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    list-style-type: none;
    margin-bottom: 10px;
}

.cpay-button {
    display: block;
    border: 2px solid var(--main-border-color);
    background: var(--main-shadow);
    color: #999;
    font-size: 18px;
    min-width: auto;
    min-height: auto;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px;
    padding: 8px 22px;
    margin: 0px;
}

.cpay-desc {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

.but.initiate-cpay {
    padding: .6em 1em
}

.zyx-badge-text {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    height: 18px;
    line-height: 1.5;
    padding: 4px;
    margin-right: 3px;
}

.zyx-badge-text:after {
    position: absolute;
    content: " ";
    display: block;
    left: -100%;
    top: -5px;
    width: 15px;
    height: 145%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    animation: sweepTitle 3s ease-in-out infinite;
    transform: rotate(28deg);
}

@keyframes sweepTitle {
    0% {
        left: -100%
    }

    100% {
        left: 100%
    }
}