html {overflow:hidden;margin-right:0 !important}


/* This is for tablet display */
@media (min-width: 768px){
html {overflow-y:scroll}
}

/* This is for desktop display */
@media (min-width: 992px) and (max-width: 1199px){
html {overflow-y:hidden}
}

/* This is for bigger display */
@media (min-width: 1200px){
html {overflow-y:hidden}
}

/* This is for mobile(vertical) display */
@media (max-width: 767px){
html {overflow-y:scroll}
}

/* This is for mobile(horizontal) display */
@media screen and (max-width: 400px){
html {overflow-y:scroll}
}
