/* Meyer Immobilien: Global radius overrides */
:root {
    /* Setze globalen Radius auf 15px */
    --bs-border-radius: 20px;
    --bs-border-radius-sm: 15px;
    --bs-border-radius-lg: 15px;
    --bs-border-radius-xl: 15px;
    --bs-border-radius-xxl: 15px;
    --bs-border-radius-2xl: 15px;
    /* Pill bleibt rund */
    --bs-border-radius-pill: 50rem;
    --header-offset-mobile: 130px;
    --header-offset-desktop: 160px;
}

/* Consent-Checkbox (Report-Form) */
.consent-check {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--bs-border-radius);
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.consent-check-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.consent-check-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
}

.consent-check-icon {
    width: 1.6rem;
    height: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(15, 23, 42, 0.45);
    border-radius: 0.2rem;
    color: transparent;
    background: transparent;
    transition: all 0.2s ease;
}

.consent-check-icon svg {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.consent-check-input:checked+.consent-check-label .consent-check-icon {
    background: var(--ztc-bg-bg-3, #0b5ed7);
    border-color: var(--ztc-bg-bg-3, #0b5ed7);
    color: #fff;
}

.consent-check-input:checked+.consent-check-label .consent-check-icon svg {
    opacity: 1;
}

.consent-check-text {
    display: flex;
    flex-direction: column;
    color: #0f172a;
    font-size: 0.95rem;
}

.consent-check-text strong {
    font-weight: 600;
}

.consent-check-description {
    font-size: 0.85rem;
    color: #5f6b7a;
    line-height: 1.4;
}

.consent-check+.text-danger {
    display: block;
    margin-top: 0.5rem;
}

/* Form Controls: Select im Input-Stil */
.input-box input[type="text"],
.input-box input[type="email"],
.input-box input[type="tel"],
.input-box input[type="number"],
.input-box input[type="datetime-local"],
.input-box input[type="date"],
.input-box input[type="time"],
.input-box textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--bs-border-radius);
    background: #fff;
    min-height: 48px;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1b1b1b;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-box textarea {
    min-height: 120px;
    resize: vertical;
}

.input-box input:focus,
.input-box textarea:focus {
    border-color: var(--ztc-bg-bg-3, #0b5ed7);
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
    outline: none;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
    color: rgba(15, 23, 42, 0.45);
}

.report-preview {
    display: flex;
}

.report-preview__inner {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: var(--bs-border-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.report-preview__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.report-preview__meta {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.report-preview__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.75);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.report-preview__remove-btn {
    background: transparent;
    border: none;
    padding: 0;
    color: #C72030;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.report-preview__remove-btn:hover,
.report-preview__remove-btn:focus-visible {
    color: #a81b27;
    text-decoration-color: currentColor;
    outline: none;
}

.report-preview__remove-btn.is-removed {
    color: rgba(15, 23, 42, 0.45);
    text-decoration: none;
}

.profile-upload-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-upload-preview {
    width: 200px;
    height: 200px;
    border-radius: var(--bs-border-radius);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.profile-upload-preview__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-upload-wrap .outline-upload {
    justify-content: center;
}

.profile-upload-wrap .outline-upload::before {
    display: none;
}

.profile-upload-wrap .outline-upload::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(15, 23, 42, 0.55);
    border-bottom: 2px solid rgba(15, 23, 42, 0.55);
    transform: rotate(45deg);
    margin-left: 0.75rem;
}

.report-chat__select {
    flex: 1;
    min-height: 48px;
}

select.report-chat__select {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--bs-border-radius);
    background-color: #fff;
    padding: 0.65rem 2.5rem 0.65rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1b1b1b;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(15, 23, 42, 0.55) 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.55) 50%, transparent 50%);
    background-position: calc(100% - 18px) 52%, calc(100% - 12px) 52%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

select.report-chat__select:focus {
    border-color: var(--ztc-bg-bg-3, #0b5ed7);
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
    outline: none;
}

select.report-chat__select:disabled {
    background-color: rgba(15, 23, 42, 0.04);
    color: rgba(15, 23, 42, 0.45);
    border-color: rgba(15, 23, 42, 0.1);
    cursor: not-allowed;
}

.report-chat__close {
    width: 44px;
    height: 44px;
    min-height: 44px;
    border-radius: var(--bs-border-radius);
    border: none;
    background: #C72030;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.report-chat__close:hover,
.report-chat__close:focus-visible {
    background: #bb2d3b;
    box-shadow: 0 0 0 3px rgba(199, 32, 48, 0.2);
    outline: none;
}

.report-chat__send {
    height: 65px !important;
    min-height: 65px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 var(--bs-border-radius-sm) var(--bs-border-radius-sm) 0 !important;
}

.nice-select.report-chat__select {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--bs-border-radius);
    background: #fff;
    padding: 0.65rem 2.5rem 0.65rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1b1b1b;
    height: 48px;
    line-height: 1.2;
    position: relative;
    display: flex;
    align-items: center;
}

.nice-select.report-chat__select::after {
    border: none;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(15, 23, 42, 0.55);
    border-bottom: 2px solid rgba(15, 23, 42, 0.55);
    transform: rotate(45deg);
    margin-top: -2px;
}

.nice-select.report-chat__select.open,
.nice-select.report-chat__select:focus {
    border-color: var(--ztc-bg-bg-3, #0b5ed7);
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
}

.nice-select.report-chat__select.open::after {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.nice-select.report-chat__select .current {
    color: #1b1b1b;
    flex: 1;
}

.nice-select.report-chat__select .list {
    border-radius: var(--bs-border-radius);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.nice-select.report-chat__select .option {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.nice-select.report-chat__select .option.focus,
.nice-select.report-chat__select .option.selected.focus,
.nice-select.report-chat__select .option:hover {
    background: rgba(11, 94, 215, 0.08);
    color: #0b5ed7;
}

.input-area select,
.input-area .nice-select,
.input-box select,
.input-box .nice-select {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--bs-border-radius);
    background: #fff;
    min-height: 48px;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1b1b1b;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
}

.input-area select:focus,
.input-area .nice-select.open,
.input-area .nice-select:focus,
.input-box select:focus,
.input-box .nice-select.open,
.input-box .nice-select:focus {
    border-color: var(--ztc-bg-bg-3, #0b5ed7);
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
    outline: none;
}

.input-area .nice-select,
.input-box .nice-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 2.5rem;
}

.input-area .nice-select::after,
.input-box .nice-select::after,
.input-area select::after,
.input-box select::after {
    border: none;
    content: "";
    position: absolute;
    right: 1rem;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid rgba(15, 23, 42, 0.55);
    border-bottom: 2px solid rgba(15, 23, 42, 0.55);
    transform: rotate(45deg);
    margin-top: -0.4rem;
    transition: transform 0.2s ease;
}

.input-area .nice-select.open::after,
.input-box .nice-select.open::after {
    transform: rotate(-135deg);
    margin-top: 0.2rem;
}

.input-area .nice-select .current,
.input-box .nice-select .current {
    color: #1b1b1b;
}

.input-area .nice-select .list,
.input-box .nice-select .list {
    border-radius: var(--bs-border-radius);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.input-area .nice-select .option,
.input-box .nice-select .option {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.input-area .nice-select .option.focus,
.input-area .nice-select .option.selected.focus,
.input-area .nice-select .option:hover,
.input-box .nice-select .option.focus,
.input-box .nice-select .option.selected.focus,
.input-box .nice-select .option:hover {
    background: rgba(11, 94, 215, 0.08);
    color: #0b5ed7;
}

.input-area .nice-select.disabled,
.input-area select:disabled,
.input-box .nice-select.disabled,
.input-box select:disabled {
    background: rgba(15, 23, 42, 0.04);
    color: rgba(15, 23, 42, 0.45);
    cursor: not-allowed;
    border-color: rgba(15, 23, 42, 0.1);
}

/* Outline Buttons (disabled + upload Variante) */
.outline-alert-disabled,
.outline-upload {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 44px;
    padding: 12px 18px;
    border: 2px dashed transparent;
    border-radius: var(--bs-border-radius);
    font-weight: 600;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.outline-alert-disabled {
    border-color: rgba(199, 32, 48, 0.6);
    color: rgba(199, 32, 48, 0.85);
    background: rgba(199, 32, 48, 0.05);
    cursor: not-allowed;
}

.outline-alert-disabled:disabled,
.outline-alert-disabled[disabled] {
    opacity: 1;
}

.outline-upload {
    border-color: rgba(27, 56, 103, 0.55);
    color: var(--cookie-consent-primary, #1b3867);
    background: rgba(27, 56, 103, 0.04);
    cursor: pointer;
}

.outline-upload:hover,
.outline-upload:focus-visible {
    background: rgba(27, 56, 103, 0.12);
    border-color: rgba(27, 56, 103, 0.85);
    color: var(--ztc-text-text-1);
}

.outline-upload:focus-visible {
    outline: 2px solid rgba(27, 56, 103, 0.45);
    outline-offset: 2px;
}

.outline-upload.is-disabled {
    border-color: #C72030;
    color: #C72030;
    background: rgba(199, 32, 48, 0.08);
    cursor: not-allowed;
}

.outline-upload.is-disabled:hover,
.outline-upload.is-disabled:focus-visible {
    background: rgba(199, 32, 48, 0.12);
    border-color: #C72030;
    color: #C72030;
    outline: none;
}

.outline-upload.is-success {
    border-color: #198754;
    color: #198754;
    background: rgba(25, 135, 84, 0.08);
}

.outline-upload.is-success:hover,
.outline-upload.is-success:focus-visible {
    background: rgba(25, 135, 84, 0.12);
    border-color: #198754;
    color: #198754;
}

.upload-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(1.2) blur(2px);
    z-index: 2;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    border: 2px dashed #C72030;
    border-radius: var(--bs-border-radius);
    color: #C72030;
    font-weight: 600;
}

.upload-overlay-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .upload-overlay-text {
        font-size: 0.85rem;
    }
}

.upload-overlay.is-visible {
    display: flex;
}

/* Nice-Select im Property-Tab: Radius für Control und Liste */
.others-section-area .property-tab-section .nice-select {
    border-radius: var(--bs-border-radius) !important;
}

.others-section-area .property-tab-section .nice-select .list {
    border-radius: var(--bs-border-radius) !important;
}

/* Echte <button>-Elemente hatten in bootstrap.min.css border-radius: 0; */
button {
    border-radius: var(--bs-border-radius) !important;
}

/* Bootstrap-Buttons an Var koppeln (Fallback) */
.btn {
    border-radius: var(--bs-border-radius);
}

/* Theme-Button */
.vl-btn1,
.vl-btn-ghost {
    border-radius: var(--bs-border-radius);
}

.homepage1-body .vl-hero-btn .login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
    padding-bottom: 18px;
}

.homepage1-body .vl-hero-btn .logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
    padding-bottom: 18px;
}

/* Custom-Karten im Dashboard */
.dashboard-card,
.tenant-property-card {
    border-radius: var(--bs-border-radius);
    overflow: hidden;
}

/* Section Areas (generisch) */
[class*="section-area"],
[class*="sectionarea"] {
    border-radius: var(--bs-border-radius);
}

/* Transparenter Header auf der Homepage */
.homepage1-body .vl-transparent-header {
    border-radius: var(--bs-border-radius);
    overflow: visible;
}

/* Container/Boxen (mit overflow hidden) */
.hero1-section-area .hero-heading-content,
.about1-section-area .heading1 .head,
.about1-section-area .perag-bg,
.service1-inner,
.property1,
.property1 .main-tabs-area .tab-content .tab-pane .property-single-boxarea,
.property1 .main-tabs-area .tab-content .tab-pane .property-single-boxarea .property-list-img-area .img1,
.property1 .main-tabs-area .tab-content .tab-pane .property-single-boxarea .property-price .price,
.property1 .main-tabs-area .tab-content .tab-pane .property-single-boxarea .property-price,
.property-inner-section-find .tab-content .tab-pane .property-single-boxarea .property-other-widget,
.property-inner-section-find .tab-content .tab-pane .property-single-boxarea .property-list-img-area .img1 img,
.testimonials-2,
.testimonials-2 .testimonials-box-2,
.team1,
.vl-blog-1-area,
.vl-blog-1-area .vl-blog-1-item .vl-blog-1-thumb,
.vl-blog-1-area .vl-blog-1-item .vl-blog-1-content,
.footer-cta-bg-area,
.footer-cta-bg-area .cta1-section-area,
.contact-inner,
.inner-header-area .inner-header,
.miision1,
.miision1 .mission-heading,
.choose1,
.blog-inner-section .bg-area,
.blog-inner-section .vl-blog-1-item .vl-blog-1-thumb,
.blog-inner-section .blog-siderbar .search-area,
.blog-inner-section .blog-siderbar .categories-area,
.others-section-area .property-tab-section .filters,
.property-inner-section-find .tab-content .tab-pane .property-single-boxarea,
.property-inner-section-find .tab-content .tab-pane .property-single-boxarea .property-list-img-area .img1,
.contact-inner .phone-number,
.privacy-policy-area,
.add-property-section,
.add-property-section .property-boxarea .all-tabs-boxarea,
.propert-bottom-section,
.maps-area {
    border-radius: var(--bs-border-radius) !important;
    overflow: visible !important;
}

/* Bilder/Videos im Hero (nur Radius) */
.hero1-section-area .hero-images-area img,
.hero1-section-area .hero-images-area video,
.hero1-section-area .hero-images-area iframe,
.about1-section-area .about-img1 img,
.about1-section-area .about-img2 img,
.team1 .team-widget-boxarea .img1 img,
.inner-header-area .inner-images img,
.miision1 .images1 img {
    border-radius: var(--bs-border-radius) !important;
}

/* Aktiver Button in Property-Tab */
.property1 .property-list-tab ul li button.active {
    border-radius: var(--bs-border-radius) !important;
}

/* Theme-Button Overlay an Radius koppeln */
.vl-btn1::after {
    border-radius: inherit;
}

.vl-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: var(--bs-border-radius-sm) !important;
    background: var(--ztc-bg-bg-1);
    color: var(--ztc-text-text-2);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 0.5rem 1rem rgba(15, 23, 42, 0.08);
}

.vl-btn-icon i {
    font-size: 16px;
}

.vl-btn-icon:hover,
.vl-btn-icon:focus-visible {
    background: var(--ztc-bg-bg-3);
    color: var(--ztc-text-text-1);
    transform: translateY(-1px);
}

.vl-btn-icon:focus-visible {
    outline: 2px solid rgba(15, 23, 42, 0.35);
    outline-offset: 2px;
}

.vl-btn-icon.danger {
    background: #C72030;
    color: #ffffff;
    box-shadow: 0 0.5rem 1rem rgba(199, 32, 48, 0.25);
}

.vl-btn-icon.danger:hover,
.vl-btn-icon.danger:focus-visible {
    background: #bb2d3b;
    color: #ffffff;
}

/* Dropdowns der Nice-Select dürfen nicht abgeschnitten werden */
.nice-select {
    overflow: visible !important;
}

/* Nice-Select Dropdown sichtbar über Containern halten */
.nice-select .list {
    z-index: 2000 !important;
}

/* Bootstrap Dropdown-Menüs nicht verdecken lassen */
.dropdown-menu {
    z-index: 2000;
}

/* Immobilien-Slider auf der Startseite (Theme1): Bilder immer mit Radius anzeigen */
.property1 .main-tabs-area .tab-content .tab-pane .property-single-boxarea .property-list-img-area .img1,
.property1 .main-tabs-area .tab-content .tab-pane .property-single-boxarea .property-list-img-area .img1 img {
    border-radius: var(--bs-border-radius) !important;
}

/* Slider-Items (Property): Inhalt innerhalb der abgerundeten Ecken clippen */
.property1 .main-tabs-area .tab-content .tab-pane .property-single-boxarea,
.property1 .main-tabs-area .tab-content .tab-pane .property-single-boxarea .property-list-img-area .img1,
.property-inner-section-find .tab-content .tab-pane .property-single-boxarea,
.property-inner-section-find .tab-content .tab-pane .property-single-boxarea .property-list-img-area .img1,
.propert-bottom-section .property-single-boxarea,
.propert-bottom-section .property-single-boxarea .property-list-img-area .img1 {
    overflow: hidden !important;
}

.propert-bottom-section .property-single-boxarea,
.propert-bottom-section .property-single-boxarea .property-list-img-area .img1,
.propert-bottom-section .property-single-boxarea .property-list-img-area .img1 img {
    border-radius: var(--bs-border-radius) !important;
}

/* Hero-Bild/Video-Container (rechte Spalte) mit globalem Radius */
.hero1-section-area .hero-images-area {
    border-radius: var(--bs-border-radius) !important;
}

/* Leaflet Karte in den Properties: Radius + Clipping */
#properties-map.leaflet-container {
    border-radius: var(--bs-border-radius);
    overflow: hidden;
}

/* Wrapper clipt Overlay und Karte gemeinsam */
#properties-map-wrap {
    border-radius: var(--bs-border-radius);
    overflow: hidden;
}

.with-header-offset {
    margin-top: var(--header-offset-mobile);
}

@media (min-width: 992px) {
    .with-header-offset {
        margin-top: var(--header-offset-desktop);
    }
}

/* Mobile stacking for bottom-left toggles when chat exists */
@media (max-width: 640px) {
    body.has-report-chat-toggle .report-chat__toggle {
        left: 24px;
        right: auto;
        bottom: 24px;
        z-index: 9996;
    }

    body.has-report-chat-toggle .cookie-consent__reopen {
        left: 24px;
        right: auto;
        bottom: 84px;
        /* 24 + 48 + 12 spacing */
        z-index: 9998;
    }

    body.has-report-chat-toggle #accessibility-widget-toggle {
        left: 24px;
        right: auto;
        bottom: 144px;
        /* 84 + 48 + 12 spacing */
        z-index: 9999;
    }
}

.vl-btn1.logout-btn {
    background-color: #C72030 !important;
    border-color: #C72030 !important;
    color: #fff !important;
}

.vl-btn1.logout-btn:hover,
.vl-btn1.logout-btn:focus {
    background-color: #bb2d3b !important;
    border-color: #b02a37 !important;
    color: #fff !important;
}

.vl-btn1.logout-btn::after {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

/* Mobile Offcanvas: Logout als roter Button (Ghost-Variante) */
.vl-btn-ghost.logout-btn {
    background-color: #C72030 !important;
    border-color: #C72030 !important;
    color: #fff !important;
}

.vl-btn-ghost.logout-btn:hover,
.vl-btn-ghost.logout-btn:focus {
    background-color: #bb2d3b !important;
    border-color: #b02a37 !important;
    color: #fff !important;
}

/* Reports-Liste: Edit-Icon (Link) an Button-Icons angleichen */
.dashboard-section-area .dashboad-all-details-section .actions a svg {
    width: 14px;
    height: 14px;
    object-fit: cover;
}

/* Reports-Liste: Edit-Link identisch wie Buttons (comment/delete) stylen */
.dashboard-section-area .dashboad-all-details-section .actions a.edit {
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: var(--ztc-text-text-2);
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s14);
    font-style: normal;
    font-weight: var(--ztc-weight-medium);
    line-height: 14px;
    width: 100%;
    background: none;
    text-align: start;
    text-decoration: none;
}

@media (max-width: 767px) {
    .dashboard-section-area .dashboad-all-details-section .actions a.edit {
        text-align: center;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dashboard-section-area .dashboad-all-details-section .actions a.edit {
        text-align: center;
    }
}
