.login_customer {
    font-size: 12pt;
    text-align: center;
    margin-bottom: 15px;
}

.login_customer span:hover, .login_form .field .submit:hover {
    background-image: linear-gradient(#42007d, #7800e7);
}

.login_customer span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    color: white;
    background-image: linear-gradient(#7800e7, #42007d);
    width: 120px;
    padding: 5px 0;
    border-radius: 15px;
    cursor: pointer;
}

.login_form {
    width: 100%;
    max-width: 340px;
    margin: auto;
}

.login_form h2 {
    font-size: 15pt;
    text-align: center;
    margin: 0 0 20px 0;
}

.login_form .field {
    margin-bottom: 10px;
}

.login_form .field label {
    display: inline-block;
    vertical-align: middle;
    font-size: 12pt;
    width: 100px;
}

.login_form .field input {
    display: inline-block;
    vertical-align: middle;
    font-size: 12pt;
    outline: none;
    border: 1px solid gray;
    border-radius: 4px;
    padding: 7px;
    width: calc(100% - 100px);
}

.login_form .field .submit {
    display: inline-block;
    vertical-align: middle;
    color: white;
    background-image: linear-gradient(#7800e7, #42007d);
    width: 120px;
    padding: 8px 0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 11pt;
    font-weight: bold;
    text-align: center;
    margin-left: 20px;
    margin-top: 10px;
}

.login_form .field .cancel {
    display: inline-block;
    vertical-align: middle;
    color: #353535;
    background-color: #bdbdbd;
    width: 120px;
    padding: 8px 0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 11pt;
    font-weight: bold;
    text-align: center;
    margin-left: 60px;
    margin-top: 10px;
}

.login_form .field .cancel:hover {
    background-color: #ababab;
}

.error_text {
    font-size: 11pt;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: red;
}

.step-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.steps-col {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.step-wrapper > .step {
    flex: 1 1 0;
    min-width: 0;
}

.step {
    display: flex;
    flex-direction: column;
    background-color: #42007d;
    padding: 10px 0;
    border-radius: 8px;
    overflow: hidden;
}

.steps-col .step {
    flex: 1 1 auto;
}

#step3 {
    background-color: #7800e7;
}

.step-header {
    display: flex;
    align-items: flex-start;
    color: white;
    font-weight: bold;
    padding: 0 15px 10px;
}

.step-num {
    flex: 0 0 auto;
    background-color: #370069;
    font-size: 13pt;
    line-height: 30px;
    padding: 0 10px;
    border-radius: 15px;
    white-space: nowrap;
}

#step2 .step-num {
    background-color: #52009e;
}

.step-name {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 13pt;
    line-height: 30px;
    margin-left: 10px;
    overflow-wrap: anywhere;
}

.step-header .price {
    flex: 0 0 62px;
    width: 62px;
    font-size: 11pt;
    line-height: 15px;
    text-align: center;
}

.step-header .price.sale-price {
    margin-left: 5px;
}

.step-body {
    display: flex;
    flex-direction: column;
}

.step-body .product_row {
    position: relative;
    display: flex;
    align-items: flex-start;
    background-color: #f2f2f2;
    padding: 14px 15px;
    cursor: pointer;
}

#step3 .step-body .product_row {
    padding: 17px 15px;
}

.step-body .product_row:nth-of-type(even) {
    background-color: #e5e5e5;
}

.product_row input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.product_row .input-custom-view {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    background-color: white;
    margin: 1px 10px 0 0;
    border: 4px solid #7800e7;
    border-radius: 50%;
    position: relative;
}

#step1 .product_row .input-custom-view {
    border-color: #42007d;
}

.product_row .input-custom-view.checkbox-custom {
    border-radius: 2px;
}

.product_row input:focus + .input-custom-view {
    box-shadow: 0 0 0 2px rgba(120, 0, 231, .25);
}

.product_row input:checked + .input-custom-view {
    border-width: 3px;
}

.product_row input:checked + .input-custom-view.checkbox-custom {
    border-width: 4px;
}

.product_row input:checked + .input-custom-view:not(.checkbox-custom)::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #7800e7;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

#step1 .product_row input:checked + .input-custom-view:not(.checkbox-custom)::before {
    background-color: #42007d;
}

.product_row input:checked + .input-custom-view.checkbox-custom::before {
    content: "";
    position: absolute;
    left: 5px;
    top: -13px;
    width: 6px;
    height: 20px;
    border: solid #a94bff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.product_row .product_name {
    display: flex;
    flex: 0 1 auto;
    align-items: center;
    min-width: 0;
    font-size: 13pt;
    line-height: 21px;
    overflow-wrap: anywhere;
    width: 57%;
}

.product_row img {
    flex: 0 0 auto;
    height: 20px;
    margin-left: 5px;
}

