:root {
    /* Color Variables */
    --yale-gold: #e5a713;
    --accent-blue: #0b6eb7;
    --white: #FFFFFF;
    --background: radial-gradient(circle at 50% 60%, #1a1c1f 20%, black);

    /* Font Variables */
    --font-title: DIN Next LT W01, Helvetica Neue, HelveticaNeue, Helvetica, Arial, Lucida Grande, sans-serif;
    --font-body: DIN Next LT W01, Helvetica Neue, HelveticaNeue, Helvetica, Arial, Lucida Grande, sans-serif;
    font-weight: 100;
}

/* ================ CMS OVERWRITES ================ */

.A5-com-footer {
    margin-top: 0 !important;
}

html.site--hyster-com {
    background-color: #000 !important;
}

.A7-breadcrumb {
    display: none !important;
}

.A9-com-floating-search {
    display: none !important;
}

/* ================ Overwrite range slider styles ================ */
.sliders__container {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    gap: 84px;
}

.slider__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    /* width: 350px; */
}

.slider__label {
    color: var(--white);
    text-transform: capitalize;
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: -28px;
    font-size: 20px;
    font-family: var(--font-title);
}

.slider__ticks {
    color: var(--white);
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: -3px;
    justify-content: space-between;
}

.slider__labels {
    color: var(--white);
    text-transform: capitalize;
    display: flex;
    position: absolute;
    text-align: right;
    left: 0;
    right: 0;
    top: 20px;
    justify-content: space-between;
    gap: 8px;
    font-size: 11.5px;
    font-family: var(--font-body);

}

.slider__label--inner {
    width: 33.33%;
}

.slider__label--inner:nth-child(1) {
    text-align: left;
}

.slider__label--inner:nth-child(2) {
    text-align: center;
}

.slider__label--inner:nth-child(3) {
    text-align: right;
}

/*Range Reset*/
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    width: 100%;
    opacity: 1;
    z-index: 20;
}

/* Removes default focus */
input[type="range"]:focus {
    outline: none;
}

/***** Chrome, Safari, Opera and Edge Chromium styles *****/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
    background-color: var(--yale-white) !important;
    height: 8px;
    opacity: 1;
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    /* Override default look */
    appearance: none;
    margin-top: -6px;
    /* Centers thumb on the track */

    /*custom styles*/
    background-color: var(--accent-blue);
    border-radius: 100%;
    height: 20px;
    width: 20px;
}

input[type="range"]:focus::-webkit-slider-thumb {
    border: 1px solid var(--accent-blue);
    outline: 3px solid var(--accent-blue);
    outline-offset: 0.125rem;
}

/******** Firefox styles ********/
/* slider track */
input[type="range"]::-moz-range-track {
    background-color: var(--accent-blue);

    height: 0.5rem;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
    border: none;
    /*Removes extra border that FF applies*/
    border-radius: 0;
    /*Removes default border-radius that FF applies*/

    /*custom styles*/
    background-color: #191919;
    height: 1rem;
    width: 1rem;
}

input[type="range"]:focus::-moz-range-thumb {
    border: 1px solid var(--accent-blue);
    outline: 3px solid var(--accent-blue);
    outline-offset: 0.125rem;
}

/* ================ Configurator styles ================ */
.configurator__base-container {
    background-color: #000;
    width: 100%;
    min-height: 100svh;
    position: relative;
}

