/******************** 
Import Font
********************/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');
@import url('icon-font/css/line-awesome.css');

*,
*:after,
*:before {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    color: #333333;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4em;
    /*font-size: 1.3em;*/
    font-weight: 300;
    letter-spacing: .01em;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    height: 100vh;
    /*background: url(../images/body-bg.jpg) no-repeat center center fixed;
    background-size: cover;*/
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

h1, h2, h3, h4, h5, strong, b {
    font-weight: 500;
}

    h4.adjust-pad-mar {
        padding: 10px 0px;
        margin: 0;
    }

/*--------------------------------------------------------------
# Responsive Grid
--------------------------------------------------------------*/
.grid {
    max-width: 1220px;
    margin: 0 auto;
}

    .grid.flex {
        width: 100%;
        max-width: 100%;
    }

.row {
    display: block;
    /*overflow:hidden;*/
    clear: both;
}

    .row:before,
    .row:after {
        content: "";
        display: table;
    }

    .row:after {
        clear: both;
    }

.row {
    zoom: 1; /* ie 6/7 */
}

    .row.height-adjust {
        height: 100%;
    }


. {
    width: 95%;
    margin: 0 auto;
}

*[class*="col_"].alpha {
    margin-left: 0;
}

*[class*="col_"].omega {
    margin-right: 0;
}

.col_1 {
    width: 6.6666666666667%;
}

.col_2 {
    width: 15%;
}

.col_3 {
    width: 23.333333333333%;
}

.col_4 {
    width: 31.666666666667%;
}

.col_5 {
    width: 40%;
}

.col_6 {
    width: 48.333333333333%;
}

.col_7 {
    width: 56.666666666667%;
}

.col_8 {
    width: 65%;
}

.col_9 {
    width: 73.333333333333%;
}

.col_10 {
    width: 81.666666666667%;
}

.col_11 {
    width: 90%;
}

.col_12 {
    width: 98.333333333333%;
}

.col_13 {
    width: 100%;
}

*[class*="col_"] {
    margin-left: 0.83333333333333%;
    margin-right: 0.83333333333333%;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    float: left;
    display: block;
}

.col_4-height {
    height: 64px;
}

.grid img {
    max-width: 100%;
    height: auto;
}

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0
}

.clearfix:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
    width: 0;
    height: 0
}

* html .clearfix, *:first-child + html .clearfix {
    zoom: 1
}

/* Viewable Grids 
	To view your grids, add the class .visible to any grid container.
	This will add a background color so you can see the layout of your grids. 
*/
*[class*="col_"].visible {
    background: #eee;
    border: 1px dotted #ccc;
}


/*---------------------------------
	Responsive Grid Media Queries - 1280, 1024, 768, 480
	1280-1024 	- desktop (default grid)
	1024-768 	- tablet landscape
	768-480 	- tablet 
	480-less 	- phone landscape & smaller
-----------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) {

    .grid *[class*="col_"] {
    }

    .grid {
        max-width: 1024px;
    }

    .show-desktop {
        display: block;
    }

    .hide-desktop {
        display: none;
    }

    .show-tablet {
        display: none;
    }

    .hide-tablet {
        display: block;
    }

    .show-phone {
        display: none;
    }

    .hide-phone {
        display: block;
    }
}

@media all and (min-width: 768px) and (max-width: 1024px) {

    .grid *[class*="col_"] {
    }

    .grid {
        max-width: 768px;
    }

    .show-desktop {
        display: none;
    }

    .hide-desktop {
        display: block;
    }

    .show-tablet {
        display: block;
    }

    .hide-tablet {
        display: none;
    }

    .show-phone {
        display: none;
    }

    .hide-phone {
        display: block;
    }
}


@media all and (min-width: 480px) and (max-width: 768px) {

    .grid *[class*="col_"] {
        float: none;
        width: auto;
        clear: both;
        display: block;
    }

        /* columns inside of columns */
        .grid *[class*="col_"] [class*="col_"] {
            margin-left: 0;
            margin-right: 0;
            width: 100%;
        }

    .grid {
        max-width: 480px;
    }

    .show-desktop {
        display: none;
    }

    .hide-desktop {
        display: block;
    }

    .show-tablet {
        display: block;
    }

    .hide-tablet {
        display: none;
    }

    .show-phone {
        display: none;
    }

    .hide-phone {
        display: block;
    }
}

@media all and (max-width: 480px) {

    .grid *[class*="col_"] {
        float: none;
        width: auto;
        clear: both;
        display: block;
    }

        /* columns inside of columns */
        .grid *[class*="col_"] [class*="col_"] {
            margin-left: 0;
            margin-right: 0;
            width: 100%;
        }

    .grid {
        max-width: 100%; /*320*/
    }

    .show-desktop {
        display: none;
    }

    .hide-desktop {
        display: block;
    }

    .show-tablet {
        display: none;
    }

    .hide-tablet {
        display: block;
    }

    .show-phone {
        display: block;
    }

    .hide-phone {
        display: none;
    }
}

/*--------------------------------------------------------------
# Form Styling
--------------------------------------------------------------*/
input, select, textarea, button {
    font-family: 'Poppins', sans-serif;
}

    input[type=text], input[type=password], select, textarea, input[type=date], input[type=email] {
        border: 1px solid #ccc;
        font-size: 14px;
        padding: 12px 13px;
        width: 100%;
        border-radius: 4px;
        box-sizing: border-box;
    }

    input[type=text], input[type=password], select {
        /*	height:35px;
	line-height:35px;*/
    }

        input[type=text].number-of-days {
            width: 20%;
        }

        input[type=text].number-of-days-12 {
            width: 12%;
        }

        input[type=text].number-of-days-26 {
            width: 26%;
        }

        input[type=text].amount {
            width: 40%;
        }

        input[type=text].amount-24 {
            width: 24%;
        }

        input[type=text].amount-48 {
            width: 48%;
        }

        input[type=text].amount-70 {
            width: 70%;
        }

        input[type=password].amount-70 {
            width: 70%;
        }

        input[type=email].amount-70 {
            width: 70%;
        }

textarea {
    height: 80px;
}

select {
    color: #666;
}


    input.disabled, select.disabled {
        background: #efefef;
        border: none;
    }

.price-sign {
    position: absolute;
    font-size: 20px;
    line-height: 45px;
    padding-left: 3px;
}

.price-field {
    padding-left: 25px !important;
}

.filefielddiv input {
    height: 0px;
    width: 0px;
    overflow: hidden;
}

.filefielddiv label {
    background: #ff7e18;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: inherit;
    font-weight: 500;
    margin-bottom: 1rem;
    outline: none;
    padding: 1rem 50px;
    position: relative;
    transition: all 0.3s;
    vertical-align: middle;
}

/*--------------------------------------------------------------
# Form Page Styling
--------------------------------------------------------------*/

.text-center {
    position: relative;
    z-index: 1;
}

.form-outer-wrapper-bg-img {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: opacity 500ms;
    z-index: 0;
    background: url(../images/body-bg.jpg) no-repeat center center fixed;
    background-size: cover;
}

.form-outer-wrapper {
    z-index: 1;
    position: relative;
}

    .form-outer-wrapper h1 {
        text-align: center;
        color: #fff;
        font-weight: 500;
    }

.form-white-wrapper {
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    position: relative;
    padding-bottom: 75px;
}

.h1 {
    text-align: center;
    color: #fff;
    font-weight: 500;
}

.h4 {
    font-size: 15px;
    letter-spacing: 0;
}

.call-center-details {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: solid 1px #999;
}

.form-white-wrapper h3 {
    text-align: center;
    color: #ff7e18;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .form-white-wrapper h3 i {
        font-size: 25px;
        margin-right: 5px;
    }

