﻿/* -------------------------------------------

	Name: 		Cosatto Car Seat Fit Finder
	Date:		2017/06/06
	Author:		http://argoventuresdigital.com
---------------------------------------------  */


/*--------- Fonts --------- */

@font-face {
    font-family: "Museo Slab 300";
    src: url('../../Fonts/MuseoSlab300.otf');
}

@font-face {
    font-family: "Museo Slab 700";
    src: url('../../Fonts/MuseoSlab700.otf');
}

@font-face {
    font-family: "Museo Slab 900";
    src: url('../../Fonts/MuseoSlab900.otf');
}

@font-face {
    font-family: "Brandon Grotesque Bold";
    src: url('../../Fonts/BrandonGrotesqueBold.otf');
}

@font-face {
    font-family: "Brandon Grotesque Medium";
    src: url('../../Fonts/BrandonGrotesqueMedium.otf');
}

@font-face {
    font-family: "Minion Pro";
    src: url('../../Fonts/MinionProRegular.otf');
}

@font-face {
    font-family: "Sahara Bodoni";
    src: url('../../Fonts/BA-Graphics.ttf');
}


/*--------- Generic CSS --------- */

* {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
    margin: 0;
}

p {
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
        text-decoration: none;
        cursor: pointer;
    }

.col-md-6 {
    padding-left: 5px;
    padding-right: 5px;
}

.car-finder-wrapper,
.car-fitting-list-wrapper {
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    font-family: "Museo Slab 300", serif;
    font-size: 16px;
    color: #3c515c;
    line-height: 1.428571429;
}

    .car-finder-wrapper .row,
    .car-fitting-list-wrapper .row {
        max-width: 85rem;
    }

    .car-finder-wrapper .columns {
        padding-left: 5px;
        padding-right: 5px;
    }

    .car-finder-wrapper h1,
    .car-fitting-list-wrapper h1 {
        font-size: 26px;
        font-family: "Sahara Bodoni", serif;
        margin-bottom: 0;
        color: inherit;
        text-transform: none;
    }

    .car-finder-wrapper h2,
    .car-fitting-list-wrapper h2 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 0;
        margin-top: 20px;
        text-transform: none;
        font-family: "Museo Slab 900", serif;
        color: inherit;
    }

.section-title {
    background-color: #06b2b1;
}

    .section-title h2 {
        color: #fffefd;
        padding: 11px 28px;
    }

        .section-title h2 span {
            padding: 0 10px 0 0;
        }

.disclaimer p {
    color: rgb(179, 179, 179);
    font-family: "Brandon Grotesque Medium", serif;
    font-size: 21px;
    padding: 10px 0;
    line-height: 1.428571429 !important;
}

#no-fit-message {
    display: none;
}

/*--------- section car --------- */
.btn-select {
    display: block;
    min-height: 59px;
    position: relative;
    padding: 0;
    border-radius: 0;
    border: 1px solid #d9d9d9;
    text-align: center;
}

.section-car a {
    color: #3c515c;
}

    .section-car a:hover {
        color: #3c515c;
    }

.btn:active,
.btn.active {
    box-shadow: none;
}

.btn-select .btn-select-value {
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 24px;
    line-height: 59px;
    font-family: "Museo Slab 900", serif;
    font-weight: bold;
}

.btn-select .btn-select-arrow-wrapper {
    float: right;
    width: 59px;
    background-color: #06b2b1;
}

.btn-select .btn-select-arrow {
    font-family: "Brandon Grotesque Medium", serif;
    font-weight: bold;
    font-size: 42px;
    color: #fff;
}

.btn-select ul {
    display: none;
    background-color: white;
    clear: both;
    padding: 0;
    margin: 0;
    border-top: none !important;
    position: relative;
}

    .btn-select ul li {
        padding: 3px 6px;
        text-align: center;
        margin-right: 0;
        font-size: 18px;
        font-family: "Museo Slab 700", serif;
    }