.configurator__background-image {
    position: absolute;
    inset: 0;
    z-index: 10;
    background-image: linear-gradient(to top, black 10%, transparent), url('https://www.yale.com/globalassets/coms/yale/north-america/images/spotlight/series-n/warehouse-blueprint-sketch.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;

}

.configurator__content {
    background-color: transparent;
    position: relative;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.configurator__content--header {
    margin: 10px auto;
    position: relative;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: hard-light;
}

.dummy_classname {
    pointer-events: fill;
}

.configurator__content--header h1 {
    font-family: var(--font-title);
    font-weight: 100;
    color: var(--white);
    font-size: 52px;
    line-height: 1.2 !important;
}


.configurator__content--body {
    display: flex;
    justify-content: space-evenly;
    height: 100%;

}

@media (width>=950px) {

    .configurator__content--center {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 50%;
    }

    .configurator__content--body {
        display: flex;
        position: relative;
        justify-content: space-evenly;
        height: 100%;

        /* semi-transparent white */
        backdrop-filter: blur(4px);
        /* blur effect */
        -webkit-backdrop-filter: blur(4px);
        /* subtle border */
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        padding-top: 3%;
        padding-bottom: 32px;
    }

    .configurator__background-image {
        position: absolute;
        inset: 0;
        z-index: 10;
        background-image: linear-gradient(to top, black 10%, transparent), url('https://www.yale.com/globalassets/coms/yale/north-america/images/spotlight/series-n/warehouse-blueprint-sketch.png');

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        filter: blur(1px);
    }
}

@media (width>=2000px) {
    .configurator__background-image {
        position: absolute;
        inset: 0;
        z-index: 10;
        background-image: linear-gradient(to top, black 10%, transparent), url('https://www.yale.com/globalassets/coms/yale/north-america/images/spotlight/series-n/warehouse-blueprint-sketch.png');

        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        filter: blur(1px);
    }

}

.configurator__content--left {
    /* display: flex;
        flex-direction: column;
        align-items: center;*/
    /* position: relative; */
    width: 25%;
}

.industries-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.industry-header {
    font-family: var(--font-title);
    color: var(--white);
    font-size: 24px;
    margin: 0;
    opacity: 0;
}

.industry {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.industry-title {
    font-family: var(--font-title);
    color: var(--white);
    font-size: 20px;
    position: absolute;
    left: 80px;
    opacity: 0;
    transition: all 0.2s ease-out;
    text-align: center;

}


.industry-button {
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 100%;
    overflow: hidden;
    width: 52px;
    height: 52px;
    cursor: pointer;
    transform: scale(1);

    transition: transform 0.15s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.industry:hover .industry-title {
    opacity: 1;
}


.industry:hover .industry-button {
    border: 2px solid var(--yale-gold);
    transform: scale(1.25);
    opacity: 1 !important;
}

.industry-image {
    width: 52px;
    height: 52px;
}

.parts-wrapper {
    color: var(--white);
    position: absolute;
    max-width: 400px;
    /*transform: translateY(-50%);*/
    z-index: 30;
    top: 0;
    left: 10px;
    padding: 44px 32px;
    background: rgba(0, 0, 0, 0.8);
    /* Light transparent background */
    backdrop-filter: blur(4px);
    /* Apply background blur */
    -webkit-backdrop-filter: blur(4px);
    /* Safari support */

    /* Rounded corners */
    border: 1px solid rgba(72, 72, 72, 0.3);
    /* Light border for glass effect */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    min-width: 350px;
    min-height: 50svh;
    background: linear-gradient(135deg,
            rgba(35, 35, 35, 0.85) 0%,
            rgba(10, 10, 10, 0.85) 100%);
    /* Add a subtle gradient */
}

.part {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 24px;
}

.part__title {
    font-family: var(--font-title);
    font-size: 32px;
    color: var(--white);
    line-height: 1;
    margin: 0 !important;
    text-align: center;
    font-weight: 100;

}

.part__image {
    width: 140px;
    height: 140px;
}

.part__description {
    font-family: var(--font-body);
    font-size: 13px;
    text-align: center;
    text-wrap: balance;
    line-height: 1.5;
}

.part__carousel-wrapper {
    text-align: center;
    font-family: var(--font-title);
    font-size: 18px;

}

.part__carousel-label {
    color: var(--accent-blue);
    ;
}

.parts__carousel-current {
    color: var(--accent-blue);
    ;
}

.parts__carousel-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}

.parts__carousel-button {
    background-color: var(--white);
    margin: 0;
    padding: 0;
    border: none;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    cursor: pointer;
    flex-grow: 0;
}


.configurator__truck-image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;


}

.hotspot__button {
    margin: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    background-color: var(--accent-blue);
    backdrop-filter: blur(2px);
    /* Apply background blur */
    -webkit-backdrop-filter: blur(2px);
    /* Safari support */
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: none;
    cursor: pointer;
    opacity: 0;

}


.hotspot--transmission {
    bottom: 4svw;
    right: 8svw;
}

.hotspot--mast {
    bottom: 18svw;
    left: 12.5svw;
}

.hotspot--axle {
    bottom: 4.5svw;
    right: 13svw;
}

.hotspot--display {
    top: 5svw;
    left: 18svw;
}

.hotspot--seat {
    top: 8.5svw;
    right: 10svw;
}

.hotspot__tooltip {
    padding: 5px 6px;
    position: absolute;
    font-size: 16px;
    letter-spacing: 1px;
    bottom: 34px;
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease-out;
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    /* Light transparent background */
    backdrop-filter: blur(10px);
    /* Apply background blur */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    /* Rounded corners */
    border: 1px solid rgba(72, 72, 72, 0.3);
    /* Light border for glass effect */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    font-family: var(--font-title);
}

.hotspot__button:hover .hotspot__tooltip {
    opacity: 1;
}

.hotspot__button--inner {
    margin: 0;
    padding: 0;
    width: 12px;
    height: 12px;
    background-color: var(--white);
    border-radius: 100%;
    display: inline-block;
    justify-content: center;
    align-items: center;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);

    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);

    }
}

.hotspot__button--ping {
    width: 12px;
    height: 12px;
    background-color: var(--accent-blue);
    border-radius: 100%;


}

.configurator__truck-image {
    width: 33svw;
    filter: brightness(0.08);
}

/* 
    @media (max-width: 800px) {
        .configurator__truck-image {
            width: 80svw;
        }
    } */