.product_row .compare {
    flex: 0 0 65px;
    width: 65px;
    font-size: 10pt;
    color: #0074d6;
    text-decoration: underline;
    line-height: 21px;
    text-align: center;
    cursor: pointer;
}

.grow {
    flex: 1 1 auto;
    min-width: 10px;
}

.product_row .price {
    flex: 0 0 62px;
    width: 62px;
    font-size: 12pt;
    line-height: 21px;
    text-align: center;
    white-space: nowrap;
}

.product_row .price.regular-price {
    text-decoration: line-through;
}

.product_row .price.sale-price {
    margin-left: 5px;
}

.step-body .shipping {
    display: flex;
    align-items: center;
    background-color: #e5e5e5;
    padding: 0 15px 8px;
}

.step-body .shipping label {
    min-width: 0;
    font-size: 13pt;
    line-height: 22px;
    margin-left: 28px;
    margin-right: 10px;
}

.step-body .shipping select {
    width: 150px;
    max-width: 45%;
    font-size: 11pt;
}

.step-body .shipping .price {
    flex: 0 0 62px;
    width: 62px;
    font-size: 12pt;
    line-height: 22px;
    text-align: center;
    white-space: nowrap;
}

.haitian_bg {
    background-color: #e8e8e8;
    padding: 20px 50px;
    margin-top: 30px;
    border-bottom: 2px solid white;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.total_info {
    background-color: #e8e8e8;
    padding: 10px;
    border-top: 2px solid #cfcfcf;
    text-align: right;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    margin-bottom: 40px;
}

.total_info .total_amount {
    font-weight: bold;
    font-size: 23pt;
    position: relative;
}

.total_info .total_amount:before {
    content: "Total Order Amount";
}

.total_info .total_amount span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    margin-right: 50px;
}

.pay_via {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: auto;
    text-align: center;
}

.pay_via .pay_type {
    flex: 1 1 0;
    max-width: 360px;
    padding: 0 5px;
}

.pay_via .pay_type .pay {
    font-size: 13pt;
    font-weight: bold;
    color: white;
    margin: auto;
    max-width: 300px;
    padding: 15px 0;
    border-radius: 15px;
    cursor: pointer;
}

.pay_via .pay_type img {
    height: 35px;
    margin-top: 10px;
}

.pay_via .pay_type .pay.cc {
    background-image: linear-gradient(#f2a443, #d95705);
}

.pay_via .pay_type .pay.cc:hover {
    background-image: linear-gradient(#d95705, #f2a443);
}

.pay_via .pay_type .pay.pp {
    background-image: linear-gradient(#4394df, #0c5cb4);
}

.pay_via .pay_type .pay.pp:hover {
    background-image: linear-gradient(#0c5cb4, #4394df);
}

.pull {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: auto;
}

.pull img {
    display: block;
    width: 100%;
}

.pull > div {
    position: absolute;
    width: 33.3333333%;
    top: 0;
    left: 0;
    height: 100%;
    cursor: help;
}

.pull > div.pull2 {
    left: 33.3333333%;
}

.pull > div.pull3 {
    left: 66.66666666%;
}

.pull > div:hover + .msg_info {
    display: block;
}

.pull .msg_info {
    display: none;
    color: #464438;
    border: 3px solid #545142;
    border-radius: 5px;
    width: 500px;
    background-color: #f9f0c5;
    font-size: 13pt;
    padding: 5px 12px;
    text-align: justify;
    top: 100%;
    height: auto;
    left: 50%;
    transform: translate(-50%, 0);
}

.more_info_compare {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
}

.step .step-header:nth-child(3) {
    padding-top: 5px;
    padding-bottom: 5px;
}

#licenses_num {
    width: 60px;
    font-size: 11pt;
}

.kcreator_select {
    font-size: 11pt;
    margin-left: 5px;
    margin-right: 5px;
}

#step1 .product_row {
    padding: 7px 15px;
}
.info-price {
    width: 115px;
    font-size: 11pt;
    text-align: center;
    line-height: 21px;
    font-style: italic;
}

.modules-discount-notice {
    position: fixed;
    top: 16px;
    right: 0;
    z-index: 10000;
    width: 440px;
    max-width: calc(100vw - 32px);
    padding: 14px 18px 18px;
    overflow: hidden;
    color: white;
    background-image: linear-gradient(135deg, #7800e7, #42007d);
    border: 1px solid rgba(255, 255, 255, .35);
    border-right: 0;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 12px 28px rgba(66, 0, 125, .28);
    font-family: Arial, sans-serif;
    font-size: 12pt;
    font-weight: bold;
    line-height: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(110%, 0, 0);
}

.modules-discount-notice.show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    animation: modulesDiscountNoticeSlideIn .25s ease-out both;
}

.modules-discount-notice-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, .85);
    transform-origin: left center;
}

