﻿:root {
    --fontfamily-primary: 'Open Sans', Segoe UI, Helvetica Neue, Arial, sans-serif;
    --fontsize-primary: 1.8rem;
    --lineheight-primary: 1.3;
    --fontweight-regular: 400;
    --fontweight-semibold: 600;
    --fontweight-bold: 700;
    --color-brand-primary: #4EDBDE; /* teal */
    --color-brand-primary-dark: #156C6E; /* dark teal */
    --color-brand-secondary: #FFE27C; /* yellow */
    --color-text-light: #999;
    --color-text-medium: #666;
    --color-text-dark: #333;
    --color-light: rgb(233, 238, 241) /*25% of medium */;
    --color-medium: #A6BBC8;
    --color-white: #FFF;
    --color-black: #000;
    --color-navy: #2c4d70;
    --primary: #11998e;
    --secondary: #38ef7d;
    --white: #fff;
    --gray: #9b9b9b;
}

* {
    font-family: 'Ubuntu';
}

/* Bootstrap Overrides */
.btn-primary {
    background-color: var( --color-navy);
    border-color: var(--color-navy);
}

.btn-outline-primary {
    color: var(--color-navy);
    border-color: var(--color-navy);
}

    .btn-outline-primary:hover {
        background-color: var(--color-navy);
        border-color: var(--color-navy);
    }

    .btn-outline-primary.disabled, .btn-outline-primary:disabled {
        color: var(--color-navy);
    }

    .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
    .show > .btn-outline-primary.dropdown-toggle {
        background-color: var(--color-navy);
        border-color: var(--color-navy);
    }

.btn-link {
    color: var(--color-navy);
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff !important;
    background-color: var(--color-navy);
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: var(--color-navy);
    background-color: var(--color-navy);
}

.custom-range::-webkit-slider-thumb {
    background-color: var(--color-navy);
}

.custom-range::-moz-range-thumb {
    background-color: var(--color-navy);
}

.custom-range::-ms-thumb {
    background-color: var(--color-navy);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--color-navy);
}

.page-link {
    color: var(--color-navy);
}

.page-item.active .page-link {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
}

.badge-primary {
    background-color: var(--color-navy);
}

.progress-bar {
    background-color: var(--color-navy);
}

.list-group-item.active {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
}

.bg-primary {
    background-color: var(--color-navy) !important;
    color: #fff;
}

.bg-gray {
    background-color: var(--color-light) !important;
}

.bg-lighter {
    background-color: #f1f5fa !important;
}

.border-primary {
    border-color: var(--color-navy) !important;
}

.text-primary {
    color: var(--color-navy) !important;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--color-navy) !important;
    border-color: var(--color-navy) !important;
}
/*Datatables*/
div .dtsb-searchBuilder div.dtsb-group div.dtsb-criteria select.dtsb-value, div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria input.dtsb-value {
    border-color: var(--color-navy) !important;
}

div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria select.dtsb-value, div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria input.dtsb-value {
    border-color: var(--color-navy);
}

div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria select.dtsb-value, div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria input.dtsb-value {
    border-color: var(--color-navy);
}

div.dataTables_filter input {
    width: 100% !important;
}

div.dataTables_filter label {
    overflow-x: hidden;
}
/***/

input .disabled {
    background-color: #e9ecef;
    opacity: 1;
}

.loadingInner {
    visibility: hidden;
}

a.edit {
    float: right;
}

.clickable:hover {
    cursor: pointer;
}

.clickable.active:hover, .clickable.active:hover a {
    cursor: default;
}

.clickable:hover a {
    text-decoration: underline;
}

.clickable.active:hover a {
    text-decoration: none;
}

/* GLOBAL */
body {
    color: var(--color-text-dark);
    font-family: var(--fontfamily-primary);
}

img, embed, object, video, audio {
    height: auto;
    max-width: 100%;
}

a:not(.btn) {
    text-decoration: underline;
    color: var(--color-brand-primary-dark);
}

    a:not(.btn):hover, a:not(.btn):focus, a:not(.btn):active {
        text-decoration: none;
        color: var(--color-brand-primary-dark);
    }