.configurator__cta-wrapper {
    text-align: center;
    opacity: 0;
    padding-top: 36px;
}

.configurator__text--help {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 16px;
    letter-spacing: 1px;
    padding-top: 20px;

}

.configurator__text--help a {
    color: var(--white) !important;

}

.configurator__cta {
    color: #fff;
    border: 2px solid #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    backdrop-filter: blur(5px) saturate(200%);
    -webkit-backdrop-filter: blur(5px) saturate(200%);
    -webkit-transition: all .5s;
    transition: all .5s;
    background: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    width: max-content;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 10px 24px;
    margin: 20px 0 0 0 !important;
    width: 100%;
    font-family: var(--font-title);
}

.configurator__cta:hover,
.configurator__cta:focus {
    color: var(--white) !important;
    background: rgb(17, 17, 17);
}

.disclaimer {
    color: var(--white);
    display: inline-block;
    max-width: 700px;
    line-height: 1.4;
    font-size: 12px;
    opacity: 0.7;
}

.configurator__content--right {
    width: 25%;
}

.invisible {
    opacity: 0;
}

.hidden {
    display: none;
}

@media (max-width: 1600px) {
    .configurator__truck-image {
        width: 50svw;
        filter: brightness(1);
    }

    .hotspot--transmission {
        bottom: 6svw;
        right: 12svw;
    }
    
    .hotspot--mast {
        bottom: 24svw;
        left: 20svw;
    }
    
    .hotspot--axle {
        bottom: 5svw;
        right: 20svw;
    }
    
    .hotspot--display {
        top: 7svw;
        left: 28svw;
    }
    
    .hotspot--seat {
        top: 12svw;
        right: 16svw;
    }
}

@media (max-width: 1200px) {
    .configurator__truck-image {
        width: 55svw;
    }

    .hotspot--transmission {
        bottom: 6svw;
        right: 12svw;
    }
    
    .hotspot--mast {
        bottom: 28svw;
        left: 22svw;
    }
    
    .hotspot--axle {
        bottom: 7svw;
        right: 22svw;
    }
    
    .hotspot--display {
        top: 7svw;
        left: 30svw;
    }
    
    .hotspot--seat {
        top: 13svw;
        right: 17svw;
    }
}

@media (max-width: 950px) {
    .configurator__base-container {
        min-height: 100svh;
        padding-bottom: 50px;
    }

    .parts-wrapper {
        color: var(--white);
        position: absolute;
        transform: translateY(0%) !important;
        z-index: 30;
        max-width: 100%;
        top: 50%;
        left: 0;
        padding: 44px 32px;
        background: rgba(0, 0, 0, 0.7);
        /* Light transparent background */
        backdrop-filter: blur(10px);
        /* Apply background blur */
        -webkit-backdrop-filter: blur(10px);
        /* Safari support */

        /* Rounded corners */
        border: 1px solid rgba(72, 72, 72, 0.3);
        /* Light border for glass effect */
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        /* Subtle shadow */
        min-width: 350px;
        min-height: 60svh;
        background: linear-gradient(135deg,
                rgba(55, 55, 55, 0.75) 0%,
                rgba(10, 10, 10, 0.5) 100%);
        /* Add a subtle gradient */
    }

    .hotspot__button {
        opacity: 1 !important;
    }

    .configurator__background-image {
        display: none;
    }

    .configurator__content--header h1 {
        padding: 0;
        margin: 0;
        font-size: 32px;
    }

    .configurator__content {
        position: unset;
    }

    .hotspot--transmission {
        bottom: 10svw;
        right: 20svw;
    }
    
    .hotspot--mast {
        bottom: 45svw;
        left: 25svw;
    }
    
    .hotspot--axle {
        bottom: 10svw;
        left: 45svw;
    }
    
    .hotspot--display {
        top: 12svw;
        left: 49svw;
    }
    
    .hotspot--seat {
        top: 22svw;
        right: 28svw;
    }


    .parts-wrapper {
        position: fixed;
        bottom: 0;
        top: initial;
        width: unset;
        height: unset;
        left: 0;
        right: 0;
    }

    .part {
        gap: 12px;
    }

    .configurator__content--right {
        width: 90%;

    }

    .configurator__text--help {
        font-size: 16px;
    }

    .sliders__container {
        padding: 0;
    }

    .configurator__content--body {
        flex-direction: column;
        align-items: center;
    }

    .configurator__truck-image {
        width: 90svw;
    }

    .industries-wrapper {
        display: none;
    }

    .configurator__content--right {
        margin-top: 64px;
    }

    .hotspot__button {
        background-color: var(--accent-blue);


    }

    .parts__carousel-button {
        background-color: var(--white);
        margin: 0;
        padding: 0;
        border: none;
        width: 24px;
        height: 24px;
        border-radius: 100%;
        cursor: pointer;
        flex-grow: 0;
    }
}