/* ============================================================
   Vendor Profile Page
   ============================================================ */

/* ---- Bootstrap form-control reset (override WP default input styles) ---- */
.vp-page-wrap .form-control {
    display: block !important;
    width: 100% !important;
    padding: 8px;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    color: #212529 !important;
    background-color: transparent !important;
    background-clip: padding-box !important;
    border: 1px solid #cccccc !important;
    border-radius: 0px !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    -webkit-appearance: none;
    appearance: none;
}
/* Fixed height only for inputs and selects — NOT textareas */
.vp-page-wrap input.form-control,
.vp-page-wrap select.form-control {
    height: 39px !important;
}
.vp-page-wrap .form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.vp-page-wrap select.form-control{
    outline : none;
}

.vp-page-wrap textarea.form-control {
    min-height: 60px;
    resize: vertical;
    overflow: auto;
}

.profile_info .vp-content-area .panel-body {
    padding: 24px !important;
}

.vp-page-wrap #vp-deal-form-wrap textarea.form-control {
    min-height: 60px;
}

.vp-field-group input#vp-deal-image {
    border: 1px solid #ced4da;
    height: 44px !important;
	padding:8px;
}

/* ---- Toast notifications ---- */
#vp-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.vp-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 260px;
    max-width: 360px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
}
.vp-toast.vp-toast-show {
    opacity: 1;
    transform: translateX(0);
}
.vp-toast-success { background: #28a745; }
.vp-toast-error   { background: #dc3545; }
.vp-toast-icon::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 15px;
}
.vp-toast-success .vp-toast-icon::before { content: '\f00c'; }
.vp-toast-error   .vp-toast-icon::before { content: '\f071'; }

/* ---- Two-column flex layout ---- */
.vp-page-wrap .vp-layout {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 20px;
    margin-right: -15px;
    margin-left: -15px;
}

.vp-page-wrap .vp-sidebar {
    flex: 0 0 25%;
    max-width: 25%;
}

.vp-page-wrap .vp-content-area {
    flex: 1;
    min-width: 0;
}

.location-map-section .map-location {
    padding: 8px 8px 0px;
    border: 1px solid #dfdfdf;
}
.map-location div#vp-map {
    height: 250px !important;
}
.location-map-section {
    margin-top: 24px;
}

/* ---- Sidebar nav ---- */
.vp-page-wrap .vp-sidebar ul {
    margin: 0;
    padding: 0;
    background: #ececec;
    border: #dddddd 1px solid;
    list-style: none;
    min-height: 600px;
}
.vp-page-wrap .vp-sidebar ul li a {
    display: block;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    border-bottom: #cacaca 1px solid;
    text-decoration: none;
    transition: background 0.2s;
    padding: 14px 20px;
}
/* .vp-page-wrap .vp-sidebar ul li:last-child a { border-bottom: 1px solid #e0e0e0; } */
.vp-page-wrap .vp-sidebar ul li a:hover { background: #fff9e0 !important; }
.vp-page-wrap .vp-sidebar ul li a.active {
    background: #ffd700 !important;
    /* font-weight: 700; */
}

/* ---- Common Card ---- */
.vp-page-wrap .card {
    box-shadow: none !important;
    /* margin: 70px 0 20px 0; */
    border-radius: 0;
    border: 1px solid rgba(0,0,0,.125);
}
.vp-page-wrap .card-block h3 { font-size: 20px; }

/* ---- Form Header (floating circular icon) ---- */
.vp-page-wrap .form-header {
    text-align: center;
    padding-top: 50px !important;
}
.vp-page-wrap .form-header h3 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
}
.vp-page-wrap .form-header h3 span {
    display: block;
    margin-top: -78px;
    margin-bottom: 20px;
}
.vp-page-wrap .form-header h3 span i {
    font-size: 30px;
    border-radius: 50%;
    background: #ffd700 !important;
    width: 75px;
    height: 75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    position: relative;
    z-index: 1;
}

/* ---- Form inputs (md-form) ---- */
.vp-page-wrap .md-form { margin-bottom: 4px; margin-top: 12px; }
.vp-page-wrap .md-form label, .vp-field-group label {
    position: relative;
    padding-bottom: 4px;
    font-weight: 400;
    display: inline-flex;
    font-size: 15px;
    color: #212529;
    gap: 6px;
    margin: 0px;
    text-transform: uppercase;
}
.vp-page-wrap .md-form textarea.md-textarea { padding: 6px !important; }
.vp-page-wrap .md-form label.active { transform: translateY(0); }
.vp-page-wrap .md-form .form-control {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.vp-page-wrap .md-form select.form-control { width: 100%; }
.vp-page-wrap .md-form input::placeholder,
.vp-page-wrap .md-form textarea::placeholder {
    color: #aaa;
    font-size: 14px;
}

/* ---- Buttons ---- */
.vp-page-wrap .btn.btn-yellow {
    background: #ffd700 !important;
    color: #000000 !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: none !important;
    width: auto;
    border-radius: 0 !important;
    transition: background 0.3s, color 0.3s;
    padding: 8px 28px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.5;
    border-radius: 5px !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.1) !important;
}
.vp-page-wrap .btn.btn-yellow:hover {
    background: #000000 !important;
    color: #ffffff !important;
}