.flex-buttons .btn::after,
.btn-link::after,
.full-stripe-button::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: var(--fontweight-bold);
    content: "\f061";
    position: relative;
    margin-left: 0;
    margin-right: .7rem;
    opacity: 0;
    transition: margin .2s ease-out;
}

.flex-buttons .btn:hover::after,
.btn-link:hover::after {
    opacity: 1;
    margin-left: .7rem;
    margin-right: 0;
}

.btn-link.arrow::after,
.full-stripe-button::after {
    opacity: 1;
    margin-left: .5rem;
    margin-right: .5rem;
}

.dataTables_wrapper select {
    width: inherit;
}

.dataTables_wrapper input {
    display: inline-block;
}

.btn-link.arrow:hover::after,
.full-stripe-button:hover::after {
    margin-left: 1rem;
    margin-right: 0;
}

.btn {
    border-radius: 0;
    font-weight: var(--fontweight-semibold);
}

.btn-primary {
    color: var(--color-text-dark);
    background-color: var(--color-brand-primary);
    border-color: var(--color-brand-primary);
}

.btn-secondary {
    color: var(--color-text-dark);
    background-color: var(--color-medium);
    border-color: var(--color-medium);
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary:active {
        color: var(--color-text-dark);
        background-color: var(--color-brand-secondary);
        border-color: var(--color-brand-secondary);
    }

.full-stripe-button {
    background: var(--color-medium);
    border-color: var(--color-text-dark);
    color: var(--color-text-dark);
    width: 100%;
    margin: 20px 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: var(--fontweight-semibold);
}

.flex-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .flex-buttons.align-buttons-right {
        justify-content: flex-end;
        width: 100%;
    }

    .flex-buttons .btn {
        margin-right: 10px;
        flex-grow: 1;
    }

    .flex-buttons.align-buttons-right .btn {
        flex-grow: 0;
    }

    .flex-buttons .btn:last-child {
        margin-right: 0;
    }

button.link {
    border: 0;
    background: transparent;
    text-decoration: underline;
    color: var(--color-brand-primary-dark);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-weight: var(--fontweight-semibold);
    line-height: 1.2;
}

h1, .h1 {
    font-size: 2.25rem;
}

h2, .h2 {
    font-size: 1.8rem;
}

h3, .h3 {
    font-size: 1.55rem;
}

h4, .h4 {
    font-size: 1.4rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

/* PRIMARY NAVIGATION */
#header-nav {
    background: var(--color-white);
}

#primaryApplicationNav a {
    text-decoration: none;
    color: var(--color-brand-primary-dark);
    font-weight: var(--fontweight-semibold);
}

#primaryApplicationNav li.active > a {
    color: var(--color-brand-primary-dark);
}
/* logo */
.navbar-brand img {
    max-width: 145px;
}
/* hamburger button and icons */
.navbar-toggler {
    margin-left: auto;
}
/* mobile nav panel items */
.navbar-nav .dropdown-menu {
    border-top: 4px solid var(--color-brand-primary);
    border-radius: 0;
}

.nav-link.message {
    position: relative;
}

.message-alert {
    position: absolute;
    bottom: 7px;
    right: 5px;
    font-size: .6rem;
    color: var(--color-white);
    background: #F14742;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
}

.calendar-alert {
    position: absolute;
    bottom: 7px;
    right: 5px;
    font-size: .6rem;
    color: var(--color-white);
    background: #F14742;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
}

a.nav-link.icon-nav {
    display: inline-block;
}

#iconNav {
    padding-left: 0;
}

    #iconNav ul {
        flex-direction: row;
    }

        #iconNav ul li {
            margin-right: 5px;
        }

#iconNavCal {
    padding-left: 0;
}

    #iconNavCal ul {
        flex-direction: row;
    }

        #iconNavCal ul li {
            margin-right: 5px;
        }

.navbar-brand {
    flex-grow: 1;
}

@media (min-width:768px) {
    .navbar-brand img {
        max-width: 230px;
    }

    .navbar-nav .dropdown-menu {
        padding: 1.75rem 0;
    }

    .navbar-nav .nav-link:not(.icon-nav) {
        padding-right: .75rem;
        padding-left: .75rem;
    }
}

