@charset "UTF-8";
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none; /* supported by Chrome and Opera */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}
.v3d-simple-preloader-logo {
  background-image: url("media/logo.png");
  background-size: contain;
}
.v3d-simple-preloader-bar {
  background: red;
  border: red;
}

button {
  border: none;
}
button:hover {
  cursor: pointer;
}
button:focus {
  outline: none !important;
}

/*===========================================================================*/
#info_btn {
  position: absolute;
  top: 70px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-size: 100% 100%;
  z-index: 1;
  background-image: url("media/instruction.svg");
}
.controller {
  position: fixed;
  top: 0;
  left: 3%;
  bottom: 0;
  width: 14%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.item {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 1em;
  position: relative;
  overflow: hidden;
}
.item > img {
  width: 80px;
}
.item > label {
  font-weight: bold;
  font-size: x-large;
}

/*======================== Button Container=================================*/


/*========================Size=================================*/
.size-container {
  width: 250px;
}
.text-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5em 1em;
  border-radius: 30px;
  background-color: #82726a;
  font-weight: bold;
  white-space: nowrap;
}
.text-btn.size {
  width: 120px;
}
.text-btn:after {
  text-align: center;
}


/*========================Color=================================*/

.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 1em;
}
.btn-container > label {
  font-weight: bold;
}
.color-btn {
  height: 50px;
  width: 50px;
  background-size: contain;
}
.color-btn.black {
  background-color: #191919;
}
.color-btn.white {
  background-color: #e5e9f2;
}
.color-btn.gray {
  background-color: rgb(112, 112, 112);
}
.color-btn.inox {
  background-color: rgb(112, 112, 112);
}
.color-btn.dekton {
  background-image: url("media/dekton.png");
}
.color-btn.concrete {
  background-image: url("media/concrete.png");
}
.color-btn.steel {
  background-image: url("media/steel.png");
}

/*========================Wall=================================*/
.item .wall-btn.toggle {
  width: 100%;
}
.item .wall-btn {
  width: calc(100% - 65px);
  transition: all 0.5s linear;
}
#wall_color {
  position: absolute;
  transition: all 0.5s linear;
  border-radius: 30px;
  padding: 3px 5px;
  right: 0;
  top: 0;
  bottom: 0;
  height: 37px;
  width: 60px;
}

.wall-btn.toggle + #wall_color{
  right: -70px;
  opacity: 0;
}

/*========================Slider=================================*/
.slider {
  -webkit-appearance: none;
  height: 20px;
  background: -webkit-linear-gradient(to right, #efb81e, #b0c2ae); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #efb81e, #b0c2ae);
  outline: none;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  border-radius: 3px;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  background: #82726a;
  cursor: pointer;
  border-radius: 3px;
}
.slider::-moz-range-thumb {
  position: relative;
  width: 20px;
  height: 20px;
  background: #82726a;
  cursor: pointer;
  border-radius: 3px;
}


@media screen and (max-width: 1200px) {
  .controller {
    min-width: 200px;
  }
  .text-btn {
    font-size: 14px;
  }
  #wall_color {
    height: 30px;
  }
}

@media screen and (max-width: 1000px) {
  .controller {
    inset: auto 0 0 0;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .btn-list .item {
    width: 33%;
    padding: 0 1em;
  }
  .btn-list #wall_color {
    right: -55%;
    top: 0;
  }
  .french .front-btn:after {
    font-size: 12px;
  }
}

@media screen and (max-width: 850px) {

  .light-btn {
    font-size: small;
  }
  .text-btn {
    font-size: 12px;
    width: 100%;
  }
  .text-btn.size {
    width: 90px;
  }
  .color-btn-container {
    font-size: x-small;
  }
  .color-btn {
    height: 40px;
    width: 40px;
    margin-bottom: 0.25em;
  }
}

@media screen and (max-width: 550px) {
  b {
    font-size: small;
  }
  .btn-list .item {
    width: 50%;
    padding: 0 0.5em;
  }
  .item {
    margin-bottom: 0.5em;
  }
  .color-btn {
    height: 40px;
    width: 40px;
    margin-bottom: 0.25em;
  }
  .size-container {
    width: 150px;
  }
}