/* ---- Messages ---- */
.vp-msg {
    padding: 10px 16px;
    border-radius: 3px;
    margin: 8px 0;
    font-weight: 500;
    font-size: 14px;
}
.vp-msg-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; }
.vp-msg-error   { background: #ffebee; border: 1px solid #ef9a9a; color: #c62828; }

/* ---- File upload area ---- */
.vp-page-wrap .file-upload-wrapper .card {
    margin: 40px 0;
    cursor: pointer;
}
.vp-page-wrap .file-upload {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: 200px;
    padding: 5px 10px;
    font-size: 1rem;
    text-align: center;
    color: #ccc;
}
.vp-page-wrap .file-upload-message {
    position: relative;
    text-align: center;
    color:#747373;
}
/* Sortable drag placeholder */
.vp-page-wrap .vp-sort-placeholder {
    border: 2px dashed #ffd700;
    background: #fffde7;
    visibility: visible !important;
    opacity: 0.5;
    height: 171px;
    vertical-align: top;
    margin-bottom: 16px;
}
.vp-page-wrap .file-upload i { font-size: 3rem; }
.vp-page-wrap .file-upload-message p { margin: 5px 0 0; }
.vp-page-wrap .file-upload .mask.rgba-stylish-slight {
    opacity: 0;
    transition: all .15s linear;
}
.vp-page-wrap .file-upload input.file_upload {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    height: 100%; width: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}

/* ---- Photo section specific ---- */
.vp-page-wrap .photo_section .card {
    margin: 70px 0;
}
.vp-page-wrap .photo_section .form-control {
    height: auto;
    font-size: 14px;
}
.vp-page-wrap .photo_section .wishlist {
    right: 25px;
    top: 4px;
    cursor: pointer;
    z-index: 100;
}
.vp-page-wrap .panel-body span {
    font-size: 14px;
    margin-top: 0px;
    font-weight:400;
    color:#212529;
}
.vp-page-wrap .photo_section .del_butt .btn.btn-yellow {
    font-size: 17px;
    padding: 7px 30px !important;
}

/* ---- Photo / Video grid ---- */
.vp-page-wrap .vendorlisting_container { text-align: left; }
.vp-page-wrap .pic_sec,
.vp-page-wrap .scroll_box {
    margin-right: 8px;
    display: inline-block;
    vertical-align: top;
}
.vp-page-wrap .listing_box {
    width: 171px;
    border: 1px solid #ddd;
    padding: 5px;
    position: relative;
}
.vp-page-wrap .listing_box img.img-fluid { height: 120px; width: 100%; object-fit: cover; }
.vp-page-wrap .listing_box video.img-fluid { height: 110px; width: 100%; }
.vp-page-wrap .listing_box .phototitle,
.vp-page-wrap .listing_box .videotitle,
.vp-page-wrap .listing_box .doctitle {
    width: 159px;
    min-height: 40px;
    padding: 6px;
    margin-top: 3px;
    font-size: 12px;
    border: 1px solid #ddd;
    resize: vertical !important;
    overflow: auto;
}
.vp-page-wrap .features_circle {
    height: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    z-index: 100;
}
.vp-page-wrap .features_circle input {
    cursor: pointer;
    z-index: 100;
    margin-top: 2px;
    float: left;
}
.vp-page-wrap .features_circle p {
    cursor: pointer;
    z-index: 100;
    text-align: right;
    font-size: 12px;
    margin: 0;
}

/* ---- Tables ---- */
.vp-page-wrap .vp-table { font-size: 13px; }
.vp-page-wrap .vp-table th { background: transparent; font-size: 14px; font-weight: 600; white-space: nowrap; }
.vp-page-wrap .vp-table td, .vp-page-wrap .vp-table th { vertical-align: middle; padding: 8px 10px; }
.vp-page-wrap .vp-table .btn { padding: 3px 7px; }




/* ---- Deals ---- */

/* Form */
.vp-deals-form-wrap {
    padding: 20px 24px 16px;
}
/* Normalize all inputs/selects/textareas inside the deals form */
.deals_section .form-control {
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    background: #fff !important;
}

.vp-field-group {
    margin-bottom: 16px;
}

.vp-req {
    color: #e53935;
    margin-left: 2px;
}
.vp-field-hint {
    font-size: 11px;
    color: #212529;
    display: block;
    margin-top: 3px;
}
.vp-file-wrap input[type="file"] {
    width: 100%;
    font-size: 13px;
}

/* Deal Price inline $ prefix */
.vp-deal-price-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}
.vp-deal-price-prefix {
    padding: 6px 10px;
    font-size: 14px;
    color: #555;
    background: #fff;
    line-height: 1.5;
}
.deals_section form#vp-form-deals .vp-deal-price-wrap input#vp-deal-value {
    border: none !important;
}
.vp-deal-price-input {
    border: none !important;
    box-shadow: none !important;
    flex: 1;
}
.vp-deal-price-input:focus {
    outline: none;
    box-shadow: none !important;
}
.vp-deals-submit-btn {
    padding: 9px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.pricing_section table th strong {
    font-weight: 600;
}

/* Bottom bar: PDF upload + Add New Deal */
.vp-deals-bottom-bar, .vp-pricing-bottom-bar{
    display: flex;
    flex-direction: row;
    gap: 6px;
    background: transparent;
	border: none;
	padding: 0px;
    margin-top: 25px;
}
.vp-deal-pdf-label {
    font-size: 13px;
    color: #555;
}
/* Second row: file input + current doc + Add New Deal button all inline */
.vp-deal-pdf-controls {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    flex-wrap: wrap;
}
.vp-deal-pdf-controls form {
    margin: 0;
    flex-shrink: 0;
}
.vp-deal-pdf-controls input[type="file"] {
    font-size: 13px;
}
.vp-deal-doc-current {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 35px;
    font-size: 13px;
    flex: 1;
    justify-content: end;
}
.vp-deal-doc-current a {
    color: #333;
    font-size: 13px;
    text-decoration: none !important;
}
.vp-deal-doc-current a:hover {
    color: #555;
}
.vp-deal-doc-current .vp-deal-doc-wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.vp-pdf-delete-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
}

