/* ===================RESPONSIVE================== */

/***** Screen Bigger than 960px *****/
@media only screen and (min-width:1200px) {

}

@media only screen and (min-width:1060px) {
.width-under{visibility: hidden;display: none;}
.width-over{visibility: visible;}
}

@media only screen and (max-width: 1059px) {
.width-under{visibility: visible;}
.width-over{visibility: hidden;display: none;}
}

/***** Tablet (Smaller than 959px) *****/
@media only screen and (max-width: 959px) {
	

/***** Phone (portrait 300px) *****/
@media only screen and (max-width: 767px) {
html, body {
	overflow: auto !important;
}

	
/***** Phone (landscape 420px) *****/
@media only screen and (min-width: 480px) and (max-width: 767px) {

}


/***** Retina *****/
@media only screen and (-webkit-min-device-pixel-ratio: 2) {

}