:root {
	--c-white: white;
	--c-white-light: #C2CFE0;
	--c-white-pink: #F5F5F5;
	--c-blue-dark: #334D6E;
	--c-green: #00693B;
	--c-text: #242424;
}


@font-face {
	font-family: Roboto;
	src: url('font/roboto-normal.ttf') format('truetype');
}

@font-face {
	font-family: Roboto;
	src: url('font/roboto-bold.ttf') format('truetype');
	font-weight: bold;
}

@font-face {
	font-family: Roboto;
	src: url('font/roboto-500.ttf') format('truetype');
	font-weight: 500;
}

body {
	padding: 0px;
	margin: 0px;
	font-family: Roboto, sans-serif;
	font-size: 14px;
	letter-spacing: 0.02em;
	color: var(--c-text);
	line-height: 1.5;
}

* {
	box-sizing: border-box;
	font-family: Roboto, sans-serif;
	letter-spacing: 0.02em;
}

input:focus {
	outline: solid 1px #0960bd;
}

textarea:focus {
	outline: solid 1px #0960bd;
}

select:focus {
	outline: solid 1px #0960bd;
}

button:hover,
select:hover {
	cursor: pointer;
}

.clear {
	clear: both;
	display: inline-block;
}

input,
button,
select {
	font-family: Roboto;
	font-size: 14px;
	letter-spacing: 0.02em;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

img,
svg {
	vertical-align: middle;
}

p {
	margin: 0px;
}


.resizer {
	cursor: col-resize;
	height: 100%;
	left: 0;
	top: 0;
	width: 4px;
	position: absolute;
	z-index: 2;
}

.resizer:hover {
	cursor: col-resize;
	background: #334d6e;
}

.card-purpose>ul {
	padding: 0px;
	padding-left: 12px;
	margin: 0px;
}

.page-intro-container {
	width: 100%;
	text-align: center;
	padding-top: 80px;
}


.page_intro_tab {
	width: calc(100% - 32px);
	overflow-wrap: break-word;
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.02em;
	color: #525252;
	margin: 16px 12px;
}

.inputDate::-webkit-calendar-picker-indicator {
	background: transparent;
	bottom: 0;
	color: transparent;
	cursor: pointer;
	height: auto;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
}

.inputDate {
	position: relative;
}

.overlay--white {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	display: flex;
	justify-content: center;
	align-items: center;
}

.overlay--black {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #00000080;
}

.overlay-window {
	background: #ffffff;
	box-shadow: 0 1px 5px #00000040;
	border-radius: 6px;
	z-index: 5;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

.column-left {
	float: left;
	width: 50%;
	padding-right: 12px;
}

.column-right {
	float: left;
	width: 50%;
	padding-left: 12px;
}

table {
	border-collapse: collapse;
}

a {
	color: #334d6e;
}

@media screen and (max-width: 600px) {
	.resizer {
		display: none;
	}
}