.elementor-9666 .elementor-element.elementor-element-d550233{--display:flex;}/* Start custom CSS for html, class: .elementor-element-fcca619 *//* =========================================================
   Q TECH - TERMS & CONDITIONS HERO
   FINAL SIMPLE PROFESSIONAL CSS

   Desktop : Above 1024px
   Tablet  : 768px - 1024px
   Mobile  : Below 768px

   Breadcrumb Removed
   No Image
   No Illustration
   No Header / Footer
========================================================= */


/* =========================================================
   01. BOX SIZING
========================================================= */

.qttc-hero,
.qttc-hero * {
    box-sizing: border-box;
}


/* =========================================================
   02. HERO SECTION
========================================================= */

.qttc-hero {
    position: relative;

    width: 100%;
    margin: 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fbff 100%
        );

    border-bottom: 1px solid #e8eef6;
}


/* =========================================================
   03. CONTAINER
========================================================= */

.qttc-hero__container {
    width: calc(100% - 48px);
    max-width: 1280px;

    margin: 0 auto;
}


/* =========================================================
   04. MAIN CONTENT
========================================================= */

.qttc-hero__content {
    width: 100%;
    max-width: 820px;

    margin: 0 auto;

    padding: 36px 0 48px;

    text-align: center;
}


/* =========================================================
   05. BADGE
========================================================= */

.qttc-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 36px;

    margin-bottom: 16px;

    padding: 7px 12px;

    color: #bd5600;

    background: #fff3e9;

    border: 1px solid #f7dcc5;
    border-radius: 8px;

    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}

.qttc-hero__badge svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   06. TITLE
========================================================= */

.qttc-hero__title {
    margin: 0;

    color: #081d4d;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.8px;
}

.qttc-hero__title span {
    color: #1767df;
}


/* =========================================================
   07. ORANGE ACCENT
========================================================= */

.qttc-hero__accent {
    width: 48px;
    height: 4px;

    margin: 14px auto 0;

    background: #ff6b00;

    border-radius: 999px;
}


/* =========================================================
   08. TAGLINE
========================================================= */

.qttc-hero__tagline {
    margin: 15px auto 0;

    color: #263b64;

    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
}


/* =========================================================
   09. DESCRIPTION
========================================================= */

.qttc-hero__description {
    max-width: 680px;

    margin: 9px auto 0;

    color: #58677c;

    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
}


/* =========================================================
   10. FEATURES
========================================================= */

.qttc-hero__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 8px;

    max-width: 760px;

    margin: 28px auto 0;
}


/* =========================================================
   11. FEATURE ITEM
========================================================= */

.qttc-hero__feature {
    display: flex;
    align-items: center;

    gap: 8px;

    min-width: 0;
    min-height: 58px;

    padding: 8px 10px;

    text-align: left;

    background: #ffffff;

    border: 1px solid #e1e8f1;
    border-radius: 8px;
}


/* =========================================================
   12. FEATURE ICON
========================================================= */

.qttc-hero__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    color: #1767df;

    background: #edf5ff;

    border-radius: 7px;
}

.qttc-hero__feature-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   13. FEATURE TEXT
========================================================= */

.qttc-hero__feature-text {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.qttc-hero__feature-text strong {
    color: #102750;

    font-size: 11.5px;
    line-height: 1.25;
    font-weight: 700;
}

.qttc-hero__feature-text small {
    margin-top: 2px;

    color: #6b788d;

    font-size: 10.5px;
    line-height: 1.2;
    font-weight: 500;
}


/* =========================================================
   14. TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

    .qttc-hero__container {
        width: calc(100% - 32px);
        max-width: 960px;
    }

    .qttc-hero__content {
        max-width: 720px;

        padding: 32px 0 40px;
    }

    .qttc-hero__title {
        font-size: 32px;

        letter-spacing: -0.5px;
    }

    .qttc-hero__tagline {
        font-size: 15.5px;
    }

    .qttc-hero__description {
        max-width: 620px;

        font-size: 14.5px;
    }

    .qttc-hero__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        max-width: 470px;

        margin-top: 24px;
    }

    .qttc-hero__feature {
        min-height: 56px;
    }
}


/* =========================================================
   15. MOBILE
========================================================= */

@media (max-width: 767px) {

    .qttc-hero__container {
        width: calc(100% - 40px);
    }

    .qttc-hero__content {
        max-width: 100%;

        padding: 28px 0 32px;
    }

    .qttc-hero__badge {
        min-height: 34px;

        margin-bottom: 14px;

        padding: 7px 11px;

        font-size: 12px;
    }

    .qttc-hero__badge svg {
        width: 17px;
        height: 17px;
    }

    .qttc-hero__title {
        font-size: 28px;
        line-height: 1.2;

        letter-spacing: -0.35px;
    }

    .qttc-hero__accent {
        width: 44px;
        height: 3px;

        margin-top: 12px;
    }

    .qttc-hero__tagline {
        margin-top: 13px;

        font-size: 15px;
        line-height: 1.45;
    }

    .qttc-hero__description {
        max-width: 540px;

        margin-top: 8px;

        font-size: 14px;
        line-height: 1.6;
    }

    .qttc-hero__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 8px;

        max-width: 520px;

        margin-top: 22px;
    }

    .qttc-hero__feature {
        min-height: 56px;

        padding: 8px;
    }

    .qttc-hero__feature-icon {
        width: 28px;
        height: 28px;

        flex-basis: 28px;
    }

    .qttc-hero__feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .qttc-hero__feature-text strong {
        font-size: 11px;
    }

    .qttc-hero__feature-text small {
        font-size: 10px;
    }
}


