main {
    max-width: 1200px;
    margin: 0px auto;
}

#msform {
    min-height: 360px;
}

    #msform h2 {
        font-size: 25px;
        color: var(--main-color);
        margin-bottom: 20px;
        font-weight: bold;
        width: 100%;
        text-align: center;
    }

    #msform fieldset:not(:first-of-type) {
        display: none;
    }
.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16), inset 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    padding: 30px 0;
    margin: 0 -20px -30px;
}
    .action-button button {
        font-size: 1rem;
        font-weight: bold;
        color: white;
        border: 0 none;
        padding: 12px 40px;
        margin: 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .action-button .previous {
        background: #616161;
    }
        .action-button .previous:hover,
        .action-button .previous:focus {
            box-shadow: 0 0 0 2px white, 0 0 0 3px #616161;
            color: #fff;
        }
.custom-select2 {
    border: none;
    outline: 0;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px 3px 5px;
    margin: 2px;
    width: 100%;
}

    .custom-select2:focus {
        border-bottom: 2px solid var(--main-color);
    }

.progressbar > h2 {
    color: #6c6c6c;
    margin: 0 0 0px 15px;
    font-size: 18px;
    text-align: left;
}

.progressbar > div {
    width: 100%;
    background-color: #eeeeee;
    height: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    direction: ltr;
    overflow: hidden;
    border: 1px solid var(--orange-color);
}

.progressbar i {
    display: flex;
    flex: 1;
    position: relative;
}

    .progressbar i.active {
        background-color: var(--orange-color);
        transition: all 0.2s ease-in-out;
    }

        .progressbar i.active::after {
            background-color: var(--orange-color)
        }

    .progressbar i:not(:last-child)::after {
        content: "";
        position: absolute;
        border-style: solid;
        border-width: 2px 2px 0 0;
        top: 1.7px;
        width: 15px;
        height: 15px;
        right: -7px;
        transform: rotate(45deg);
        color: #fff;
        border-radius: 0 5px 0 0;
        z-index: 1;
        transition: all 0.2s ease-in-out;
    }

#progressList {
    color: var(--grey-color);
    list-style-type: none;
    font-size: 1rem;
}

    #progressList .active {
        color: var(--orange-color);
    }

    #progressList .deactive {
        color: #00bfa5;
    }


    #progressList li {
        margin-bottom: 20px;
    }

    #progressList span {
        background-color: var(--grey-color);
        min-width: 25px;
        aspect-ratio: 1;
        line-height: 25px;
        border-radius: 50%;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 15px;
        transition: all 0.2s ease-in-out;
    }

    #progressList .active span {
        background-color: var(--orange-color);
    }

    #progressList .deactive span {
        background-color: #00bfa5;
    }


.main-card {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    padding: 30px 20px;
    overflow: hidden;
}


.forgetLink {
    color: red;
    text-decoration: underline;
    text-underline-offset: 6px;
    font-size: 14px;
    margin-top: 12px;
    display: block;
}

/* factor-sec */
.factor-sec {
    color: var(--grey-text);
}

    .factor-sec table {
        color: var(--grey-text);
        text-align: center;
        font-size: 14px;
        white-space: nowrap;
    }

    .factor-sec thead th {
        background-color: #fff8f3;
        z-index: 10 !important;
    }

    .factor-sec th, .factor-sec td {
        vertical-align: middle !important;
        padding: .3rem !important;
    }

    .factor-sec .factor-header {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }

        .factor-sec .factor-header h3 {
            font-size: 16px;
            margin: auto 0;
        }

        .factor-sec .factor-header .details {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .factor-sec .factor-header img {
            height: 100px;
            width: auto;
            object-fit: contain;
        }



a[aria-expanded="true"] i.zmdi-chevron-down {
    transform: rotate(180deg)
}


.discount {
    transition: 0.2s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
    border-radius: 10px;
    height: 40px;
    font-size: 14px;
    width: fit-content;
    border: solid 0px #707070;
}

    .discount input {
        width: 100%;
        height: 100%;
        min-width: 180px;
        border: none;
        background-color: transparent;
        padding: 0 5px;
        border-radius: 10px 0 0 10px;
        text-align: center;
    }

    .discount button {
        transition: 0.2s ease-in-out;
        border: none;
        height: 100%;
        width: 7rem;
        border-radius: 10px;
        font-size: 10px;
        cursor: pointer;
        background-color: #009787;
        color: #fff;
    }

.discount-cont {
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
}

    .discount-cont > span {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--grey-text);
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
    }



.m-t10rem7mobile{
    margin-top:10rem!important;
}
.prices {
    margin-top: -20px;
    background-color: #f0f0f0;
    color: var(--grey-text);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%), inset 0 3px 6px 0 rgb(0 0 0 / 16%);
}

.red-price {
    position: relative;
    margin: 0 5px 0 15px;
}

    .red-price:before {
        position: absolute;
        content: "";
        left: 0;
        top: 50%;
        right: 0;
        border-top: 2px solid;
        border-color: red;
        transform: rotate(-10deg);
    }


.final-price {
    color: red;
}


.tableFixHead {
    overflow-y: auto;
}

    .tableFixHead thead th {
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .tableFixHead table {
        border-collapse: collapse;
        width: 100%;
    }


/* factor-sec */
        /* payment-sec */
        .final-sec {
    font-size: 16px;
    text-align: center;
}

/* peyment-sec */

/* only on mobile */
.pay-bottom-tab {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: none;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    padding: 0 5%;
    border-radius: 15px 15px 0 0;
/*    box-shadow: rgba(0, 0, 0, 0.16) 0px 0 6px;*/
    margin: 0;
    z-index: 10;
    color: var(--grey-text);
}

    .pay-bottom-tab .price {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }






@media only screen and (max-width: 600px) {
    .body_scroll {
        padding: 10px 10px 70px;
    }
    .MobileMargin-3{
        margin-top: 2rem!important;
    }
    .m-t10rem7mobile{
        margin-top : 7rem !important;
    }
    .main-card {
        margin: 0;
        padding: 20px 10px;
    }

    #msform h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .form-group.pmd-textfield {
        margin-bottom: 8px;
    }

    .action-button {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 10px;
        padding: 0;
        border-radius: 15px 15px 0 0;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 0 6px;
        margin: 0;
        z-index: 10;
    }

        .action-button button {
            width: 50%;
            margin: 0;
            border-radius: 0 15px 0 0;
        }

        .action-button .previous {
            border-radius: 15px 0 0;
            display: block !important;
        }


    .factor-sec .factor-header {
        font-size: 12px;
        text-align: center;
        flex-direction: column-reverse;
        margin-bottom: 20px;
    }

        .factor-sec .factor-header img {
            height: 50px;
            text-align: center;
        }

        .factor-sec .factor-header h3 {
            margin: 10px 0;
            font-size: 14px;
        }

    .factor-sec table {
        font-size: 14px;
    }

    .final-sec {
        font-size: 14px;
    }

        .final-sec img {
            max-width: 50%
        }

    .discount-cont {
        padding: 10px;
    }

        .discount-cont > span {
            font-size: 14px;
        }

    .discount {
        width: 100%;
    }

    .prices {
        display: none;
    }

    /* only on mobile */
    .pay-bottom-tab {
        display: flex;
    }
}