.vp-deal-add-btn {
    font-size: 13px;
    font-weight: 700;
    padding: 7px 22px;
    flex-shrink: 0;
}

/* Table */
.vp-deals-table-wrap {
    padding: 16px 24px 24px;
}
.vp-deals-table {
    font-size: 13px;
    width: 100%;
}

.vp-page-wrap .vp-table, .vp-page-wrap .vp-deals-table , .pricing_section table{
    border:none;
}


.vp-deals-table thead th,.events_section thead th, .pricing_section thead th {
    color: #333;
    padding: 10px 12px;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.vp-deals-table table tbody,
.vp-deals-table table tbody td,
.events_section table tbody,
.events_section table tbody td,
.pricing_section table tbody,
.pricing_section table tbody td
{
    border: none !important;
}

.vp-deals-table-wrap{
    padding-right:0px !important;
    padding-left:0px !important;
}

.vp-deals-table table tr,.events_section table tr,
.vp-deals-table-wrap table tr, .pricing_section table tr{
     border-bottom:1px solid #dfdfdf;
}
.vp-deals-table tbody td, .events_section tbody td, .pricing_section tbody td {
    padding: 9px 12px;
    vertical-align: middle;
    color: #212529;
     font-size: 14px;
     border:none !important;
    font-weight: 300;
    line-height: 1.5;
}
.vp-deals-table tbody tr:hover, .events_section tbody tr:hover, .pricing_section tbody tr:hover {
    background: #fafafa;
}

.vp-deals-table tbody td button.vp-btn-edit, .events_section tbody td button.vp-btn-edit,.pricing_section tbody td button.vp-btn-edit-pricing {
    background: #00c851 !important;
    border: none !important;
    color: white !important;
	padding: 4px 8px !important;
    font-size: 14px !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}
.vp-deals-table tbody td button.vp-btn-delete, .events_section tbody td button.vp-btn-delete, .pricing_section tbody td button.vp-btn-delete-pricing{
    background: #ff3547 !important;
    padding: 4px 8px !important;
    border: none !important;
    font-size: 14px !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
} 
.pricing_section form.vp-section-form label.price_section,
.pricing_section form.vp-section-form label.price_week{
    gap: 1px;
    margin-right: 8px;
}

.vp-deal-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #ddd;
}
.vp-deal-actions-cell {
    white-space: nowrap;
}
.vp-deal-actions-cell .btn {
    margin-right: 4px;
}

