/** Finance widget **/

#rm-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 99998;
    opacity: 0;
    cursor: pointer;
}

.finance-modal {
    position: fixed;
    top: 100px;
    left: 50%;
    width: 320px;
    margin-left: -160px;
    background-color: #f7f7f7;
    font-size: 14px;
    color: #333;
    z-index: 99999;
    font-family: 'benton-sans-condensed';
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition: all 300ms;
}

.finance-modal.visible {
    transform: scaleX(1);
}

.rm-modal-title {
    background-color: #333333;
    padding: 16px 0 12px;
    position: relative;
}

.rm-modal-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

#finance-modal-close {
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 30px;
    color: #fff;
    transform: translateY(-54%);
    cursor: pointer;
}

.finance-modal .finance-select-wrap {
    padding: 20px 30px;
    background-color: #fff;
}

.finance-modal .finance-select-wrap select {
    height: 35px;
    line-height: 35px;
    max-height: 35px;
}

.finance-modal .loader {
    padding: 25px 30px;
}

.finance-modal .loader .spinner {
    font-size: 25px;
    text-align: center;
}

.finance-modal .loader .row {
    margin-bottom: 8px;
    text-align: left;
}

.finance-modal .loaded {
    display: none;
}

.rm-modal-footer {
    padding: 0 30px 30px;
    text-align: center;
}

#pb-widget-button,
.finance-modal .rm-modal-footer button {
    display: inline-block;
    width: 125px;
    height: 30px;
    line-height: 30px;
    background-color: #f39;
    color: #fff;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
}

#pb-widget-button {
    width: 240px;
    height: 46px;
    margin-left: 30px;
    margin-right: 
}

#pb-widget-button[disabled],
.finance-modal .rm-modal-footer button[disabled] {
    opacity: 0.7;
    background-color: #ccc;
    cursor: not-allowed;
}

#pb-button-container {
    float: right;
    margin-right: 66px;
}

.pb-text-container {
    display: flex;
    align-items: center;
    font-size: 20px;
}

#pb-button-container p {
    margin: 10px 0; 
}

#cb_id_156 {
    border-top: 2px solid #e6e6e6;
    border-bottom: 2px solid #e6e6e6;
    padding: 20px 0 10px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

#cb_id_156 [class*="col-"],
#cb_id_156 [class^="col-"] {
    display: flex;
    align-items: center;
}

#cb_id_156 .col-md-8 {
    justify-content: flex-end;
}

#cb_id_156 .cb_divider {
    display: none;
}

@media screen and (max-width: 767px) {

    #cb_id_156 .col-md-4 {
        text-align: center;
    }

    #pb-button-container {
        float: none;
        margin-right: 0;
    }

    .pb-text-container {
        margin: 15px 0 0;
        justify-content: center;
        align-items: center;
    }

    #pb-button-container p {
        text-align: center;
    }

}