@charset "UTF-8";

:root {
	--font-size: 16px;
	--line-height: 24px;
	--font: "Fira Sans Condensed", sans-serif;
	--fancybox-accent-color: #ffdc00;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font);
	font-weight: normal;
	font-size: var(--font-size);
	line-height: var(--line-height);
}

::selection{
	background: #ffdc00b5;
}

::-moz-selection {
	background: #ffdc00b5;
}

.wrapper {
	width: 1200px;
	margin: auto;
}

hr {
	margin: 0;
	height: 1px;
	border-style: none;
}

.flex-center {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.btn {
	font-size: 18px;
	text-decoration: none;
	border-radius: 10px;
	padding: 0.5rem 2.2rem 0.5rem 2.2rem;
	display: inline-block;
	white-space: nowrap;
/*
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
*/
}

.btn.outline {
	border: solid 1px #ffdd00;
}

.btn.yellow {
	border: solid 1px #ffdd00;
	background-color: #ffdd00;
	color: black;
}

.btn.large {
	padding-top: 0.8em;
	padding-bottom: 0.8em;
}

input {
	width: 284px;
	min-height: 38px;
	color: #171717;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 15px 15px 15px 14px;
	border: 1px solid #f6f7fa;
	background-color: #f6f7fa;
	border-radius: 10px;
	margin-bottom: 10px;
	width: 100%;
}

input[type=text]:focus {
	outline: none !important;
	border-color: gray;
	background-color: transparent;
}

.content {
	background: white;
}

.content.rounded {
	background: white;
	border-radius: 12px;
	padding: 30px;
}

.framed {
	border: 8px solid #ffe400;
	border-radius: 10px;
	position: relative;
	max-width: 100%;
	padding: 10px;
/*
	margin-top: 6em;
	margin-bottom: 6em;
*/
}

.framed:has(>.header) {
	margin-top: 18px;
	padding-top: 30px;
}

.framed > .header {
	font-weight: 700;
	font-size: 36px;
	line-height: 43px;
	position: absolute;
	margin: 0;
	top: -26px;
	left: 0;
	right: 0;
	margin-inline: auto;
	width: fit-content;
	background-color: white;
	padding-left: 30px;
	padding-right: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 80%;
}

.framed:has(>.footer) {
	margin-bottom: 22px;
	padding-bottom: 40px;
}

.framed > .footer {
	position: absolute;
	background-color: white;
	padding: 0 30px 0 30px;
	left: 0;
	right: 0;
	margin-inline: auto;
	width: fit-content;
	margin-top: 14px;
}
