* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif !important;
}

.main-parent {
  height: 100vh;
  width: 100vw;
  background-color: #f7f7f7;
}
.iframe-box {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.config-box {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: max-content;
}

img{
  max-width: 100%;
  cursor: pointer;
}
/* SWIPER CSS START */
:root {
  --swiper-navigation-size: 24px !important;
}
/* SWIPER CSS END */

.hidden {
  display: none;
}

/* .tab {
  float: right;
} */
.tab button {
  display: block;
  background-color: white;
  border-radius: 8px;
  color: black;
  padding: 10px;
  height: auto;
  width: 100px;
  border: none;
  outline: none;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
  margin: 0 20px 20px 20px; 
}
.bt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.tab button.active {
  box-shadow: #00000059 0px 5px 15px;
}
.tabs-contentDiv {
  position: absolute;
  right: 160px;
  top: 0;
  bottom: 0;
}
.tabcontent {
  /* float: left; */
  height: 98%;
  width: 400px;
  border-radius: 10px;
  /*padding: 20px;*/
  position: relative;
}
.nameNcross {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 16px; */
}
.crossImg-box {
  /*position: absolute;*/
  /*right: 20px;*/
  /*top: 20px;*/
}

.icon-img {
  width: 70px;
}
.iconLabel {
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  font-size: 12px;
}
.iconLabelActive {
  border-bottom: 1px solid;
  width: 70%;
}

.content-hdng {
  font-size: 19px;
  font-weight: 700;
  padding: 10px 0;
}
.contentInner-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  /* display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); */
}
.content-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 150px;
  width: 150px;
  text-align: center;
  margin-top: 30px;
}
.content-imgs {
  width: 130px;
}
.contentImg-txt {
  font-size: 12px;
  padding-top: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.content-footer {
  padding: 10px 20px;
  border-top: 3px solid black;
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.footerIcons-div {
  padding-top: 20px;
  display: flex;
  gap: 10px;
}
.footerIcons {
  width: 30px;
  cursor: pointer;
}
.footer-btns {
  padding-top: 20px;
  display: flex;
  gap: 5px;
}
.btn-dark {
  font-size: 12px;
}

.content-footerMobile {
  display: none;
  background-color: white;
  padding: 0 15px;
}
.arrows {
  display: none;
}
/*  */

.options{
    max-width: 300px;
    border-radius: 10px;
    height: max-content;
    padding: 10px 15px;
    background-color: #fff;
    display: none;
    padding-bottom: 40px;
    max-height: 90vh;
    overflow: auto;
    scrollbar-width: thin;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(1, 150px);
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.grid2 img{
  max-height: 100px;
}
.crossImg-box img{
    max-width: 24px;
}
.model.active, .tablinks.active, .subModel.active, .textures img.active{
  border: 1px solid #000000;
  border-radius: 7px;
}
.texturesMain{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media(max-width: 1024px){
  .config-box{
    position: absolute;
    right: auto;
    top: auto;
    bottom: 20px;
    width: 100%;
    padding: 0 15px;
    display: grid !important;
    gap: 10px; 
    transform: translateY(0%);
  }
  .options,.tabUpperDiv {
    width: 100%;
  }
  .tabUpperDiv {
    max-height: 100px;
  }
  .options{
    max-height: calc(100vh - 200px);
    overflow: auto;
    overflow-x: hidden;
  }
  .tab{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }
  .tab button{
    height: auto;
    width: auto;
    margin: 0;
  }
  .grid2{
    grid-template-columns: repeat(2,1fr);
  }
  
}