/* Legacy card styles kept for reference */
.vp-badge-discount { background: #fff3e0; color: #e65100; padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 600; }
.vp-badge-gift     { background: #f3e5f5; color: #6a1b9a; padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 600; }
.vp-badge-offer    { background: #e3f2fd; color: #0d47a1; padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 600; }

/* ---- FAQ ---- */
.vp-subsection-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    padding-bottom: 6px;
    /* border-bottom: 1px solid #eee; */
    margin-bottom: 14px;
}
.vp-faq-item {
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 12px;
    background: #fafafa;
}

/* ---- Availability ---- */
.vp-page-wrap .availability_section .card { min-height: auto; }
.vp-page-wrap #vp-avail-settings-modal .md-form label { font-size: 14px; text-transform: capitalize;  color:#757575;}

/* ---- General Details checkboxes ---- */
.vp-check-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 8px;
}
.vp-checkbox-row { margin-bottom: 8px; }

/* ---- Progress bar ---- */
.vp-page-wrap .progress { height: 8px; border-radius: 4px; }
.vp-page-wrap .progress .bg-success { background-color: #ffd700 !important; }

/* ---- Loading ---- */
.vp-loading { padding: 60px 20px; color: #888; }

/* ---- del_butt ---- */
.vp-page-wrap .del_butt { margin-bottom: 8px; }
.vp-page-wrap .del_butt .btn.btn-yellow { margin: 0; display: inline-block; font-size: 14px; }
/* Panoramic area */
.vp-page-wrap .panoramic_area img { height: 100%; }
.vp-page-wrap .panoramic_area button.btn.btn-primary {
    background-color: #ffd700 !important;
    color: #000000 !important;
    border: #ffd700;
    text-transform:uppercase;
    margin-top: 10px;
    margin-left: 0;
    box-shadow: none;
}
.vp-page-wrap .photo_section .wishlist i.vp-btn-delete-photo {
    font-size: 15px;
}

.profile_info div#vp-section-content span.vp-pricing-pdf-label {
    color: #212529 !important;
}

.availability_section .vp-cal-week .vp-cal-day-row .d-flex.flex-wrap {
    padding: 0px !important;
}

.events_section #vp-form-events .vp-event-reset-map {
    align-items: start;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

/* ---- Profile form — card margin ---- */
.vp-page-wrap .profile_form { margin-top: 20px; }

/* ---- Messages / Leads ---- */
.vp-page-wrap .message_listing th,
.vp-page-wrap .message_listing td { font-size: 13px; }
.vp-page-wrap .message_section .modal .details_tbody { padding: 4px 0; font-size: 14px; }
.vp-page-wrap .details_tbody { padding: 4px 0; font-size: 14px; }

/* Sidebar active link (vsm standalone page uses .vsm-sidebar-link) */
.vp-page-wrap .vsm-sidebar-link { display: block; color: #000; font-size: 16px; font-weight: 700; border-bottom: #cacaca 1px solid; text-decoration: none; transition: background 0.2s; padding: 14px 20px; }
.vp-page-wrap .vsm-sidebar-link:hover { background: #fff9e0 !important; color: #000; }
.vp-page-wrap .vsm-sidebar-link.active { background: #ffd700 !important; }

/* ---- Reviews ---- */
.vp-page-wrap .review_item { background: #fafafa; }
.vp-page-wrap .review_user_name { font-size: 15px; }
.vp-page-wrap .progress-bar.bg-warning { background-color: #ffd700 !important; }
.vp-page-wrap .reply_item { border-left: 3px solid #ffd700 !important; }
.vp-page-wrap .review_reply .btn.btn-yellow { margin: 0; font-size: 13px; }
.vp-page-wrap .total_review { font-size: 18px; color: #333; margin-bottom: 12px; }

/* ---- Settings ---- */
.vp-page-wrap .setting_section .card { min-height: auto; }

/* ---- Change Password ---- */
.vp-page-wrap .change_password_section .card { min-height: auto; }

/* ---- Authorized Users ---- */
.vp-page-wrap .employee_section .card { min-height: auto; }

/* ---- Endorsements ---- */
.vp-page-wrap .endorsement_section .card { min-height: auto; }
.vp-page-wrap .vp-endorse-result-item:hover { background: #fff9e0; }
#vp-endorse-results li { list-style: none; }

/* ---- Custom Pagination ---- */
.vp-page-wrap .custom_pagination { margin-top: 16px; }
.vp-page-wrap .custom_pagination .pagination { flex-wrap: wrap; }

/* ---- General Details (Details & Specs) ---- */
.vp-general-q-card {
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    margin-bottom: 14px;
    overflow: hidden;
}
.vp-general-q-header {
    background: #fff;
    padding: 15px 16px 10px 10px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.vp-general-q-num {
    color: #ffd700 !important ;
    font-weight: 700 !important;
    font-size: 14px;
    margin-right: 4px;
    flex-shrink: 0;
}
.vp-general-q-text {
    color: #333;
    text-transform: capitalize;
}
.vp-general-req {
    color: #e53935;
    font-weight: 700;
    margin-left: 2px;
}
.vp-general-q-body {
    background: #fff;
    padding: 12px 16px;
    padding-left:30px;
}
.vp-general-options-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-top:10px;
}
.vp-general-opt {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    color: #444;
    white-space: nowrap;
    margin: 0;
}
.vp-general-opt input[type="checkbox"],
.vp-general-opt input[type="radio"] {
    width: 15px;
    height: 15px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}
.vp-general-range {
    display: flex;
    align-items: center;
    gap: 10px;
}
.vp-general-range input[type="range"] { flex: 1; }
.vp-range-label { font-size: 13px; color: #666; white-space: nowrap; }
.vp-range-val {
    font-weight: 700;
    color: #ffd700;
    min-width: 60px;
    text-align: center;
    background: #fffde7;
    border: 1px solid #ffd700;
    border-radius: 3px;
    padding: 2px 8px;
    font-size: 13px;
}
.general_details_section .form-control { font-size: 13px; }

.general_details_section .panel-body .vp-general-q-card:nth-child(5) input.vp-general-field,.general_details_section .panel-body .vp-general-q-card:nth-child(6) input.vp-general-field {
    border: none !important;
    border-top: none !important;
    border-bottom: 1px solid #ced4da !important;
    width: 50% !important;
    background: transparent !important;
}

/* ---- Responsive ---- */
@media only screen and (max-width: 767px) {
    .vp-page-wrap .vp-layout { flex-direction: column; }
    .vp-page-wrap .vp-sidebar { width: 100%; flex: none; }
    .vp-page-wrap .card { margin: 20px 0 0 0; }
    .vp-page-wrap .photo_section .card { margin: 70px 0 0 0; }
    .vp-page-wrap .vendorlisting_container { text-align: center; }
    .vp-page-wrap .listing_box { display: inline-block; }
    .vp-page-wrap .photo_section #vp-photo-grid { display: flex !important; flex-wrap: wrap; gap: 8px; justify-content: flex-start; }
    .vp-page-wrap .photo_section .pic_sec { width: calc(50% - 4px) !important; margin-right: 0 !important; display: block !important; }
    .vp-page-wrap .photo_section .pic_sec .listing_box { width: 100% !important; box-sizing: border-box; }
    .vp-page-wrap .photo_section .pic_sec .listing_box .phototitle { width: 100% !important; box-sizing: border-box; }
    .vp-page-wrap .video_section #vp-video-grid { display: flex !important; flex-wrap: wrap; gap: 8px; justify-content: flex-start; }
    .vp-page-wrap .video_section .scroll_box { width: calc(50% - 4px) !important; margin-right: 0 !important; display: block !important; }
    .vp-page-wrap .video_section .scroll_box .listing_box { width: 100% !important; box-sizing: border-box; }
    .vp-page-wrap .video_section .scroll_box .listing_box .videotitle { width: 100% !important; box-sizing: border-box; }
    .vp-page-wrap .documents_section #vp-doc-grid { display: flex !important; flex-wrap: wrap; gap: 8px; justify-content: flex-start; }
    .vp-page-wrap .documents_section #vp-doc-grid .scroll_box { width: calc(50% - 4px) !important; margin-right: 0 !important; display: block !important; }
    .vp-page-wrap .documents_section #vp-doc-grid .scroll_box .listing_box { width: 100% !important; box-sizing: border-box; }
    .vp-page-wrap .documents_section #vp-doc-grid .scroll_box .listing_box .doctitle { width: 100% !important; box-sizing: border-box; }
    .vp-page-wrap .col-sm-4.offset-4 { margin-left: 0 !important; width: 100%; }
    .vp-page-wrap .file-upload-wrapper .card { margin: 10px 0; }
    .vp-page-wrap .panoramic_area img { height: auto; width: 100%; }
    .vp-page-wrap .m_view { display: none; }
}

/* Required field asterisks */
.vp-page-wrap label strong { color: #e53935; }

/* ---- Pricing section ---- */
.pricing_section .vp-price-wrap { position: relative; }
.pricing_section .vp-price-tag {
    position: absolute;
    top: 40px;
    left: 12px;
    font-size: 14px;
    color: #555;
    /* line-height: 1; */
    margin: 0 !important;
}
.pricing_section .price_section {
    display: inline-block;
    margin-right: 16px;
    color: #495057;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}
.pricing_section .price_week {
    display: inline-block;
    margin-right: 16px;
    color: #495057;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}
/* Pricing PDF bar — mirrors .vp-deals-bottom-bar */
/*.vp-pricing-bottom-bar{*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    align-items: center;*/
/*    gap: 6px;*/
/*    padding: 12px 24px;*/
/*    border-top: 1px solid #eee;*/
/*    border-bottom: 1px solid #eee;*/
/*    background: #fafafa;*/
/*    margin-top: 16px;*/
/*    flex-wrap: wrap;*/
/*}*/
.vp-pricing-pdf-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.vp-pricing-pdf-label {
    font-size: 13px;
    color: #555;
}
.vp-pricing-pdf-controls input[type="file"] {
    font-size: 13px;
}
.vp-pricing-pdf-current {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    gap: 20px;
    font-size: 13px;
    justify-content: end;
}
.vp-pricing-doc-wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}
.vp-pricing-pdf-current a {
    color: #333;
    font-size: 13px;
    text-decoration: none !important;
    word-break: break-all;
}
.vp-pricing-pdf-current a:hover { color: #555; }
.vp-pricing-add-btn-wrap {
    flex-shrink: 0;
}
.vp-pricing-add-btn {
    display: inline-block;
    padding: 8px 15px;
    font-size: 14px;
    background-color: #ffd700;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    border: none;
    white-space: nowrap;
}
.vp-pricing-add-btn:hover { background-color: #000; color: #fff; }

/* Events pagination */
.vp-page-wrap .vp-pagination { margin-top: 12px; display: flex; justify-content: flex-end; }
.vp-page-wrap .vp-pagination a.vp-evt-page {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 2px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
}
.vp-page-wrap .vp-pagination a.vp-evt-page:hover { background: #f5f5f5; }
.vp-page-wrap .vp-pagination a.vp-page-active {
    background: #ffd700;
    border-color: #ffd700;
    color: #000;
    font-weight: 600;
}

/* Shared pagination styles (pricing, deals, employees, etc.) */
.vp-pagination .vp-pagination-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.vp-pagination .vp-page-item .vp-page-link {
    display: inline-block;
    padding: 5px 11px;
    border: none;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    background: transparent;
    transition: background 0.15s;
}
.vp-pagination .vp-page-item .vp-page-link:hover { background: transparent; }
.vp-pagination .vp-page-item.active .vp-page-link {
    background: #ffd700;
    border: none;
    color: #000;
    font-weight: 600;
}
.vp-pagination .vp-page-item.disabled .vp-page-link {
    color: #aaa;
    pointer-events: none;
    background: transparent;
}



/* Pricing delete confirmation modal */
.vp-modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    display: none;
    align-items: flex-start;
    justify-content: center;
}
.vp-modal-dialog {
    width: 100%;
    max-width: 420px;
    margin: 0 15px;
    align-items: center;
    display: flex;
    height : 100%;
    justify-content: center;
    
}
.vp-modal-content {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 6px 28px rgba(0,0,0,0.32);
    overflow: hidden;
}
.vp-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #ffd700;
    border-bottom: none;
}
.vp-modal-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.01em;
}
.vp-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #000;
    cursor: pointer;
    padding: 0 2px;
    font-weight: 700;
    opacity: 0.85;
}
.vp-modal-close:hover { opacity: 1; }
.vp-modal-body {
    padding: 22px 18px 18px;
    font-size: 14px;
    color: #333;
    background: #fff;
}
.vp-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 18px 16px;
    background: #fff;
    border-top: none;
}
.vp-modal-footer #vp-pricing-modal-cancel {
    background: #ffd700;
    border: none;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 2px;
    cursor: pointer;
}
.vp-modal-footer #vp-pricing-modal-cancel:hover { background: #b09200; }
.vp-modal-footer #vp-pricing-modal-confirm {
    background: #dc3545;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 2px;
    cursor: pointer;
}
.vp-modal-footer #vp-pricing-modal-confirm:hover { background: #c82333; }

.faq_remove {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: red;
    text-align: center;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.remove_button i {
    color: #ffffff;
    cursor: pointer;
}

/* FAQ client-side pagination links */
.vp-pagination a.vp-faq-pg {
    display: inline-block;
    padding: 4px 10px;
    margin: 2px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    background: #fff;
    transition: background 0.15s;
}
.vp-pagination a.vp-faq-pg:hover { background: #f5f5f5; }
.vp-pagination a.vp-faq-pg.vp-page-active {
    background: #ffd700;
    border-color: #ffd700;
    color: #000;
    font-weight: 600;
}

/* Bootstrap pagination override inside vendor profile (reviews, messages) */
.vp-page-wrap .custom_pagination .pagination .page-item .page-link {
    color: #333;
    border-color: #ddd;
}
.vp-page-wrap .custom_pagination .pagination .page-item.active .page-link {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #000;
}
.vp-page-wrap .custom_pagination .pagination .page-item .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(255,215,0,.35);
}

/* ── Availability Calendar ── */
.avilability_calendar .vp-cal-day-row {
    background: #fff;
}
.avilability_calendar .yellow.lighten-4 {
    background-color: #fff9c4 !important;
}
.avilability_calendar .vp-booking-chip {
    background-color: #e3f2fd;
    border-color: #90caf9 !important;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.15s;
}
.avilability_calendar .vp-booking-chip:hover { background-color: #bbdefb; }
.avilability_calendar .vp-cal-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 100%;
    border-radius: 4px !important;
    border: 1px solid #90caf9 !important;
    color: #212529;
    font-size: 11px !important;
    text-decoration: none !important;
    transition: background 0.15s;
}
/*.avilability_calendar .vp-cal-add-btn:hover { background: #bbdefb; }*/
.avilability_calendar .modal_open_link {
    color: #007bff;
    font-size: 14px;
}
.avilability_calendar .modal_open_link:hover { text-decoration: underline; }
.avilability_calendar #vp-cal-prev,
.avilability_calendar #vp-cal-next {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}
/*.avilability_calendar #vp-cal-prev:hover,*/
/*.avilability_calendar #vp-cal-next:hover { color: #ffd700; }*/
.availability_booking .modal-dialog { max-width: 600px; }

/* ── Availability: top row (Preferences + stats) ── */
.avilability_calendar .vp-cal-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.avilability_calendar .vp-cal-prefs-link {
    margin: 0;
    cursor: pointer;
    color: #0028ff;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.avilability_calendar .vp-cal-prefs-link:hover { color: #0056b3; text-decoration: underline; }
.avilability_calendar .vp-cal-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.avilability_calendar .vp-cal-stat-badge {
    background: #eeeeee;
    border: 1px solid #dee2e6;
    color: #212529;
    font-size: 14px;
    font-weight: 700;
    padding: 8px;
    border-radius: 2px;
    white-space: nowrap;
}
.vp-action-section{
    margin-top:20px;
}
.vp-page-wrap .vp-sidebar ul li a{
	font-weight:600 !important; 
}
.vp-page-wrap .vp-sidebar ul li a:hover {
    background: #ffd700 !important;
}
.vp-page-wrap .vp-sidebar ul a {
    padding: 16px !important;
}
/* ── Availability: filter row ── */
.avilability_calendar .vp-cal-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    padding: 6px 0;
}
.avilability_calendar .vp-cal-filter-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 14px;
}
.avilability_calendar .vp-cal-filter-label {
    font-size: 14px;
    font-weight: 400;
    color: #212529;
    margin-right: 4px;
    white-space: nowrap;
}
.avilability_calendar .vp-cal-radio-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #212529;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
    white-space: nowrap;
}
.avilability_calendar .vp-cal-radio-label input[type="radio"],
.avilability_calendar .vp-cal-radio-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}

/* ── Availability: month navigation row ── */
.avilability_calendar .vp-cal-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 6px 0;
}
.avilability_calendar .vp-cal-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    text-decoration: none;
    padding: 8px 8px;
    border-radius: 3px;
    transition: color 0.15s, background 0.15s;
}
/*.avilability_calendar .vp-cal-nav-link:hover {*/
/*    color: #000;*/
/*    background: #fff9e0;*/
/*    text-decoration: none;*/
/*}*/
.avilability_calendar .vp-cal-nav-center {
    display: flex;
    align-items: center;
    gap: 8px;
}
.avilability_calendar .vp-cal-nav-select {
    display: inline-block !important;
    width: auto !important;
    padding: 8px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #212529 !important;
    background-color: #fff !important;
    border: 1px solid #000 !important;
    border-radius: 0px !important;
    height: auto !important;
    -webkit-appearance: auto !important;
    appearance: auto !important;
    box-shadow: none !important;
    cursor: pointer;
}

.vp-page-wrap p{
    font-size: 14px;
    color: #333;
    margin-top:16px;
}
button.vendor-cancel-btn {
    border: 1px solid #ddd;
    font-size: 15px;
    text-transform: uppercase;
    margin: 0px;
    font-weight: 600;
}
button.vendor-cancel-btn:hover{
    background:transparent;
}

.vendor-action-btn{
    margin-top:20px;
}
.vp-page-wrap .photo_section .form-control,
#vp-form-events input#vp-event-photo{
    height: 43px !important;
    padding: 5px !important;
}

.photo_section .file-upload-wrapper{
    margin: 40px 0px;
}

.faq_section #vp-custom-faq-list {
    margin-top: 20px;
}

.faq_section .question_answ_i {
    width: 50px;
    padding: 4px;
    justify-content: center;
    display: flex;
}

.faq_section .faq_remove .remove_button {
    padding: 4px;
    display:flex;
    justify-content:center;
    align-items : center;
}
.faq_section .faq_remove .remove_button i.fa.fa-trash {
    font-size: 14px;
}

.faq_section .vp-custom-faq-item input.vp-custom-q,
.faq_section .vp-custom-faq-item input.vp-custom-a {
    height: 34px !important;
    padding: 4px !important;
    max-height: 34px;
}
.documents_section .panel-body {
    padding-top: 0px !important;
}
.documents_section .panel-body .card-body {
    margin-top: 17px;
}
.social_media_section .form-header p.text-center {
    margin-top: 0px !important;
}
.social_media_section .panel-body {
    padding-top: 0px !important;
}
.availability_section .vp-cal-week span.h5 {
    font-size: 20px !important;
}

.availability_section .vp-cal-week span {
    font-size: 14px;
    color: #212529 !important;
}
.availability_section .vp-cal-week .vp-cal-day-row strong,
.availability_section .vp-cal-week .vp-cal-day-row small{
    font-size: 14px;
    color: #212529 !important;
    font-weight: 400;
}
.availability_section .vp-date-column {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.vp-availability-settings-modal .modal-content .modal-body .md-form.border-bottom {
    padding-bottom: 16px !important;
}

.vp-availability-settings-modal .modal-content .modal-body .days-section,
.vp-availability-settings-modal .modal-content .modal-body .booked-content{
    margin-top:0px !important;
}

.vp-availability-settings-modal .modal-content .modal-body .custom-control{
        display: flex;
    justify-content: center;
    align-items: center;
}
.vp-availability-settings-modal .modal-content .modal-body .custom-control label{
    margin:0px !important;
}

#vp-photo-delete-modal .modal-header button.close,
#vp-photo-featured-delete-modal .modal-header button.close,
.vp-deal-modal .modal-header button.close.vp-modal-close-btn,
.vp-video-modal .modal-header button.close.vp-modal-close-btn,
.vp-event-modal .modal-header button.close.vp-modal-close-btn,
.vp-modal-backdrop .modal-header button.close.vp-modal-close-btn,
.vp-customfaq-modal .modal-header button.close.vp-modal-close-btn,
.vp-documents-modal .modal-header button.close.vp-modal-close-btn,
.vp-availability-modal .modal-header button.close.vp-modal-close-btn,
.vp-availability-settings-modal .modal-header button.close.vp-modal-close-btn,
.availability_booking .modal-header button.vp-modal-close-btn,
#vp-pricing-delete-modal .modal-header button.vp-modal-close-btn{
    color: black !important;
    opacity: 1 !important;
    box-shadow: none !important;
}
#vp-photo-delete-modal .modal-body,
#vp-photo-featured-delete-modal .modal-body,
.vp-deal-modal .modal-body , .vp-video-modal .modal-body, .vp-event-modal .modal-body,
.vp-modal-backdrop .modal-body, .vp-customfaq-modal .modal-body, .vp-documents-modal .modal-body,
.vp-documents-modal .modal-body, .vp-availability-modal .modal-body,
#vp-pricing-delete-modal .modal-body {
    font-size: 14px;
    color: #212529 !important;
}
#vp-photo-delete-modal .modal-footer,
#vp-photo-featured-delete-modal .modal-footer,
.vp-deal-modal .modal-footer, .vp-video-modal .modal-footer, .vp-event-modal .modal-footer,
.vp-modal-backdrop .modal-footer, .vp-customfaq-modal .modal-footer, .vp-documents-modal .modal-footer,
.vp-availability-modal .modal-footer,
#vp-pricing-delete-modal .modal-footer{
    display: flex;
    gap:10px;
    justify-content: center;
}
#vp-photo-delete-modal .modal-footer  button.btn.btn-secondary,
#vp-photo-featured-delete-modal .modal-footer button.btn.btn-secondary,
.vp-deal-modal .modal-footer .vp-modal-cancel-btn,
.vp-video-modal .modal-footer .vp-modal-cancel-btn,
.vp-event-modal .modal-footer .vp-modal-cancel-btn,
.vp-modal-backdrop .modal-footer .vp-modal-cancel-btn,
.vp-customfaq-modal .modal-footer .vp-modal-cancel-btn,
.vp-documents-modal .modal-footer .vp-modal-cancel-btn,
.vp-availability-modal .modal-footer .vp-modal-cancel-btn,
#vp-pricing-delete-modal .modal-footer .vp-modal-cancel-btn {
    background: transparent;
    border: 1px solid #dfdfdf !important;
    color: #212529;
    font-size: 15px;
	text-transform: uppercase;
    outline: none !important;
    box-shadow: none;
}
#vp-photo-delete-modal .modal-footer button#vp-photo-delete-confirm,
#vp-photo-featured-delete-modal .modal-footer button#vp-photo-featured-delete-confirm,
.vp-deal-modal .modal-footer .vp-modal-delete-modal,
.vp-video-modal .modal-footer .vp-modal-delete-modal, 
.vp-event-modal .modal-footer .vp-modal-delete-modal,
.vp-modal-backdrop .modal-footer .vp-modal-delete-modal,
.vp-customfaq-modal .modal-footer .vp-modal-delete-modal,
.vp-documents-modal .modal-footer .vp-modal-delete-modal,
.vp-availability-modal .modal-footer .vp-modal-delete-modal,
#vp-pricing-delete-modal .modal-footer .vp-modal-delete-modal {
    background: #dc3545;
    border: none;
    margin: 0px !important;
    font-size: 15px;
	color:white;
    height: 38px !important;
    text-transform: uppercase;
}

