Viewing File: /home/ubuntu/route-and-root-frontend-base/src/components/Cart/NewCheckOut.css

.newcheckout-sec {
    /* padding: 4em 0; */
    padding-top: 130px!important;
    padding-bottom: 4em;
}

.newcheckout-header-sec{
    background: var(--light-color);
    border-radius: 5px;
    padding:2em;
    border: 1px solid #f4f4f4;
}


.new-checkout-progress-bar{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* gap:2em; */
    margin-bottom: 0;
    position: relative;
}

.newcheckout-flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap:0.5em;
}

.new-checkout-progress-bar li{
    display: flex;
    /* flex-direction: column; */
    align-items: center;
}

.new-checkout-progress-bar h6{
    font-size: 1.2em;
    font-weight: 400;
    color: #74C1B9;
}

.new-checkout-progress-bar .count-no{
    /* background-color: #2955E3; */
    border: 1px solid #74C1B9;
    background-color: #F2F2F2;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #74C1B9;
    font-size: 1.4em;
    font-weight: 600;
    z-index: 2;
}

.new-checkout-progress-bar li::after {
    content: '';
    width: 100%;
    border-bottom: solid 1px #74C1B9;
    position: absolute;
    left: 0;
    top: 15px;
    z-index: 1;
}


.new-checkout-progress-bar li::before {
    content: '';
    width: 100%;
    border-bottom: solid 1px #74C1B9;
    position: absolute;
    left: 0;
    top: 15px;
    z-index: 1;
}

.new-checkout-progress-bar li:nth-child(1)::before{
    display: none;
}

.new-checkout-progress-bar li:nth-child(1)::after{
    display: none;
}

/* .new-checkout-progress-bar li::before,
.new-checkout-progress-bar li::after{
    display: inline-block;
    content: "";
    border-top: .2rem solid black;
    width: 4rem;
    transform: translateY(-1rem);
}

.new-checkout-progress-bar li.step1::before{
    display: none;
}

.new-checkout-progress-bar li.step3::after{
    display: none;
} */

.new-checkout-progress-bar .active .count-no{
    background-color:var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.new-checkout-progress-bar .active h6{
    color: var(--primary-color);
}

.add-new-address-link svg{
    width: 1em;
    fill: #3FA12E;
}

.add-new-address-link{
    display: flex;
    align-items: center;
    gap:0.5em;
    color: #3FA12E!important;
    text-decoration: none!important;
    padding: 2em;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2em;
    font-size: 1.1em;
    font-weight: 500;
}

.add-new-address-link:hover{
    color: #3FA12E!important;
}

.product-delivery-address-box{
    background: var(--light-color);
    border-radius: 10px;
    padding: 2em 2em;
    border: 1px solid #f4f4f4;
    margin: 2em 0 0;
    width: 100%;
}

.product-delivery-address-box .address-details h3{
    font-size: 1.3em;
    font-weight: 700;
    margin: 0;
    color:#09C600;
}

.product-delivery-status-card{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 0px 0px;
    padding: 2em 2em;
    margin-top: 2em;
}

.product-delivery-status-left-sec{
    display: flex;
    align-items: flex-start;
    gap:2em;
}

.product-delivery-status-right-sec{
    text-align: right;
}

.product-delivery-status-right-sec .checkout-product-content h5{
    font-weight: 500;
}

.product-delivery-status-bar{
    background: #FFCE31;
    border-radius: 0px 0px 10px 10px;
    padding: 0.5em;
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
    color: var(--tertiary-color);
}

.product-confirm-continue-box{
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2em;
}

.product-confirm-continue-box h4{
    font-size: 1.15em;
    font-weight: 700;
    color: var(--tertiary-color);
    margin: 0;
}

.product-order-summary-card{
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2em;
}

.product-order-summary-card h3{
    font-size: 1.3em;
    font-weight: 700;
    margin: 0;
    color: #09C600;
}

.product-order-summary-card h3 span{
    font-weight: 500;
    color: var(--tertiary-color);
}

.payment-add-money-wallet::before{
    display: none!important;
}

.dropdown-wallet .payment-add-money-wallet{
    justify-content: space-between!important;
}
Back to Directory File Manager