.note {
    font-size: 13px;
    color: #666;
    /*padding:4px 0;*/
    font-style: italic;
}

.questionlabel {
    padding: 25px 5px 0 5px;
    font-size: 16px;
    font-weight: 400;
    display: block;
}

    .questionlabel span {
        color: #ff0000;
    }

.previous-next-button-container {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #ff7e18;
    padding: 10px;
    color: #fff;
    left: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    box-sizing: border-box;
}

    .previous-next-button-container button {
        background: none;
        border: none;
        cursor: pointer;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        margin: 0;
        padding: 0 4px 0 12px;
    }

.primary-button {
    color: #fff;
    background: #ff7e18;
    /*padding: 10px 20px;*/
    text-align: center;
    border: solid 1px #ff7e18;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
    display: inline-block;
    text-decoration: none;
}

.primary-button.padding-10-20 {
    padding: 10px 20px;
}

    .primary-button.padding-10-18 {
        padding: 10px 18px;
    }

    .primary-button.margin-12-0 {
        margin: 12px 0;
    }

.secondary-button {
    color: #ff7e18;
    background: #fff;
    padding: 10px 20px;
    text-align: center;
    border: solid 1px #ff7e18;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
}

.submit-button-div {
    padding: 30px 0;
}

    .submit-button-div.padding-20-0-0-0 {
        padding: 20px 0 0 0;
    }

.modal-box-form-overlay {
    position: fixed;
    z-index: 1000;
    width: 30%;
    background: white;
    border-bottom: 1px solid #aaa;
    border-radius: 4px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    z-index: 1001;
}

.popupbox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 400px;
    position: relative;
    text-align: center;
}

/*.editpopupbox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 1284px;
    position: relative;
    height: 760px;
}*/

.editpopupbox {
    width: 80%;
    height: 80%;
    display: inline-block;
    position: fixed;
    top: 5%;
    left: 8%;
    bottom: 5%;
    padding: 2%;
    border: 3px solid orange;
    background-color: white;
    z-index: 1002;
    border-radius: 10px;
}

.popupbox.popupboxwide {
    max-width: 600px;
}

.popupMessage {
    padding: 20px 0;
}

    .popupMessage.adjust {
        padding: 0 0;
        height: 100%;
    }

.scrollable-container {
    height: 608px;
    overflow-y: scroll;
}

    .scrollable-container.height-adjust-80 {
        height: 80%;
    }

    .scrollable-container.height-adjust-86 {
        height: 86%;
    }

.popupclose {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    cursor: pointer;
}

.popup-checkmark {
    width: 20%;
    /*height: 50px;*/
    display: inline-block;
}

.popuplabel {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    /* text-align: left; */
    display: inline-block;
    margin: 10px 0 0 0;
}

.previous-button {
    width: 45%;
    float: left;
}

.next-button {
    width: 45%;
    float: right;
    text-align: right;
}

.row-adjust {
    margin: 14px 0 0 0;
    height: 44px;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    /* padding: 10px 0 0 0; */
    display: block;
}

    .form-label.adjust {
        font-size: 16px;
        font-weight: 500;
        padding: 0 0 0 5px;
        width: auto;
        display: inline-block;
        height: 44px;
        line-height: 44px;
    }

    .form-label span {
        color: #ff0000;
    }

.top-right-buttons {
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    color: #fff;
    /*background:#ff7e18;*/
}

    .top-right-buttons a {
        color: #fff;
        margin: 3px;
        background: #ff7e18;
        border-radius: 5px;
        padding: 7px 15px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
    }

        .top-right-buttons a i {
            font-size: 20px;
            margin-right: 5px;
        }

.errorMessage {
    color: #FF0000;
    font-size: 14px;
    font-weight: 400;
}

    .errorMessage.display-block {
        display: block;
    }

    .callerinfo {
        padding: 5px;
        font-size: 15px;
        text-align: right;
        border: solid 1px #ff7e18;
        border-radius: 5px;
        color: #ff7e18;
    }

    .callerinfo span {
        color: #000;
        font-weight: 500;
    }
/*--------------------------------------------------------------
# Login Page Styling
--------------------------------------------------------------*/

.login-div-outer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 350px;
    max-width: 400px;
    text-align: center;
}

    .login-div-outer h2 {
        margin-bottom: 0;
        font-weight: 500;
        color: #ff7e18;
    }

    .login-div-outer h3 {
        margin-top: 0;
        font-weight: 400;
    }

.login-formfield {
    position: relative;
    margin: 10px 0;
}

    .login-formfield i {
        position: absolute;
        left: 3px;
        top: 8px;
        font-size: 25px;
        color: #999;
    }

    .login-formfield input {
        padding-left: 30px;
        /*height:40px;*/
    }

/*--------------------------------------------------------------
# Offer Page Styling
--------------------------------------------------------------*/

.property-info-top {
    background: #ff7e18;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
}

.property-offer-address {
    font-size: 14px;
    line-height: 22px;
}

    .property-offer-address span {
        font-weight: 500;
    }

.property-offer-price {
    background: #333;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    padding: 8px;
    box-sizing: border-box;
    letter-spacing: 0.5px;
    line-height: 22px;
    margin: 0;
    width: 23%;
    /*width: 15em;*/
    float: right;
}

.agent-buyer {
    padding: 8px 0;
    text-align: right;
    font-size: 14px;
}

    .agent-buyer a {
        text-decoration: none;
        color: #ff7e18;
        font-weight: 500;
    }

.agentbuyerfield {
    padding: 15px 0;
}

.houseBuyerLogowrapper {
    min-height: 56px;
}

