﻿
/******************/
/*  wizard layout */
/******************/

.clear {
    clear: both;
}

label {
    font-weight: 600;
}



.main {
    background-size: contain;
    width: 100%;
    max-width: 600px;
    min-height: 380px;
    margin: 0 auto;
}

.static-header {
    font-size: 100%;
    font-size: 150%;
}

    .static-header img {
        height: 50px;
    }

    .static-header span {
        color: #73c6d3;
        float: right;
        margin: 13px 10px;
        padding: 7px 12px;
        border: 2px solid #73c6d3;
        border-radius: 6px;
        font-size: 65%;
        font-weight: 600;
    }

.wizard-step {
    padding: 10px 10px;
    text-align: center;
    width: 600px;
    max-width: 100%;
    position: absolute;
    left: -100vw;
    transition: left 0.5s ease-in-out;
    color: #3f6c73;
    font-weight: 600;
}

.active-step {
    left: 0vw;
    animation: slide-from-right 0.5s ease-in-out;
    position: relative;
}

@keyframes slide-from-right {
    0% {
        left: 100vw;
    }

    100% {
        left: 0;
    }
}


.step-header {
    margin: 15px auto;
    max-width: 500px;
}

    .step-header h3 {
        font-weight: 600;
    }

    .step-header p {
        margin-bottom: 22px;
        font-size: 120%;
        opacity: 0.6;
    }


.step-form-header {
    font-size: 130%;
    margin-bottom: 10px;
    font-weight: 600;
    padding: 0 4vw;
}

.step-form {
    background-color: rgba(237, 246, 248, 0.9);
    padding: 30px 10px;
    border-radius: 10px;
}

.ui-menu .ui-menu-item {
    font-size: 150%;
    font-weight: 500;
}


input, button, select, textarea {
    padding: 10px;
    border: 0px;
    border-radius: 5px;
    outline: none;
    border: 3px solid #73c6d3;
    margin: 10px;
    font-size: 140%;
    font-weight: 500;
    text-align: center;
}

.btn {
    padding: 13px;
    background: #3793a2;
    color: #fff;
    outline: none;
    height: 52px;
    font-size: 140%;
    font-weight: 700;
    margin: -9px 10px 0 10px;
}

    .btn:hover {
        background: #2b727e;
        color: #fff;
    }


    .btn.btn-skip {
        background: #ccc;
    }

        .btn.btn-skip:hover {
            background: #aaa;
        }

    .btn.btn-secondary {
        background: #fff;
        border: 3px solid #3793a2;
        padding: 10px;
        color: #3793a2;
    }



.summary {
    font-size: 120%;
}

.summary-item-label {
    font-weight: 600;
}

.summary-item-val {
    font-weight: 400;
}

.note {
    margin: 20px 40px 0;
    font-size: 70%;
    color: inherit;
}

.legal-note {
    /*font-size: 100%;*/
    font-size: 12pt;
    margin: 10px;
    color: #666;
    text-align: justify;
}

    .legal-note a {
        text-decoration: underline !important;
    }

.err-msg {
    color: #be1c1b;
    margin-top: 5px;
    font-size: 100%;
    font-weight: 600;
}

.inp-error {
    border-color: #be1c1b;
}

.layout-img {
    width: 100%;
    position: relative;
    margin: 0 auto;
    max-width: 600px;
    min-height: 380px;
    background-size: cover;
    opacity: 0.6;
}

.ui-autocomplete-loading {
    background: #FFF url('/Content/images/loader.gif') no-repeat 95% 50%;
}

.footer {
    font-size: 80%;
    color: #3f6c73;
    /*position: absolute;*/
    bottom: 0px;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 5px;
}

    .footer a {
        color: #3f6c73;
        text-decoration: underline;
    }


@media (max-width: 600px) {
    .full-screen {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        padding: 0;
        z-index: 2;
    }

        .full-screen .step-form-header {
            margin-bottom: 25px;
        }

        .full-screen .step-form {
            height: 100%;
            border-radius: 0;
            background-color: rgba(237, 246, 248, 1);
            max-width: 600px;
            margin: 0 auto;
        }
}






@media (max-width: 480px) {
    .layout-img {
        min-height: 300px;
    }
}

@media (max-width: 400px) {
    .layout-img {
        min-height: 250px;
    }
}

@media (max-width: 320px) {
    .layout-img {
        min-height: 200px;
    }
}


/******************/
/*  wizard services - start */
/******************/

.services-chb-selector {
    text-align: left;
    max-width: 250px;
    margin: 30px auto;
}