@media (min-width:1024px) {
    .navbar-collapse {
        flex-grow: initial;
    }

    .navbar-nav {
        align-items: center;
    }

    .navbar a {
        color: var(--color-brand-primary-dark);
    }

    a.navbar-brand img {
        max-width: auto;
        max-height: 70px;
    }

    #iconNav {
        order: 3;
    }

    a.nav-link.icon-nav {
        display: block;
    }
}

/* Navbar Menu-Mobile */
@media(max-width:992px) {
    .menu-items {
        background-color: #fff;
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
        padding: 0 1rem 1rem 1rem;
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
    }

        .menu-items .nav-item a {
            padding-right: .75rem !important;
            padding-left: .75rem !important;
        }

        .menu-items .dropdown-menu {
            border: none;
            padding: 0;
            border-left: 4px solid #ffe27c;
            margin-left: 1rem;
            padding-left: .5rem;
        }
}



/* MAIN CONTAINER */

#header-nav.fixed-top {
    position: relative;
    height: 90px;
}

html, body {
    max-height: 100%;
}

.main {
    overflow-y: hidden;
    width: 100%;
}

/* PAGE TITLES */

h1.page-title {
    text-align: center;
    /*padding-top: 40px;*/
    /*border-top: 1px solid var(--color-medium);*/
    margin: 0 0 50px;
}

    h1.page-title img {
        margin-right: 1rem;
    }

@media (min-width:768px) {
    h1.page-title {
        max-width: 85%;
        margin: 0 auto 50px;
    }
}

/* HERO STRIPE */

.hero {
    border: 4px solid var(--color-brand-secondary);
    border-width: 4px 0;
    margin-bottom: 40px;
    align-items: center;
}


    .hero .feature-image:first-child,
    .hero .feature-message:first-child {
        padding-left: 0;
    }

    .hero .feature-message {
        padding: 30px 50px;
    }

        .hero .feature-message p:not(:last-child) {
            margin-bottom: 30px;
        }

        .hero .feature-message .heading {
            font-size: 1.6rem;
            font-weight: var(--fontweight-semibold);
            margin-bottom: 2rem;
        }

span.icon img {
    margin-right: 10px;
}

.hero .feature-image {
    overflow: hidden;
}

/* SIMPLE MOVE NEW */

.primary-title {
    font-size: 2.5rem !important;
}

.secondary-title {
    font-size: 2.25rem !important;
}