.modules-discount-notice.show .modules-discount-notice-progress {
    animation: modulesDiscountNoticeProgress 4s linear forwards;
}

@keyframes modulesDiscountNoticeSlideIn {
    from {
        opacity: 1;
        transform: translate3d(110%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes modulesDiscountNoticeProgress {
    to {
        transform: scaleX(0);
    }
}

@media (max-width: 1045px) {
    .main_wrapper .content {
        width: calc(100% - 40px);
    }

    .step-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .steps-col {
        gap: 10px;
    }

    .steps-col,
    .step-wrapper > .step {
        flex: none;
        width: 100%;
        max-width: 530px;
    }

    .haitian_bg {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .main_wrapper .content {
        width: 100%;
    }

    .login_customer {
        font-size: 11pt;
    }

    .steps-col,
    .step-wrapper > .step {
        max-width: 420px;
    }

    .step {
        padding-top: 7px;
        padding-bottom: 0;
        border-radius: 0;
    }

    #step3.step {
        padding-bottom: 10px;
    }

    .step-header {
        padding: 0 10px 7px;
    }

    .step-num {
        font-size: 11pt;
        line-height: 22px;
        padding: 0 7px;
        border-radius: 7px;
    }

    .step-name {
        font-size: 11pt;
        line-height: 22px;
        margin-left: 8px;
    }

    .step-header .price {
        flex-basis: 45px;
        width: 45px;
        font-size: 9pt;
        line-height: 11px;
    }

    .step-header .price.sale-price {
        margin-left: 4px;
    }

    .step-body .product_row {
        padding: 7px 10px;
    }

    #step3 .step-body .product_row {
        padding: 5px 10px;
    }

    .product_row .input-custom-view {
        flex-basis: 16px;
        width: 16px;
        height: 16px;
        margin-right: 8px;
        border-width: 3px;
    }

    .product_row input:checked + .input-custom-view:not(.checkbox-custom)::before {
        width: 8px;
        height: 8px;
    }

    .product_row input:checked + .input-custom-view.checkbox-custom::before {
        left: 3px;
        top: -2px;
        width: 6px;
        height: 12px;
    }

    .product_row .product_name {
        font-size: 11pt;
        line-height: 18px;
    }

    .product_row img {
        height: 18px;
    }

    .product_row .compare {
        flex-basis: 55px;
        width: 55px;
        font-size: 9pt;
        line-height: 18px;
    }

    .product_row .price {
        flex-basis: 45px;
        width: 45px;
        font-size: 10pt;
        line-height: 18px;
    }

    .product_row .price.sale-price {
        margin-left: 4px;
    }

    .step-body .shipping {
        padding: 0 10px 5px;
    }

    .step-body .shipping label {
        font-size: 11pt;
        line-height: 18px;
        margin-left: 24px;
    }

    .step-body .shipping select {
        width: 130px;
        max-width: 42%;
        font-size: 10pt;
    }

    .step-body .shipping .price {
        flex-basis: 45px;
        width: 45px;
        font-size: 10pt;
        line-height: 18px;
    }

    .haitian_bg {
        padding: 10px;
    }

    .total_info .total_amount {
        font-size: 20pt;
    }

    .pay_via .pay_type .pay {
        font-size: 11pt;
        padding: 10px 0;
        max-width: 280px;
    }

    .pull {
        display: none;
    }
}

@media (max-width: 540px) {
    .modules-discount-notice {
        top: 10px;
        padding: 12px 14px;
        font-size: 11pt;
        line-height: 18px;
    }

    .total_info .total_amount {
        text-align: right;
    }

    .total_info .total_amount span {
        display: block;
    }

    .pay_via .pay_type img {
        max-height: 26px;
    }

    #cd_img {
        display: none;
    }

    .alert-block {
        top: 0;
    }
}

@media (max-width: 490px) {
    .pay_via {
        display: block;
    }

    .pay_via .pay_type {
        display: block;
        width: 70%;
        margin: 10px auto;
        max-width: none;
    }

    .pay_via .pay_type img {
        display: none;
    }
}

@media (max-width: 440px) {
    .total_info .total_amount:before {
        content: "Total";
    }

    .total_info .total_amount span {
        display: inline-block;
    }
}

@media (max-width: 374px) {
    .main_wrapper .content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .login_form h2 {
        font-size: 13pt;
        margin-bottom: 10px;
    }

    .error_text {
        font-size: 10pt;
    }

    .login_form .field label {
        display: block;
        width: 100%;
        margin-bottom: 5px;
        font-size: 11pt;
    }

    .login_form .field input {
        display: block;
        width: 100%;
        padding: 7px 5px;
        font-size: 11pt;
    }

    .login_form .field .submit {
        margin-left: calc(50% - 135px);
    }

    .login_form .field .cancel {
        margin-left: 30px;
    }
}
