@charset "UTF-8";
/* CSS Document */

body {
  margin: 0;
  padding: 0;
}

/* desktop*/
.outer-wrapper {
  position: absolute;
  width: 70vh;
  height: 100vw;
  transform: rotate(-90deg) translateX(-93vh);
  transform-origin: top left;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
}

.wrapper {
  display: flex;
  flex-direction: row;
  transform: rotate(90deg) translateY(-100%);
  transform-origin: top left;
}

.elem_img {
  height: 70vh;
  margin-right: 7px;
}

.sinistra {
  position: absolute;
  left: 3vw;
  top: 91vh;
}

.txt_item {
  font-family: FFLight;
  font-size: 3vh;
  color: black;
}

/* serve per far sparire la barra di scorrimento*/
::-webkit-scrollbar {
    display:none;
}

/* cellulare*/
.outer_wrapper_mob {
  position: absolute;
  width: 100vw;
  height: 70vh;
  margin-top: 25vh;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
}

.wrapper_mob {
  display: flex;
  flex-direction: row;
}

.elem_img_mob {
  height: 40vh;
  margin-right: 7px;
}
.sinistra_mob {
  position: absolute;
  left: 3vw;
  top: 63.8vh;
}

.txt_item_mob {
  font-family: FFLight;
  font-size: 3vh;
  color: black;
}


/* accorgimenti per tablet */
@media only screen and (max-width: 1085px) and (min-width: 601px) {

  .outer-wrapper {
    width: 60vh;
    transform: rotate(-90deg) translateX(-84vh);
  }

  .sinistra {
    top: 82vh;
  }
            
}