.highlight {
    background: linear-gradient(180deg,rgba(255,255,255,0) 50%, #4ededc 50%);
    display: inline-block;
}

.highlight-yellow {
    background: linear-gradient( 180deg,rgba(255,255,255,0) 50%, #ffe27c 50%);
    display: inline-block;
}

.bg-sm-gray {
    background-color: #dde7ec !important;
}

.bg-lighter {
    background-color: #fcfcfc !important;
}


.btn-primary.disabled, .btn-primary:disabled {
    background-color: #ccc;
    border-color: #ccc;
    color: #333;
}

.p-relative {
    position: relative;
}

.tooltip-question {
    border-radius: 20px 20px;
    padding: 5px 12px;
    right: -37px;
    top: 2px;
    font-size: .75rem;
    height: 30px;
    margin-left: 1rem;
}

.border-decoration {
    border-top: 5px solid var(--color-brand-primary);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}


.form__group {
    position: relative;
    padding: 15px 0 0;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid var(--gray);
    outline: 0;
    font-size: 1.2rem;
    color: var(--color-text-dark);
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
    position: relative;
    z-index: 2;
}

    .form__field:focus:placeholder {
        color: var(--color-light);
        visibility: hidden
    }

    .form__field:placeholder-shown ~ .form__label {
        font-size: 1.3rem;
        cursor: text;
        top: 22px;
    }


.form__label,
.estimated-label-text {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: var(--gray);
}

.form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: var(--color-brand-primary-dark);
    font-weight: 700;
}

.form__field:focus {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    border-image-slice: 1;
}
/* reset input */
.form__field
:required, .form__field:invalid {
    box-shadow: none;
}

.image-banner,
.resources-nav-banner {
    overflow: hidden;
    background-color: #f4f0ed;
}

.movers-banner,
.nav-banner {
    background-color: #ffe27c;
}

.feature-message {
    padding: 50px 0;
}

.movers-banner .feature-message p:not(:last-child) {
    margin-bottom: 30px;
}

.movers-banner .feature-message .heading {
    font-size: 1.6rem;
    font-weight: var(--fontweight-semibold);
    margin-bottom: 2rem;
}

.movers-banner,
.image-banner {
    padding-top: 92px;
}

@media (max-width: 992px) {
    .feature-message {
        padding: 0 0 !important;
    }
}

.nav-logo {
    height: 60px;
}

.navigation a,
.hamburger-menu .navbar-collapse a {
    text-decoration: none;
    height: 34px;
}

.navigation a:hover {
    border-bottom: 2px solid #2c4d70;
    padding-bottom: .25rem;
    transition: .1s;
}

.hamburger-menu .navbar-collapse a:hover {
    padding-right: 10px;
    border-right: 2px solid #333;
    transition: .1s;
}

.desktop-nav {
    display: flex;
}

.mobile-nav {
    display: none !important;
}
.mobile-nav a + ul {
    list-style: none;
    padding-right: 23px;
}
.hamburger-menu img {
    height: 30px;
}

.arrow-down {
    transform: rotate(.25turn);
    display: inline-block;
    padding-left: 5px;
}

.nav-dropdown,
.nav-dropdown-mobile {
    display: none;
}

.nav-dropdown:hover {
    display: block;
}

.nav-dropdown {
    position: absolute;
    right: 0;
    width: 180px;
    padding: 10px 25px;
    background-color: #333;
    list-style: none;
    text-align: right;
    margin-top: 1px;
}

    .nav-dropdown li {
        padding-bottom: 5px;
    }

    .nav-dropdown a {
        color: #fff !important;
    }

    .nav-dropdown a {
        border-color: #ffe27c !important;
    }

@media (max-width: 767px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-nav {
        display: flex !important;
    }
}

.hamburger-menu .navbar-collapse {
    position: absolute;
    top: 92px;
    width: 100%;
    text-align: right;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: #ffe27c;
    box-shadow: 0px 9px 15px -14px #333;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
}

.wave svg {
    position: absolute;
    top: 0px;
    z-index: -1;
}

.wave {
    position: relative;
}

.loading-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #90909073;
    z-index: 5555;
}
.loading-spinner {
    width: 100%;
    text-align: center;
    position: fixed;
    z-index: 5556;
    height: 100%;
}

.loading-spinner img {
    position: absolute;
    top: 40%;
    z-index: 5556;
    color: #4ededc;
    animation: auto;
    width: 150px;
    margin-left: -75px;
    animation: spin .8s infinite steps(8);
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card-tab {
    background: var(--color-brand-primary);
    color: var(--color-text-dark);
    font-weight: var(--fontweight-bold);
    padding: 10px 20px;
    height: 40px;
}

.resource-list {
    padding-left: 0;
    list-style: none;
}

    .resource-list li {
        padding: .5rem 0;
    }

.education-item-img {
    width: 150px;
    height: 150px;
}

.results-header {
    text-align: center;
}

.outside-input-currency-symbol {
    position: absolute;
    margin-left: -15px;
    font-size: 1.2rem;
    margin-top: 4px;
}

.currency-symbol {
    position: absolute;
    padding: 2px 5px;
    margin-left: -20px;
    margin-top: 5px;
    font-size: 1.2rem;
    font-weight: normal;
}

.card-title {
    max-width: 400px;
    margin-left: auto;
    margin-top: 1rem;
    margin-right: auto;
}

.estimate-details {
    width: 100%;
    border: 2px solid var(--color-brand-primary-dark);
    text-align: left;
    padding: 0.5rem;
    border-right: #fcfcfc !important;
    max-height: 70px;
}

.estimate-details-number {
    padding: 1em 0;
    display: block;
    font-size: 1.2rem;
    font-weight: normal;
}


.estimate-service-name {
    display: inline-block;
    padding-left:5px;
}

.budget-number {
    padding: .5em 0;
    font-size: 1.5rem;
    font-weight: bold
}


.estimate-selection-details {
    float: right;
    display: inline-block;
    padding: .75rem;
}

.estimate-breakdown .row {
    padding: .25rem 0;
}

.triangle-right {
    width: 0;
    height: 0;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 32px solid var(--color-brand-primary-dark);
    position: relative;
    left: 0px;
    top: 0px;
}

    .triangle-right:after {
        content: '';
        width: 0;
        height: 0;
        border-top: 34px solid transparent;
        border-bottom: 34px solid transparent;
        border-left: 32px solid #fcfcfc;
        position: absolute;
        top: -34px;
        right: 1px;
    }

.whr-award {
    height: 70px;
}

.selected-card .card,
#services-cards .card{
    transition: .3s ease;
    border: 0;
}