/* Customize the label (the container) */
.service-chb-container {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 37px;
    cursor: pointer;
    font-size: 23px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .service-chb-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border: 1px solid #73c6d3;
    border-radius: 20%;
}

/* On mouse-over, add a grey background color */
.service-chb-container:hover input ~ .checkmark {
    background-color: #f0fdff;
}

/* When the checkbox is checked, add a blue background */
.service-chb-container input:checked ~ .checkmark {
    background-color: #3793a2;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.service-chb-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.service-chb-container .checkmark:after {
    left: 11px;
    top: 3px;
    width: 8px;
    height: 17px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


#step-address input, #step-address button {
    width: 80%;
    margin: 6px;
}



/******************/
/*  wizard moving */
/******************/



@keyframes slide-from-left {
    0% {
        right: 100vw;
    }

    100% {
        right: 0;
    }
}



.label-city {
    font-size: 130%;
    margin-bottom: 10px;
    font-weight: 600;
}

    .label-city .fa {
        font-size: 120%;
        color: #009600;
    }

.ui-menu .ui-menu-item {
    font-size: 150%;
    font-weight: 500;
}



.btn-group .btn-wizard-radio {
    display: block;
    color: #3f6c73;
    padding: 0 20px;
    min-width: 100px;
    margin-right: -2px;
    line-height: 52px;
    width: auto;
}

.btn-wizard-radio {
    display: table;
    width: 100%;
    border: 3px solid #73c6d3;
    border-radius: 40px;
    text-align: center;
    background: #fff;
    font-size: 120%;
    margin: 12px auto;
    max-width: 360px;
    height: 55px;
    padding: 0 10px;
    /*line-height: 52px;*/
}


    .btn-wizard-radio .btn-wizard-radio-text {
        display: table-cell;
        height: 100%;
        vertical-align: middle;
        word-break: break-word;
    }

    .btn-wizard-radio.active {
        background: #3793a2;
        color: #fff;
    }

        .btn-wizard-radio.active:hover {
            background: #3793a2;
            color: #fff;
        }

    .btn-wizard-radio:hover {
        background: #e9fbff;
        color: inherit;
    }

    .btn-wizard-radio input {
        display: none;
    }




#datetimepicker {
    max-width: 380px;
    margin: 0 auto;
}

.bootstrap-datetimepicker-widget table td.day {
    height: 40px;
    width: 14%;
    border: 1px solid #dcdcdc;
    background: #fff;
}

.bootstrap-datetimepicker-widget table td, .bootstrap-datetimepicker-widget table th,
.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover .bootstrap-datetimepicker-widget .disabled {
    border-radius: 0;
}

    .bootstrap-datetimepicker-widget table td.today {
        background-color: #666 !important;
        color: #ffffff;
    }

    .bootstrap-datetimepicker-widget table td.active {
        background-color: #73c6d3 !important;
        color: #ffffff;
    }

    .bootstrap-datetimepicker-widget table td.disabled, .bootstrap-datetimepicker-widget table td.disabled:hover {
        opacity: 0.3;
    }

    .bootstrap-datetimepicker-widget table td.today:before {
        display: none;
    }


.summary {
    font-size: 120%;
}

.summary-item-label {
    font-weight: 600;
}

.summary-item-val {
    font-weight: 400;
}



.svgLoading {
    width: 50%;
}

#step-from input, #step-from button,
#step-location-zip input, #step-location-zip button {
    width: 40%;
}

#step-to input, #step-to button,
#step-destination input, #step-destination button {
    width: 70%;
    margin: 6px;
}

#step-search .step-form-header {
    min-height: 146px;
    vertical-align: middle;
}

    #step-search .step-form-header .fa {
        font-size: 100px;
        display: none;
        margin: 10px;
        color: #48a44b;
    }


.svgLoading {
    opacity: 0.2;
}

#search-progress-text {
    font-size: 140%;
    padding: 10px 0;
    min-height: 4.5em
}

    #search-progress-text b {
        font-size: 130%;
        line-height: 0.5em;
    }


#search-progress-bar {
    width: 100%;
    background-color: #dfe8ea;
    border-radius: 5px;
}

#bar {
    width: 1%;
    height: 15px;
    border-radius: 5px;
    background-color: #96d4de;
}


.step-header .fa {
    font-size: 120%;
    color: green;
}


.zip-helper {
    z-index: 3;
    margin-top: -220px;
    margin-bottom: 12px;
}

    .zip-helper .step-form {
        background-color: rgb(237, 246, 248);
    }

.zip-helper-label-wrapper {
    margin: 0 10%;
}

