.cash_offer_btn {
    background-color: orange;
    color: #ffffff;
    width: 93%;
    margin: 10px auto;
    padding: 20px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    font-weight: bold;
}

.cash_offer_btn.pill {
    border-radius: 50px;
}

.cash_offer_btn.rounded {
    border-radius: 5px;
}

.cash_offer_btn.square {
    border-radius: 0px;
}

.form-label.text-left.w-100.mb-1,
.photo_text {
    text-align: left;
    font-weight: 600;
    color: #000;
}

.photo_text_sub {
    color: #666;
    padding-left: 5px;
}

.contact_points .card_container {
    position: relative;
}

.cash-offer-sheet {
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease, opacity .2s ease, visibility .3s ease;
    z-index: 30;
    position: fixed;
}

.cash-offer-sheet.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    position: fixed;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%) !important;
}

.cash-offer-sheet .sheet-header {
    padding: 5px 16px 8px 0px;
}

.cash-offer-sheet .sheet-title {
    font-weight: 800;
    text-align: left;
    font-size: 24px;
}

.cash-offer-sheet .sheet-subtitle {
    font-size: 16px;
    color: #222;
    padding-bottom: 6px;
}

.cash-offer-sheet .sheet-close {
    font-size: 20px;
    color: #222 !important;
    line-height: 1;
    width: 100%;
    text-align: left;
    font-weight: 300 !important;
    padding-left: 12px !important;
    padding-top: 10px !important;
    padding-bottom: 5px !important;
}

.cash-offer-sheet .sheet-body {
    padding: 0 16px 12px 16px;
    max-height: 70vh;
    overflow: auto;
}

.cash-offer-sheet .form-control,
.cash-offer-sheet .form-select {
    border-radius: 5px;
}

.cash-offer-sheet .input-group {
    align-items: stretch;
}

.cash-offer-sheet .input-group>.form-select {
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    color: #999999;
    border: 1px solid #ced4da;
    border-right: 0 !important;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: 44px;
    line-height: 44px;
    padding-right: 1rem;
    padding-left: 10px;
    z-index: 9999;
    cursor: pointer;
}

.cash-offer-sheet .input-group>.input-group-text {
    width: 55px;
    min-width: 44px;
    justify-content: center;
    background: var(--secondary-color);
    color: #fff;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0 !important;
    position: absolute;
    right: 0;
    height: 100%;
    cursor: pointer;
}

.cash-offer-sheet .input-group>.input-group-text i {
    display: inline-block;
    color: #fff;
    font-size: 14px;
}

.cash-offer-sheet .input-group>.input-group-text::before {
    display: none;
    content: none;
}

.fa-arrow-up-from-bracket {
    font-size: 44px;
    font-weight: 600 !important;
}

@media (max-width: 767.98px) {
    .cash-offer-sheet .input-group>.form-select {
        height: 42px;
        line-height: 42px;
    }

    .cash-offer-sheet .input-group>.input-group-text {
        width: 42px;
        min-width: 42px;
    }
}

@media (max-width: 767.98px) {
    .cash_offer_btn {
        width: 100%;
    }

}

.cash-offer-submit {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 700;
}

.cash-offer-submit:hover {
    background: var(--secondary-color);
    color: #fff;
}

.photo-dropzone {
    border: 1px dashed #000;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: #fff;
    color: #000;
    cursor: pointer;
}

.photo-dropzone .upload-icon {
    width: 48px;
    height: 48px;
    margin: 6px auto 10px auto;
    background: url('../images/upload-icon.svg') no-repeat center center / contain;
}

.photo-dropzone .dz-text-strong {
    font-weight: 600;
    color: #000;
}

.photo-dropzone .dz-text-sub {
    font-size: 12px;
    color: #888;
}

.photo-dropzone.dragover {
    border-color: #e07a00;
    background: #fff7ec;
}

.photo-list {
    margin-top: 10px;
}

.photo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ddd;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 8px;
}

.photo-thumb {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

.photo-meta {
    flex: 1;
    font-size: 12px;
    color: #000;
    text-align: left;
    font-weight: 600;
}

.photo-actions {
    display: flex;
    gap: 8px;
}

.photo-actions .ok {
    color: #fff;
    background: #6cbf3b;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}

.photo-actions .remove {
    cursor: pointer;
    color: #fff;
    background: #d9534f;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}

/* Confirmation screen */
.cash-offer-confirmation {
    text-align: left;
    padding: 10px 4px;
}

.cash-offer-confirmation .confirm-icon-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    justify-content: center;
}

.cash-offer-confirmation .confirm-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cash-offer-confirmation .confirm-check {
    color: #fff;
    font-size: 44px;
    line-height: 1;
    font-weight: 700;
}

.cash-offer-confirmation .confirm-title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 6px 0 8px 0;
    text-align: center;
}

.cash-offer-confirmation .confirm-text {
    font-size: 14px;
    color: #3f3e43;
    margin-bottom: 10px;
    text-align: left;
}

.cash-offer-confirmation .confirm-signoff {
    font-size: 14px;
    color: #3f3e43;
    margin-top: 6px;
}

.cash-offer-confirmation .confirm-name {
    font-style: italic;
}


.cash-offer-sheet::-webkit-scrollbar {
    width: 10px;
    /* scrollbar width */
}

.cash-offer-sheet::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* track background */
    /* border-radius: 5px; */
}

.cash-offer-sheet::-webkit-scrollbar-thumb {
    background: #e47911;
    /* scrollbar color (orange) */
}

/* For Firefox */
.cash-offer-sheet {
    scrollbar-width: thin;
    /* auto | thin | none */
    scrollbar-color: var(--secondary-color) #f1f1f1;
}