#process-steps-container {
    min-height: 37px;
}
.outer-div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.middle-div {
    width:90%;
    min-height:75%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.navigation-btn-container {
    width: 75%;
    margin-bottom: 10px;
}
.inner-white-div {
    width:100%;
    height:100%;
    background-color: white;
    margin-bottom: 10px;
}
.inner-white-div.header-in {
    width: 100%;
    padding: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.inner-white-div .table-header {
    text-align: center;
    padding: 7px 0px;
    background-color: #f5f5f5;
}
.inner-white-div .table-header span {
    display: block;
    font-weight: bold;
    color: #3b3b3b;
}
.inner-white-div table {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 15px;
}
.inner-white-div table tbody tr {
    margin-top: 5px;
    border: 0;
}
.inner-white-div table tbody tr th {
    width: 50%;
    padding-right: 13px;
    font-weight: bold;
    text-align: right;
    border: 0;
}
.inner-white-div table tbody tr td {
    padding-left: 13px;
    border: 0;
}
@media only screen and (max-width: 767px) {
    .inner-white-div
	.table th {
        text-align: left;
    }
}
.inner-white-div h4 {
    margin-bottom: 20px;
}
.inner-white-div ul {
    line-height: 1.2;
}
.inner-white-div ul li {
    margin-bottom: 15px;
}
@media only screen and (max-width: 515px) {
    .navigation-btn-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
.confirmation-container {
    margin-top: 5px;
    margin-bottom: 20px;
}

/* step-reminder: before you start */
#before-you-start ~ .navigation-btn-container {
    width: 100%;
}

/* step-sale & step-buyer*/
#sold-details, #buyer-details {
    width: 60%;
    background: none;
}
#sold-details ~ .navigation-btn-container, 
#buyer-details ~ .navigation-btn-container {
    width: 50%;
    background: none;
}

/* step-buyer */
#buyer-details {
    width: 65%;
}
#buyer-details ~ .navigation-btn-container {
    width: 65%;
}

/* step-review */
#submitted-details {
    margin-top: 0;
    margin-bottom: 20px;
}
#success-message {
    width: 100%;
    display: none;
}
#success-message a {
    border-radius: 1000px;
    width: 22px;
    height: 22px;
    background-color: #409240;
    border: 2px #247830 solid;
    margin: 0 auto .5em;
    margin-right: 8px;
    font-size: 0px;
    cursor: default;
    pointer-events: none;
    display: inline-block;
}
#success-message a:before {
    font-family: "Glyphicons Halflings";
    content: "\e013";
    color: #ffffff;
    top: 2px;
    left: 1px;
    position: relative;
    font-size: 1.4rem;
    line-height: 1;
}