/* =========================================================
   HITECH REQUEST A QUOTE
   ========================================================= */

.hitech-quote-hero {
    position: relative;
    min-height: 430px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(8, 18, 32, .96),
            rgba(8, 18, 32, .70)
        );

    color: #fff;
}

.hitech-quote-hero-content {
    max-width: 760px;
    padding: 110px 0 90px;
}

.hitech-quote-eyebrow,
.hitech-quote-section-label {
    display: block;

    margin-bottom: 18px;

    color: #32b57f;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.hitech-quote-hero h1 {
    margin: 0 0 22px;

    font-size: 56px;
    line-height: 1.1;
    font-weight: 600;
}

.hitech-quote-hero p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   MAIN SECTION
   ========================================================= */

.hitech-quote-section {
    padding: 90px 0 110px;

    background: #fff;
}

.hitech-quote-grid {
    display: grid;

    grid-template-columns: 34% 66%;

    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   INTRO
   ========================================================= */

.hitech-quote-intro {
    padding: 25px 60px 25px 0;
}

.hitech-quote-intro h2 {
    margin: 0 0 22px;

    color: #222;

    font-size: 36px;
    line-height: 1.25;
    font-weight: 600;
}

.hitech-quote-intro > p {
    color: #666;

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

.hitech-quote-help {
    margin-top: 45px;

    padding-top: 28px;

    border-top: 1px solid #e5e5e5;
}

.hitech-quote-help-label {
    margin-bottom: 15px;

    color: #888;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.hitech-quote-help a {
    display: block;

    margin-bottom: 9px;

    color: #222;

    text-decoration: none;

    font-size: 15px;
}

.hitech-quote-help a:hover {
    color: #32b57f;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.hitech-quote-form-card {
    padding-left: 45px;
}

.hitech-quote-form {
    padding: 45px;

    border: 1px solid #e5e5e5;

    background: #fff;

    box-shadow: 0 15px 45px rgba(0,0,0,.06);
}

.hitech-quote-form-heading {
    margin-bottom: 25px;
}

.hitech-quote-form-heading span {
    display: block;

    margin-bottom: 7px;

    color: #32b57f;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.hitech-quote-form-heading h2 {
    margin: 0;

    color: #222;

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

.hitech-quote-form-heading-project {
    margin-top: 45px;
}


/* =========================================================
   PRODUCT CONTEXT
   ========================================================= */

.hitech-quote-product {
    margin-bottom: 35px;

    padding: 22px 25px;

    border-left: 4px solid #32b57f;

    background: #f7f7f7;
}

.hitech-quote-product-label {
    display: block;

    margin-bottom: 8px;

    color: #888;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.hitech-quote-product strong {
    display: block;

    color: #222;

    font-size: 17px;
}

.hitech-quote-product small {
    display: block;

    margin-top: 5px;

    color: #777;
}


/* =========================================================
   FIELDS
   ========================================================= */

.hitech-quote-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-bottom: 20px;
}

.hitech-quote-field {
    margin-bottom: 20px;
}

.hitech-quote-field label {
    display: block;

    margin-bottom: 8px;

    color: #333;

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

.hitech-quote-field label span {
    color: #32b57f;
}

.hitech-quote-field input,
.hitech-quote-field select,
.hitech-quote-field textarea {
    width: 100%;

    border: 1px solid #dcdcdc;

    border-radius: 0;

    background: #fff;

    color: #222;

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

    outline: none;

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

.hitech-quote-field input,
.hitech-quote-field select {
    height: 52px;

    padding: 0 15px;
}

.hitech-quote-field textarea {
    min-height: 170px;

    padding: 14px 15px;

    resize: vertical;
}

.hitech-quote-field input:focus,
.hitech-quote-field select:focus,
.hitech-quote-field textarea:focus {
    border-color: #32b57f;

    box-shadow: 0 0 0 3px rgba(201,162,39,.10);
}


/* =========================================================
   BUTTON
   ========================================================= */

.hitech-quote-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    width: 100%;

    margin-top: 10px;

    padding: 17px 25px;

    border: 0;

    background: #32b57f;

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;
}

.hitech-quote-submit:hover {
    background: #222;

    transform: translateY(-2px);
}


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

@media (max-width: 991px) {

    .hitech-quote-grid {
        grid-template-columns: 1fr;
    }

    .hitech-quote-intro {
        padding: 0 0 45px;
    }

    .hitech-quote-form-card {
        padding-left: 0;
    }

}


@media (max-width: 767px) {

    .hitech-quote-hero {
        min-height: 360px;
    }

    .hitech-quote-hero-content {
        padding: 85px 0 70px;
    }

    .hitech-quote-hero h1 {
        font-size: 38px;
    }

    .hitech-quote-hero p {
        font-size: 16px;
    }

    .hitech-quote-section {
        padding: 60px 0 75px;
    }

    .hitech-quote-intro h2 {
        font-size: 30px;
    }

    .hitech-quote-form {
        padding: 25px 20px;
    }

    .hitech-quote-form-row {
        grid-template-columns: 1fr;

        gap: 0;

        margin-bottom: 0;
    }

}


/* =========================================================
   QUOTE LIST
   ========================================================= */

.hitech-quote-list-card {
    margin-bottom: 50px;

    border: 1px solid #e5e5e5;

    background: #fff;

    box-shadow: 0 15px 45px rgba(0,0,0,.06);
}

.hitech-quote-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 30px 35px;

    border-bottom: 1px solid #e5e5e5;
}

.hitech-quote-list-header h2 {
    margin: 0;

    color: #222;

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

.hitech-quote-list-summary {
    display: flex;
    align-items: flex-end;
    flex-direction: column;

    gap: 4px;

    white-space: nowrap;
}

.hitech-quote-list-summary strong {
    color: #222;

    font-size: 16px;
}

.hitech-quote-list-summary span {
    color: #888;

    font-size: 12px;
}

.hitech-quote-items {
    padding: 0 35px;
}

.hitech-quote-item {
    display: grid;

    grid-template-columns: 90px minmax(0, 1fr) 130px 80px;

    align-items: center;

    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid #eeeeee;
}

.hitech-quote-item:last-child {
    border-bottom: 0;
}

.hitech-quote-item-image {
    width: 90px;
    height: 90px;

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

    padding: 8px;

    border: 1px solid #e5e5e5;

    background: #fff;
}

.hitech-quote-item-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.hitech-quote-item-details {
    min-width: 0;
}

.hitech-quote-item-details strong {
    display: block;

    margin-bottom: 9px;

    color: #222;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.4;
}

.hitech-quote-item-meta {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.hitech-quote-item-meta span {
    color: #777;

    font-size: 12px;

    line-height: 1.45;
}

.hitech-quote-item-quantity label {
    display: block;

    margin-bottom: 7px;

    color: #555;

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

.hitech-quote-item-quantity input {
    width: 100%;
    height: 45px;

    padding: 0 10px;

    border: 1px solid #dcdcdc;

    border-radius: 0;

    background: #fff;

    color: #222;

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

    text-align: center;

    outline: none;
}

.hitech-quote-item-quantity input:focus {
    border-color: #32b57f;

    box-shadow: 0 0 0 3px rgba(201,162,39,.10);
}

.hitech-quote-item-remove {
    text-align: right;
}

.hitech-quote-remove-button {
    padding: 0;

    border: 0;

    background: transparent;

    color: #999;

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

    cursor: pointer;

    text-decoration: underline;
}

.hitech-quote-remove-button:hover {
    color: #222;
}

.hitech-quote-list-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 25px 35px;

    border-top: 1px solid #e5e5e5;

    background: #fafafa;
}

.hitech-quote-continue {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border: 1px solid #d8d8d8;

    background: #fff;

    color: #333;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.hitech-quote-continue:hover {
    color: #222;

    border-color: #222;

    text-decoration: none;
}

.hitech-quote-update-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 25px;

    border: 0;

    background: #32b57f;

    color: #fff;

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

    cursor: pointer;
}

.hitech-quote-update-button:hover {
    background: #269968;
}

.hitech-quote-empty {
    max-width: 760px;

    margin: 0 auto;

    padding: 60px 45px;

    border: 1px solid #e5e5e5;

    background: #fff;

    text-align: center;

    box-shadow: 0 15px 45px rgba(0,0,0,.06);
}

.hitech-quote-empty h2 {
    margin: 10px 0 12px;

    color: #222;

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

.hitech-quote-empty p {
    margin: 0 auto 25px;

    max-width: 560px;

    color: #777;

    line-height: 1.7;
}


/* =========================================================
   QUOTE LIST — RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .hitech-quote-item {
        grid-template-columns: 75px minmax(0, 1fr) 110px;

        gap: 18px;
    }

    .hitech-quote-item-image {
        width: 75px;
        height: 75px;
    }

    .hitech-quote-item-remove {
        grid-column: 2 / -1;

        text-align: left;
    }

}


@media (max-width: 767px) {

    .hitech-quote-list-header {
        align-items: flex-start;
        flex-direction: column;

        padding: 25px 20px;
    }

    .hitech-quote-list-summary {
        align-items: flex-start;
    }

    .hitech-quote-items {
        padding: 0 20px;
    }

    .hitech-quote-item {
        grid-template-columns: 70px minmax(0, 1fr);

        gap: 15px;

        padding: 20px 0;
    }

    .hitech-quote-item-image {
        width: 70px;
        height: 70px;
    }

    .hitech-quote-item-quantity {
        grid-column: 2;

        max-width: 130px;
    }

    .hitech-quote-item-remove {
        grid-column: 2;

        text-align: left;
    }

    .hitech-quote-list-actions {
        align-items: stretch;
        flex-direction: column;

        padding: 20px;
    }

    .hitech-quote-list-actions > * {
        width: 100%;

        text-align: center;
    }

}