.documents-table {
    margin: 20px 0;
}

    .documents-table th {
        text-align: left;
        padding: 10px 0;
        border-bottom: solid 2px #000;
        font-weight: 500;
    }

    .documents-table td {
        padding: 10px 0;
        border-bottom: solid 1px #ccc;
    }

        .documents-table td i {
            font-size: 25px;
        }

    .documents-table.solution-2 {
        /*border: 1px solid #ccc;*/
        border-collapse: collapse;
        margin: 0;
        padding: 0;
        width: 100%;
        /*table-layout: fixed;*/
    }


        .documents-table.solution-2 tr {
            /*background-color: #f8f8f8;
			border: 1px solid #ddd;*/
            /*padding: .35em;*/
        }

        .documents-table.solution-2 th,
        .documents-table.solution-2 td {
            /*padding: 10px 0;*/
            border-bottom: solid 1px #ccc;
            padding: .625em;
            /*text-align: center;*/
        }

        .documents-table.solution-2 th {
            font-size: .85em;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

@media screen and (max-width: 770px) {
    .documents-table.solution-2 {
        border: 0;
    }


        .documents-table.solution-2 thead {
            border: none;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
        }

        .documents-table.solution-2 tr {
            border-bottom: 3px solid #ddd;
            display: block;
            margin-bottom: .625em;
        }

        .documents-table.solution-2 td {
            border-bottom: 1px solid #ddd;
            display: block;
            font-size: .8em;
            text-align: right;
        }

            .documents-table.solution-2 td::before {
                /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
                content: attr(data-label);
                float: left;
                font-weight: bold;
                text-transform: uppercase;
            }

            .documents-table.solution-2 td:last-child {
                border-bottom: 0;
            }
}

/*  added */
.documents-tableCustomize {
    margin: 20px 0;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

    .documents-tableCustomize th {
        text-align: center;
        padding: 10px 0;
        border: solid 1px #ccc;
        font-weight: 500;
        background-color: #ffefd5;
    }

    .documents-tableCustomize td {
        text-align: center;
        padding: 10px 0;
        border-bottom: solid 1px #eee;
        border-left: solid 1px #eee;
        border-right: solid 1px #eee;
    }

        .documents-tableCustomize td i {
            font-size: 25px;
        }
/**/
.heading-margin-top {
    margin-top: 40px !important;
}

.deletebutton {
    cursor: pointer;
}

.grid-row-cell-file {
    display: block;
    width: auto;
    padding: 0 8pt;
    height: 96pt;
    line-height: 96pt;
    border: 1px dotted #999;
    text-align: center;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.inline-field {
    display: inline-block;
    height: 32pt;
    line-height: 32pt;
    margin: 2pt 0;
}

.four-column {
    display: block;
    width: 96%;
    margin: 2pt auto;
}

.button-width-full {
    width: 96%;
    padding: 0.5px 16px;
    margin: 2pt auto;
}

.icon {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
}

.plus-2-32 {
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAl0lEQVRYhe3XIQ7CQBSE4X9JBbIHQVZzGMQKKjkHsoiKHga9kntQWYnBbpNp2jwzYyd5+ZKXfckm1OTyBG6VdmLsHsq4RgbAGWhXOimnDYBdY4ABBhgQDkj/266c0CtwqXQf4C3MWhK5fKnf9qMzh6/AAAMaYCL0GarJZQDulfbF2PXKuPAVGGCAAQaEA7b8jhdgXumk/ABLZhbBkgBgfwAAAABJRU5ErkJggg==);
}

.input-text-extralarge {
    width: 60%;
}

/* Added for Agent home */
.arrow-green {
    color: #21ba45;
}

.arrow-blue {
    color: #2185d0;
}

.offer-symbols {
    padding: 15px 0;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .offer-symbols i {
        font-size: 25px;
        margin-left: 25px;
    }

.red-up-arrow {
    font-size: 18px;
    color: #ff0000;
    display: inline-flex;
    vertical-align: middle;
    margin: 0 5px;
}

.green-down-arrow {
    font-size: 18px;
    color: #0C0;
    display: inline-flex;
    vertical-align: middle;
    margin: 0 5px;
}

.correrspondence-chat .chat {
    width: 80%;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    margin: 10px 0;
}

    .correrspondence-chat .chat.chat-from {
        background: #f4f4f4;
        float: left;
    }

    .correrspondence-chat .chat.chat-to {
        background: #dddddd;
        float: right;
    }

    .correrspondence-chat .chat .chat-name {
        color: #222;
        font-weight: bold;
        margin-bottom: 10px;
    }

        .correrspondence-chat .chat .chat-name span {
            color: #999;
            font-weight: normal;
            font-size: 13px;
        }

    .correrspondence-chat .chat .chat-reply-link {
        margin-top: 10px;
        font-size: 13px;
    }

        .correrspondence-chat .chat .chat-reply-link a {
            text-decoration: none;
            color: #ff7e18;
        }

.reply-div {
    width: 90%;
    float: right;
    margin: 15px 0;
}
/******************** 
Responsive Tabs
********************/
.tab_container_outer {
    padding: 36px 0;
}

    .tab_container_outer.display-block {
        display: block;
    }

    .tab_container_outer.padding-36-0-0-0 {
        padding: 36px 0 0 0;
    }

    .tab_container_outer.width-100 {
        width: 100%;
    }

ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    height: 40px;
    /*border-bottom: 1px solid #ff7e18;*/
    width: 100%;
    /*background:#f4f4f4;*/
    display: flex;
    justify-content: center
}

    ul.tabs li {
        float: left;
        margin: 0 5px;
        cursor: pointer;
        padding: 0px 40px;
        height: 40px;
        line-height: 40px;
        /*border-top: 1px solid #333;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	background-color: #666;*/
        color: #666;
        overflow: hidden;
        position: relative;
        background: #f4f4f4;
        border-radius: 5px;
    }

.tab_last { /*border-right: 1px solid #333; */
}

ul.tabs li:hover {
    background-color: #ccc;
    color: #333;
}

ul.tabs li.active {
    /*background-color: #fff;
	color: #333;
	border-bottom: 1px solid #fff;*/
    display: block;
    background: #ff7e18;
    color: #fff;
}

.tab_container {
    /*border: 1px solid #333;*/
    border-top: none;
    clear: both;
    float: left;
    width: 100%;
    background: #fff;
    /*overflow: auto;*/
    overflow: hidden;
    border: solid 1px #dddddd;
    border-radius: 5px;
    margin-top: 10px;
}

.tab_content {
    padding: 20px;
    display: none;
}

.form-white-wrapper h3.tab_drawer_heading {
    display: none;
}

@media screen and (max-width: 800px) {
    ul.tabs {
        display: none;
    }

    .form-white-wrapper h3.tab_drawer_heading {
        background-color: #ff7e18;
        color: #fff;
        border-top: 1px solid #fff;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .form-white-wrapper h3.d_active {
        /*background-color: #666;
        color: #fff;*/
        background: #ff7e18;
        color: #fff;
    }
}

/*@media screen and (max-width: 480px) {
    .tabs {
        display: none;
    }

    .tab_drawer_heading {
        background-color: #ccc;
        color: #fff;
        border-top: 1px solid #333;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .d_active {
        background-color: #666;
        color: #fff;
    }
}*/

.accordion {
    background-color: #fff;
    color: #ff7e18;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
    border-bottom: solid 1px #ccc;
    font-size: 500;
}

    .active, .accordion:hover {
        background-color: #f4f4f4;
    }

.panel {
    padding: 0 5px 15px 5px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

    .panel .documents-table th {
        font-size: 14px;
    }

    .panel .documents-table td {
        font-size: 14px;
    }

.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.table-scroll {
    position: relative;
    max-width: 100%;
    margin: 20px 0;
    overflow: hidden;
    /*border:1px solid #000;*/
}

.table-wrap {
    width: 100%;
    overflow: auto;
}

.table-scroll table {
    width: 100%;
    margin: auto;
    border-collapse: collapse;
    border-spacing: 0;
}

.table-scroll th {
    font-weight: 500;
}

.table-scroll td {
    text-align: center;
    font-size: 13px;
}

.table-scroll th, .table-scroll td {
    padding: 5px 10px;
    border-bottom: 1px solid #ccc;
    background: #fff;
    white-space: nowrap;
    vertical-align: top;
}

.table-scroll thead, .table-scroll tfoot {
    background: #f9f9f9;
}

.clone {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

    .clone th, .clone td {
        visibility: hidden
    }

    .clone td, .clone th {
        border-color: transparent
    }

    .clone tbody th {
        visibility: visible;
        color: #000000;
    }

    .clone .fixed-side {
        border-bottom: 1px solid #ccc;
        background: #eee;
        visibility: visible;
        text-align: left;
    }

    .clone thead, .clone tfoot {
        background: transparent;
    }

/* Added for Buyer home */

.arrow-green {
    color: #21ba45;
}

.arrow-blue {
    color: #2185d0;
}

.offer-symbols {
    padding: 15px 0;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .offer-symbols i {
        font-size: 25px;
        margin-left: 25px;
    }

.red-up-arrow {
    font-size: 18px;
    color: #ff0000;
    display: inline-flex;
    vertical-align: middle;
    margin: 0 5px;
}

.green-down-arrow {
    font-size: 18px;
    color: #0C0;
    display: inline-flex;
    vertical-align: middle;
    margin: 0 5px;
}

.correrspondence-chat .chat {
    width: 80%;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    margin: 10px 0;
}

    .correrspondence-chat .chat.chat-from {
        background: #f4f4f4;
        float: left;
    }

    .correrspondence-chat .chat.chat-to {
        background: #dddddd;
        float: right;
    }

    .correrspondence-chat .chat .chat-name {
        color: #222;
        font-weight: bold;
        margin-bottom: 10px;
    }

        .correrspondence-chat .chat .chat-name span {
            color: #999;
            font-weight: normal;
            font-size: 13px;
        }

    .correrspondence-chat .chat .chat-reply-link {
        margin-top: 10px;
        font-size: 13px;
    }

        .correrspondence-chat .chat .chat-reply-link a {
            text-decoration: none;
            color: #ff7e18;
        }

.reply-div {
    width: 90%;
    float: right;
    margin: 15px 0;
}
/******************** 
Responsive Tabs
********************/
.tab_container_outer {
    padding: 50px 0;
}

ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    height: 40px;
    /*border-bottom: 1px solid #ff7e18;*/
    width: 100%;
    /*background:#f4f4f4;*/
    display: flex;
    justify-content: center
}

    ul.tabs li {
        float: left;
        margin: 0 5px;
        cursor: pointer;
        padding: 0px 40px;
        height: 40px;
        line-height: 40px;
        /*border-top: 1px solid #333;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	background-color: #666;*/
        color: #666;
        overflow: hidden;
        position: relative;
        background: #f4f4f4;
        border-radius: 5px;
    }

.tab_last { /*border-right: 1px solid #333; */
}

ul.tabs li:hover {
    background-color: #ccc;
    color: #333;
}

ul.tabs li.active {
    /*background-color: #fff;
	color: #333;
	border-bottom: 1px solid #fff;*/
    display: block;
    background: #ff7e18;
    color: #fff;
}

.columnar-grid-container {
    margin: 12pt auto;
    display: block;
    width: 98%;
    box-shadow: 0 0 2px #999;
}

.cell-container {
    display: block;
    width: auto;
    border-bottom: 1px solid #CCC;
    height: 24pt;
    line-height: 24pt;
    font-size: 10pt;
    border-right: 1px solid #CCC;
}

    .cell-container.bg-color-orange {
        background-color: #fff4e6;
    }

.header {
    font-weight: 600;
    height: 32pt;
    line-height: 32pt;
}

.cell-content {
    display: block;
    width: auto;
    height: 24pt;
    line-height: 24pt;
    padding: 0 4pt;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .cell-content.header {
        height: 32pt;
        line-height: 32pt;
    }

.fixed-column {
    vertical-align: top;
    display: inline-block;
    width: 20%
}

.scrollable-column-container {
    vertical-align: top;
    display: inline-block;
    width: 80%;
    overflow-x: auto;
    white-space: nowrap;
}

.variable-column {
    display: inline-block;
    width: 25%;
}

.progress-bar-container {
    height: 100%;
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #ccc;
    text-align: center;
    opacity: 0.4;
}

progress {
    margin-top: 20%;
}

}

.grid-row-cell-container {
    font-size: 10pt;
    display: inline-block;
    width: 20%;
    height: 24pt;
    line-height: 24pt;
    border-bottom: 1px solid #EEE;
}

.grid-column-4 {
    width: 40%;
}

.grid-row-cell-text {
    display: inline-flex;
    width: 100%;
    /*width: auto;*/
    /*padding: 0 8pt;*/
}

.dropdown-container {
    display: block;
    width: 98%;
    margin: 0 auto;
}

.dropdown-selection-container {
    height: 24pt;
    line-height: 24pt;
    border-radius: 4pt;
    box-shadow: 0 0 1pt #666;
}

.failed-validation {
    border: 1px solid #FF0000;
}

.dropdown-selection-container:hover {
    cursor: pointer;
}

.dropdown-selection-text {
    /* padding-left:8pt; */
    font-size: 0;
    height: 24pt;
    line-height: 24pt;
    display: inline-block;
    width: 90%;
    font-size: 9pt;
    font-weight: 400;
    padding: 0 0 0 4pt;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
    /* background-color:#AAA; */
}

.dropdown-selection-arrow {
    font-size: 0;
    height: 24pt;
    line-height: 24pt;
    display: inline-block;
    width: 8%;
    vertical-align: top;
    /* background-color:#CCC; */
    border-left: 1pt solid #EEE;
    text-align: center;
}

.dropdown-options-container {
    margin: 2pt;
}

.dropdown-options {
    box-shadow: 0 0 1pt #666;
    position: absolute;
    background-color: #FFF;
    width: 28%;
    z-index: 1;
}

.dropdown-option {
    text-align: left;
}

.checkbox {
    display: inline-block;
    height: 14pt;
    line-height: 10pt;
    width: 14pt;
    border: 1pt solid #CCC;
    text-align: center;
    vertical-align: middle;
}

.checkbox-text {
    font-size: 10pt;
    /* font-weight:600; */
    display: inline-block;
    height: 16pt;
    line-height: 16pt;
    vertical-align: middle;
    padding-left: 4pt;
    margin-bottom: 0;
}

ul {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
    /*border-bottom: 1pt solid #EEE;*/
    border-radius: 4pt;
}

    ul li {
        padding: 2pt 8pt;
        display: block;
        width: auto;
        height: 20pt;
        line-height: 16pt;
        /*border: 1pt solid #EEE;*/
        border-bottom: none;
        text-align: center;
        font-weight: 500;
    }

.action-container {
    margin: 0 0 12px 0;
}

.icon {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
}

.checkmark {
    background-size: contain;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAA7EAAAOxAGVKw4bAAABk0lEQVRYhb3WL0heURjH8Q9DROTFMMaCyILBILK4ZBpikgWRYVgSo8EgImOsmA0Li8M4TEuLIgsmkUXDkiwYxoJBXsaLXMPxuhf/nHO8vOf+4Gn3PN/fOfc8z3loT+OYR6dF5o0m8AcVTjHXJvwJDq7hdVxiB8NtGNi4Be+PvdLwGXQjBs5KwodxHIFX+FjSwHYC/lPBO/AKvQj8H16Wgo/gJAKv8KEUnFBeMfgRhkrBZ4UafwjexXQpeAe/IvBK6AnF9DkBPxS6YhHNiR/9BaZKwceEBya2+7WcRKPYFW7pY16rLwn4voyj7+BH36Iu3mTAFxLwc7xIJRm9Be/vVouRdU+FxyRmYCVjE75GEvTwtsG6Ct9z4PA7keg+E0uJNX+FESxLK+IlVJtYvv7+uf/j1UOx7JFaTyTsN/Et8V3jKSc2OtWROqkzPGtqALYyTMQip3STet8QvjsIeFMTp0JLHqhyf8clXg8aXmszw8CnUvBaseo4EVp5ca27W4I9YfptTavCA1Ub2GwTXmsS7wxw51cEpTaP59+u5gAAAABJRU5ErkJggg==);
}

.arrow-up {
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAA7EAAAOxAGVKw4bAAABGklEQVRYhe3Vr0pDcRgG4EeRYRgGw7KaDCLmYTCKQcwmMXkBw1tY8AJEDGaTeAm7AoNRxCRiNIlMPYazD4ao29n5Z9gLb35evvD7Mc00+bKE1brwWfRwg0YdA46RDNqtGt/A29CAPjarwudxO4RH79GsYsDJD3j0vGx8Cx9/DEiwWxa+gIcReIJntMoYcDEGHr0qGt/LgEcPisJb0rNmHfAifSlz53oCPNqTvpgT5zAHHu1Miq9Iz5h3wCvWsuLx0eTFo5k/rE6BeHTsD2tderaiB/TRHoU3pOcqGo/eGfFhdUvEo2e/4W3pmcoekGDnO94cnKcKPMEjFocHnFaIRy8D364Bj+7P4AjLmJPz3c6QT7zjqSJvmn+cL5KmZXPG8ODPAAAAAElFTkSuQmCC);
}

.arrow-down {
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAA7EAAAOxAGVKw4bAAABHUlEQVRYhe3VMUoDQRiG4UexshJLEQsrDxA8gIhYiaXkDOIJJOARJHgASSGeQSxFxAOkFhFsxCqFhKwWmYU1mN1kM7spzAs/swPDvB9bzMeC/84SmtjAchiZdfT7r/0oSc4+yawJ3uEI33Oa4zTZ9RzknexvWsNLjfLX4PzFHgY1yAfYH5WnXNYQoD1ODqvoVijvBkcuDfQrkPexWyRPaVUQ4GJSOazgKaL8Odw5FTvoRZD3wl2lOI0Q4KysnOG7fzeD/F5xdxSyiY8S8k9szSpPOSkRoBlLnnIzhfw2thzWDUukSP4WzlbCgfzCGuCwKnlKOyfAVdVyxhfWREUTiwa+MvKpiiYW55kArbrlDMvlAY9KFE0stsMsWFCaH1OwaIoHhAtGAAAAAElFTkSuQmCC);
}

.hide {
    display: none;
}

.icon-button {
    display: block;
    width: 96%;
    margin: 4pt auto;
    height: 36pt;
    line-height: 36px;
    background-color: #FFF;
    border: none;
    box-shadow: 0 0 2pt #ff7e18;
    text-align: center;
    vertical-align: middle;
    border-radius: 3pt;
}

.icon-button-text {
    display: inline-block;
    margin: 0 0 0 12pt;
    font-weight: 500;
    vertical-align: middle;
}

.spacer-4 {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    vertical-align: middle;
}

.reviseoffer-table {
    margin: 20px 0;
}

    .reviseoffer-table th {
        text-align: left;
        padding: 10px 0;
        border-bottom: solid 2px #000;
        font-weight: 500;
    }

    .reviseoffer-table td {
        padding: 10px 0;
        border-bottom: solid 1px #ccc;
    }

        .reviseoffer-table td i {
            font-size: 25px;
        }

.text-danger {
    color: #dc3545 !important;
}

blockquote {
    border-left: 0.3rem solid #d1d1d1;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 1.5rem;
}

    blockquote *:last-child {
        margin-bottom: 0;
    }

.button,
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
    background-color: #ff7e18;
    border: 0.1rem solid #ff7e18;
    /* border-radius: .4rem;*/
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    height: 3.8rem;
    letter-spacing: .1rem;
    line-height: 3.8rem;
    padding: 0 3.0rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}


    .button.button-small,
    button.button-small,
    input[type='button'].button-small,
    input[type='reset'].button-small,
    input[type='submit'].button-small {
        height: 2.8rem;
        line-height: 2.8rem;
    }

    .button:focus, .button:hover,
    button:focus,
    button:hover,
    input[type='button']:focus,
    input[type='button']:hover,
    input[type='reset']:focus,
    input[type='reset']:hover,
    input[type='submit']:focus,
    input[type='submit']:hover {
        background-color: #333333;
        border-color: #333333;
        color: #fff;
        outline: 0;
    }

    .button[disabled],
    button[disabled],
    input[type='button'][disabled],
    input[type='reset'][disabled],
    input[type='submit'][disabled] {
        cursor: default;
        opacity: .5;
    }

        .button[disabled]:focus, .button[disabled]:hover,
        button[disabled]:focus,
        button[disabled]:hover,
        input[type='button'][disabled]:focus,
        input[type='button'][disabled]:hover,
        input[type='reset'][disabled]:focus,
        input[type='reset'][disabled]:hover,
        input[type='submit'][disabled]:focus,
        input[type='submit'][disabled]:hover {
            background-color: #ff7e18;
            border-color: #ff7e18;
        }

    .button.button-outline,
    button.button-outline,
    input[type='button'].button-outline,
    input[type='reset'].button-outline,
    input[type='submit'].button-outline {
        background-color: transparent;
        color: #ff7e18;
    }

        .button.button-outline:focus, .button.button-outline:hover,
        button.button-outline:focus,
        button.button-outline:hover,
        input[type='button'].button-outline:focus,
        input[type='button'].button-outline:hover,
        input[type='reset'].button-outline:focus,
        input[type='reset'].button-outline:hover,
        input[type='submit'].button-outline:focus,
        input[type='submit'].button-outline:hover {
            background-color: transparent;
            border-color: #333333;
            color: #333333;
        }

        .button.button-outline[disabled]:focus, .button.button-outline[disabled]:hover,
        button.button-outline[disabled]:focus,
        button.button-outline[disabled]:hover,
        input[type='button'].button-outline[disabled]:focus,
        input[type='button'].button-outline[disabled]:hover,
        input[type='reset'].button-outline[disabled]:focus,
        input[type='reset'].button-outline[disabled]:hover,
        input[type='submit'].button-outline[disabled]:focus,
        input[type='submit'].button-outline[disabled]:hover {
            border-color: inherit;
            color: #ff7e18;
        }

    .button.button-clear,
    button.button-clear,
    input[type='button'].button-clear,
    input[type='reset'].button-clear,
    input[type='submit'].button-clear {
        background-color: transparent;
        border-color: transparent;
        color: #ff7e18;
    }

        .button.button-clear:focus, .button.button-clear:hover,
        button.button-clear:focus,
        button.button-clear:hover,
        input[type='button'].button-clear:focus,
        input[type='button'].button-clear:hover,
        input[type='reset'].button-clear:focus,
        input[type='reset'].button-clear:hover,
        input[type='submit'].button-clear:focus,
        input[type='submit'].button-clear:hover {
            background-color: transparent;
            border-color: transparent;
            color: #333333;
        }

        .button.button-clear[disabled]:focus, .button.button-clear[disabled]:hover,
        button.button-clear[disabled]:focus,
        button.button-clear[disabled]:hover,
        input[type='button'].button-clear[disabled]:focus,
        input[type='button'].button-clear[disabled]:hover,
        input[type='reset'].button-clear[disabled]:focus,
        input[type='reset'].button-clear[disabled]:hover,
        input[type='submit'].button-clear[disabled]:focus,
        input[type='submit'].button-clear[disabled]:hover {
            color: #ff7e18;
        }

    .button i,
    button i,
    input[type='button'] i,
    input[type='reset'] i,
    input[type='submit'] i {
        font-size: 20px;
        margin: 0 5px 0 5px;
    }

