/* ----------- iOS ----------- */

/* ----------- iPhone 4 and 4S ----------- */

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
#leaderboard-pixfuture {
transform: scale(0.45);
transform-origin: 0 0;
margin-left:-40px;
}
.bgimg {
    display: none;
}
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
#leaderboard-pixfuture {
transform: scale(0.8);
transform-origin: 0 0;
margin-left:-130px;
}
.bgimg {
    display: none;
}
}

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */

/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait){
#leaderboard-pixfuture {
transform: scale(0.5);
transform-origin: 0 0;
margin-left:-45px;
}
}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) { 
#leaderboard-pixfuture {
transform: scale(0.8);
transform-origin: 0 0;
margin-left:-95px;
}
}

/* ----------- Android ----------- */

/* Portrait */
@media all and (min-device-width: 341px) and (max-device-width: 370px) {
#leaderboard-pixfuture {
transform: scale(0.5);
transform-origin: 0 0;
margin-left:-47px;
}
.bgimg {
    display: none;
}
}