@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
.page-header {
    background-color: #244f93;
    height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0px 3px 5px #bababa;

}
.content-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.public-page-background {
    background-color: #FFFFFF;
}
.header-wrapper {
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo {
    width: 280px;
    padding-bottom: 13.5%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.header-links-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

a.header-content {
    color: #FFFFFF;
    text-decoration: none;
    padding-bottom: 1px;

}

a.header-content:hover {
    border-bottom: 1px solid #FFFFFF;
}
.hero-wrapper {
    box-shadow: 0 4px 6px -2px #bababa;
    position: relative;
    width: 100%;
}

span.header-links-separator {
    width: 1px;
    display: flex;
    height: 21px;
    background-color: #FFFFFF;
    margin: 0 8px;
}
.hero-background {
    background-image: url('../../../images/public-page/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-overlay {
    background-color: #FFFFFF;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 2;
}
.hero-container {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 11% 0;
    text-align: center;
    top: 0;
    right: 0;
    width: 60%;
    margin: 0 auto;
    z-index: 4;
    position: relative;
}
#page-wrapper button {
    border: 1px solid #244f93;
    background-color: #244f93;
    color: #FFFFFF;
}

#page-wrapper button:hover {
    border: 1px solid #244f93;
    background-color: #FFFFFF;
    color: #244f93;
}
#page-wrapper .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.section {
    width: 100%;
    margin: 50px 0;
    display: flex;
    flex-direction: column;
}

.section:last-child {
    margin-bottom: 0;
    padding-bottom: 50px;
}

h2.section-title {
    font-size: 30px;
    font-weight: bold;
    text-shadow: none;
    text-align: center;
    margin-bottom: 35px;
    color: #255093;
}

.section-separator {
    width: 91%;
    margin: 0 auto;
    border-bottom: 2px solid #0097C8;
}

.carousel-wrapper {
    width: 100%;
    padding: 0 50px;
    position: relative;
}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}


.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
    color: #255093;
}

.control-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.control-nav span {
    display: block;
    width: 40px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../../../images/public-page/icons/arrow_icon.svg');
    cursor: pointer;
}
.control-nav span.next {
    transform: rotate(180deg);
}

.aboutus-container {
    width: 100%;
    flex: 0 1 100%;
    display: flex;
    flex-grow: initial;
    flex-direction: initial;
    padding: 0 50px;
}

.aboutus-content {
    width: 47%;
    margin: 0 1%;
    display: flex;
    flex-direction: column;
}
.aboutus-content.full-size {
    width: 80%;
    text-align: center;
    margin: 0 auto;
}
.gr-container {
    height: 100%;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 10px;
}

.gr-img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid #cecece;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gr-desc {
    width: 80%;
    margin: 0 auto;
}

.gr-desc p {
    margin: 15px;
    text-align: center;
    font-size: 13px;
    color: #7e7e7e;
}

.gr-rating {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin: 15px 0;
}

span.rating {
    display: block;
    margin: 0 3px;
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.rating.full {
    background-image: url('/images/public-page/icons/icon_fullstar.svg');
}

.rating.half {
    background-image: url('/images/public-page/icons/icon_halfstar.svg');
}

.rating.empty {
    background-image: url('/images/public-page/icons/icon_emptystar.svg');
}
.gr-time {
    display: flex;
    width: 50%;
    margin: 15px auto;
    justify-content: left;
    align-items: center;
}

.gr-logo {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('/images/public-page/icons/google_logo.png');
}
.gr-since {
    margin: 0;
    font-size: 12px;
    color: #636363;
}


.bp-vd-search-box {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

ul#agcrm-vd-search-tabs {
    list-style: none;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

ul#agcrm-vd-search-tabs li {
    width: 34%;
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 17px;
    background-color: #FFFFFF;
    color: #244f93;
    transition: all 0.1s ease;
    border-right: 1px solid #cdcdcd;
    cursor: pointer;
}

ul#agcrm-vd-search-tabs li:hover,
ul#agcrm-vd-search-tabs li.active {
    background-color: #244f93;
    color: #FFFFFF;
    border-right: 1px solid #244f93;
    font-weight: 500;
}

#agcrm-vd-search-form {
    width: 100%;
    padding: 20px 10px;
    border: 1px solid #ebebeb;
    border-top: 2px solid #244f93;
    background-color: #f1f1f1;
    box-shadow: 2px 4px 6px -4px #cccccc;
}

#agcrm-vd-search-form > * {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
}
#agcrm-vd-search-form > div {
    margin: 22px auto;
}

#agcrm-vd-search-form > div + label {
    margin-top: -10px;
}
#agcrm-vd-search-form label {
    font-size: 18px;
    margin-top: 9px;
    margin-bottom: 10px;
    color: #244f93;
    padding-left: 8px;
    font-weight: 500;
}

