/* =========================================================
   INSIGHT ZPP KONFIGURATOR
   ERGÄNZUNGEN FÜR FRAGEFUNKTION
========================================================= */


/* =========================================================
   BUTTON – FRAGE ZUM MODUL
========================================================= */

.insight-detail-question {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 13px 24px;

    border: 2px solid #17ACA8;
    border-radius: 10px;

    background: #ffffff;
    color: #17ACA8;

    font-family: "New Hero", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;

    cursor: pointer;

    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


.insight-detail-question:hover {
    background: #17ACA8;
    color: #ffffff;
    border-color: #17ACA8;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(23, 172, 168, .20);
}


.insight-detail-question:focus-visible {
    outline: 3px solid rgba(23, 172, 168, .22);
    outline-offset: 3px;
}


/* =========================================================
   FRAGE-MODAL – GESAMTER BEREICH
========================================================= */

.insight-question-modal {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    z-index: 2147483000 !important;
}


.insight-question-modal.is-open {
    display: flex !important;
}


/* =========================================================
   ABGEDUNKELTER HINTERGRUND
========================================================= */

.insight-question-modal__backdrop {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(38, 48, 48, .60);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    z-index: 1;
}


/* =========================================================
   EIGENTLICHES FORMULARFENSTER
========================================================= */

.insight-question-modal__dialog {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 680px;

    max-height: calc(100vh - 60px);

    overflow-x: hidden;
    overflow-y: auto;

    padding: 42px;

    border: 1px solid rgba(23, 172, 168, .25);
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .22);

    font-family: "New Hero", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #585858;
}


/* =========================================================
   SCROLLBAR
========================================================= */

.insight-question-modal__dialog::-webkit-scrollbar {
    width: 8px;
}


.insight-question-modal__dialog::-webkit-scrollbar-track {
    background: transparent;
}


.insight-question-modal__dialog::-webkit-scrollbar-thumb {
    background: #d7e4e4;
    border-radius: 20px;
}


/* =========================================================
   SCHLIESSEN-BUTTON
========================================================= */

.insight-question-modal__close {
    position: absolute;

    top: 18px;
    right: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #f1f6f6;
    color: #666666;

    font-family: inherit;
    font-size: 27px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;

    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease;
}


.insight-question-modal__close:hover {
    background: #17ACA8;
    color: #ffffff;

    transform: rotate(90deg);
}


/* =========================================================
   LABEL OBEN
========================================================= */