/* =========================================================
   16. SMALL MOBILE
========================================================= */

@media (max-width: 414px) {

    .qttc-hero__container {
        width: calc(100% - 32px);
    }

    .qttc-hero__content {
        padding-top: 26px;
    }

    .qttc-hero__title {
        font-size: 27px;
    }

    .qttc-hero__tagline {
        font-size: 14px;
    }

    .qttc-hero__description {
        font-size: 13.5px;
    }

    .qttc-hero__feature {
        gap: 7px;

        min-height: 54px;

        padding: 7px;
    }
}


/* =========================================================
   17. VERY SMALL MOBILE
========================================================= */

@media (max-width: 359px) {

    .qttc-hero__container {
        width: calc(100% - 24px);
    }

    .qttc-hero__title {
        font-size: 25px;
    }

    .qttc-hero__features {
        gap: 7px;
    }

    .qttc-hero__feature {
        min-height: 52px;
    }

    .qttc-hero__feature-text strong {
        font-size: 10.5px;
    }

    .qttc-hero__feature-text small {
        font-size: 9.5px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1f5eb27 *//* =========================================================
   Q TECH - TERMS & CONDITIONS DETAILS
   FINAL COMBINED PROFESSIONAL DOCUMENT STYLE

   Sections 01 to 12
   No Header / No Footer

   Desktop : Above 1024px
   Tablet  : 768px - 1024px
   Mobile  : Below 768px

   SIMPLE / PROFESSIONAL / RESPONSIVE
========================================================= */


/* =========================================================
   01. BOX SIZING
========================================================= */

.qttc-detail,
.qttc-detail *,
.qttc-detail *::before,
.qttc-detail *::after {
    box-sizing: border-box;
}


/* =========================================================
   02. SECTION
========================================================= */

.qttc-detail {
    width: 100%;
    margin: 0;

    padding: 32px 0 48px;

    background: #ffffff;
}


/* =========================================================
   03. CONTAINER
========================================================= */

.qttc-detail__container {
    width: calc(100% - 48px);
    max-width: 1280px;

    margin: 0 auto;
}


/* =========================================================
   04. DOCUMENT
========================================================= */

.qttc-detail__document {
    width: 100%;

    background: #ffffff;

    border: 1px solid #e1e8f1;
    border-radius: 14px;

    box-shadow:
        0 6px 20px rgba(27, 60, 105, 0.045);

    overflow: hidden;
}


/* =========================================================
   05. EACH TERMS ITEM
========================================================= */

.qttc-detail__item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);

    gap: 15px;

    padding: 22px 24px;

    border-bottom: 1px solid #e7edf4;

    scroll-margin-top: 100px;
}

.qttc-detail__item:last-child {
    border-bottom: 0;
}


/* =========================================================
   06. ICON BASE
========================================================= */

.qttc-detail__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 1px solid;
    border-radius: 10px;

    flex: 0 0 auto;
}

