.interior-car_color-select {
    position: relative;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    .interior-content {
        position: absolute;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        z-index: 5;
        justify-content: space-between;
        padding: 80px 0;
        width: 100%;
        @media (max-width: 768px) {
            position: static;
            background-color: #000;
            flex-direction: column;
            gap: 20px;
            padding: 20px 0;
        }
        #interior-color-indicators-wrap {
            margin-right: 80px;
            @media (max-width: 768px) {
                margin-right: 0;
            }
        }
        .interior-content-container {
            margin-left: 80px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 50%;
            @media (max-width: 768px) {
                justify-content: center;
                margin-left: 0;
            }
            p {
                margin-bottom: 10px;
                font-size: 22px;
                color: white;
                @media (max-width: 768px) {
                    text-align: center;
                    margin: 0;
                }
            }
            span {
                font-size: 16px;
                color: white;
                @media (max-width: 768px) {
                    text-align: center;
                    margin-bottom: 20px;
                }
            }
        }
    }
}

#interior-color-indicators-wrap{
    position: relative;
    z-index: 2;
    /*margin-bottom: 70px;*/
    color:  #ffffff;
    display: flex;
    justify-content: center;
}

#interior-color-indicators {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 40px;
    flex-wrap: wrap;
}
#interior-color-indicators li{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    transition: .5s ease;
    background:  rgba(229,229,229,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    img {
        width: 33px;
        height: 33px;
        object-fit: cover;
        border-radius: 50%;
    }
}
#interior-color-indicators li.active {
    background: rgba(229,229,229,.3);

}
#interior-color-cars{
    list-style-type: none;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0;
    height: 100vh;
    @media (max-width: 768px) {
        height: 50vh;
    }
    @media (max-width: 500px) {
        height: 40vh;
    }
}
#interior-color-cars li {
    position: absolute;
    top: 0px;
    opacity: 0;
    margin: auto;
    transition: opacity .4s ease-out;
    width: 100%;
    height: 100%;
}
#interior-color-cars li.active{
    position: relative;
    opacity: 1;
    z-index: 2;
}
#interior-color-cars li img , #interior-color-cars li video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.car_options {
    display: flex;
    justify-content: space-between;
}
.option_card {
    text-align: center
}
.option_title {
    color:  #ffffff;
    font-size: 18px;
    padding-top: 20px;
    margin: 0;
}
.option_title::before {
    content: '';
    display: block;
    margin: auto auto 20px auto;
    height: 1px;
    background-color: #fff;
    width: 64px;
}
.option_subtitle {
    color:  #ffffff;
    font-size: 24px;
}
