    /* 0 - General CSS */


    /* H1 OCP Hider */
    .l-important-notice{
        display: none;
    }
    div.l-wrapper:nth-child(1){
        display: none;
    }

    .section {
        container-type: inline-size;
        padding: 2rem 0;
    }

    .section--no_mg {
        container-type: inline-size;
    }

    .l-header-breadcrumb {
        position: absolute;
        z-index: 1;
        color: #fff;
    }


    .hr__blk {
        width: 100%;

        hr {
            background-color: #000;
            height: 10px;
        }
    }

    .hr__gry {
        width: 100%;

        hr {
            background-color: #333;
            height: 10px;
        }
    }

    .bg__grey {
        background-color: #e5e5e5;
    }

    .mob__hs {
        display: none;
    }

    .desk__hs {
        display: block;
    }


    .img__sml_icon {
        img {
            width: 100%;
            height: 32px;
        }
    }

    /* 0 - Animations  */
    .fade_in {
        animation: fadeIn 0.3s;
    }

    .fade_out {
        animation: fadeOut 0.3s;

    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes fadeOut {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    /* 0 - Fonts & Buttons */
    .center_col {
        max-width: 60%;
        margin: 0 auto;
    }

    .font_oswald {
        font-family: Oswald, 'Lucida Grande', sans-serif;
    }

    .center {
        text-align: center;
    }


    /* Font Color */
    .wht {
        color: #fff;
    }

    .blk {
        color: #000;
    }

    .gry {
        color: #333;
    }

    /* Font Size */

    .copy {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .copy_sml {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .copy_md {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .copy_lrg {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .copy_xlrg {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .copy--quote{
        font-style: italic;
    }


    .subhead {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }

    /* Font Weight */
    .fw300 {
        font-weight: 300;
    }

    .fw500 {
        font-weight: 500;
    }

    .fw600 {
        font-weight: 600;
    }

    .fw800 {
        font-weight: 800;
    }

    .upper {
        text-transform: uppercase;
    }

    .capit {
        text-transform: capitalize;
    }

    /* 0 - Paddings & Margins */
    .mb3 {
        margin-bottom: 3rem;
    }

    .mt1 {
        margin-top: 1rem;
    }

    .mt2 {
        margin-top: 2rem;
    }

    .mh1 {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .mh2 {
        margin-left: 2rem;
        margin-right: 2rem;
    }

    .mh3 {
        margin-left: 3rem;
        margin-right: 3rem;
    }

    .mh4 {
        margin-left: 4rem;
        margin-right: 4rem;
    }

    .mh5 {
        margin-left: 5rem;
        margin-right: 5rem;
    }

    .mv1 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .mv2 {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .mv3 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .mv4 {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    .mv5 {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    .ph_05 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .ph1 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ph2 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .ph3 {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .ph4 {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .ph5 {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .pv1 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .pv2 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .pv3 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pv4 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .pv5 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }


    .pl1 {
        padding-left: 1rem;
    }

    .pr1 {
        padding-right: 1rem;
    }

    /* 1 Hero Video START */
    .vid_banner {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80vh;
        overflow: hidden;
        text-align: center;
    }

    .vid_banner__video {
        video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }



    .vid_banner__btn {
        position: absolute;
        bottom: 10%;
        max-width: 50%;
        width: 100%;

        a {
            border: 1px solid #fff;
            color: #fff;
            padding: .5rem;
            font-weight: 900;
            display: block;
            text-align: center;
            text-decoration: none;
            text-transform: uppercase;
            cursor: pointer;
            transition-duration: 0.3s;
            letter-spacing: 2px;
            font-size: 1.2rem;
        }

        a:hover {
            text-decoration: none;
            transition-duration: 0.3s;
            background-color: #fff;
            border: 1px solid #fff;
            color: #000;
        }
    }

    /* 1 Hero Video END */

    /* Flex Content START */
    .flex__wrap {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .flex__wrap--end {
        align-items: end;
    }

    .flex__wrap--start {
        align-items: start;
    }

    .flex__wrap--rv {
        flex-wrap: wrap-reverse;
    }

    .flex__wrap--full_bg {
        height: 60vh;
    }

    .flex__col_50 {
        flex: 50%;
        display: flex;
        flex-direction: column;
    }



    .flex__col_30 {
        flex: 30%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flex__col--left {
        align-items: start;
    }

    .flex__col--left--mob {
        align-items: center;
    }

    .flex__col--anchor {
        text-decoration: none;
        transition-duration: 0.3s;

        &:hover {}
    }

    .flex__col_70 {
        flex: 70%;
    }

    .flex__col_25 {
        flex: 25%;
    }

    .flex__col_16 {
        flex: 16%;
    }

    .flex__col--img {
        padding: 2rem;
    }

    /* Flex Content END */


    /* Model Selector START */


    .mod__select {


        cursor: pointer;
        transition: 0.3s;

        .mod__img {
            border-bottom: 10px solid #000;
            opacity: 1;
        }

        &:hover {
            .mod__img {
                transition-duration: 0.3s;
                border-bottom: 10px solid #5b5a5a;

                img {
                    transition-duration: 0.3s;
                    opacity: 0.6;
                }
            }
        }

        &:hover {
            .center {
                transition-duration: 0.3s;
                color: #5b5a5a;
                /* text-decoration: underline; */
            }
        }


    }





    .mod__select:hover {

        .mod__img {
            transition: 0.3s;
            opacity: 1;
        }


    }

    .model_collection {}

    /* Model Selector END */

    /* Model Table START */
    .prod_table {
        table {
            width: 100%;

            td {
                padding: 5px;
            }
        }

        td:nth-child(1) {
            font-weight: 700;
            width: 30%;
        }

        td:nth-child(2n) {
            width: 70%;
        }

        tr:nth-child(2n) {
            background-color: #e7e7e9;
        }
    }

    /* Model Table END */


    /* Artist Video START */

    .art_tests {}

    .art_tests__vid_wrapper {
        position: relative;
        padding-bottom: 55%;

        iframe {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 0;
        }
    }

    .art_tests__flex_wrapper {}

    .art_tests__prof {
        cursor: pointer;

        .art_tests__prof_border {
            border-top: 10px solid #fff;
        }

        &:hover {

            .art_tests__prof_border {
                transition-duration: 0.3s;
                border-top: 10px solid #000;
            }

            .wht {
                transition-duration: 0.3s;
                color: #000;
                text-decoration: underline;
            }
        }
    }


    .art_tests__prof_img {
        img {}
    }

    /* Artist Video END */



    /* @media only screen and (max-width: 829px) { */
    @container (max-width: 829px) {

        .vid_banner__btn {
            /* position: absolute; */
            bottom: 10%;
            max-width: 80%;
            width: 100%;
        }

        .center_col {
            max-width: 100%;
        }

        .mob__hs {
            display: block;
        }

        .desk__hs {
            display: none;
        }

        .pl1 {
            padding-left: 0;
        }

        .ph {
            padding-left: 0;
            padding-right: 0;
        }

        .ph2 {
            padding-left: 0rem;
            padding-right: 0rem;
        }

        .pr1 {
            padding-right: 0;
        }

        .mh3 {
            margin-left: 1rem;
            margin-right: 1rem;
        }

        .mv2 {
            margin-top: 1rem;
            margin-bottom: 1rem;
        }

        .mv4 {
            margin-top: 1rem;
            margin-bottom: 1rem;
        }

        .mh4 {
            margin-left: 1rem;
            margin-right: 1rem;
        }

        .vid_banner {
            height: 30vh;
        }

        .flex__col_70,
        .flex__col_50,
        .flex__col_30 {
            flex: 100%;
        }

        .flex__col_25 {
            flex: 50%;
        }

        .flex__col_16 {
            flex: 33%;
        }

        .flex__wrap--full_bg {
            height: 40vh;
        }

        .flex__wrap--rv {
            flex-wrap: wrap-reverse;
        }

        .flex__col--img {
            padding: 0;
        }

        .prod_table {
            td:nth-child(1) {
                font-weight: 700;
                width: 45%;
            }

            td:nth-child(2n) {
                width: 55%;
            }

        }

        .flex__col--left--mob {
            align-items: start;
        }
    }

    @container (max-width: 519px) {
        .flex__col_16 {
            flex: 50%;
        }
    }

    @container (max-width: 329px) {
        .vid_banner {
            height: 25vh;
        }

    }

    /* Store Locator */
    .dealer_locator {
        container-type: inline-size;
    }

    .yNHHyP-marker-view {
        z-index: 1 !important;
    }

    #map {
        height: 100vh;
        transition: width 0.4s ease-in-out;
    }

    .header_wrapper {
        /* display: flex; */
        margin-bottom: 15px;
    }

    .locator_header_dt {
        display: block;
        font-size: 2.4rem;
        /* align-self: flex-end;
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.00;
        font-family: Oswald, 'Lucida Grande', sans-serif; */
    }

    .locator_header_mb {
        display: none;
    }

    .search_field {
        /* display: inline-block; */
        /* align-self: flex-end; */
        /* margin: 0 20px; */
    }

    .user_input {
        border: none;
        /* border-bottom-width: medium;
        border-bottom-style: none;
        border-bottom-color: currentcolor; */
        padding-bottom: 0.5rem;
        border-bottom: 3px solid #c0c0c0;
        text-overflow: ellipsis;
        width: 400px;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    }

    input {
        color: #000;
    }

    input:focus {
        border-bottom: 2px solid #000;
        outline: 0;
    }

    .hidden {
        display: none;
    }

    ::-webkit-scrollbar {
        display: none;
    }

    .scroll {
        overflow-y: scroll;
    }

    .scroll_hide {
        overflow-y: hidden;
    }

    .output_parent {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .map_wrapper {
        flex: 65%;
    }

    #load_overlay {
        display: none;
        position: absolute;
        align-items: center;
        justify-content: center;
    }

    .loading_icon {
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wave {
        width: 15px;
        height: 100px;
        background: linear-gradient(45deg, #48217a, #fff);
        margin: 10px;
        animation: wave 1s linear infinite;
        border-radius: 20px;
    }

    .wave:nth-child(2) {
        animation-delay: 0.1s;
    }

    .wave:nth-child(3) {
        animation-delay: 0.2s;
    }

    .wave:nth-child(4) {
        animation-delay: 0.3s;
    }

    .wave:nth-child(5) {
        animation-delay: 0.4s;
    }

    .wave:nth-child(6) {
        animation-delay: 0.5s;
    }

    .wave:nth-child(7) {
        animation-delay: 0.6s;
    }

    .wave:nth-child(8) {
        animation-delay: 0.7s;
    }

    .wave:nth-child(9) {
        animation-delay: 0.8s;
    }

    .wave:nth-child(10) {
        animation-delay: 0.9s;
    }

    @keyframes wave {
        0% {
            transform: scale(0);
        }

        50% {
            transform: scale(1);
        }

        100% {
            transform: scale(0);
        }
    }


    .map_fade {
        opacity: 0.3;
    }



    .side_panel {
        overflow-x: hidden;
        transition: all .2s ease-out;
        height: 100vh;
        background-color: #000000;
        color: #ffffff;
        min-width: 25%;
        max-width: 30%;
        padding: 2rem 0;
    }

    .productNameWrapper {
        margin: 15px;
        /* padding: 10px 0; */
    }

    .product_header {
        font-size: 1.17em;
        border-bottom: 2px solid #fff;
        text-transform: uppercase;
        font-weight: 700;
        padding-bottom: 10px;
        text-align: center;
    }

    .dealer_listing_item {
        cursor: pointer;
        line-height: 1.2;
    }

    .dealer_item_wrapper {
        display: flex;
        flex-direction: row;
        padding: 15px 15px 5px 0;
    }

    .dealer_item_pin {
        margin: 0 auto;
    }

    .dealer_col_left {
        width: 15%;
        display: flex;
        justify-content: center;
        margin-top: 5px;
    }

    .dealer_col_right {
        width: 85%;


    }

    .dealer_panel_pin_wrapper {
        display: flex;
        justify-content: center;
    }

    .dealer_panel_pin {
        margin: 0 auto;
        font-size: 17px;
        color: #000;
        position: absolute;
        display: flex;
        align-content: center;
        align-items: center;
        z-index: 2;
        font-weight: 700;
    }

    .panel_pin_svg {
        width: 20px;
        position: absolute;
        z-index: 1;
    }

    .dealer_panel_name {
        font-weight: 700;
        /* text-transform: uppercase; */
        font-size: 18px;
    }

    .dealer_panel_name a {
        text-decoration: none;
        color: #ffffff;
    }

    .dealer_panel_name a:hover {
        transition: 0.3s;
        color: #d9d9d9;
        text-decoration-line: underline;
    }

    .dealer_panel_address {}

    .dealer_panel_phone a {
        text-decoration: none;
        color: #ffffff;
    }

    .dealer_panel_phone a:hover {
        transition: 0.3s;
        color: #d9d9d9;
    }

    .dealer_panel_directions_wrapper {
        padding-top: 10px;
    }

    .directions_fa {
        /* font-size: 20px; */
    }

    .dealer_panel_directions_link {
        text-decoration: underline;
    }

    .dealer_panel_directions_wrapper a {
        color: #ffffff;
    }

    .dealer_panel_directions_wrapper a:hover {
        transition: 0.3s;
        color: #d9d9d9;
        text-decoration-line: underline;
    }

    .gm-ui-hover-effect {
        display: none !important;
    }

    .info_name {
        text-transform: uppercase;
        font-weight: bold;
        margin: 5px 0;
        font-size: 1rem;
    }

    .info_phone {}

    .info_website_btn {
        margin: 10px 0;
        padding: 10px 0;
        font-weight: bold;
        background: #000;
        text-align: center;
        border: #000 1px solid;
        color: #fff;
    }

    .info_website_btn:hover {
        background-color: #fff;
        color: #000;
        transition: 0.3s;
    }

    .info_website_a {
        text-decoration: none;
        text-transform: uppercase;
    }



    /* Additional Google Map styling changes*/

    /* Dealer Marker number size */
    .GMAMP-maps-pin-view {
        font-size: 16px !important;
    }


    .gm-svpc {
        display: none;
    }

    /* Hides the logo and tex options at the bottom of the map - remove if styling breaks elsewhere */
    .gm-style>div:nth-child(14)>div:nth-child(1) {
        display: none;
    }

    .gm-style>div:nth-child(16) {
        display: none;
    }

    @container (max-width: 750px) {
        .dealer_col_left{
            width: 10%;
        }
        .user_input {
            width: 100%;
        }

        .output_parent {
            flex-direction: column;
        }

        .header_wrapper {
            display: block;
        }

        .locator_header_dt {
            display: none;
        }

        .locator_header_mb {
            display: block;
            /* font-size: 25px;
            font-weight: 700; */
        }

        .search_field {
            margin: 10px 0;
            width: 100%;
        }

        #map {
            height: 50vh;
        }

        .side_panel {
            height: 100%;
            max-width: 100%;
            padding: 0.5rem 0;
        }

        .map_wrapper,
        .side_panel {
            width: 100%;
        }

        .dealer_locator {
            margin: 10px 0;
        }

    }