.qttc-detail__icon svg {
    display: block;

    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   07. PURPOSE ICON COLORS
========================================================= */

.qttc-detail__icon--intro {
    color: #1767df;
    background: #edf5ff;
    border-color: #d9e8fb;
}

.qttc-detail__icon--service {
    color: #087f8c;
    background: #eaf9fa;
    border-color: #d1eff1;
}

.qttc-detail__icon--booking {
    color: #6957c8;
    background: #f1efff;
    border-color: #e1dcfa;
}

.qttc-detail__icon--charge {
    color: #b77800;
    background: #fff7e5;
    border-color: #f4e4bb;

    font-size: 23px;
    font-weight: 700;
}

.qttc-detail__icon--estimate {
    color: #4c63c7;
    background: #eff2ff;
    border-color: #dce2fa;
}

.qttc-detail__icon--parts {
    color: #087f8c;
    background: #eaf9fa;
    border-color: #d1eff1;
}

.qttc-detail__icon--payment {
    color: #1767df;
    background: #edf5ff;
    border-color: #d9e8fb;
}

.qttc-detail__icon--cancel {
    color: #c35600;
    background: #fff3e9;
    border-color: #f7dcc5;
}

.qttc-detail__icon--warranty {
    color: #178552;
    background: #ebf8f1;
    border-color: #d2eedf;
}

.qttc-detail__icon--exclusion {
    color: #c35600;
    background: #fff3e9;
    border-color: #f7dcc5;
}

.qttc-detail__icon--customer {
    color: #4c63c7;
    background: #eff2ff;
    border-color: #dce2fa;
}

.qttc-detail__icon--other {
    color: #1767df;
    background: #edf5ff;
    border-color: #d9e8fb;
}


/* =========================================================
   08. CONTENT
========================================================= */

.qttc-detail__content {
    min-width: 0;
}


/* =========================================================
   09. HEADING
========================================================= */

.qttc-detail__content h2 {
    margin: 0 0 8px;

    color: #102750;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}


/* =========================================================
   10. PARAGRAPH
========================================================= */

.qttc-detail__content p {
    margin: 0 0 10px;

    max-width: 1000px;

    color: #526178;

    font-size: 13.5px;
    line-height: 1.65;
    font-weight: 400;
}

.qttc-detail__content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   11. LIST
========================================================= */

.qttc-detail__content ul {
    margin: 9px 0 0;

    padding-left: 19px;
}

.qttc-detail__content li {
    margin-bottom: 7px;

    color: #526178;

    font-size: 13.5px;
    line-height: 1.6;
}

.qttc-detail__content li:last-child {
    margin-bottom: 0;
}

.qttc-detail__content li::marker {
    color: #1767df;
}


/* =========================================================
   12. IMPORTANT NOTICE
========================================================= */

.qttc-detail__notice {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;

    gap: 5px;

    width: fit-content;
    max-width: 100%;

    margin: 10px 0;

    padding: 9px 12px;

    background: #fff8ec;

    border: 1px solid #f2dfb8;
    border-radius: 8px;

    color: #4c5360;

    font-size: 13px;
    line-height: 1.45;
}

.qttc-detail__notice strong {
    color: #8a5d00;
    font-weight: 700;
}

.qttc-detail__notice span {
    color: #4d5a6d;
}


/* =========================================================
   13. BLUE WARRANTY NOTICE
========================================================= */

.qttc-detail__notice--blue {
    background: #f1f7ff;
    border-color: #d9e8fb;
}

.qttc-detail__notice--blue strong {
    color: #155dbf;
}

.qttc-detail__notice--blue span {
    color: #465a75;
}


/* =========================================================
   14. IMPORTANT ITEM
========================================================= */

.qttc-detail__item--important {
    background:
        linear-gradient(
            90deg,
            #fffdf8 0%,
            #ffffff 42%
        );
}


/* =========================================================
   15. CONTACT
   Kept ready if used later
========================================================= */

.qttc-detail__contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 8px 18px;

    margin-top: 13px;
    padding-top: 13px;

    border-top: 1px solid #e7edf4;

    color: #526178;

    font-size: 13px;
    line-height: 1.5;
}

.qttc-detail__contact strong {
    width: 100%;

    color: #102750;

    font-size: 13.5px;
    font-weight: 700;
}

.qttc-detail__contact span {
    display: inline-flex;
    align-items: center;

    gap: 4px;
}

.qttc-detail__contact a {
    color: #1767df;

    font-weight: 600;
    text-decoration: none;
}

.qttc-detail__contact a:hover {
    text-decoration: underline;
}

.qttc-detail__contact a:focus-visible {
    outline: 2px solid #1767df;
    outline-offset: 2px;
    border-radius: 3px;
}


/* =========================================================
   16. TABLET
   768px - 1024px
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

    .qttc-detail {
        padding: 28px 0 40px;
    }

    .qttc-detail__container {
        width: calc(100% - 32px);
        max-width: 960px;
    }

    .qttc-detail__item {
        grid-template-columns: 40px minmax(0, 1fr);

        gap: 13px;

        padding: 20px;
    }

    .qttc-detail__icon {
        width: 40px;
        height: 40px;
    }

    .qttc-detail__icon svg {
        width: 22px;
        height: 22px;
    }

    .qttc-detail__icon--charge {
        font-size: 21px;
    }

    .qttc-detail__content h2 {
        font-size: 15px;
    }

    .qttc-detail__content p,
    .qttc-detail__content li {
        font-size: 13px;
    }

}


/* =========================================================
   17. MOBILE
   Below 768px
========================================================= */

@media (max-width: 767px) {

    .qttc-detail {
        padding: 24px 0 32px;
    }

    .qttc-detail__container {
        width: calc(100% - 40px);
    }

    .qttc-detail__document {
        border-radius: 12px;
    }

    .qttc-detail__item {
        grid-template-columns: 38px minmax(0, 1fr);

        gap: 11px;

        padding: 17px 16px;

        scroll-margin-top: 84px;
    }

    .qttc-detail__icon {
        width: 38px;
        height: 38px;

        border-radius: 9px;
    }

    .qttc-detail__icon svg {
        width: 21px;
        height: 21px;
    }

    .qttc-detail__icon--charge {
        font-size: 20px;
    }

    .qttc-detail__content h2 {
        margin-bottom: 7px;

        font-size: 15px;
    }

    .qttc-detail__content p,
    .qttc-detail__content li {
        font-size: 13px;
        line-height: 1.58;
    }

    .qttc-detail__content ul {
        padding-left: 17px;
    }

    .qttc-detail__notice {
        width: 100%;

        padding: 8px 10px;

        font-size: 12.5px;
    }

    .qttc-detail__contact {
        flex-direction: column;
        align-items: flex-start;

        gap: 6px;

        font-size: 12.5px;
    }

    .qttc-detail__contact strong {
        font-size: 13px;
    }

}


/* =========================================================
   18. SMALL MOBILE
   414px and below
========================================================= */

@media (max-width: 414px) {

    .qttc-detail__container {
        width: calc(100% - 32px);
    }

    .qttc-detail__item {
        grid-template-columns: 36px minmax(0, 1fr);

        gap: 10px;

        padding: 16px 14px;
    }

    .qttc-detail__icon {
        width: 36px;
        height: 36px;
    }

    .qttc-detail__icon svg {
        width: 20px;
        height: 20px;
    }

    .qttc-detail__content h2 {
        font-size: 14px;
    }

    .qttc-detail__content p,
    .qttc-detail__content li {
        font-size: 12.5px;
    }

    .qttc-detail__contact {
        font-size: 12px;
    }

    .qttc-detail__contact strong {
        font-size: 12.5px;
    }

}


/* =========================================================
   19. VERY SMALL MOBILE
   359px and below
========================================================= */

@media (max-width: 359px) {

    .qttc-detail__container {
        width: calc(100% - 24px);
    }

    .qttc-detail__item {
        grid-template-columns: 34px minmax(0, 1fr);

        gap: 9px;

        padding: 14px 12px;
    }

    .qttc-detail__icon {
        width: 34px;
        height: 34px;
    }

    .qttc-detail__icon svg {
        width: 19px;
        height: 19px;
    }

    .qttc-detail__content h2 {
        font-size: 13.5px;
    }

    .qttc-detail__content p,
    .qttc-detail__content li {
        font-size: 12px;
    }

    .qttc-detail__notice {
        font-size: 12px;
    }

}


/* =========================================================
   20. REDUCED MOTION / ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .qttc-detail__contact a {
        scroll-behavior: auto;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-17c667e *//* =========================================================
   Q TECH - TERMS & CONDITIONS SUPPORT CTA
   FINAL RESPONSIVE CSS

   Simple
   Professional
   Compact
   No Image
========================================================= */


/* =========================================================
   01. BOX SIZING
========================================================= */

.qttc-help,
.qttc-help * {
    box-sizing: border-box;
}


/* =========================================================
   02. SECTION
========================================================= */

.qttc-help {
    width: 100%;
    margin: 0;

    padding: 0 0 48px;

    background: #ffffff;
}


/* =========================================================
   03. CONTAINER
========================================================= */

.qttc-help__container {
    width: calc(100% - 48px);
    max-width: 1280px;

    margin: 0 auto;
}


/* =========================================================
   04. CARD
========================================================= */

.qttc-help__card {
    display: grid;

    grid-template-columns:
        54px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 18px;

    width: 100%;

    padding: 20px 22px;

    background: #f4f8ff;

    border: 1px solid #dce8f7;
    border-radius: 12px;
}


/* =========================================================
   05. ICON
========================================================= */

.qttc-help__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    color: #1767df;

    background: #ffffff;

    border: 1px solid #d9e7f8;
    border-radius: 10px;
}