.button,
button {
    display: inline-flex;
    align-items: center;
}

code {
    background: #f4f5f6;
    border-radius: .4rem;
    font-size: 86%;
    margin: 0 .2rem;
    padding: .2rem .5rem;
    white-space: nowrap;
}

pre {
    background: #f4f5f6;
    border-left: 0.3rem solid #ff7e18;
    overflow-y: hidden;
}

    pre > code {
        border-radius: 0;
        display: block;
        padding: 1rem 1.5rem;
        white-space: pre;
    }

hr {
    border: 0;
    border-top: 0.1rem solid #cccccc;
    margin: 1.8rem 0;
    /*border-top: 0.1rem solid #f4f5f6;
    margin: 3.0rem 0;*/
}

input[type='color'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
input[type='week'],
input:not([type]),
textarea,
select {
    -webkit-appearance: none;
    /*background-color: transparent;*/
    border: 0.1rem solid #d1d1d1;
    border-radius: .4rem;
    box-shadow: none;
    box-sizing: inherit;
    height: 3.8rem;
    padding: .6rem 1.0rem .7rem;
    width: 100%;
}

    input[type='color']:focus,
    input[type='date']:focus,
    input[type='datetime']:focus,
    input[type='datetime-local']:focus,
    input[type='email']:focus,
    input[type='month']:focus,
    input[type='number']:focus,
    input[type='password']:focus,
    input[type='search']:focus,
    input[type='tel']:focus,
    input[type='text']:focus,
    input[type='url']:focus,
    input[type='week']:focus,
    input:not([type]):focus,
    textarea:focus,
    select:focus {
        border-color: #ff7e18;
        outline: 0;
    }

    input[type='color']:disabled,
    input[type='date']:disabled,
    input[type='datetime']:disabled,
    input[type='datetime-local']:disabled,
    input[type='email']:disabled,
    input[type='month']:disabled,
    input[type='number']:disabled,
    input[type='password']:disabled,
    input[type='search']:disabled,
    input[type='tel']:disabled,
    input[type='text']:disabled,
    input[type='url']:disabled,
    input[type='week']:disabled,
    input:not([type]),
    textarea:disabled,
    select:disabled {
        background: #f4f4f4;
    }

select {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%23d1d1d1" d="M0,0l6,8l6-8"/></svg>') center right no-repeat;
    padding-right: 3.0rem;
}

    select:focus {
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%23ff7e18" d="M0,0l6,8l6-8"/></svg>');
    }

    select[multiple] {
        background: none;
        height: auto;
    }

textarea {
    min-height: 6.5rem;
}

label,
legend {
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    /*font-weight: 700;*/
    margin-bottom: .5rem;
}

    label span {
        color: #ff0000;
    }

fieldset {
    border-width: 0;
    padding: 0;
}

input[type='checkbox'],
input[type='radio'] {
    display: inline;
}

/*.label-inline {
    display: inline-block;
    font-weight: normal;
    margin-left: .5rem;
}*/

.input-margin-btm-0 {
    margin-bottom: 0
}

.input-margin-top-1-5 {
    margin-top: 1.5rem;
}

.input-margin-left-0 {
    margin-left: 0
}

.icon-margin-0 {
    margin: 0
}

.label-inline {
    display: inline-flex;
    font-weight: normal;
    margin-left: .5rem;
    align-items: center;
}

.label-inline-left {
    display: inline-flex;
    font-weight: normal;
    margin-right: .5rem;
    align-items: center;
}

.label-inline-input {
    display: inline-flex;
    font-weight: 300;
    margin-right: 0.5rem;
    align-items: end;
    margin-bottom: 0;
    /*margin-bottom: 1.5rem;*/
}

    .label-inline-input input {
        margin-bottom: 0;
    }

.container {
    margin: 0 auto;
    max-width: 112.0rem;
    padding: 0 2.0rem;
    position: relative;
    width: 100%;
}

    .container.bg-white {
        background-color: #fff;
    }

    .container.height-15 {
        height: 15px;
    }

    .container.height-20 {
        height: 20px;
    }

.row {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
}

    .row.row-no-padding {
        padding: 0;
    }

        .row.row-no-padding > .column {
            padding: 0;
        }

    .row.row-wrap {
        flex-wrap: wrap;
    }

    .row.row-top {
        align-items: flex-start;
    }

    .row.row-bottom {
        align-items: flex-end;
    }

    .row.row-center {
        align-items: center;
    }

    .row.row-stretch {
        align-items: stretch;
    }

    .row.row-baseline {
        align-items: baseline;
    }

    .row.display-block {
        display: block;
    }

    .row.bottom-action {
        display: block;
        clear: both;
        width: 100%;
    }

    .row .column {
        display: block;
        flex: 1 1 auto;
        margin-left: 0;
        max-width: 100%;
        width: 100%;
    }

        .row .column.column-offset-10 {
            margin-left: 10%;
        }

        .row .column.column-offset-20 {
            margin-left: 20%;
        }

        .row .column.column-offset-25 {
            margin-left: 25%;
        }

        .row .column.column-offset-33, .row .column.column-offset-34 {
            margin-left: 33.3333%;
        }

        .row .column.column-offset-40 {
            margin-left: 40%;
        }

        .row .column.column-offset-50 {
            margin-left: 50%;
        }

        .row .column.column-offset-60 {
            margin-left: 60%;
        }

        .row .column.column-offset-66, .row .column.column-offset-67 {
            margin-left: 66.6666%;
        }

        .row .column.column-offset-75 {
            margin-left: 75%;
        }

        .row .column.column-offset-80 {
            margin-left: 80%;
        }

        .row .column.column-offset-90 {
            margin-left: 90%;
        }

        .row .column.column-10 {
            flex: 0 0 10%;
            max-width: 10%;
        }

        .row .column.column-20 {
            flex: 0 0 20%;
            max-width: 20%;
        }

        .row .column.column-25 {
            flex: 0 0 25%;
            max-width: 25%;
        }

        .row .column.column-33, .row .column.column-34 {
            flex: 0 0 33.3333%;
            max-width: 33.3333%;
        }

        .row .column.column-40 {
            flex: 0 0 40%;
            max-width: 40%;
        }

        .row .column.column-50 {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .row .column.column-60 {
            flex: 0 0 60%;
            max-width: 60%;
        }

        .row .column.column-66, .row .column.column-67 {
            flex: 0 0 66.6666%;
            max-width: 66.6666%;
        }

        .row .column.column-75 {
            flex: 0 0 75%;
            max-width: 75%;
        }

        .row .column.column-80 {
            flex: 0 0 80%;
            max-width: 80%;
        }

        .row .column.column-90 {
            flex: 0 0 90%;
            max-width: 90%;
        }

        .row .column .column-top {
            align-self: flex-start;
        }

        .row .column .column-bottom {
            align-self: flex-end;
        }

        .row .column .column-center {
            align-self: center;
        }

        .row .column.hide {
            display: none;
        }

@media (min-width: 50rem) {
    .row {
        flex-direction: row;
        /*margin-left: -1.0rem;*/
        width: calc(100% + 2.0rem);
    }

        .row .column {
            margin-bottom: inherit;
            padding: 0 1.0rem;
        }
}

a {
    color: #ff7e18;
    text-decoration: none;
}



    a:focus, a:hover {
        color: #333333;
    }

dl,
ol,
ul {
    list-style: none;
    margin-top: 0;
    padding-left: 0;
}

    dl dl,
    dl ol,
    dl ul,
    ol dl,
    ol ol,
    ol ul,
    ul dl,
    ul ol,
    ul ul {
        font-size: 90%;
        margin: 1.5rem 0 1.5rem 3.0rem;
    }

ol {
    list-style: decimal inside;
}

ul {
    list-style: circle inside;
}

.button,
button,
dd,
dt,
li {
    margin-bottom: 1.0rem;
}

fieldset,
input,
select,
textarea {
    margin-bottom: 1.5rem;
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
    margin-bottom: 2.5rem;
}

table {
    border-spacing: 0;
    display: block;
    overflow-x: auto;
    text-align: left;
    width: 100%;
}

th {
    font-weight: 500;
}

td,
th {
    border-bottom: 0.1rem solid #e1e1e1;
    padding: 0.8rem 1.5rem;
    /*vertical-align: middle;*/
    /*vertical-align: top;*/
}

    td:first-child,
    th:first-child {
        padding-left: 5px;
    }

    td:last-child,
    th:last-child {
        padding-right: 0;
    }

.td-width-adjust {
    width: 32%;
}

@media (min-width: 40rem) {
    table {
        display: table;
        overflow-x: initial;
    }
}

b,
strong {
    font-weight: 500;
    letter-spacing: 0.3px;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 2.0rem;
    margin-top: 0;
}

h1 {
    font-size: 4.6rem;
    line-height: 1.2;
}

h2 {
    font-size: 3.6rem;
    line-height: 1.25;
}

h3 {
    font-size: 2.8rem;
    line-height: 1.3;
}

h4 {
    font-size: 2.2rem;
    letter-spacing: -.08rem;
    line-height: 1.35;
}

h5 {
    font-size: 1.8rem;
    letter-spacing: -.05rem;
    line-height: 1.5;
}

h6 {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1.4;
}

img {
    max-width: 100%;
}

.clearfix:after {
    clear: both;
    content: ' ';
    display: table;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}
/******************************************************
  Resposnive Table
  ******************************************************/

table.offers-details-table tbody th {
    background: #f4f4f4;
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {

    table {
        width: 100%;
    }

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    tr {
        border-bottom: 1px solid #ccc;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    td {
        /* Behave  like a "row" */
        border: none;
        position: relative;
        padding-left: 50%;
    }

        td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 10px;
            left: 6px;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
            /* Label the data */
            content: attr(data-column);
            color: #000;
            font-weight: 500;
        }

        td:first-child {
            padding-left: 50%;
        }

    table.offers-details-table tbody tr {
        margin-bottom: 0;
    }

    table.offers-details-table tbody th {
        background: #f4f4f4;
    }
}

/******************************************************
Modal popup
******************************************************/

.modal-box {
    /*display: none;*/
    position: fixed;
    z-index: 1000;
    width: 98%;
    background: white;
    border-bottom: 1px solid #aaa;
    border-radius: 4px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

    .modal-box.z-index-1001 {
        z-index: 1001;
    }

    .modal-box header,
    .modal-box .modal-header {
        padding: 1.25em 1.5em;
        border-bottom: 1px solid #ddd;
        position: relative;
    }

        .modal-box header h3,
        .modal-box header h4,
        .modal-box .modal-header h3,
        .modal-box .modal-header h4 {
            margin: 0;
            font-size: 19px;
        }

    .modal-box .modal-body {
        padding: 1em 1.5em;
    }

        .modal-box .modal-body.padding-3-2 {
            padding: 3em 2em;
        }

        .modal-box footer,
        .modal-box .modal-footer {
            padding: 1em;
            border-top: 1px solid #ddd;
            background: rgba(0, 0, 0, 0.02);
            text-align: right;
        }

.modal-overlay {
    opacity: 0;
    filter: alpha(opacity=0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7) !important;
}

    .modal-overlay.z-index-1000 {
        z-index: 1000;
    }

    .modal-box header a.close {
        line-height: 1;
        font-size: 30px;
        position: absolute;
        top: 25%;
        right: 2%;
        text-decoration: none;
        color: #bbb;
    }

a.close:hover {
    color: #222;
    -webkit-transition: color 1s ease;
    -moz-transition: color 1s ease;
    transition: color 1s ease;
}

.modal-box footer .button, .modal-box footer button {
    margin: 0 5px;
}

@media (min-width: 32em) {
    .modal-box {
        width: 70%;
    }

        .modal-box.modal-small {
            width: 30%;
        }
}

@media only screen and (max-width: 768px) {
    .modal-box.modal-small {
        width: 70%;
    }
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

/******************************************************
  CSS only responsive popup
  ******************************************************/

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

    .overlay:target {
        visibility: visible;
        opacity: 1;
    }

.popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 60%;
    position: relative;
    transition: all 5s ease-in-out;
}

    .popup h2 {
        margin-top: 0;
        color: #333;
        font-family: Tahoma, Arial, sans-serif;
    }

    .popup .close {
        position: absolute;
        top: 20px;
        right: 30px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: #333;
    }

        .popup .close:hover {
            color: #06D85F;
        }

    .popup .content {
        max-height: 30%;
        overflow: auto;
    }

@media screen and (max-width: 700px) {
    .box {
        width: 70%;
    }

    .popup {
        width: 70%;
    }
}


/******************************************************
  Responsive Tabs
  ******************************************************/
.resp-tabs-list {
    border-bottom: solid 1px #ccc;
    overflow: hidden;
    margin: 0 0 20px 0;
    border-radius: 0;
    /*margin: 20px 0;*/
}

    .resp-tabs-list li {
        font-weight: 500;
        font-size: 15px;
        display: inline-block;
        padding: 13px 35px;
        margin: 0;
        list-style: none;
        cursor: pointer;
        float: left;
        color: #999;
        height: auto;
        line-height: 1.4;
    }

.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left;
}

h2.resp-accordion {
    cursor: pointer;
    padding: 5px;
    display: none;
}

.resp-tab-content {
    display: none;
    padding: 15px;
}

    .resp-tab-content.padding-top-0 {
        padding-top: 0;
    }

.resp-tab-active {
    /* border: 1px solid #c1c1c1;*/
    border-bottom: solid 4px #ff7e18;
    margin-bottom: -1px !important;
    padding: 12px 35px 14px 35px !important;
    color: #000 !important;
}

.resp-tab-active {
    /* border-bottom: none;*/
    background-color: #fff;
}

.resp-content-active,
.resp-accordion-active {
    display: block;
}

.resp-tab-content { /*border: 1px solid #c1c1c1;*/
}

h2.resp-accordion {
    font-size: 15px;
    /* border: 1px solid #c1c1c1;*/
    border-bottom: 1px solid #cccccc;
    margin: 0px;
    padding: 10px 15px;
}

h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    margin-bottom: 0px !important;
    padding: 10px 15px !important;
}

h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue;
}

