body {
  height: 100vh;
}

.message {
  transform: translateY(-100%);
  transition: transform 1.25s cubic-bezier(0.83, 0, 0.17, 1);
}
.message.show {
  transform: translateY(0);
}

#viewport {
  height: 100%;
  position: relative;
}

.scroll-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product {
  display: flex;
  width: 100%;
  height: 70vh;
  margin: 5.93em 0 0 0;
}
.product .img-container {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 0 5.625em 0 0;
  overflow-y: scroll;
  position: relative;
}
.product .img-container p {
  position: absolute;
  top: 50%;
  left: 1%;
}
.product .img-container .drag {
  visibility: hidden;
}
.product .img-container .drag svg {
  width: 1em;
}
.product img {
  width: 100%;
}
.product .description {
  width: 50%;
}
.product .description .section1 {
  margin: 0 0 11.43em 0;
}
.product .description .section1 :nth-child(1) {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.product .description .section1 :nth-child(1) :nth-child(2) {
  margin: 0 0 0 0.3em;
}
.product .description .title-type {
  margin: 0 0 1em 0;
}
.product .description .process {
  margin: 0 0 3.461em 0;
}
.product .description .color {
  position: relative;
}
.product .description .color img {
  margin: 0.19em 0 0 0;
  width: 10em;
  border: white 1px solid;
  background-color: white;
  position: absolute;
  z-index: -1;
}
.product .description .color .img-input {
  margin: 0.5em 0 0 0;
  position: relative;
  width: 10em;
}
.product .description .size {
  position: relative;
  margin: 1.68em 0 0 0;
}
.product .description .size .input-sizes {
  margin: 0.5em 0 0 0;
}
.product .description .size .sizes {
  position: absolute;
  z-index: -1;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: solid white 1px;
  height: 2em;
  width: 13em;
  margin: 0.15em 0 0 0;
}
.product .description .price {
  margin: 1.68em 0 0 0;
}
.product .description .button-add-to-cart {
  margin: 1.68em 0 0 0;
  padding: 0.56em 0.75em 0.56em 0.75em;
  background-color: white;
  color: black;
  font: 0.93em "Grotesk Medium";
  border: none;
  cursor: pointer;
  width: 9.375em;
}

footer {
  margin: 0 0 0 0;
  height: auto;
}

:root {
  --track-1:auto;
  --track-2:12.9em;
  --thumb-1:3em;
  --thumb-2:3.2em;
  --thumb-3:2.2em;
}

/* Desktop, large size */
/* Desktop, medium size */
/* Desktop, small size */
/* Tablet portrait/landscape */
@media only screen and (max-width: 1024px) {
  body, .scroll-container, #viewport {
    min-height: calc(100vh - var(--body1));
  }

  footer {
    padding-bottom: calc(var(--body1) + 0.23em);
  }

  .product {
    margin: 2.5em 0 3em 0;
    flex-direction: column;
    height: auto;
  }
  .product .img-container {
    overflow-y: hidden;
    cursor: -webkit-grab;
    cursor: grab;
    flex-direction: row;
    width: 100%;
    height: auto;
    padding: 0 0 0 0;
  }
  .product .img-container img {
    width: 100%;
  }
  .product .img-container p {
    position: absolute;
    top: 50%;
    left: 85%;
  }
  .product .img-container .drag {
    visibility: visible;
  }
  .product .img-container .scroll {
    visibility: hidden;
  }
  .product .description {
    width: 100%;
  }
  .product .description .title-type {
    margin: 0 0 2em 0;
  }
  .product .description .section1 {
    margin: 1em 0 4em 0;
  }
  .product .description .section2 {
    display: flex;
    justify-content: space-between;
  }
  .product .description .section2 .price_button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
  }
  .product .description .section2 .price_button .price {
    margin-top: 1.1em;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }
}
/* Tablet portrait */
/* Tablet landscape */
/* Small tablet */
@media only screen and (max-width: 767px) {
  :root {
    --track-1: 8em;
    --track-2: 10em;
    --thumb-1: 3em;
    --thumb-2: 3.2em;
    --thumb-3: 3em;
  }

  .product {
    margin: 1.75em 0 3em 0;
  }
}
/* Phone */
/* Phone landscape */
/* Phone portrait */
/* Small height */
/* Small phone */
@media only screen and (max-width: 400px) {
  .product .description .section2 {
    flex-direction: column;
  }
  .product .description .section2 .price_button {
    align-items: flex-start;
  }
  .product .description .section2 .price_button .price {
    margin-top: 1.75em;
  }
}
/* Extra Small phone */
::-webkit-scrollbar {
  display: none;
}