.zip-helper-label {
    margin-left: -5px;
    margin-bottom: -10px;
    text-align: left;
    cursor: pointer;
}

.zip-helper input {
    width: 65%;
}

.zip-helper-close {
    position: absolute;
    right: 20px;
    top: 25px;
}

.zip-helper-state, .zip-helper-city {
    background-color: white;
    line-height: 40px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    padding: 0 15px;
}

.zip-helper-mobile .step-form {
    overflow: hidden;
    padding: 0;
}

.zip-helper-mobile .step-form-header {
    overflow: hidden;
    padding: 10px 0;
    margin: 4px;
}

.zip-helper-mobile .zip-helper-close {
    top: 15px;
}

.zip-helper-alphabet {
    float: left;
    overflow: scroll;
    height: 90%;
    padding-bottom: 50px;
}

::-webkit-scrollbar {
    width: 2px; /* remove scrollbar space */
    /*background: transparent;  /* optional: just make scrollbar invisible */
}

::-webkit-scrollbar-thumb {
    background: #AAA;
}


.zip-helper-liter {
    line-height: 24px;
    width: 40px;
    background-color: #edf6f8;
    cursor: pointer;
}



#zip-helper-states {
    overflow: scroll;
    height: 90%;
    padding-bottom: 50px;
}

#zip-helper-cities {
    overflow: scroll;
    height: 90%;
    padding-bottom: 50px;
}

.zip-helper.active-step, .zip-helper-mobile.active-step {
    right: 0vw;
    animation: slide-from-left 0.5s ease-in-out;
}


::-webkit-scrollbar {
    width: 2px; /* remove scrollbar space */
    /* background: transparent;  optional: just make scrollbar invisible */
}

::-webkit-scrollbar-thumb {
    background: #AAA
}

@media (max-width: 600px) {

    .btn-wizard-radio {
        line-height: 14px;
        /*padding-top: 17px;*/
    }

    .btn-group .btn-wizard-radio {
        height: 50px;
        line-height: 47px;
    }

    .zip-helper {
        margin-top: 0;
    }
}


/******************/
/*  wizard contact info */
/******************/


#step-email input, #step-email button,
#step-contact-info input, #step-contact-info button {
    width: 80%;
    margin: 6px;
}

#step-name input, #step-name button,
#step-phone input, #step-phone button,
#step-phone-confirm input, #step-phone-confirm button {
    width: 80%;
    margin: 6px;
}


#step-phone-confirm .step-header {
    font-weight: 400;
    margin-top: 0;
}

    #step-phone-confirm .step-header h3 {
        margin-top: 10px;
    }


#step-phone-pin .step-header h5 {
    margin-bottom: 0;
}

#step-phone-pin .step-header h2 {
    margin-top: 0;
}

#step-phone-pin input {
    width: 70px;
    text-align: center;
}

#step-phone-pin .error-message {
    margin: 10px 30px;
}

.phone-pin-back {
    cursor: pointer;
}

#btn-phone-pin-back {
    position: absolute;
    top: 50px;
    font-size: 30px;
    opacity: 0.8;
}


/******************/
/*  wizard services */
/******************/


.services-selector {
    text-align: left;
    display: inline-block;
    margin: 15px auto;
}


.service-name {
    font-size: 150%;
}
/* Customize the label (the container) */
.service-container {
    text-align: center;
    margin-top: -20px;
    cursor: pointer;
}


    /* Hide the browser's default checkbox */
    .service-container input {
        display: none;
    }


.service-icon {
    height: 90px;
    background: #fff;
    border: 3px solid #73c6d3;
    border-radius: 10px;
    margin-top: 10px;
}

.service-note {
    max-width: 350px;
    margin: 20px auto;
    margin-top: 8px;
    margin-bottom: 30px;
    font-size: 90%;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border: 1px solid #73c6d3;
    border-radius: 20%;
}

/* On mouse-over, add a grey background color */
.service-container:hover input ~ .checkmark {
    background-color: #f0fdff;
}

/* When the checkbox is checked, add a blue background */
.service-container input:checked ~ .checkmark {
    background-color: #3793a2;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.service-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.service-container .checkmark:after {
    left: 11px;
    top: 3px;
    width: 8px;
    height: 17px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}



#step-address input, #step-address button {
    width: 80%;
    margin: 6px;
}


/******************/
/*  wizard moving - finish */
/******************/



#step-finish .step-form,
#step-estimation .step-form,
#step-moving-estimation .step-form {
    font-size: 150%;
}

    #step-finish .step-form .fa,
    #step-estimation .step-form .fa,
    #step-moving-estimation .step-form .fa {
        opacity: 0.5;
        padding-right: 5px;
    }