.insight-question-modal__dialog > .insight-zpp-label {
    display: block;

    margin: 0 60px 8px 0;

    color: #17ACA8;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* =========================================================
   ÜBERSCHRIFT
========================================================= */

#insight-question-title {
    margin: 0 60px 12px 0;

    color: #444444;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================================
   EINLEITUNG
========================================================= */

.insight-question-intro {
    margin: 0 0 27px;

    color: #686868;

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   EMPFÄNGER + MODUL
========================================================= */

.insight-question-meta {
    display: grid;

    grid-template-columns:
        minmax(0, .8fr)
        minmax(0, 1.2fr);

    gap: 12px;

    margin: 0 0 28px;
}


.insight-question-meta > div {
    min-width: 0;

    padding: 15px 17px;

    border: 1px solid rgba(23, 172, 168, .10);
    border-radius: 11px;

    background: rgba(23, 172, 168, .07);
}


.insight-question-meta span {
    display: block;

    margin-bottom: 5px;

    color: #888888;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}


.insight-question-meta strong {
    display: block;

    overflow-wrap: anywhere;

    color: #444444;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}


/* =========================================================
   FORMULAR
========================================================= */

#insight-question-form {
    width: 100%;
    margin: 0;
}


/* =========================================================
   EINZELNE FORMULARFELDER
========================================================= */

.insight-question-field {
    width: 100%;
    margin: 0 0 19px;
}


.insight-question-field label {
    display: block;

    margin: 0 0 7px;

    color: #444444;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}


.insight-question-field label small {
    margin-left: 4px;

    color: #999999;

    font-size: 12px;
    font-weight: 400;
}


/* =========================================================
   INPUTS + TEXTAREA
========================================================= */

.insight-question-field input,
.insight-question-field textarea {
    display: block;

    width: 100% !important;
    max-width: 100%;

    margin: 0;

    padding: 13px 15px;

    border: 1px solid #dce6e6;
    border-radius: 9px;

    outline: none;

    background: #fbfbfb;
    color: #444444;

    font-family: "New Hero", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;

    box-sizing: border-box;

    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}


/* =========================================================
   TEXTAREA
========================================================= */

.insight-question-field textarea {
    min-height: 150px;

    resize: vertical;
}


/* =========================================================
   FELD-FOKUS
========================================================= */

.insight-question-field input:focus,
.insight-question-field textarea:focus {
    border-color: #17ACA8;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(23, 172, 168, .10);
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.insight-question-field input::placeholder,
.insight-question-field textarea::placeholder {
    color: #aaaaaa;
    opacity: 1;
}


/* =========================================================
   AUTOFILL – CHROME
========================================================= */

.insight-question-field input:-webkit-autofill,
.insight-question-field input:-webkit-autofill:hover,
.insight-question-field input:-webkit-autofill:focus {
    -webkit-text-fill-color: #444444;

    box-shadow:
        0 0 0 1000px #fbfbfb inset;

    transition:
        background-color 9999s ease-in-out 0s;
}


/* =========================================================
   STATUSMELDUNG
========================================================= */

.insight-question-status {
    display: none;

    width: 100%;

    margin: 4px 0 20px;
    padding: 13px 15px;

    border-radius: 9px;

    font-size: 14px;
    line-height: 1.5;

    box-sizing: border-box;
}


.insight-question-status:not(:empty) {
    display: block;
}


/* Erfolg */

.insight-question-status.is-success {
    border: 1px solid rgba(23, 172, 168, .25);

    background: rgba(23, 172, 168, .08);
    color: #39716f;
}


/* Fehler */

.insight-question-status.is-error {
    border: 1px solid rgba(180, 70, 70, .22);

    background: rgba(180, 70, 70, .07);
    color: #8c4141;
}


/* =========================================================
   BUTTONBEREICH UNTEN
========================================================= */

.insight-question-actions {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    width: 100%;

    margin-top: 27px;
    padding-top: 23px;

    border-top: 1px solid #e5eded;
}


/* =========================================================
   ZURÜCK ZUM MODUL
========================================================= */

.insight-question-actions .insight-detail-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 12px 20px;

    border: 1px solid #d8e3e3;
    border-radius: 9px;

    background: #ffffff;
    color: #555555;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        border-color .2s ease,
        color .2s ease,
        background-color .2s ease;
}


.insight-question-actions .insight-detail-back:hover {
    border-color: #17ACA8;

    background: rgba(23, 172, 168, .04);
    color: #17ACA8;
}


/* =========================================================
   FRAGE SENDEN
========================================================= */

.insight-question-actions .insight-detail-select {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 12px 25px;

    border: 2px solid #17ACA8;
    border-radius: 9px;

    background: #17ACA8;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


.insight-question-actions .insight-detail-select:hover {
    border-color: #129995;

    background: #129995;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(23, 172, 168, .22);
}


/* =========================================================
   BUTTON WÄHREND DES SENDENS
========================================================= */

.insight-question-actions .insight-detail-select:disabled {
    opacity: .6;

    cursor: wait;

    transform: none;
    box-shadow: none;
}


/* =========================================================
   VERHINDERT SCROLLEN DER SEITE BEI GEÖFFNETEM MODAL
========================================================= */

body.insight-modal-open {
    overflow: hidden !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 750px) {

    .insight-question-modal {
        padding: 20px;
    }


    .insight-question-modal__dialog {
        max-height: calc(100vh - 40px);

        padding: 36px 28px 28px;

        border-radius: 17px;
    }


    #insight-question-title {
        font-size: 27px;
    }

}


/* =========================================================
   HANDY
========================================================= */

@media (max-width: 600px) {

    .insight-question-modal {
        align-items: flex-start;

        padding: 10px;
    }


    .insight-question-modal__dialog {
        width: 100%;

        max-height: calc(100vh - 20px);

        padding:
            30px
            18px
            22px;

        border-radius: 15px;
    }


    .insight-question-modal__close {
        top: 13px;
        right: 13px;

        width: 38px;
        height: 38px;

        font-size: 24px;
    }


    .insight-question-modal__dialog > .insight-zpp-label {
        margin-right: 45px;
    }


    #insight-question-title {
        margin-right: 45px;

        font-size: 24px;
    }


    .insight-question-intro {
        font-size: 15px;
    }


    .insight-question-meta {
        grid-template-columns: 1fr;
    }


    .insight-question-field input,
    .insight-question-field textarea {
        font-size: 16px;
    }


    .insight-question-actions {
        flex-direction: column-reverse;

        align-items: stretch;
    }


    .insight-question-actions .insight-detail-back,
    .insight-question-actions .insight-detail-select {
        width: 100%;
    }


    .insight-detail-question {
        width: 100%;
    }

}

/* =========================================================
   INSIGHT ZPP – BUCHUNGSANFRAGE MODAL
========================================================= */

.zpp-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.zpp-booking-modal.is-open {
    display: flex;
}

.zpp-booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 35, 35, .58);
    backdrop-filter: blur(3px);
}

.zpp-booking-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(820px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 34px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
    color: #555;
}

.zpp-booking-modal__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #f3f7f7;
    color: #555;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.zpp-booking-modal__close:hover {
    background: rgba(23, 172, 168, .12);
    color: #17ACA8;
}