.disabled {
    background-color: #e5eaed;
    color: #8ea0aa;
    pointer-events: none;
    cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*--------- section car - checkbox customizations --------- */

.section-car .checkbox {
    margin-top: 0;
    display: block;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #d9d9d9;
    padding: 10px 59px 10px 0;
}

.checkbox {
    padding-left: 20px;
}

.section-car input[type="checkbox"] {
    margin: 0;
}

.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 5px;
    font-size: 16px;
}

    .checkbox label::before {
        content: "";
        display: inline-block;
        position: absolute;
        width: 26px;
        height: 26px;
        right: 0;
        margin-right: -30px;
        border: 1px solid #06b2b1;
        border-radius: 3px;
        background-color: #fff;
        -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
        -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
        transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    }

    .checkbox label::after {
        display: inline-block;
        position: absolute;
        width: 16px;
        height: 16px;
        right: 0;
        top: 0;
        margin-right: -20px;
        padding-left: 4px;
        padding-top: 1px;
        font-size: 18px;
        color: #3b515b;
    }

.checkbox input[type="checkbox"] {
    opacity: 0;
}

    .checkbox input[type="checkbox"]:checked + label::after {
        font-family: 'FontAwesome';
        content: "\f111";
    }

.checkbox.checkbox-inline {
    margin-top: 0;
}

/*--------- section car - version2 --------- */
.version2 .checkbox label {
    padding: 10px 5px 0 0;
}

    .version2 .checkbox label::after {
        display: inline-block;
        position: absolute;
        width: 16px;
        height: 16px;
        right: 0;
        top: 10px;
        margin-right: -20px;
        padding-left: 4px;
        padding-top: 1px;
        font-size: 18px;
        color: #3b515b;
    }

/*--------- section car - search customizations --------- */

/*--------- section car - search customizations --------- */

.section-car .search-container {
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    text-align: left;
}

