.avatr-car_wrapper {

}
#avatr-color-indicators-wrap{
    position: relative;
    z-index: 2;
    /*margin-bottom: 70px;*/
    color:  #ffffff;
    display: flex;
    justify-content: center;
}
#avatr-color-indicators-highlight {
    margin-top: -5px;
    margin-left: -5px;
    height: 37px;
    width: 37px;
    border: 3px solid black;
    border-radius: 50%;
    transition: transform .4s ease-out;
    transform: translateX('0px');
}
#avatr-color-indicators {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 40px;
    flex-wrap: wrap;
}
#avatr-color-indicators li{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    transition: .5s ease;
    background:  #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    img {
        width: 33px;
        height: 33px;
        object-fit: cover;
        border-radius: 50%;
    }
}
#avatr-color-indicators li.active {
    background: #f0f0f08c;

}
#avatr-color-cars{
    list-style-type: none;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: auto;
    padding: 0;
    height: 507px;
    /*margin-top: 50px;*/
    @media (max-width: 1024px) {
        height: 300px;
    }
    @media (max-width: 768px) {
        height: 145px;
    }
}
#avatr-color-cars li {
    position: absolute;
    top: 0px;
    opacity: 0;
    margin: auto;
    transition: opacity .4s ease-out;
    width: 100%;
    height: 100%;
}
#avatr-color-cars li.active{
    position: relative;
    opacity: 1;
    z-index: 2;
}
#avatr-color-cars li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.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;
}
@media (max-width:1024px) {
    #avatr-color-indicators {
        justify-content:center;
    }
    #avatr-color-indicators-wrap {
        margin-bottom:70px;
    }
}