h2.resp-tab-active { /*background: #DBDBDB !important;*/
}

.resp-easy-accordion h2.resp-accordion {
    display: block;
}

.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1;
}

    .resp-easy-accordion .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 !important;
    }

.resp-jfit {
    width: 100%;
    margin: 0px;
}

.resp-tab-content-active {
    display: block;
}

h2.resp-accordion:first-child { /*border-top: 1px solid #c1c1c1 !important; */
}
/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {

    ul.resp-tabs-list {
        display: none;
    }

    h2.resp-accordion {
        display: block;
        position: relative;
    }

    .resp-vtabs .resp-tab-content {
        border-bottom: 1px solid #cccccc;
    }

    .resp-vtabs .resp-tabs-container {
        border: none;
        float: none;
        width: 100%;
        min-height: initial;
        clear: none;
    }

    .resp-accordion-closed {
        display: none !important;
    }

    .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 !important;
    }

    .resp-tab-content-active {
        border-bottom: solid 1px #ccc;
    }

    .resp-arrow {
        display: block;
        height: 20px;
        width: 20px;
        float: right;
        margin-top: -5px;
    }

        .resp-arrow:after {
            content: '\f107';
            font-size: 20px;
            color: #333333;
            font-family: 'Line Awesome Free';
            font-weight: 900;
        }

    h2.resp-tab-active .resp-arrow:after {
        content: '\f106';
    }

    .resp-tabs-container h2:first-child.resp-tab-active {
        border-top: solid 1px #ccc;
    }
}