.zpp-booking-modal h2 {
    margin: 4px 48px 12px 0;
    color: #17ACA8;
    font-size: clamp(27px, 4vw, 38px);
    line-height: 1.15;
}

.zpp-booking-intro {
    margin: 0 0 24px;
    line-height: 1.6;
}

.zpp-booking-selection {
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid #dfe8e8;
    border-radius: 14px;
    background: #f8fbfb;
}

.zpp-booking-selection__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.zpp-booking-selection__head strong {
    color: #444;
    font-size: 18px;
}

.zpp-booking-selection__head span {
    color: #17ACA8;
    font-weight: 800;
}

.zpp-booking-module {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-top: 1px solid #e7eeee;
}

.zpp-booking-module:first-child {
    border-top: 0;
}

.zpp-booking-module strong,
.zpp-booking-module small {
    display: block;
}

.zpp-booking-module strong {
    color: #444;
}

.zpp-booking-module small {
    margin-top: 3px;
    color: #888;
}

.zpp-booking-module > span {
    flex: 0 0 auto;
    color: #17ACA8;
    font-weight: 800;
}

.zpp-booking-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid #dfe8e8;
}

.zpp-booking-price strong {
    color: #17ACA8;
    font-size: 20px;
}

.zpp-booking-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.zpp-booking-field {
    min-width: 0;
}

.zpp-booking-field--full {
    grid-column: 1 / -1;
}

.zpp-booking-field label {
    display: block;
    margin-bottom: 7px;
    color: #444;
    font-weight: 700;
}

.zpp-booking-field input,
.zpp-booking-field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d7e1e1;
    border-radius: 9px;
    background: #fff;
    color: #444;
    font: inherit;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.zpp-booking-field textarea {
    resize: vertical;
    min-height: 120px;
}

.zpp-booking-field input:focus,
.zpp-booking-field textarea:focus {
    border-color: #17ACA8;
    box-shadow: 0 0 0 3px rgba(23, 172, 168, .12);
}

.zpp-booking-consents {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    padding: 18px;
    border-radius: 12px;
    background: #f7fafa;
}

.zpp-booking-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
    line-height: 1.5;
}

.zpp-booking-check input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #17ACA8;
}

.zpp-booking-check a {
    color: #17ACA8;
    font-weight: 700;
}

.zpp-booking-status {
    display: none;
    margin-top: 18px;
    padding: 13px 15px;
    border-radius: 9px;
    line-height: 1.5;
}

.zpp-booking-status.is-success,
.zpp-booking-status.is-error {
    display: block;
}

.zpp-booking-status.is-success {
    background: rgba(23, 172, 168, .10);
    color: #167d79;
}

.zpp-booking-status.is-error {
    background: #fff0f0;
    color: #a43838;
}

.zpp-booking-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 24px;
}

.zpp-booking-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 9px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.zpp-booking-button--secondary {
    border: 1px solid #d8e1e1;
    background: #fff;
    color: #666;
}

.zpp-booking-button--primary {
    border: 1px solid #17ACA8;
    background: #17ACA8;
    color: #fff;
}