.search-container input.search-input {
    height: 50px;
    width: 100%;
    background: #fff;
    font-size: 18px;
    border: 2px solid #06b2b1;
    padding-left: 55px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

    .search-container input.search-input:focus {
        outline-style: none;
    }

.search-container .icon {
    position: absolute;
    margin-left: 17px;
    z-index: 1;
    font-size: 30px;
    color: #a79f9a;
}


/*--------- section child --------- */

.section-child .child-list p {
    margin-bottom: 0;
}

.section-child .child-list li {
    text-align: center;
    border: 1px solid #d9d9d9;
    min-height: 225px;
    padding: 10px;
    cursor: pointer;
}

.no-touch .section-child .child-list li:hover {
    outline: 4px solid #06b2b1;
    outline-offset: -4px;
    cursor: pointer;
}

.section-child .child-list img {
    height: 95px;
}

.section-child .child-list h2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

/*--------- section seat info --------- */

.universal-car-disclaimer,
.ajax-loader {
    display: none;
}

.section-seat-info,
.section-car-info {
    display: none;
}

.section-seat-carousel .section-content {
    display: flex;
    flex-direction: column;
}

.section-seat-carousel .owl-carousel .item {
    display: flex;
    flex-direction: column;
    margin: 0;
    border-right: 1px solid #d9d9d9;
    text-align: center;
    cursor: pointer;
    padding-bottom: 20px;
    height: 340px;
}

.no-touch .section-seat-carousel .owl-carousel .owl-item:hover {
    outline: 4px solid #06b2b1;
    outline-offset: -4px;
}

.section-seat-carousel .owl-carousel .owl-stage-outer {
    padding-bottom: 25px;
}

.section-seat-carousel .owl-carousel .owl-item img {
    width: 80%;
    margin: auto 10%;
    height: auto;
}

.section-seat-carousel .owl-carousel .owl-item:not(.top-choice) .img-green {
    display: none;
}

.no-touch .section-seat-carousel .owl-carousel .owl-item:not(.top-choice):hover .img-gray,
.section-seat-carousel .owl-carousel .owl-item:not(.top-choice).item-selected .img-gray {
    display: none;
}

.no-touch .section-seat-carousel .owl-carousel .owl-item:not(.top-choice):hover .img-green,
.section-seat-carousel .owl-carousel .owl-item:not(.top-choice).item-selected .img-green {
    display: block;
}

.section-seat-carousel .owl-carousel .owl-item .top-choice .img-green {
    display: block;
}

.section-seat-carousel .owl-carousel .owl-item .top-choice .img-gray {
    display: none;
}

.section-seat-carousel .owl-carousel .top-choice {
    outline: 4px solid #06b2b1;
    outline-offset: -4px;
}

    .section-seat-carousel .owl-carousel .top-choice:after,
    .no-touch .section-seat-carousel .owl-carousel .top-choice:hover:after {
        font-family: "Brandon Grotesque Medium", serif;
        content: 'Top choice';
        position: absolute;
        bottom: -27px;
        font-size: 20px;
        padding: 2px 0;
        color: #fff;
        background-color: #06b2b1;
        width: 100%;
        text-transform: uppercase;
    }

.section-seat-carousel .owl-carousel .item h1 {
    flex: 1 0 auto;
    font-family: "Sahara Bodoni", serif;
    color: rgb(60, 81, 92);
    font-size: 26px;
    margin-top: 0;
    text-transform: none;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}

.section-child .child-list li.item-selected,
.section-seat-carousel .owl-item.item-selected {
    outline: 4px solid #06b2b1;
    outline-offset: -4px;
}

.section-seat-info {
    padding-left: 0px;
    padding-right: 10px;
}

.section-car-info {
    padding-left: 10px;
    padding-right: 0px;
}

.section-seat-info .section-content {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 32px;
}

    .section-seat-info .section-content img {
        width: 100%;
    }

    .section-seat-info .section-content .seat-info h2 {
        margin: 0 0 13px 0;
    }

.section-seat-info .redirect .btn {
    font-family: "Brandon Grotesque Medium", serif;
    font-size: 24px;
    display: block;
    text-transform: uppercase;
    color: #fff;
    background-color: #3c515c;
    border-radius: 0;
    padding: 6px 12px;
    text-align: center;
}

.section-seat-carousel .owl-carousel .owl-controls {
    margin-top: 0;
}

.section-seat-carousel .owl-carousel .owl-nav .owl-prev,
.section-seat-carousel .owl-carousel .owl-nav .owl-next {
    font-family: "Brandon Grotesque Bold", serif;
    font-weight: bold;
    font-size: 42px !important;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 59px;
    height: 66px;
    margin: auto 0 !important;
    text-align: center;
    color: white !important;
    border-radius: 0 !important;
    background-color: #00b5b2 !important;
}

.section-seat-carousel .owl-carousel .owl-nav {
    font-family: "Brandon Grotesque Bold", serif;
    font-weight: bold;
}

    .section-seat-carousel .owl-carousel.owl-nav .owl-prev {
        left: 15px;
    }

    .section-seat-carousel .owl-carousel .owl-nav .owl-next {
        right: 0;
    }

    .section-seat-carousel .owl-carousel .owl-nav .owl-prev {
        left: 0;
    }

    .section-seat-carousel .owl-carousel .owl-nav .owl-next {
        right: 0;
    }

.section-seat-info .selected-img-wrapper {
    width: 40%;
}


/*--------- section disclaimer --------- */

.section-disclaimer .divider {
    border: 0;
    background: #c7c8ca;
    height: 1px;
    margin: 23px 0;
}


/*--------- section car info --------- */

.modal-backdrop {
    background-color: #fff;
    opacity: 0.8;
}

.modal-dialog {
    margin-top: 30px;
}

#warningModal {
    display: none;
}

    #warningModal.inline_block {
        display: inline;
        position: absolute;
        opacity: 1;
        background-color: white;
        z-index: 1;
    }

    #warningModal .close {
        width: 3.6rem;
        height: 3.6rem;
        font-size: 3.2rem;
        line-height: 0;
        opacity: 1;
        vertical-align: middle;
        color: #a1a1a1;
    }

.modal-title {
    display: inline-block;
}