#agcrm-vd-search-form > .agcrm-vd-search-buttons {
    display: flex;
    flex-grow: 0;
    flex-direction: row;
}
#agcrm-vd-search-form input,
#agcrm-vd-search-form select,
#appointment-information input,
#appointment-information select {
    border: 1px solid #cdcdcd;
    padding: 10px 5px;
    border-radius: 5px;
}
select#timeframe {
    width: 100%;
}
#appointment-information > div,
#vd-matching-parts > div {
    width: 100%;
    max-width: 500px;
    margin: 25px auto 0;
    padding: 20px 30px;
    border: 1px solid #ebebeb;
    background-color: #f1f1f1;
    box-shadow: 2px 4px 6px -4px #cccccc;
}
ul#agcrm-vd-search-tabs li:last-child {
    border-right: none;
}

span.is-required {
    color: #FF0000;
}

/* .vd-chat-bubble {
     display: flex;
     flex-flow: column;
} */

.vd-chat-bubble > label {
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
    margin-top: 15px;
}

#customer-information-form,
#customer-information-form > .insurance-container > .insurance-details {
    margin-top: 20px;
    display: flex;
    flex-flow: column;
}

#customer-information-form input,
 #customer-information-form select {
    margin-bottom: 10px;
}

#appointment-information label {
    color: #244f93;
    padding-left: 8px;
    margin-right: 5px;
}

.filter-question-box {
    padding: 15px;
    text-align: left;
}
.ffb-fullwidth,
.filter-function-buttons {
    text-align: center;
}
.vd-results-set {
    display: flex;
    flex-direction: column;
}

.vd-chat-bubble {
    /* text-align: center; */
    font-size: 17px;
}

.vd-result-tbl {
    display: flex;
    flex-direction: column;
}

.vd-result-header {
    margin-bottom: 10px;
    border-top: 1px solid;
    padding-top: 10px;
}

.vd-meta-video.play-vid-container {
    width: 100%;
}

.vd-photo-title {
    margin-bottom: 5px;
}

.play-vid-container a {
    display: block;
    width: 100%;
    position: relative;
}

.play-vid-container a i.play-vid-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    text-align: center;
    color: #FDFDFD;
    font-size: 42px;
}

.play-vid-container a img {
    width: 100%;
}
p.filter-question-title {
    font-weight: 500;
}
.vd-photos-container {
    border-top: 1px solid #e3e3e3;
    margin-top: 10px;
    padding-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.vd-photo {
    display: flex;
    flex-flow: column;
    width: 46%;
    margin: 2%;
}

img.photo-viewer {
    cursor: pointer;
}

.vd-chat-bubble > div {
    margin-bottom: 10px;
}

.agcrm-vd-search-buttons {
    text-align: center;
}

.agcrm-vd-search-buttons button {
    margin: 1em 0.4rem 0;
}

.appointment-information .insurance-container {
    background-color: #e1e1e1;
    margin-top: 1rem;
    padding: 10px;
}

.appointment-information .insurance-container .heading {
    cursor: pointer;
    display: flex;
    font-size: 18px;
    justify-content: space-between;
    line-height: 1.2;
    margin: 0;
}
.appointment-information .insurance-container .heading.open:after {
    transform: rotate(180deg);
    transform-origin: bottom center;
}
.appointment-information .insurance-container .heading.closed:after {
    transform: rotate(0);
}
.appointment-information .insurance-container .heading:after {
    content: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath d="M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z"/%3E%3C/svg%3E');
    height: 10px;
    width: 10px;
}

#card-payment-form {
    display: flex;
    flex-flow: column;
}

#card-payment-form input {
    margin-bottom: 15px;
}
.contactus-wrapper {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
}

.contactus-wrapper p {
    text-align: center;
    margin-bottom: 30px;
}

.services-content {
    display: flex;
    flex: 1 0 100%;
    justify-content: space-around;
    margin-bottom: 40px;
}

.services-content > div {
    /* width: 50%; */
    display: flex;
    flex-flow: column;
    align-content: space-around;
}

#page-wrapper h3 {
    color: #255093;
}

.map-container {
    display: flex;
    flex-flow: column;
}

div#contact-info {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
    justify-content: space-evenly;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
}
.bp-contact-wrapper {
    display: flex;
    margin-bottom: 5px;
    flex-flow: column;
    flex-grow: 1;
    flex-basis: 26%;
    padding: 10px;
}
.bp-contact {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin: 5px 0;
    white-space: nowrap;
}
.bp-contact-container h3.bp-subtitle {
    text-align: left;
}
span.contact_icon {
    width: 40px;
    height: 40px;
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 15px;
}
span.contact_icon.phone {
    background-image: url('/images/public-page/icons/icon_phone.svg');
}
span.contact_icon.email {
    background-image: url('/images/public-page/icons/icon_mail.svg');
}
span.contact_icon.address {
    background-image: url('/images/public-page/icons/icon_mappin.svg');
}