.zpp-booking-button--primary:hover {
    background: #159b97;
    border-color: #159b97;
}

.zpp-booking-button:disabled {
    opacity: .55;
    cursor: not-allowed;
}

/* Anfragebutton im Konfigurator als echter Button */
.insight-zpp-request {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.insight-zpp-request:disabled {
    opacity: .45;
    cursor: not-allowed;
}

@media (max-width: 650px) {
    .zpp-booking-modal {
        padding: 12px;
    }

    .zpp-booking-modal__dialog {
        max-height: calc(100vh - 24px);
        padding: 26px 18px;
        border-radius: 15px;
    }

    .zpp-booking-fields {
        grid-template-columns: 1fr;
    }

    .zpp-booking-field--full {
        grid-column: auto;
    }

    .zpp-booking-actions {
        flex-direction: column-reverse;
    }

    .zpp-booking-button {
        width: 100%;
    }
}

/* =====================================================
   BUCHUNGSANFRAGE – MODAL
===================================================== */

.zpp-booking-modal{
    position:fixed;
    inset:0;
    z-index:999999;

    display:none;
    align-items:center;
    justify-content:center;

    padding:30px 20px;
}

.zpp-booking-modal.is-open{
    display:flex;
}


/* =====================================================
   HINTERGRUND
===================================================== */

.zpp-booking-backdrop{
    position:absolute;
    inset:0;

    background:rgba(20,30,35,.62);
    backdrop-filter:blur(3px);
}


/* =====================================================
   DIALOG
===================================================== */

.zpp-booking-dialog{
    position:relative;
    z-index:2;

    width:100%;
    max-width:900px;
    max-height:calc(100vh - 60px);

    overflow-y:auto;

    background:#fff;

    border-radius:18px;

    padding:38px 42px 34px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.22);

    color:#444;
}


/* =====================================================
   SCHLIESSEN
===================================================== */

.zpp-booking-close{
    position:absolute;

    top:18px;
    right:20px;

    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:0;
    border-radius:50%;

    background:#f2f5f5;

    color:#555;

    font-size:25px;
    line-height:1;

    cursor:pointer;

    transition:.2s ease;
}

.zpp-booking-close:hover{
    background:#17ACA8;
    color:#fff;
}


/* =====================================================
   KOPF
===================================================== */

.zpp-booking-header{
    padding-right:45px;
    margin-bottom:26px;
}