#step-finish .step-footer,
#step-estimation .step-footer,
#step-moving-estimation .step-footer {
    opacity: 0.4;
    margin-top: 10px;
}


#service-quote-template {
    display: none;
}

.service-quotes-container {
    text-align: center;
    margin: 10px auto;
    background: #eff7f9;
    padding: 10px 30px;
    border-radius: 10px;
}


.service-quote {
    text-align: left;
    margin: 10px 0;
}

    .service-quote .service-name {
        font-size: 120%;
        text-align: center;
    }

    .service-quote .service-estimation {
        max-width: 250px;
        margin: 0px auto;
    }

    .service-quote .service-estimation-desc {
        opacity: 0.7;
    }


/******************/
/*  wizard progress-item bar */
/******************/

.progress-header {
    padding-top: 10px;
}

.progress-item {
    width: 33.3%;
    float: left;
    padding: 5px;
    font-size: 70%;
    display: inline-block;
    box-sizing: border-box;
    border: 1px solid rgb(115, 198, 211);
    padding-left: 0;
    background-color: rgb(239, 247, 249);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .progress-item:first-child {
        border-right: 0;
        border-top-left-radius: 11px;
        border-bottom-left-radius: 11px;
    }

    .progress-item:last-child {
        border-left: 0;
        border-top-right-radius: 11px;
        border-bottom-right-radius: 11px;
        background-color: transparent;
    }

    .progress-item .fa {
        opacity: 0.3;
        font-size: 120%;
        padding: 0 3px;
    }

.progress-item-done .fa {
    color: #009600;
    opacity: 1;
}

@media (max-width: 400px) {

    .progress-item {
        height: 4em;
    }
}



/******************/
/*  wizard steps */
/******************/


#step-job-description input,
#step-job-description textarea,
#step-job-description button {
    width: 80%;
    margin: 6px;
}

#step-job-description textarea {
    text-align: left;
}


@media (max-width: 320px) {

    #step-job-description input,
    #step-job-description textarea,
    #step-job-description button,
    #step-email input,
    #step-email button,
    #step-contact-info input,
    #step-contact-info button,
    #step-name input,
    #step-name button,
    #step-phone input,
    #step-phone button,
    #step-phone-confirm input,
    #step-phone-confirm button,
    #step-address input,
    #step-address button {
        width: 95%;
    }
}

/*******************/
/*  new funnels   */
/*****************/

/*.step-form-question {
    font-size: 130%;
    margin-bottom: 10px;
    font-weight: 600;
    padding: 0 4vw;
}*/

tcpa a {
    text-decoration: underline !important;
}

.step-form-question {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
    padding: 0 4vw;
    line-height: 1.42857143;
}

.select-title {
    font-size: 1.8rem;
    margin-bottom: 6px;
    font-weight: 600;
    padding: 0 4vw;
}

.step-form-explanation {
    font-size: 14px;
}

.step-form-inputs {
    margin-bottom: 20px;
}

    .step-form-inputs input {
        width: 80%;
    }

    .step-form-inputs textarea {
        width: 80% !important;
        text-align: left;
    }

.step-form-buttons button {
    width: 80%;
}

    .step-form-buttons button.btn-compact {
        width: 50%;
    }

.step-form-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

    .step-form-image img {
        width: auto;
        height: 100%;
    }

.wizardError-input {
    border: 1px solid darkred !important;
}

#lbl-TCPA, .lbl-TCPA {
    padding-bottom: 20px;
}

.services {
    margin: 10px 0;
    text-align: center;
    font-size: 0;
}

.service-button {
    width: 140px;
    height: 140px;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: 0.1s ease-in;
}

    .service-button:hover {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.52)
    }

    .service-button a,
    .service-button a:hover,
    .service-button a:visited {
        display: block;
        padding: 3px 0;
        color: #636363;
        text-decoration: none;
    }

    .service-button img {
        width: 40px;
        margin-top: 35px;
        margin-bottom: 5px;
    }

    .service-button h3 {
        margin: 0;
        font-size: 14px;
    }


@media (max-width: 992px) {

    .service-button {
        width: 120px;
        height: 120px;
    }

        .service-button img {
            margin-top: 24px;
        }
}

.btn-group .btn-wizard-compact-radio {
    display: inline-block;
    color: #3f6c73;
    padding: 0 20px;
    min-width: 100px;
    margin-right: -2px;
    line-height: 52px;
    width: auto;
}

