/***** Brand colors *********/

:root {
  --primary: #424d5b; 
  --primary-light: #b0c4cc;
  --primary-dark: #424d5b;
  --light-border: gainsboro;
  --primary-accent-dark: #1b4348;
  --primary-accent-light: #ffffd0;

  /* 1/8 page ad aspect ratio (1.29) is smallest grid unit*/
  --six-column-width: calc(100vw / 6);
  --six-column-height: calc(var(--six-column-width) / 1.29);
  --four-column-width: calc(100vw / 4);
  --four-column-height: calc(var(--four-column-width) / 1.29);
}

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  src: local('Material Symbols Outlined'),
    local('material-symbols-outlined'),
	url(/assets/fonts/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].ttf) format('truetype'),
	url(/assets/fonts/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].woff2) format('woff2'),
	url(/assets/fonts/MaterialSymbolsRounded[FILL,GRAD,opsz,wght].ttf) format('truetype'),
	url(/assets/fonts/MaterialSymbolsRounded[FILL,GRAD,opsz,wght].woff2) format('woff2'),
	url(/assets/fonts/MaterialSymbolsSharp[FILL,GRAD,opsz,wght].ttf) format('truetype'),
	url(/assets/fonts/MaterialSymbolsSharp[FILL,GRAD,opsz,wght].woff2) format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: local('Outfit'),
    local('outfit'),
 url(/assets/fonts/Outfit-VariableFont_wght.ttf) format('truetype');
}


/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/assets/fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/assets/fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/assets/fonts/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/assets/fonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/assets/fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('/assets/fonts/roboto-v30-latin-italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/assets/fonts/roboto-v30-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/assets/fonts/roboto-v30-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/assets/fonts/roboto-v30-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('/assets/fonts/roboto-v30-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/assets/fonts/roboto-v30-latin-italic.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/assets/fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/assets/fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('/assets/fonts/roboto-v30-latin-700.woff') format('woff'), /* Modern Browsers */
       url('/assets/fonts/roboto-v30-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/assets/fonts/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

/********** common app layout  **************/
*, *::before, *::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: "Outfit", san-serif;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

html,
body {
	overflow: hidden;
}

a {
	text-decoration: none;
	cursor: pointer;
}

.app-layout {
	height: 100vh;
	width: 100vw;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr;
}

app-topbar {
	z-index: 2;
}

/************** Mobile *****************/
/*@media only screen and (max-width: 767px) {
} */

/* Tablet / iPad Portrait */
/* @media only screen and (min-width: 768px) and (max-width: 991px) {

} */

/* Computer / Desktop / iPad Landscape */
/* @media only screen and (min-width: 992px) and (max-width: 1199px) {

} */

/* Large Monitor */
/* @media only screen and (min-width: 1200px) and (max-width: 1919px) {

} */

/* Widescreen Monitor */
/* @media only screen and (min-width: 1920px) {

} */