.zpp-booking-header .insight-zpp-label{
    display:block;

    margin-bottom:7px;

    color:#17ACA8;

    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.zpp-booking-header h2{
    margin:0 0 10px;

    color:#333;

    font-size:30px;
    line-height:1.2;
}

.zpp-booking-header p{
    margin:0;

    max-width:720px;

    color:#6c6c6c;

    font-size:16px;
    line-height:1.6;
}


/* =====================================================
   AUSWAHL
===================================================== */

.zpp-booking-selection{
    margin-bottom:28px;

    padding:20px 22px;

    background:#f3f8f8;

    border:1px solid #e2eeee;
    border-radius:12px;
}

.zpp-booking-selection h3{
    margin:0 0 15px;

    color:#333;

    font-size:18px;
}


/* einzelne ausgewählte Module */

.zpp-booking-module{
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    padding:12px 0;

    border-bottom:1px solid #dce8e8;
}

.zpp-booking-module:last-child{
    border-bottom:0;
}

.zpp-booking-module strong{
    display:block;

    color:#3f3f3f;

    font-size:15px;
}

.zpp-booking-module small{
    display:block;

    margin-top:3px;

    color:#888;

    font-size:13px;
}

.zpp-booking-module > span,
.zpp-booking-module > strong:last-child{
    flex-shrink:0;

    color:#17ACA8;

    font-weight:700;
}


/* =====================================================
   SUMMEN
===================================================== */

.zpp-booking-totals{
    display:flex;
    flex-wrap:wrap;

    gap:35px;

    margin-top:14px;
    padding-top:14px;

    border-top:1px solid #dce8e8;
}

.zpp-booking-totals div{
    display:flex;
    align-items:baseline;

    gap:7px;
}

.zpp-booking-totals span{
    color:#777;
    font-size:14px;
}

.zpp-booking-totals strong{
    color:#17ACA8;
    font-size:17px;
}


/* =====================================================
   FORMULAR
===================================================== */

.zpp-booking-fields{
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:18px 20px;
}

.zpp-booking-field{
    min-width:0;
}

.zpp-booking-field--full{
    grid-column:1 / -1;
}

.zpp-booking-field label{
    display:block;

    margin-bottom:7px;

    color:#444;

    font-size:14px;
    font-weight:600;
}

.zpp-booking-field input,
.zpp-booking-field textarea{
    display:block;

    width:100%;

    margin:0;

    padding:12px 14px;

    border:1px solid #d7dddd;
    border-radius:8px;

    background:#fff;

    color:#444;

    font-family:inherit;
    font-size:15px;

    outline:none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.zpp-booking-field input{
    height:48px;
}

.zpp-booking-field textarea{
    min-height:110px;

    resize:vertical;
}

.zpp-booking-field input:focus,
.zpp-booking-field textarea:focus{
    border-color:#17ACA8;

    box-shadow:
        0 0 0 3px rgba(23,172,168,.10);
}


/* =====================================================
   DATENSCHUTZ / AGB
===================================================== */

.zpp-booking-consents{
    display:flex;
    flex-direction:column;

    gap:10px;

    margin-top:22px;

    padding:17px 18px;

    background:#fafcfc;

    border-radius:10px;
}

.zpp-booking-checkbox{
    display:flex;

    align-items:flex-start;

    gap:10px;

    color:#666;

    font-size:13px;
    line-height:1.5;

    cursor:pointer;
}

.zpp-booking-checkbox input{
    width:16px;
    height:16px;

    margin:3px 0 0;

    flex:0 0 auto;

    accent-color:#17ACA8;
}

.zpp-booking-checkbox a{
    color:#17ACA8;
    text-decoration:underline;
}


/* =====================================================
   STATUS
===================================================== */

.zpp-booking-status{
    display:none;

    margin-top:18px;

    padding:12px 14px;

    border-radius:8px;

    font-size:14px;
    line-height:1.5;
}

.zpp-booking-status:not(:empty){
    display:block;
}

.zpp-booking-status.is-error{
    background:#fff1f1;
    color:#a32b2b;
}

.zpp-booking-status.is-success{
    background:#edf9f6;
    color:#16766f;
}


/* =====================================================
   BUTTONS
===================================================== */

.zpp-booking-actions{
    display:flex;

    justify-content:space-between;
    align-items:center;

    gap:15px;

    margin-top:25px;
}

.zpp-booking-back,
.zpp-booking-submit{
    min-height:48px;

    padding:12px 20px;

    border-radius:8px;

    font-family:inherit;
    font-size:15px;
    font-weight:600;

    cursor:pointer;

    transition:.2s ease;
}

.zpp-booking-back{
    border:1px solid #d5dada;

    background:#fff;

    color:#555;
}

.zpp-booking-back:hover{
    border-color:#17ACA8;
    color:#17ACA8;
}

.zpp-booking-submit{
    border:1px solid #17ACA8;

    background:#17ACA8;

    color:#fff;
}

.zpp-booking-submit:hover{
    background:#139b97;
    border-color:#139b97;
}

.zpp-booking-submit:disabled{
    opacity:.55;
    cursor:not-allowed;
}


/* =====================================================
   SCROLLBAR
===================================================== */

.zpp-booking-dialog::-webkit-scrollbar{
    width:8px;
}

.zpp-booking-dialog::-webkit-scrollbar-track{
    background:transparent;
}

.zpp-booking-dialog::-webkit-scrollbar-thumb{
    background:#ccd6d6;
    border-radius:999px;
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:700px){

    .zpp-booking-modal{
        padding:12px;
        align-items:flex-start;
    }

    .zpp-booking-dialog{
        max-height:calc(100vh - 24px);

        padding:28px 20px 24px;

        border-radius:14px;
    }

    .zpp-booking-header{
        padding-right:30px;
    }

    .zpp-booking-header h2{
        font-size:24px;
    }

    .zpp-booking-fields{
        grid-template-columns:1fr;
    }

    .zpp-booking-field--full{
        grid-column:auto;
    }

    .zpp-booking-actions{
        flex-direction:column-reverse;
        align-items:stretch;
    }

    .zpp-booking-back,
    .zpp-booking-submit{
        width:100%;
    }

}