.btn-wizard-compact-radio {
    display: table;
    width: 100%;
    border: 3px solid #73c6d3;
    border-radius: 40px;
    text-align: center;
    background: #fff;
    font-size: 120%;
    margin: 4px 4px;
    max-width: 360px;
    height: 55px;
    padding: 0 10px;
    /*line-height: 52px;*/
}

    .btn-wizard-compact-radio .btn-wizard-compact-radio-text {
        display: block;
        height: 100%;
        vertical-align: middle;
        word-break: break-word;
    }

    .btn-wizard-compact-radio.active {
        background: #3793a2;
        color: #fff;
    }

        .btn-wizard-compact-radio.active:hover {
            background: #3793a2;
            color: #fff;
        }

    .btn-wizard-compact-radio:hover {
        background: #e9fbff;
        color: inherit;
    }

    .btn-wizard-compact-radio input {
        display: none;
    }

.btn-wizard-radio-small {
    width: 40% !important;
}

.div-btn-go-back {
    position: relative;
}

.step-form-buttons.two-buttons {
    display: grid;
    gap: 20px;
    grid-template-columns: 1px 1fr 1fr 22px;
    margin-top: 9px;
}

    .step-form-buttons.two-buttons button {
        width: 100%;
        margin: 0;
    }

/******************/
/*  ThumbTack sts */
/******************/

.tt-main {
    width: 100% !important;
    max-width: 1100px;
}

.tt-div-canvas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 20px;
    margin: 60px auto;
    padding: 0px 20px;
    max-width: 1110px;
}

.tt-header {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    color: black;
    max-width: 780px;
    margin: auto;
    padding-top: 144px;
}

.tt-subheader {
    font-size: 20px;
    line-height: 1.75rem;
    text-align: center;
    margin-top: 30px;
}

.tt-card {
    background: white;
    box-shadow: rgba(16, 24, 40, 0.08) 0px 8px 12px, rgba(16, 24, 40, 0.03) 0px -4px 6px -2px;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.tt-card-a {
    background: rgb(0, 136, 255);
    border: 1px solid rgb(0, 136, 255);
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: white;
    padding: 15px 0px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.tt-card-d-1 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tt-card-d-1-1 {
    border-radius: 50%;
    width: 72px;
    height: 72px;
    overflow: hidden;
    background: rgb(238, 242, 246);
}

    .tt-card-d-1-1 img {
        width: 100%;
        height: auto;
    }

.tt-card-d-1-2 {
    display: flex;
    flex-direction: column;
    width: calc(100% - 90px);
}

.tt-card-d-1-2-1 {
    font-weight: 600;
    font-size: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    line-height: 30px;
}

.toppro {
    width: 60px;
    margin-bottom: 5px;
}

.tt-card-d-2 {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    color: black;
    display: flex;
    flex-direction: column;
    margin: 10px 0px 0px;
    gap: 24px;
    border-bottom: 1px solid rgb(227, 232, 239);
    padding-bottom: 20px;
}

.tt-card-d-2-d {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: 16px;
}

    .tt-card-d-2-d img {
        width: 20px;
        height: 24px;
        margin-right: 10px;
    }

.tt-card-d-3 {
    font-size: 14px;
    line-height: 1.25rem;
    color: rgb(154, 164, 178);
    display: flex;
    gap: 8px;
    margin: 22px 0px 15px;
}

.tt-card-d-3i {
    position: relative;
    white-space: nowrap;
}

.tt-card-d-3 img {
    margin: 0px 2px 0px 0px;
}

    .tt-card-d-3 img:last-child {
        margin: 0px 0px 0px 0px;
    }

.tt-card-d-3 .d-stars-1 {
    height: 16px;
    filter: grayscale(1) opacity(0.4);
}




.tt-card-d-3 .d-stars-2 {
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    height: 20px;
}

.tt-card-d-4 {
    color: rgb(105, 117, 134);
    font-size: 14px;
    line-height: 1.75rem;
    font-weight: 500;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.bluedb {
    color: #009fd9 !important;
    display: block !important;
}

.tt-center {
    margin-top: 15px;
}

@media (min-width: 769px) {
    .tt-div-canvas {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .tt-div-canvas {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        padding: 0px 0px 40px;
        margin: 30px auto;
    }

    .tt-header {
        font-size: 30px;
        line-height: normal;
        padding-top: 80px;
    }

    .tt-subheader {
        margin-top: 20px;
        font-size: 18px;
        line-height: 28px;
    }

    .tt-card {
        padding: 20px;
    }
}
