/*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: var(--pr-font);
}

:root{
    /* FONTS * /
    --pr-font: "futura-pt", sans-serif;
    /* --secondary-font: 'Rubik', sans-serif; * /

    /* THEME COLORS * /
    --color-pr: #2b2e34;
    --color-sc: #cfbeb2;
    --back-color-pr: #9a735d;
    --body-color: #faf8f3;
    --color-hover: #d3c3b8;
}
::selection {
    background : var(--color-sc);
    color : var(--color-pr);
}

::-webkit-scrollbar-track{
-webkit-box-shadow: inset 0 0 6px var(--color-pr);
background-color: var(--color-pr);
}
::-webkit-scrollbar{
width: 3px;
background-color: var(--back-color-pr);
}
::-webkit-scrollbar-thumb{
background-color: var(--color-sc);
border: 1px solid var(--back-color-pr);
    border-radius: 0rem;
}

body{
    background-color: var(--body-color) !important;
    color: var(--color-pr) !important;
    margin-top: 10vh !important;
} */


canvas {
width: 100% !important;
height: 100% !important;
}
h3 {
font-size: 2rem;
font-weight: 100;
margin-bottom: 1rem;
}
.configurator{
background: #2e2f34;
width: 100%;
max-width: 50rem;
padding: 3rem;
border-radius: 1.5rem;
box-shadow: 0px 0px 6px 1px #b1b1b1;
color: white;
}

.select-color{
display: flex;
/* flex-wrap: wrap; */
flex-wrap: nowrap;
overflow-x: auto;
margin-bottom: 1rem;
}

.select-color::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background-color: #bcbcbc;
}

.select-color::-webkit-scrollbar {
    /* width: 10px; */
    height: 6px;
    background-color: #bcbcbc;
}

.select-color::-webkit-scrollbar-thumb {
    background-color: black;
    border: none;
}
.select-color label {
margin-right: 0.5rem;
/* margin-right: 2.5rem; */
display: flex;
flex-direction: column;
align-items: center;
}
.select-color input[type=radio] {
display: none;
}
.select-color input[type=radio]:checked + span {
/* border-color: #ff6908; */
border-color: #2C2E33;
}
.select-color span {
    cursor: pointer;
    display: inline-block;
    /* width: 75px; */
    /* height: 75px; */
    width: 63px;
    height: 63px;
    border: solid 2px #eeeeee;
    position: relative;
    /* border-radius: 50%; */
    background-size: cover;
    margin-bottom: 0.5rem;
}
.select-color span:after {
    content: "";
    /* border: 1px solid #fff; */
    border: 1px solid #2e2f34;
    position: absolute;
    width: 59px;
    height: 59px;
    border-radius: 50%;
}
.select-color.select-top .svg-icon {
margin-bottom: 2rem;
}

/* top */
.select-color span:after {
    border-radius: 0;
    /* border-color: transparent; */
    border-color: #ffffff;
}
.select-color.select-top span{
/* background-position: center center; */
/* background-repeat: no-repeat; */
/* background-size: contain; */
border-radius: 0;
border-color: transparent;
width: 100px;
height: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.select-color.select-top input[type=radio]:checked + span {
border: none !important;
}
.select-color.select-top input[type=radio]:checked + span svg{
fill: black;
}
.select-color.select-top input[type=radio]:checked + span img{
background-color: black;
}

.tab-secondary{
display: none !important;
}


.select-color.select-top input[type=radio] + span svg{
width: auto;
height: 20px;
}


/********************
 * FILTERS SECTIONS *
 ********************/
/* title */
.filter_title {
    color: #585B63;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.config_sidebar {
    max-width: 25rem;
    padding: 2rem;
    border-radius: 0.4rem;
}


/**********************
 * UI ELEMENTS STYING *
 **********************/
.main_configs {
    display: flex;
    flex-wrap: wrap;
}
/* select top dropdown cstm */
#model-dropdown .dropdown-menu{
    max-height: 18rem;
    overflow: auto;
}
.dropdown {
    position: relative;
    /* width: 240px; */
    width: 280px;
    margin-right: 7px;
}

.dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #2C2E33;
    cursor: pointer;
    background: #2C2E33;
    color: white;
    border-radius: 7px;
}.dropdown-trigger svg {
    filter: invert(1);
}

.dropdown-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dropdown-value svg {
    width: 38px;
    height: 28px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #000;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 10;
}
.dropdown-menu:before {
    display: none;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
}

.dropdown-option:hover {
    background: #eee;
}

.dropdown-option svg {
    width: 38px;
    height: 28px;
}
.dropdown-option.active {
    background-color: #2c2e34;
    color: white;
}

.dropdown-option.active svg {
    filter: invert(1); /* make SVG white */
}

.model_selector_container .filter_title {
    margin-bottom: 1rem;
}
.model_selector_container, .toptextures_container, .legsTypes_container, .LegsTextures_container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.model_selector_container, .toptextures_container, .legsTypes_container {
    border-bottom: 1px solid rgba(44, 46, 51, 0.42);
}


.legsTypes_container .select-color span {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border-color: transparent !important;
    width: 53px;
    height: 53px;
}.legsTypes_container .select-color span:after {
    border-color: transparent !important;
    width: 49px;
    height: 49px;
}.legsTypes_container .select-color input[type=radio]:checked + span {
    border-color: transparent !important;
    filter: invert(1);
    background-color: #ffffff;
}

/* BUTTONS */
.shuffle_button {
    background: #2c2e34;
    border: none;
    height: 45px;
    width: 45px;
    border-radius: 7px;
}

.nav_configs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    align-items: center;
}
.nav_configs button {
    background: #2c2e34;
    border: none;
    width: 2.4375rem;
    height: 2.4375rem;
    border-radius: .2rem;
}
.nav_configs .textue_name {
    color: #2C2E33;
    font-size: 1.375rem;
    font-weight: 500;
    line-height: normal;
}

.shuffle_button svg {
  transition: transform 0.4s ease;
}


/*************
 * 3D LOADER *
 *************/
#product_render{
    position: relative;
}
.loader-spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #555;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/****************
 * RESPONSIVITY *
 ****************/
@media screen and (max-width: 767px) {
    #product_render{
        position: sticky !important;
        max-height: 50vh;
    }
    .config_sidebar {
        max-width: 100%;
        border-radius: 0;
    }
}