#services-cards .card-header {
    height: 40px;
}

.selected-card {
    box-shadow: 0px 10px 10px -10px #252525;
    transition: .3s ease;
    transform: translate(0, -5px);
}

.selected-card-no-banner {
    background-color: #ffe27c;
    box-shadow: 0px 10px 10px -10px #252525;
    transition: .3s ease;
    transform: translate(0, -5px); 
}

.selected-card .card-header,
.selected-card .card-footer,
.selected-card .card-footer a {
    background-color: #ffe27c;
}

#services-cards input[type=checkbox]:focus
{
    outline: 1px solid rgba(0, 0, 0, 0.2);
}

#services-cards input[type=checkbox] {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -9px;
}

#services-cards input[type=checkbox]:checked:disabled {
    background-color: #d6d6d6;
    border-color: #adadad;
}

.vendor-info-img {
    height: 150px;
    padding: 10px;
    margin: 0 auto;
    text-align: center;
}

.vendor-info-img img {
    max-height: 100%;
}

.vendor-specific-graphic {
    text-align: center;
    max-height: 100px;
}

.vendor-specific-graphic img {
    max-height: 100px;
}

.no-vendors-selected,
.no-vendors-available {
    display: none;
}

.img-helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.view-estimate a {
    position: fixed;
    left: 0;
    top: 50%;
    padding: 20px;
    background-color: #cbde43;
    font-weight: bold;
    text-decoration: none;
    background-color: #1a60ab;
    color: #fff;
}

    .view-estimate a:hover {
        padding-right: 15px;
        color: #fff;
        transition: .1s linear;
    }

    .view-estimate a:active,
    .view-estimate a:focus {
        color: #fff;
    }

.view-estimate:hover .view-estimate-chevron {
    padding-left: 5px;
    transition: .1s linear;
}

@media (max-width: 767px) {
    .estimate-details {
        font-size: 1rem;
    }

    .estimate-service-name {
        display: block;
        position: relative;
        top: -50px;
        z-index: 5;
        left: 55px;
    }

    .estimate-selection-details {
        font-size: .75rem;
        float: none !important;
        clear: both;
        display: block !important;
        position: relative;
        padding: 0px 0 0 0 !important;
        top: -45px;
        left: 56px;
    }

    .view-estimate a {
        max-width: 120px;
    }
}

.contemplating-img {
    max-width: 250px;
}

.embed-container {
    --video--width: 1296;
    --video--height: 540;
    position: relative;
    padding-bottom: calc(var(--video--height) / var(--video--width) * 100%); /* 41.66666667% */
    overflow: hidden;
    max-width: 100%;
    background: black;
}

    .embed-container iframe,
    .embed-container object,
    .embed-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.footer {
    background-color: var(--color-text-dark);
    color: #fff;
}

    .footer a {
        color: #ccc;
        padding-bottom: .25rem;
        border-bottom: 0;
        text-decoration: none;
        margin-bottom: 2px;
    }

        .footer a:hover {
            color: #ffe27c;
            border-bottom: 2px solid #ffe27c;
            margin-bottom: 0;
            transition: .1s;
        }

.footer-logo {
    max-width: 300px
}
