﻿:root{
	--overflow: overlay;
}

@supports not (overflow: overlay){
	:root{
		--overflow: auto;
	}
}

html {
	font-size: 14px;
}

@media (min-width: 600px){
	html {
		font-size: 14px;
	}
}

@media (min-width: 960px) {
	html {
		font-size: 14px;
	}
}

@media (min-width:1280px) {
	html {
		font-size: 16px;
	}
}


.no-wrap-ellipsis {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