.business-card {
    padding: 20px;
    width: 50%;
    border-left: 1px solid #ccc;
}

.business-card:first-child {
    border: none;
}

.bp-contact-container .table {
    width: 100%;
    display: flex;
    flex-flow: column;
}

.bp-contact a {
    justify-self: center;
    align-self: center;
    display: grid;
    align-content: center;
}

.contact-map-wrapper {
    flex-wrap: wrap;
}
.bp-contact-container .table .row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.bp-contact-container .table .row span {
    width: 35%;
    text-align: center;
}
.bp-contact-container .table .row span.days {
    width: 65%;
    font-weight: bold;
    text-align: left;
}
.bp-contact-container span.within {
    font-style: italic;
    font-size: small;
    line-height: 1px;
}

h3.bp-subtitle.within {
    margin-bottom: -3px;
}

.bp-contact-container ul {
    padding-left: 20px;
    list-style: none;
}

.bp-contact-container ul li {
    margin-bottom: 6px;
    position: relative;
    width: 50%;
    float: left;
}
.bp-contact-container ul li::before {
    background-image: url('../../../images/public-page/icons/arrow_icon.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    content: '';
    width: 9px;
    height: 9px;
    position: absolute;
    left: -20px;
    top: 5px;
    transform: rotate(180deg);
}
.map-wrapper {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.map-wrapper h3.text-center.bp-subtitle {
    width: 100%;
}
#map {
    flex-grow: 2;
    flex-basis: 50%;
    height: 280px;
    padding: 10px;
}

.public-footer {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    background: #0097C8;
    color: #FFF;
}

.public-footer-content p {
    margin: 0;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}

.public-footer-content p.copyright {
    font-size: 11px;
}

.public-footer ul {
    margin: 1em 0 0;
    padding: 0;
}

.public-footer ul > li {
    display: inline-block;
    list-style-type: none;
    margin-left: 0;
    margin-right: 2em;
}
.public-footer a:link, .public-footer a:visited, .public-footer a:hover {
    color: #FFFFFF;
}

.public-footer a:hover {
    text-decoration: underline!important;
}

@media screen and (max-width: 1000px) {

    .aboutus-content {
        width: 95%;
        margin: 0 auto;

    }

    .map-wrapper {
        width: 100%;
        margin: 0 auto;
        flex-flow: column;
    }

    .business-card {
        width: 66%;
    }
    .bp-contact-container ul li {
        float: none;
        width: initial;
    }

    div#services {
        width: 34%;
    }

    span.contact-data {
        font-size: 11px;
    }

    span.contact_icon {
        margin-right: 5px;
    }

    .bp-contact-wrapper {
        width: 100%;
        flex-flow: row;
    }

    #map {
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 850px) {
    .bp-contact {
        flex-flow: column;
    }

    span.contact_icon {
        margin: 0;
        margin-bottom: 6px;
    }
}

@media screen and (max-width: 700px) {
    div#contact-info {
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
    h3.bp-subtitle.within {
        text-align: center;
    }

    .bp-contact-container span.within {
        display: block;
        line-height: 13px;
        text-align: center;
    }

    .bp-contact-container h3.bp-subtitle {
        text-align: center;
    }

    .business-card {
        width: 90%;
        border: none;
        padding: 0;
    }

    div#services {
        width: 90%;
    }
    .bp-contact-wrapper {
        flex-flow: column;
    }

    span.contact-data {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {

    .header-logo {
        width: 180px;
    }

    .header-wrapper {
        padding: 0;
    }

    .header-links-wrapper {
        flex-direction: column;
        font-size: 12px;
    }

    span.header-links-separator {
        height: 1px;
        width: 100%;
        margin: 0;
    }

    .header-logo {
        width: 180px;
    }

    .header-wrapper {
        padding: 0;
    }

    #page-wrapper button {
        font-size: 13px;
        padding: 10px 10px;
    }

    ul#agcrm-vd-search-tabs li {
        font-size: 14px;
    }

    #agcrm-vd-search-form label {
        font-size: 16px;
    }

    h2.section-title {
        font-size: 27px;
    }

    #page-wrapper {
        font-size: 14px;
    }

    #agcrm-vd-search-form input, 
    #agcrm-vd-search-form select, 
    #appointment-information input, 
    #appointment-information select {
        padding: 5px;
    }
    .public-footer ul > li {
        font-size: 12px;
        display: block;
        text-align: center;
        margin: 0;
    }

    .public-footer ul {
        margin: 5px 0 0;
    }

}

@media screen and ( max-width: 480px) {
    div#services {
        width: 60%;
    }

    .bp-contact-container .table .row span {
        width: 45%;
    }

    .bp-contact-container .table .row span.days {
        width: 55%;
    }
}