.qttc-help__icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   06. CONTENT
========================================================= */

.qttc-help__content {
    min-width: 0;
}

.qttc-help__content h2 {
    margin: 0;

    color: #102750;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.qttc-help__content p {
    max-width: 690px;

    margin: 6px 0 0;

    color: #536178;

    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 400;
}


/* =========================================================
   07. ACTIONS
========================================================= */

.qttc-help__actions {
    display: flex;
    align-items: center;

    gap: 10px;

    flex: 0 0 auto;
}


/* =========================================================
   08. BUTTON
========================================================= */

.qttc-help__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 44px;

    padding: 0 16px;

    border: 1px solid transparent;
    border-radius: 8px;

    font-size: 13.5px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.qttc-help__button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   09. PRIMARY BUTTON
========================================================= */

.qttc-help__button--primary {
    color: #ffffff;

    background: #ff6b00;
    border-color: #ff6b00;
}

.qttc-help__button--primary:hover {
    background: #e95f00;
    border-color: #e95f00;
}


/* =========================================================
   10. SECONDARY BUTTON
========================================================= */

.qttc-help__button--secondary {
    color: #1767df;

    background: #ffffff;
    border-color: #cfdced;
}

.qttc-help__button--secondary:hover {
    color: #1059c4;

    background: #f8fbff;
    border-color: #b9cee8;
}