#vp-photo-featured-delete-modal .modal-dialog,
#vp-photo-delete-modal .modal-dialog,
.vp-deal-modal .modal-dialog,
.vp-video-modal .modal-dialog, .vp-event-modal .modal-dialog,
.vp-modal-backdrop .modal-dialog,
.vp-customfaq-modal .modal-dialog, .vp-availability-modal .modal-dialog,
#vp-pricing-delete-modal .modal-dialog{
	height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}
.vp-modal-backdrop .modal-footer .vp-modal-cancel-btn,
.vp-modal-backdrop .modal-footer .vp-modal-delete-modal{
	padding: 7px 14px;
}
 

/* .deals_section .vp-deals-bottom-bar{*/
/*	display:flex;*/
/*	flex-direction :column;*/
/*	gap:10px;*/
/*} */
 .photo_section .panel-body label {
    font-weight: 400;
}
.vp-page-wrap .photo_section .card{
	margin : 0px !important;
}

.vp-page-wrap .vp-sidebar ul li a{
	font-weight:600 !important; 
}
.vp-page-wrap .vp-sidebar ul li a:hover {
    background: #ffd700 !important;
}
.vp-page-wrap .vp-sidebar ul a {
    padding: 16px !important;
}
.profile_info .video_section .panel-body {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.profile_info .video_section .panel-body div.card-body {
    margin-top: 20px;
}
.profile_info .video_section .panel-body .file-upload-wrapper i {
    font-size: 47px;
} 

.modal .modal-dialog {
    margin: auto !important;
}

.modal-open .modal{
    margin: 0px 10px;
    width: 100%;
    max-width: stretch;
    padding-right:0 !important;
}

@media (max-width: 767px) {
     .deals_section .vp-deals-bottom-bar{
	display:flex;
	flex-direction :column;
	gap:10px;
}
.deals_section .vp-deals-table-wrap table.vp-deals-table th:nth-child(n+2):nth-child(-n+5),
  .deals_section .vp-deals-table-wrap table.vp-deals-table td:nth-child(n+2):nth-child(-n+5) {
    display: none;
  }
  .events_section thead th:nth-child(n+2):nth-child(-n+3),
  .events_section td:nth-child(n+2):nth-child(-n+3) {
    display: none;
  }
  .deals_section .vp-deal-doc-current, .pricing_section .vp-pricing-bottom-bar{
      display : flex;
      gap:10px;
      flex-direction: column;
  }
  .deals_section .vp-deal-doc-current .vp-deal-doc-wrap, .pricing_section .vp-pricing-pdf-controls{
      width:100%;
  }
  .deals_section .vp-deal-doc-current .vp-deal-add-btn-wrap, .pricing_section .vp-pricing-pdf-current{
        width:100%;
        justify-content: end;
        display: flex;
  }
  
  
  .vp-event-reset-map,
    .vp-event-submit-btn {
        padding-left:8px;
        padding-right :8px;
        width: 50% !important;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .vp-event-reset-map,
    .vp-event-submit-btn {
        display: inline-block;
        width: auto;
    }
    .vp-event-reset-map button,
    .vp-event-submit-btn button {
        padding-left:15px !important;
        padding-right :15px !important;
    }
    .vp-event-submit-btn{
        margin-top:7px !important;
    }
    .faq_section .question_answ_i{
        width:30px;
    }
    .avilability_calendar .vp-cal-filter-left{
        flex-direction:column;
        text-align: left;
        align-items: flex-start;
        gap: 15px;
    }
    .avilability_calendar .vp-cal-filter-row{
        align-items: flex-start;
    }
    .availability_section .vp-cal-top-row {
    justify-content: center;
}
.availability_section .vp-cal-top-row .vp-cal-stats span{
    width:100%;
}
  
}
/* ---- Sort overlay (Enable Sort mode) ---- */
.vpm-sort-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.4); z-index: 4; pointer-events: none;
    border-radius: 4px;
}
.vpm-drag-icon { color: #fff; font-size: 22px; }
.pic_sec .listing_box,
.scroll_box .listing_box {
    position: relative;
}

/* ---- Individual photo/video/doc delete icon ---- */
.vpm-item-del {
    position: absolute; top: 4px; right: 4px;
    background: rgba(239,68,68,.85) !important; border: none !important;
    border-radius: 50%; width: 26px; height: 26px; display: flex !important;
    align-items: center; justify-content: center; cursor: pointer;
    color: #fff !important; font-size: 12px; padding: 0; z-index: 3;
}
.vpm-item-del:hover { background: #ef4444 !important; }