/******************************************************
  Custom CSS
  ******************************************************/

.header-row {
    overflow: hidden;
}

table button {
    margin-bottom: 0;
}

.user-menu {
    margin-top: 30px;
}

    .user-menu span {
        font-weight: 500;
        padding-left: 4px;
    }

    .user-menu a {
        margin-left: 10px;
        padding-left: 10px;
        border-left: solid 1px #ccc;
    }

    /*.user-menu form {
        margin-left: 10px;
        padding-left: 10px;
        border-left: solid 1px #ccc;
    }  */

    .user-menu .form-inline {
        display: inline;
        margin-left: 10px;
        padding-left: 10px;
        border-left: solid 1px #ccc;
        margin-bottom: 0;
    }

        .user-menu .form-inline .lg-btn {
            background-color: #fff;
            border: none;
            color: #ff7e18;
            text-decoration: none;
            padding: 0 0 0 4px;
            font-weight: 500;
            height: auto;
            line-height: 0;
            /* margin: 0; */
            font-size: 14px;
        }

            .user-menu .form-inline .lg-btn:hover {
                color: #333333;
            }

.breadcrumbs {
    background: #f4f4f4;
    padding: 8px 0;
    margin-bottom: 15px;
    min-height: 32px;
}

    .breadcrumbs.no-margin {
        margin-bottom: 0;
    }

    .breadcrumbs h2 {
        margin: 0;
        padding: 0;
        font-size: 25px;
        font-weight: 500;
    }

    .breadcrumbs.readjust {
        margin: 0 auto;
        max-width: 112.0rem;
        position: relative;
        width: 100%;
    }

