/* 
* Fonts hosted locally.
* We want to host fonts locally to be GDPR compliant.
* Calling Google for fonts means sending user's IP to Google,
* regardless of whether they consented or not.
*/

/*  Roboto font */
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 300;
	src: url('roboto-v29-latin-300.woff2') format('woff2');
}

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('roboto-v29-latin-regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 500;
	src: url('roboto-v29-latin-500.woff2') format('woff2');
}

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('roboto-v29-latin-700.woff2') format('woff2');
}

/*  Poppins font */
@font-face {
	font-family: 'Poppins';
	src: url('Poppins-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Poppins';
	src: url('Poppins-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Poppins';
	src: url('Poppins-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

/*  Borna font */
@font-face {
	font-family: 'Borna';
	src: url('Borna-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Borna';
	src: url('Borna-Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Borna';
	src: url('Borna-SemiBold.otf') format('opentype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Borna';
	src: url('Borna-Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
}


/* 
* Legacy style rules 
* converted to CSS because we still rely on them in the codebase 
*/

/* from deleted basics.scss */
body {
	color: #44555d;
	font-family: "Roboto", sans-serif;
}

h1 {
	font-size: 25px;
}

h2 {
	font-size: 20px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 14px;
}

@media only screen and (min-width: 768px) {
	h4 {
		font-size: 16px;
	}
}

a,
a:hover,
.link,
.link:hover {
	color: #4298b5;
	cursor: pointer;
	text-decoration: none;
}

.form-control::placeholder {
	color: #727e82;
}

iframe {
	width: 100%;
}

.absolute-top-0-left-0 {
	position: absolute;
	top: 0;
	left: 0;
}

.focus--highlight-blue:focus {
	outline: none;
	box-shadow: #3fa2f7 0 0 0 2px;
	border-radius: 2px;
}

.color--grey-dark {
	color: #44555d;
}

.color--highlight-blue {
	color: #3fa2f7;
}

.icon-dark {
	fill: #44555d;
}

/* from deleted deprecated/components/toasts.scss */
.toast-list-container {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 374px;
	border-radius: 4px;
	z-index: 1051;
	padding: 12px;
	max-height: 100%;
	overflow-y: auto;
}

/* from deleted deprecated/grid.scss */
.grid-container--new-merkliste {
	grid-template-columns: 1fr;
}

/* from deleted deprecated/icons.scss */
svg {
	height: 24px;
	width: 24px;
}