.modal-header {
    border-bottom: 0;
    padding: 22px 22px 0 22px;
}

.modal-content {
    box-shadow: none;
    padding: 20px;
    background-color: #fffffd;
    border-radius: 6px;
    border: 2px solid rgb(6, 178, 177);
}

    .modal-content .warning-list {
        font-family: "Museo Slab 300";
        padding: 0 0 20px 20px;
    }

    .modal-content .green {
        position: relative;
    }

        .modal-content .green:before {
            display: block;
            content: ' ';
            background-image: url(../img/green.svg);
            background-size: 55px 55px !important;
            height: 55px !important;
            width: 55px !important;
        }

        .modal-content .green:after {
            right: 22px !important;
        }

.warning-icon-explanation-text {
    padding-left: 30px;
    font-style: italic;
    font-size: 14px;
}

.collapse {
    display: none;
}

.section-car-info.columns {
    position: static;
    overflow: hidden;
}

.section-car-info .section-content img {
    position: absolute;
    top: 0;
    left: 0;
}

.circle {
    position: absolute;
    display: inline-block;
}

.car-finder-wrapper .section-car .active .btn-select-arrow-wrapper,
.car-fitting-list-wrapper .section-car .active .btn-select-arrow-wrapper {
    transform: rotate(180deg);
}

.car-finder-wrapper .green:before,
.car-fitting-list-wrapper .green:before {
    display: inline-block;
    content: ' ';
    background-image: url('../../Images/CarSeatFitFinder/green.svg');
    height: 28px;
    width: 28px;
}

.car-finder-wrapper .green::after,
.car-fitting-list-wrapper .green::after {
    content: "✓";
    top: 3px;
    right: 8px;
    position: absolute;
    font-family: "Brandon Grotesque Bold";
    color: #fff;
}

.car-finder-wrapper .modal-content .green::after,
.car-fitting-list-wrapper .modal-content .green::after {
    content: "✓";
    top: 3px;
    left: 14px;
    position: absolute;
    font-family: "Brandon Grotesque Bold";
    color: #fff;
}

.car-finder-wrapper .red:before,
.car-fitting-list-wrapper .red:before {
    display: block;
    content: ' ';
    background-image: url('../../Images/CarSeatFitFinder/red.svg');
    height: 28px;
    width: 28px;
}

.section-car-info .section-content {
    position: relative;
    width: 360px;
    height: 266px;
    margin: 0 auto 20px auto;
}

.section-car-info .car-seven-seats {
    width: 340px;
    height: 266px;
    margin: 0 auto 20px auto;
}


/* car two seats */

.car-two-seats .front-left-circle {
    top: 73px;
    left: 164px;
}


/*car four seats*/

.car-four-seats .front-left-circle {
    top: 73px;
    left: 185px;
}

.car-four-seats .back-right-circle {
    top: 135px;
    left: 128px;
}

.car-four-seats .back-left-circle {
    top: 73px;
    left: 128px;
}


/*car five seats*/

.car-five-seats .front-right-circle {
    top: 168px;
    left: 153px;
}

.car-five-seats .front-left-circle {
    top: 74px;
    left: 185px;
}

.car-five-seats .back-right-circle {
    top: 150px;
    left: 127px;
}

.car-five-seats .back-middle-circle {
    top: 106px;
    left: 127px;
}

.car-five-seats .back-left-circle {
    top: 62px;
    left: 127px;
}


/*car six seats*/

.car-six-seats .front-middle-circle {
    top: 106px;
    left: 184px;
}

.car-six-seats .front-left-circle {
    top: 62px;
    left: 184px;
}

.car-six-seats .back-right-circle {
    top: 149px;
    left: 127px;
}

.car-six-seats .back-middle-circle {
    top: 106px;
    left: 127px;
}

.car-six-seats .back-left-circle {
    top: 62px;
    left: 127px;
}


/*car seven seats*/

.car-seven-seats .front-left-circle {
    top: 74px;
    left: 188px;
}

.car-seven-seats .center-right-circle {
    top: 140px;
    left: 140px;
}

