/* tablet landscape */
@media only screen and (min-device-width : 834px) and (max-device-width : 1112px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio: 2) {
.virtual-try-on-drawer {
    top: 0 !important;
    bottom: 0 !important;
}
body,
html {
  overflow-x: clip!important;
}
}
/* tablet portrait */
@media only screen and (min-device-width : 834px) and (max-device-width : 1112px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio: 2) {
.virtual-try-on-drawer {
    top: 0 !important;
    bottom: 0 !important;
}
}
/* mobile */
@media (max-width: 480px) {
.virtual-try-on-drawer {
    top: 0 !important;
    bottom: 0 !important;
}
.virtual-try-on-block .sticky {
    height: 56px;
}
}