#openTruckMenuButton{
  width: 50px;
  height: 50px;
  position: fixed;
  background-color: red;
  left: 10px;
  bottom:10px;
}

#trucksMenuSection{
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  z-index: 3;
  perspective: 500px;
  -webkit-perspective:500px;
}
#trucksMenuContainer{
  display: none;
  position: fixed;

  overflow: hidden;
  font-family: sans-serif;


  width: 400px;
  height: 120px;
  left: 50%;
  top:50%;
  -webkit-transform:translate(-50%,50%) scale(1.4) rotateX(20deg);
  transform:translate(-50%,50%) scale(1.4) rotateX(20deg);


}


#trucksMenuList{
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  display: flex;


}


.trucksMenu-card{
  width: 80px;
  height: 88px;
  flex:0 0 auto;
  margin-right: 20px;
}


.trucksMenu-card-price{
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
}


.trucksMenu-card-button{
  width: 100%;
  height: 26px;
  background-color: #303030;
  color: #EAEAEA;
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 10px;
  text-transform: uppercase;

}

.trucksMenu-card-button-span{
  /* margin-left: 8px; */
  margin: auto;
}



.trucksMenu-card-resource{

  margin-bottom: 5px;
}




#truckDice{
  display: none;
  width: 75px;
  height: 75px;
  overflow: hidden;
  position: fixed;

  left: 50%;
  top:30%;

  border-radius: 10px;


  transform: translate(-50%,-50%);


}

#truckDiceInner{
  width: 100%;
  height: 600%;
  background-image: url(../img/dice/dice.png);
  background-size: contain;
  position: relative;
}



#truckCard{
  position: absolute;
  left: 50%;
  top:50%;
  -webkit-transform: translate(50%,-50%) rotateY(-25deg) scale(1.5);
  transform: translate(50%,-50%) rotateY(-25deg) scale(1.5);
  display: none;
}


#truckCancelButton{
    position: fixed;
    border-radius: 20px;
    display: none;
    transform: translate(50%, -50%);
    top: 30%;
    left: 50%;
    padding: 0 15px;
    height: 40px;
    background-color: rgba(0,0,0,0.3);
    color: white;
    text-align: center;
    pointer-events: auto;
    font-family: 'Roboto'
}


.trucksMenu-card-destroyButton{
  width: 24px;
  height: 24px;
  background-color: #f62a2a;
  flex:0 0 auto;
  margin-left: 12px;
  color: white;
  text-align: center;
  pointer-events: auto;
  border-radius: 12px;
  padding-top: 2px;
}