.car-seven-seats .center-middle-circle {
    top: 100px;
    left: 140px;
}

.car-seven-seats .center-left-circle {
    top: 57px;
    left: 140px;
}

.car-seven-seats .back-right-circle {
    top: 57px;
    left: 95px;
}

.car-seven-seats .back-left-circle {
    top: 140px;
    left: 96px;
}

/*car eight seats*/

.car-eight-seats .front-left-circle {
    top: 78px;
    left: 199px;
}

.car-eight-seats .center-right-circle {
    top: 145px;
    left: 148px;
}

.car-eight-seats .center-middle-circle {
    top: 105px;
    left: 148px;
}

.car-eight-seats .center-left-circle {
    top: 62px;
    left: 148px;
}

.car-eight-seats .back-right-circle {
    top: 148px;
    left: 102px;
}

.car-eight-seats .back-middle-circle {
    top: 104px;
    left: 102px;
}

.car-eight-seats .back-left-circle {
    top: 61px;
    left: 102px;
}
/* legend */

.legend-item {
    margin: 10px 0 0 0;
}

    .legend-item p,
    .legend-item img {
        display: inline;
    }

.green {
    cursor: pointer;
}

.legend-item .green,
.legend-item .gray {
    display: inline-block;
    vertical-align: middle;
}

.legend-item .green {
    position: relative;
    cursor: default;
}

/*scroller*/
.scrollbar-inner {
    width: 100%;
    height: 8em;
    overflow: auto;
}

    .scrollbar-inner .mCSB_scrollTools {
        width: 20px;
    }

    .scrollbar-inner .mCSB_draggerRail {
        width: 20px !important;
        background-color: transparent !important;
        border: 2px solid #dbd3cf !important;
        margin-right: 5px !important;
    }

    .scrollbar-inner .mCSB_dragger_bar {
        background-color: #dbd3cf !important;
        width: 18px !important;
    }

    .scrollbar-inner .mCSB_dragger {
        height: 18px !important;
    }
/*end of scroller*/

button.close {
    padding: 5px;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    float: right;
}

.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative;
}

    .scroll-wrapper > .scroll-content {
        border: none !important;
        box-sizing: content-box !important;
        height: auto;
        left: 0;
        margin: 0;
        max-height: none;
        max-width: none !important;
        overflow: scroll !important;
        padding: 0;
        position: relative !important;
        top: 0;
        width: auto !important;
    }

        .scroll-wrapper > .scroll-content::-webkit-scrollbar {
            height: 0;
            width: 0;
        }

.scroll-element {
    display: none;
}

    .scroll-element, .scroll-element div {
        box-sizing: content-box;
    }

        .scroll-element.scroll-y.scroll-scrolly_visible {
            display: block;
        }

        .scroll-element .scroll-bar {
            cursor: default;
            min-height: 20px;
        }

/*************** SIMPLE INNER SCROLLBAR ***************/

.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
}

    .scrollbar-inner > .scroll-element div {
        border-radius: 6px;
        display: block;
        height: 100%;
        left: 0;
        top: 0;
        width: 100%;
    }

    .scrollbar-inner > .scroll-element.scroll-y {
        height: 100%;
        right: 2px;
        top: 0;
        box-sizing: border-box;
        width: 20px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border: 2px solid #dbd3cf;
    }

    .scrollbar-inner > .scroll-element .scroll-element_outer {
        overflow: hidden;
    }

    .scrollbar-inner > .scroll-element .scroll-element_outer,
    .scrollbar-inner > .scroll-element .scroll-element_track,
    .scrollbar-inner > .scroll-element .scroll-bar {
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
    }

    .scrollbar-inner > .scroll-element .scroll-element_track {
        background-color: #fff;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
    }

    .scrollbar-inner > .scroll-element .scroll-bar {
        background-color: #dbd3cf;
    }

    .scrollbar-inner > .scroll-element:hover .scroll-bar {
        background-color: #919191;
    }

    .scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
        background-color: #919191;
    }
