@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*
{
	box-sizing: border-box;
	
	--sbc-header-height: 80px;	
	--sbc-header-logo-height: 32px;	
	--sbc-strip-width: 1140px;
	--eko-strip-width: 960px;
	
	--sbc-red: #e52104;
	--sbc-blue: #002c6a;
	--sbc-blue-link: #1082c7;

	--sbc-modal-caption-logo-height: 24px;
}
body
{
	font-family: "Roboto", sans-serif;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.5;
	min-height: 100vh;
	display: flex;
	flex-direction: column;	
	padding: 0;
	margin: 0;
	background-color: white;
}
h1, h2, h3, h4, h5, h6
{
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
}
ul
{
	padding-left: 1rem;
	list-style-type: square;
	list-style-image: url('/images/sbc.bullet.png');
}
ul > li
{
	padding-left: .5rem;
}
a
{
	color: var(--sbc-blue-link);
	text-decoration: none;
}
input
{
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 300;
	padding: 1rem;
	border: 1px solid #cacaca;
	border-radius: 4px;
	outline: none;
}
input:focus
{
	box-shadow: inset 0px 0px 6px rgba(0, 0, 0, .1);
}
textarea
{
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 300;
	padding: 1rem;
	border: 1px solid #cacaca;
	border-radius: 4px;
	outline: none;
	min-height: 10rem;
}
textarea:focus
{
	box-shadow: inset 0px 0px 8px rgba(0, 0, 0, .1);
}
button
{
	font-size: 12px;
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	text-transform: uppercase;
	display: inline-block;
	border: none;
	padding: .75rem 1rem;
	background-color: var(--sbc-blue);
	color: white;
	border-radius: 4px;
	outline: none;
}
button:hover
{
	box-shadow: 0px 0px 8px rgba(0, 0, 0, .3);
}
/*
**
** Section
**
*/
section
{
	padding: 1rem;
/*	padding: 4rem calc((100vw - var(--sbc-strip-width)) / 2);*/
}