
/*
English:

CSS framework framework.averin.pro 
Version: 6.0.1
Prefix: ""
Author: Artemiy Averin (ya@averin.pro)
Company: Design studio Artemy Averin (https://averin.pro/) 

Docs & Examples: https://framework.averin.pro/ 

Русский: 

CSS фреймворк framework.averin.pro
Версия: 6.0.1
Префикс: ""
Студия Артемия Аверина (ya@averin.pro)
 
Документая и примеры: httpы://framework.averin.pro/
*/

/*** Start helpers component ***/
.no-mobile { display: none; }
.no-mobile-inline { display: none; }
.no-mobile-table { display: none; }
@media (min-width: 900px) {
	.no-mobile { display: block; }
	.no-mobile-inline { display: inline; }
	.no-mobile-table { display: table-cell; }
}

.only-mobile { display: block; }
.only-mobile-inline { display: inline; }
.only-mobile-table { display: table-cell; }
@media (min-width: 900px) {
	.only-mobile { display: none; }
	.only-mobile-inline { display: none; }
	.only-mobile-table { display: none; }
}

.is-no-mobile { display: none; }
.is-no-mobile-inline { display: none; }
.is-no-mobile-table { display: none; }
@media (min-width: 900px) {
	.is-no-mobile { display: block; }
	.is-no-mobile-inline { display: inline; }
	.is-no-mobile-table { display: table-cell; }
}

.is-only-mobile { display: block; }
.is-only-mobile-inline { display: inline; }
.is-only-mobile-table { display: table-cell; }
@media (min-width: 900px) {
	.is-only-mobile { display: none; }
	.is-only-mobile-inline { display: none; }
	.is-only-mobile-table { display: none; }
}
/*** End helpers component ***/

