/* Desktop */
@import url("desktop.css") only screen and (min-width: 1920px);
@import url("desktop.css") only screen and (max-width: 1919px) and (min-width: 1680px);
@import url("desktop.css") only screen and (max-width: 1679px) and (min-width: 1440px);
/* Laptop*/
@import url("laptop.css") only screen and (max-width: 1439px) and (min-width: 769px);
/* Tablet */
@import url("tablet.css") only screen and (max-width: 768px) and (min-width: 641px);
@import url("tablet.css") only screen and (max-width: 640px) and (min-width: 481px);
/* Phone */
@import url("phone.css") only screen and (min-width:321px) and (max-width:480px);
/* Phone-Portrait */
@import url("phone.css") only screen and (max-width:320px);