.color [type=range] {
  cursor: pointer;
  -webkit-appearance: none;
  background: transparent;
  margin: 0.95rem 0;
  width: 8.1rem;
}
.color [type=range]::-moz-focus-outer {
  border: 0;
}
.color [type=range]:focus {
  outline: 0;
}
.color [type=range]:focus::-webkit-slider-runnable-track {
  background: white;
}
.color [type=range]:focus::-ms-fill-lower {
  background: #ffffff;
}
.color [type=range]:focus::-ms-fill-upper {
  background: white;
}
.color [type=range]::-webkit-slider-runnable-track {
  height: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 8.1rem;
  background: #ffffff;
  border: 0 solid #cfd8dc00;
  border-radius: 0;
}
.color [type=range]::-webkit-slider-thumb {
  background: #607d8b00;
  border: 4px solid #ffffff;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  height: 1.9rem;
  width: 3rem;
  -webkit-appearance: none;
  margin-top: -0.95rem;
}
.color [type=range]::-moz-range-track {
  height: 0;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 8.1rem;
  background: #ffffff;
  border: 0 solid #cfd8dc00;
  border-radius: 0;
  height: 0;
}
.color [type=range]::-moz-range-thumb {
  background: #607d8b00;
  border: 4px solid #ffffff;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  height: 1.9rem;
  width: 3rem;
}
.color [type=range]::-ms-track {
  height: 0;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 8.1rem;
  background: transparent;
  border-color: transparent;
  border-width: 0.95rem 0;
  color: transparent;
}
.color [type=range]::-ms-fill-lower {
  background: white;
  border: 0 solid #cfd8dc00;
  border-radius: 0;
}
.color [type=range]::-ms-fill-upper {
  background: #ffffff;
  border: 0 solid #cfd8dc00;
  border-radius: 0;
}
.color [type=range]::-ms-thumb {
  background: #607d8b00;
  border: 4px solid #ffffff;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  height: 1.9rem;
  width: 3rem;
  margin-top: 0;
}
.color [type=range]:disabled::-webkit-slider-thumb, .color [type=range]:disabled::-moz-range-thumb, .color [type=range]:disabled::-ms-thumb, .color [type=range]:disabled::-webkit-slider-runnable-track, .color [type=range]:disabled::-ms-fill-lower, .color [type=range]:disabled::-ms-fill-upper {
  cursor: not-allowed;
}

.size [type=range] {
  -webkit-appearance: none;
  background: transparent;
  margin: 0.95rem 0;
  width: 10.7rem;
}
.size [type=range]::-moz-focus-outer {
  border: 0;
}
.size [type=range]:focus {
  outline: 0;
}
.size [type=range]:focus::-webkit-slider-runnable-track {
  background: white;
}
.size [type=range]:focus::-ms-fill-lower {
  background: #ffffff;
}
.size [type=range]:focus::-ms-fill-upper {
  background: white;
}
.size [type=range]::-webkit-slider-runnable-track {
  height: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 8.1rem;
  background: #ffffff;
  border: 0 solid #cfd8dc00;
  border-radius: 0;
}
.size [type=range]::-webkit-slider-thumb {
  background: #607d8b00;
  border: 4px solid #ffffff;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  height: 1.9rem;
  width: 2.9rem;
  -webkit-appearance: none;
  margin-top: -0.95rem;
}
.size [type=range]::-moz-range-track {
  height: 0;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 8.1rem;
  background: #ffffff;
  border: 0 solid #cfd8dc00;
  border-radius: 0;
  height: 0;
}
.size [type=range]::-moz-range-thumb {
  background: #607d8b00;
  border: 4px solid #ffffff;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  height: 1.9rem;
  width: 2.9rem;
}
.size [type=range]::-ms-track {
  height: 0;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 8.1rem;
  background: transparent;
  border-color: transparent;
  border-width: 0.95rem 0;
  color: transparent;
}
.size [type=range]::-ms-fill-lower {
  background: white;
  border: 0 solid #cfd8dc00;
  border-radius: 0;
}
.size [type=range]::-ms-fill-upper {
  background: #ffffff;
  border: 0 solid #cfd8dc00;
  border-radius: 0;
}
.size [type=range]::-ms-thumb {
  background: #607d8b00;
  border: 4px solid #ffffff;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  height: 1.9rem;
  width: 2.9rem;
  margin-top: 0;
}
.size [type=range]:disabled::-webkit-slider-thumb, .size [type=range]:disabled::-moz-range-thumb, .size [type=range]:disabled::-ms-thumb, .size [type=range]:disabled::-webkit-slider-runnable-track, .size [type=range]:disabled::-ms-fill-lower, .size [type=range]:disabled::-ms-fill-upper {
  cursor: not-allowed;
}
