.quote-bar {
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --color-info: #17a2b8;
    --color-primary: #d9534f;
    --color-white: #ffffff;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-blue: #025a9a;
    --border-radius: 20px;
    --linear-gradient: linear-gradient(-45deg,#cd1141 50%,var(--color-blue) 0)
}

.quote-bar {
    padding-top: 0.5rem;
}

.quote-bar.shadow {
    box-shadow: none !important; // Poorly scoped !important in client.css - fix later
}

.quote-bar__input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
}

.quote-bar__input-wrapper {
    margin-left: 1ch;
    position: relative;
}

.quote-bar__input-container {
    margin-bottom: 0.5rem;
}

.quote-bar__button--desktop {
    display: none;
}

.quote-bar__button {
    background-image: var(--linear-gradient);
    color: var(--color-white);
    background-size: 200% 200%;
    background-position: 100% 100%;
    transition: .25s;
    background-repeat: no-repeat;
    padding: .5rem 1rem;
    font-size: 1.25rem;
}
.quote-bar__button:hover {
    background-position: 0 0;
    border-color: var(--color-blue);
}
.quote-bar__button--mobile {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.quote-bar__button-icon {
    font-size: 0.9em;
    margin-left: 1ch;
}

.quote-bar__icon {
    position: absolute;
    top: 50%;
    left: 1ch;
    transform: translateY(-50%);
    color: #999;
}

input.quote-bar__input {
    padding-left: calc(1.2rem + 1ch);
    font-size: 0.875rem !important;
    background: var(--color-white)
}

label.quote-bar__label {
    font-size: 0.875rem;
}

.dnd-section.quote-bar__section {
    padding: 0 !important;
}

.dnd-section>.row-fluid.quote-bar__row-fluid, .row-fluid.quote-bar__row-fluid {
    padding: 0;
}

.row-fluid.quote-bar__row-fluid:before {
    content: none;
}

@media screen and (min-width: 560px)  {
    .quote-bar {
        max-width: 33.75rem;
        margin: 0 auto;
    }
    .quote-bar.shadow {
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .25) !important; // Poorly scoped !important in client.css - fix later
        -webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .25) !important; // Poorly scoped !important in client.css - fix later
    }
}

@media screen and (min-width: 768px)  {
    .quote-bar__inputs-container {
        display: flex;
        justify-content: center;
    }
    .quote-bar {
        max-width: calc(100% - 2rem);
    }
}

@media screen and (min-width: 1200px) {
    .quote-bar__button--desktop {
        display: block;
    }
    .quote-bar__button--mobile {
        display: none;
    }
    .quote-bar__content {
        display: flex;
        justify-content: space-between;
        padding-left: 2rem;
    }

    .quote-bar__inputs-container {
        flex-grow: 1;
        justify-content: space-between;
    }

    .quote-bar {
        padding: 0;
        transform: translateY(-50%);
        background: var(--color-white);
        max-width: 70rem;
        margin-bottom: -2.2rem;
    }

    .quote-bar__input-container {
        margin: 0;
        padding: 1.2rem 0;
    }

    .quote-bar__button {
        height: 100%;
        border-radius: 0;
        padding: 0 1rem 0 2.3rem;
        font-size: 1.2rem;
        margin-left: 3ch;
        mask-image: url(../svg/left-curve-2.svg);
        -webkit-mask-image: url(../svg/left-curve-2.svg);
        mask-size: auto 100%;
        mask-repeat: no-repeat;
        -webkit-mask-size: auto 100%;
        -webkit-mask-repeat: no-repeat;
    }

    input.quote-bar__input, label.quote-bar__label {
        font-size: 1.111rem;
    }
}