.waiting_for_approval_page_container {
    width: 100vw;
    height: 100vh;
    background: #F5F6F7 !important;
    margin: 0 !important;
    padding: 0 !important;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* expanded when quote button clicked */
.waiting_for_approval_page_container.expanded {
    height: 1200px;
}

.waiting_for_approval_page_headingMainCont {
    width: 80%;
}

.waiting_for_approval_page_logoHeader {
    height: 64px;
    margin-top: 60px;
}

.waiting_for_approval_page_section {
    width: 100%;
    height: auto;
    border-radius: 24px;
    padding-top: 40px;
    padding-right: 24px;
    padding-bottom: 40px;
    padding-left: 24px;
    background: #FFFFFF;
    margin-top: 40px;
    margin-bottom: 80px;
}

.waiting_for_approval_page_Heading {
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.waiting_for_approval_page_Heading h1 {
    color: #091E42;
    font-weight: 600;
    font-size: 33px;
}

.waiting_for_approval_page_Heading span {
    color: #A6AEBB;
    font-weight: 500;
    font-size: 18px;
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 25px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 110px;
}

.progress-step.active p {
    margin-top: 8px;
    font-size: 14px;
    color: #F6D23C;
    font-weight: 500;
}

.progress-line {
    width: 100px;
    height: 2px;
    background-color: #D8D8D8;
}

.progress-line.active {
    background-color: #091E42;
}

.circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #D8D8D8;
    color: #C2C7D0;
    background-color: #fff;
}

.progress-step.active .circle {
    background-color: #FFD84D;
    border: none;
    color: #fff;
}

.progress-step.completed .circle {
    background-color: #091E42;
    color: #fff;
    border: none;
}

.progress-step.completed .fa-check {
    font-size: 14px;
}

.progress-step.completed p {
    margin-top: 6px;
    font-size: 14px;
    color: #091E42;
    font-weight: 500;
}

.progress-step:not(.active):not(.completed) p {
    color: #C2C7D0;
    width: 140px;
}

.waiting_for_approval_pageCont {
    width: 100%;
    height: auto;
    padding-right: 24px;
    padding-left: 24px;
    border: none;
    border-radius: 24px;
    background: #FFFFFF;
}

.waiting_for_approval_pageContentCont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 300px;
}

.waiting_for_approval_pageContentImg {
    width: 80px;
    height: 96px;
    margin-top: 20px;
}

.waiting_for_approval_pageContent {
    width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.waiting_for_approval_pageContent h1{
    font-size: 28px;
    color: #091E42;
    font-weight: 600;
}

.waiting_for_approval_pageContent span{
    font-size: 16px;
    color: #5D6B82;
    font-weight: 400;
}

/* submit and cancel Btn css */
.waiting_for_approval_pageBtnCont {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waiting_for_approval_pageQuoteBtn button {
    width: 196px;
    height: 64px;
    border: none;
    border-radius: 16px;
    padding-top: 16px;
    padding-right: 20px;
    padding-bottom: 16px;
    padding-left: 20px;
    background: #F6D23C;
    color: #000000;
    font-weight: 500;
    font-size: 18px;
    margin-left: 5px;
}