/* Tablets */
@media only screen and (min-width: 640px) and (max-width: 767px) {

}

/* Portrait */
@media only screen and (min-width: 640px) and (max-width: 767px) and ((orientation: portrait) or (max-aspect-ratio: 1/1)) {

}

/* Landscape */
@media only screen and (min-height: 640px) and (max-height: 767px) and ((orientation: landscape) or (max-aspect-ratio: 1/1)) {

}