/* =========================================================
   11. FOCUS
========================================================= */

.qttc-help__button:focus-visible {
    outline: 3px solid rgba(23, 103, 223, 0.2);
    outline-offset: 3px;
}


/* =========================================================
   12. TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

    .qttc-help {
        padding-bottom: 40px;
    }

    .qttc-help__container {
        width: calc(100% - 32px);
        max-width: 960px;
    }

    .qttc-help__card {
        grid-template-columns:
            50px
            minmax(0, 1fr);

        gap: 14px;

        padding: 18px 20px;
    }

    .qttc-help__icon {
        width: 50px;
        height: 50px;
    }

    .qttc-help__content h2 {
        font-size: 18px;
    }

    .qttc-help__content p {
        font-size: 13px;
    }

    .qttc-help__actions {
        grid-column: 2;

        justify-content: flex-start;

        margin-top: 2px;
    }

    .qttc-help__button {
        min-height: 42px;

        font-size: 13px;
    }
}


/* =========================================================
   13. MOBILE
========================================================= */

@media (max-width: 767px) {

    .qttc-help {
        padding-bottom: 32px;
    }

    .qttc-help__container {
        width: calc(100% - 40px);
    }

    .qttc-help__card {
        grid-template-columns: 1fr;

        gap: 12px;

        padding: 18px 16px;

        text-align: center;
    }

    .qttc-help__icon {
        width: 48px;
        height: 48px;

        margin: 0 auto;
    }

    .qttc-help__icon svg {
        width: 25px;
        height: 25px;
    }

    .qttc-help__content h2 {
        font-size: 17px;
    }

    .qttc-help__content p {
        max-width: 520px;

        margin: 6px auto 0;

        font-size: 13px;
        line-height: 1.55;
    }

    .qttc-help__actions {
        width: 100%;

        justify-content: center;

        gap: 8px;

        margin-top: 2px;
    }

    .qttc-help__button {
        flex: 1 1 0;

        max-width: 190px;

        min-height: 44px;

        padding: 0 12px;

        font-size: 12.5px;
    }

    .qttc-help__button svg {
        width: 17px;
        height: 17px;
    }
}


/* =========================================================
   14. SMALL MOBILE
========================================================= */

@media (max-width: 414px) {

    .qttc-help__container {
        width: calc(100% - 32px);
    }

    .qttc-help__card {
        padding: 17px 14px;
    }

    .qttc-help__actions {
        align-items: stretch;
    }

    .qttc-help__button {
        min-width: 0;

        padding: 0 9px;

        font-size: 12px;
    }
}


/* =========================================================
   15. VERY SMALL MOBILE
========================================================= */

@media (max-width: 359px) {

    .qttc-help__container {
        width: calc(100% - 24px);
    }

    .qttc-help__actions {
        flex-direction: column;
    }

    .qttc-help__button {
        width: 100%;
        max-width: 100%;
    }
}


/* =========================================================
   16. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .qttc-help__button {
        transition: none;
    }
}/* End custom CSS */