.offer-details-breadcrumb {
    overflow: hidden;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.address-price {
    font-size: 20px;
    width: 80%;
    float: left;
    display: flex;
    align-items: center;
}

.breadcrumb-address {
    margin-right: 10px;
    padding-right: 15px;
    border-right: solid 1px #999;
    max-width: 70%;
    display: inline-block;
    width: max-content;
}

.breadcrumb-back {
    width: max-content;
    float: right;
}

    .breadcrumb-back .button {
        margin-bottom: 0;
    }

.notice {
    background: #ff7e18;
    text-align: center;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

    .notice.readjust {
        margin: 0 auto;
        max-width: 112.0rem;
        position: relative;
        width: 100%;
    }

.action-icon {
    font-size: 20px;
    margin-right: 5px;
}

    .action-icon.color-orange {
        color: #ff7e18;
        cursor: pointer;
    }

        .action-icon.color-orange:hover {
            color: #333;
        }

.margin-row {
    margin: 5px 0 5px -1.0rem;
}

.modal-body h3 {
    font-size: 20px;
    margin: 0;
    padding: 10px 0;
}

table input {
    margin-bottom: 0;
}

.document-upload {
    width: 50%;
    margin: 20px auto;
    border: dotted 1px #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.filefielddiv input {
    height: 0px;
    width: 0px;
    overflow: hidden;
}

.filefielddiv label {
    background: #ff7e18;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: inherit;
    font-weight: 500;
    margin-bottom: 1rem;
    outline: none;
    padding: 1rem 50px;
    position: relative;
    transition: all 0.3s;
    vertical-align: middle;
    border-radius: 0;
}

.offer-details-grid {
    display: flex;
    margin: 15px 0;
}

.offer-details-col {
    display: inline-block;
    width: 100%;
}

    .offer-details-col div {
        padding: 8px;
        border-bottom: solid 1px #ccc;
        display: flex;
        align-items: center;
        font-size: 13px;
        min-height: 56px;
    }

    .offer-details-col .offer-details-header {
        background: #f4f4f4;
        color: #333;
        font-weight: 500;
    }

.offer-details-content {
}

    .offer-details-content.bg-color-orange {
        background-color: #fff4e6;
    }

.term-name-width {
    width: 15%;
}

.form-table {
    margin-bottom: 0;
}

    .form-table td, .form-table th {
        border-bottom: none;
        padding: 0.2rem 0;
    }

.display-block {
    display: block;
}

.display-none {
    display: none;
}

.width-23 {
    width: 23%;
}

.width-30 {
    width: 30%;
}

.width-94 {
    width: 94%;
}

.width-96 {
    width: 96% !important;
}

.width-100 {
    width: 100%;
}

.label-format {
    font-size: 1.1em;
    font-weight: 500;
}

.margin-0-02 {
    margin: 0 0.2em;
}

.margin-bottom-2 {
    margin-bottom: 2em;
}

.border-radius-4 {
    border-radius: 4px;
}

.font-size-1-7 {
    font-size: 1.17em;
}

.offer-detail-document {
    
}

.new-offer-detail-document {
}
/******************************************************
  Custom Responsive Styles
******************************************************/

@media all and (max-width: 800px) {

    .row .column.column-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row .column.column-20 {
        flex: 0 0 100%;
        max-width: 21000%;
    }

    .row .column.column-25 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row .column.column-33, .row .column.column-34 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row .column.column-40 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row .column.column-50 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row .column.column-60 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row .column.column-66, .row .column.column-67 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row .column.column-75 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row .column.column-80 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row .column.column-90 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .logo {
        max-width: 48%;
    }

    header.container {
        padding: 0 0.2rem;
    }

    .user-menu {
        width: 49%;
        display: flex;
        align-items: center;
        font-size: 13px;
        margin-top: 10px;
        justify-content: flex-end;
    }

        .user-menu a span {
            display: none;
        }

        .user-menu .form-inline .lg-btn {
            /*display: none;*/
            font-size: 0;
        }

        .user-menu a:after {
            /*content: '\f011';*/
            content: '\f56e';
            font-family: 'Line Awesome Free';
            font-weight: 900;
            font-size: 20px;
        }

        .user-menu a {
            margin-left: 5px;
            padding-left: 0;
            border-left: none;
        }

        .user-menu .form-inline .lg-btn:after {
            /*content: '\f011';*/
            content: '\f56e';
            font-family: 'Line Awesome Free';
            font-weight: 900;
            font-size: 26px;
            padding-right: 8px;
        }

        .user-menu .form-inline {
            margin-left: 5px;
            padding-left: 0;
            border-left: none;
            margin-bottom: 0;
            color: #ff7e18;
        }

    .address-price {
        flex-direction: column;
        padding-left: 10px;
        font-size: 16px;
    }

    .offer-details-breadcrumb {
        flex-direction: row-reverse;
    }

    .breadcrumb-back a span {
        display: none;
    }

    .breadcrumb-back a:after {
        content: '\f104';
        font-size: 40px;
        color: #ff7e18;
        font-family: 'Line Awesome Free';
        font-weight: 900;
    }

    .breadcrumb-address {
        max-width: 100%;
        margin-right: 0;
        padding-right: 0;
        border-right: 0;
        width: 100%;
    }

    .breadcrumb-price {
        width: 100%;
        padding-top: 10px;
    }

    .notice {
        /*margin-bottom: 20px;*/
    }

    .document-upload {
        width: 90%;
    }

    .offer-details-col-2 {
        /*display: none;*/
    }

    .offer-details-col {
        /*max-width: 32%;*/
    }

        .offer-details-col div {
            padding: 8px 4px;
            border-bottom: solid 1px #ccc;
            white-space: break-spaces;
            font-size: 13px;
            min-height: 70px;
        }

    .term-name-width {
        width: 100%;
    }

    .container.height-20 {
        height: 40px;
    }
}

@media all and (max-width: 600px) {

    .offer-details-col {
        /*max-width: 32%;*/
    }

        .offer-details-col div {
            padding: 8px 4px;
            border-bottom: solid 1px #ccc;
            white-space: break-spaces;
            font-size: 10px;
            min-height: 88px;
        }

    .dropdown-options {
        width: 116%;
    }
}

@media all and (max-width: 1024px) {

    .dropdown-options {
        width: 45%;
    }

    .td-width-adjust {
        width: auto;
    }

}

@media all and (max-width: 800px) {

    .row-icon-adjust {
        display: block;
    }

    .row.display-block.offer-detail-document {
        display: none;
    }

    .col_12.new-offer-detail-document {
        display: none;
    }
}

label.amount-28 {
    width: 28%;
}