/* global defaults */
:root {
	--primaryColor: #487fee;
	--redColor: #ff3b30;
	--textColor: #343d4c;
	--subTextColor: #6c7682;
	--CblueGray: #c6d3e2;
	--CblueGray02: #767676;
	--headerHeight: 56px;
}

.pc-only {
	display: block !important;
}

.m-only {
	display: none !important;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
span,
th,
td,
legend {
	margin: 0;
	padding: 0;
}

fieldset,
img,
abbr,
acronym {
	border: none;
}

fieldset {
	display: block;
}

ol,
ul {
	list-style: none outside;
}

h1,
h2,
h3,
h4,
h5,
h6,
address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-size: 100%;
}

p {
	margin-top: 0;
	margin-bottom: 0;
}

.accessibility,
hr,
legend,
caption,
hr {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	visibility: hidden;
	text-indent: -1000em;
}

/* s: All Style */
a:link,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="submit"],
input[type="password"],
input[type="image"],
input[type="button"],
textarea,
select {
	-webkit-border-radius: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
}

input[type="text"],
input[type="tel"],
input[type="phone"],
input[type="number"],
input[type="search"],
input[type="password"] {
	line-height: 48px;
	border: none;
	border-radius: 0;
	padding: 0;
	outline: none;
	font-size: 20px;
	color: #222;
	min-width: 312px;
	width: 100%;
}

.input-area {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: 100%;
}

.input-area::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #e4e4e4;
	transition: all 0.25s ease;
	pointer-events: none;
}

.input-area.has-value::after {
	background-color: #c3c3c3;
}

.input-area.focused::after {
	background-color: var(--primaryColor);
	height: 2px;
}

.input-area.error::after {
	background-color: #de3412;
	height: 2px;
}

.input-area.readonly::after {
	background-color: #e4e4e4 !important;
	height: 1px !important;
}

.input-area.has-value.readonly::after {
	background-color: #e4e4e4 !important;
	height: 1px !important;
}

.input-area.focused.readonly::after {
	background-color: #e4e4e4 !important;
	height: 1px !important;
}

.textarea-group {
}

.textarea-group .cnt {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 8px;
}

.textarea-group .cnt span.word {
	font-size: 14px;
	font-weight: 600;
	color: #222;
}

.textarea-group .cnt span.total {
	font-size: 14px;
	font-weight: 500;
	color: #969696;
}

.textarea-group .cnt span.total:before {
	content: "/";
	margin: 0 3px;
	display: inline-block;
}

.textarea {
	overflow: hidden;
	display: flex;
	position: relative;
}

.textarea:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #e4e4e4;
	transition: all 0.25s ease;
	pointer-events: none;
}

.textarea.has-value::after {
	background-color: #c3c3c3;
}

.textarea.focused::after {
	background-color: var(--primaryColor);
	height: 2px;
}

.textarea.error::after {
	background-color: #de3412;
	height: 2px;
}

.textarea.readonly::after {
	background-color: #e4e4e4 !important;
	height: 1px !important;
}

.textarea textarea {
	border: none;
	resize: none;
	font-size: 19px;
	outline: none;
	width: 100%;
	min-height: 48px;
	overflow: hidden;
	padding: 10px 0;
	line-height: 28px;
}

textarea::-webkit-input-placeholder {
	font-size: 20px;
	color: #d1d1d1;
	transform: translateY(0px);
}

textarea::-moz-placeholder {
	font-size: 20px;
	color: #d1d1d1;
	transform: translateY(0px);
}

textarea:-ms-input-placeholder {
	font-size: 20px;
	color: #d1d1d1;
	transform: translateY(0px);
}

textarea::-ms-input-placeholder {
	font-size: 20px;
	color: #d1d1d1;
	transform: translateY(0px);
}

textarea::placeholder {
	font-size: 20px;
	color: #d1d1d1;
	transform: translateY(0px);
}

input[type="text"]:disabled,
input[type="tel"]:disabled,
input[type="phone"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
input[type="password"]:disabled {
	background-color: transparent;
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:-moz-read-only,
input[type="tel"]:-moz-read-only,
input[type="phone"]:-moz-read-only,
input[type="number"]:-moz-read-only,
input[type="search"]:-moz-read-only,
input[type="password"]:-moz-read-only,
textarea:-moz-read-only {
}

input[type="text"]:read-only,
input[type="tel"]:read-only,
input[type="phone"]:read-only,
input[type="number"]:read-only,
input[type="search"]:read-only,
input[type="password"]:read-only,
textarea:read-only {
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="phone"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="phone"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="phone"]::placeholder,
input[type="number"]::placeholder,
input[type="search"]::placeholder,
input[type="password"]::placeholder {
	color: #d1d1d1;
	font-weight: 400;
	font-size: 20px;
}

select::-ms-expand {
	display: none;
}

.input-wrap {
	display: flex;
	flex-direction: column;
}

.input-wrap label {
	font-size: 14px;
	color: #969696;
	font-weight: 500;
}

.input-area input {
	padding-right: 25px;
}

.input-area .del {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: url("../images/common/input_del.svg") no-repeat center;
	display: none;
}

.input-area .find {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #222;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
	background-color: #eeeff3;
	padding: 0 16px;
	line-height: 32px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.input-area .check {
	font-size: 14px;
	font-weight: 600;
	color: #222;
	display: inline-flex;
	align-items: center;
	padding: 0 16px;
	border-radius: 4px;
	background-color: #eeeff3;
	line-height: 32px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.input-area.find-input {
}

.input-area.find-input input {
	padding-right: 85px;
}

.input-area.find-input .del {
	right: 60px;
}

.error-caution {
	color: #bd2c0f;
	font-size: 13px;
	margin-top: 8px;
	display: flex;
	align-items: center;
}

.error-caution:before {
	content: "";
	background: url("../images/common/alert_message_r.svg") no-repeat center/cover;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 4px;
	min-width: 16px;
}

.error-caution-b {
	color: #666666;
	font-size: 14px;
	margin-top: 8px;
	display: flex;
}

.error-caution-b:before {
	content: "";
	background: url("../images/common/alert_message_b.svg") no-repeat center/cover;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 4px;
	min-width: 16px;
	position: relative;
	top: 2px;
}

.wd100p {
	width: 100% !important;
}

img,
video,
audio,
object,
embed,
iframe {
	max-width: 100%;
}

/*:lang(zh), zh{font-family: 'Kanit', sans-serif;}*/
body,
th,
td,
input,
select,
button,
textarea {
	font-style: normal;
	font-weight: normal;
	font-family: "Pretendard", sans-serif !important;
	color: #222;
	line-height: 1.4;
	letter-spacing: -0.02em;
}

/*'Trirong', */
table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

table {
}

table.border-none {
	border-top: none;
}

table thead tr th {
	font-size: 14px;
	border-bottom: 1px solid #d6dbe4;
	padding: 15px 10px;
	background-color: #f4f4f4;
	border-top: 1px solid #868b93;
}

table thead tr th + th {
	border-left: 1px solid #d6dbe4;
}

table thead tr th.tac {
	text-align: center;
}

table thead tr th.tal {
	text-align: left;
}

table thead tr th.tar {
	text-align: right;
}

table tbody tr {
	border-bottom: 1px solid #d6dbe4;
}

table tbody tr th {
	padding: 15px 10px;
	text-align: center;
	color: #000;
	border-right: 1px solid #d6dbe4;
	background-color: #f4f4f4;
	font-size: 12px;
}

table tbody tr th p.t1 {
}

table tbody tr th p.t2 {
}

table tbody tr td {
	padding: 15px 10px;
	font-size: 12px;
	color: #000;
	border-right: 1px solid #d6dbe4;
}

table tbody tr td.nth-2 {
	text-align: center;
	background-color: rgba(244, 244, 244, 0.5);
	font-size: 16px;
}

table tbody tr td:last-child {
	border-right: none;
}

figure {
	margin: 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
}

br {
	font-family: "Dotum", sans-serif !important;
}

div.select-box-default-st {
	position: relative;
	display: inline-block;
	color: #494949;
	padding: 0px;
	margin: 0px;
	white-space: normal;
}

div.select-box-default-st span.selectText {
	position: relative;
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #222222;
	line-height: 46px;
	min-width: 145px;
	height: 46px;
	padding: 0px;
	margin: 0 !important;
	overflow: hidden;
	cursor: pointer;
	border-radius: 0.5rem;
	text-align: left;
	background-color: #fff;
}

div.select-box-default-st span.selectText.disabled {
	background-color: #f2f2f2;
}

div.select-box-default-st span.selectText:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%) rotate(0);
	width: 24px;
	height: 24px;
	overflow: hidden;
	background: url("../images/common/more_icon.svg") no-repeat center/cover;
	transition: all 0.25s 0s ease-in-out;
}

div.select-box-default-st.active span.selectText {
	background-position: right 3px top 3px;
	outline: none;
}

div.select-box-default-st.active span.selectText:before {
	transform: translate(0, -50%) rotate(180deg);
}

div.select-box-default-st > .select-wrap {
	display: none;
	position: absolute;
	top: calc(100% + 0.25rem);
	left: 0px;
	min-width: 100%;
	/*width:100%;*/
	z-index: 2;
	width: 100%;
	background-color: #fff;
	border: 1px solid #dfdfdf;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.035);
	border-radius: 0.75rem;
}

div.select-box-default-st > .select-wrap.up {
	top: auto;
	bottom: calc(100% - 1px);
	padding-top: 0;
	padding-bottom: 3px;
}

div.select-box-default-st ul.select-box-option {
	overflow: hidden;
	width: calc(100% - 5px);
	height: auto;
	max-height: 185px;
	overflow-y: auto;
	margin: 8px 0;
}

div.select-box-default-st ul.select-box-option.col-4 {
	overflow-y: auto;
	height: 10rem;
}

div.select-box-default-st ul.select-box-option li {
	display: inline-block;
	font-size: 12px;
	width: 100%;
	height: auto;
	border-bottom: 0;
	padding: 10px;
	cursor: pointer;
	/* white-space:nowrap; */
	text-align: left;
	border-radius: 0.5rem;
}

div.select-box-default-st ul.select-box-option li:hover {
	color: var(--primaryColor);
}

div.select-box-default-st ul.select-box-option li.optgroup {
}

div.select-box-default-st ul.select-box-option li:hover.optgroup {
	color: var(--primaryColor);
}

div.select-box-default-st ul.select-box-option li.selected {
	color: var(--primaryColor);
}

div.select-box-default-st ul.select-box-option::-webkit-scrollbar {
	width: 4px;
	background-color: transparent;
	border-radius: 10px;
	padding: 0px;
}

div.select-box-default-st ul.select-box-option::-webkit-scrollbar-thumb {
	display: block;
	width: 4px;
	/* 스크롤바의 길이 */
	background-color: #dfdfdf;
	/* 스크롤바의 색상 */
	border-radius: 10px;
}

.table {
	position: relative;
	padding-bottom: 32px;
}

.table.borderbottom {
	border-bottom: 1px solid #e4e4e4;
}

.table.line {
	padding-top: 47px;
}

.table.line:after {
	content: "";
	background-color: #f1f1f1;
	width: 100vw;
	max-width: 500px;
	height: 15px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
}

.table .table-head {
	color: var(--textColor);
	font-size: 22px;
	font-weight: 600;
	padding: 9px 0;
	border-bottom: 1px solid #000;
}

.table .table-head .pdf-down {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #222;
}

.table .table-head .pdf-down:before {
	content: "";
	background: url("../images/common/down_icon.svg") no-repeat center/cover;
	width: 20px;
	height: 20px;
	display: inline-block;
	margin-right: 4px;
}

.table .table-head .sign {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #222;
	font-weight: 600;
	border-radius: 4px;
	background-color: #eeeff3;
	padding: 0 16px;
	line-height: 32px;
}

.table .table-body {
	padding-top: 8px;
}

.table .table-body dl {
	padding: 8px 0;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.table .table-body dl.column {
	flex-direction: column;
}

.table .table-body dl.column dd {
	margin-top: 8px;
}

.table .table-body dl.column dd > div {
	align-items: flex-start;
}

.table .table-body dl.column dd > div p {
	word-break: break-all;
}

.table .table-body dl.column a.more {
	position: absolute;
	right: 0;
	top: 8px;
}

.table .table-body dl dt {
	font-weight: 500;
	color: #666;
	min-width: 35%;
}

.table .table-body dl dd {
	max-width: 65%;
	padding-left: 10px;
	word-break: break-all;
	width: 100%;
}

.table .table-body dl dd > div {
	color: #222;
	font-weight: 500;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	text-align: right;
}

.table .table-body dl dd a {
	word-break: break-all;
	color: #222;
	font-weight: 500;
}

.table .table-body dl dd a.more {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin-left: 4px;
	position: relative;
	top: -2px;
}

.table .table-body dl dd a.more::before {
	content: "";
	background: url("../images/common/b_arrow_icon.svg") no-repeat center/cover;
	width: 24px;
	height: 24px;
	display: inline-block;
}

.table .table-body dl dd a.underline {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.table .table-body dl dd .pending {
	color: #d1d1d1;
}

.table .table-body dl dd p.email {
	display: flex;
	align-items: flex-start;
	word-break: break-all;
	padding-left: 24px;
}

.table .table-body dl dd p.email::before {
	content: "";
	background: url("../images/common/email_icon.svg") no-repeat center left;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 4px;
	min-width: 24px;
}

.table .table-body dl dd p.email.apple:before {
	background-position: center left;
}

.table .table-body dl dd p.email.google:before {
	background-position: center left -24px;
}

.table .table-body dl dd p.email.naver:before {
	background-position: center left -48px;
}

.table .table-body dl dd p.email.kakao:before {
	background-position: center left -72px;
}

.table .table-body dl dd a.confirm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #eeeff3;
	border-radius: 6px;
	line-height: 30px;
	padding: 0 16px;
	color: #444;
	font-size: 14px;
	font-weight: 600;
}

.table .table-body .company-list {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 12px;
}

.table .table-body .company-list .none {
	color: #767676;
	font-weight: 500;
	padding-top: 16px;
}

.table .table-body .company-list .item {
	position: relative;
}

.table .table-body .company-list .item.active > div {
	border: 2px solid var(--primaryColor);
}

.table .table-body .company-list .item > div {
	position: relative;
	padding: 20px 20px 48px;
	border-radius: 16px;
	border: 1px solid #c3c3c3;
}

.table .table-body .company-list .item > div .item-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.table .table-body .company-list .item > div .item-head > p {
	font-size: 17px;
	font-weight: 500;
	color: #222;
}

.table .table-body .company-list .item > div .item-head > .etc {
	position: relative;
}

.table .table-body .company-list .item > div .item-head > .etc > a {
	display: flex;
	width: 24px;
	height: 24px;
}

.table .table-body .company-list .item > div .item-head > .etc > a::before {
	content: "";
	background: url("../images/common/etc_icon.svg") no-repeat center/cover;
	width: 24px;
	height: 24px;
	display: inline-block;
}

.table .table-body .company-list .item > div .item-head > .etc > .etc-list {
	position: absolute;
	right: calc(0% - 12px);
	top: calc(100% + 12px);
	box-shadow: 0 2px 4px 3px rgba(55, 56, 60, 0.08);
	z-index: 2;
	background-color: #fff;
	border: 1px solid #dbdcdf;
	border-radius: 8px;
	display: none;
}

.table .table-body .company-list .item > div .item-head > .etc > .etc-list ul {
}

.table .table-body .company-list .item > div .item-head > .etc > .etc-list ul {
	padding: 8px 0;
}

.table .table-body .company-list .item > div .item-head > .etc > .etc-list ul li a {
	display: flex;
	align-items: center;
	color: #5a5c63;
	font-weight: 500;
	font-size: 15px;
	padding: 6px 16px;
}

.table .table-body .company-list .item > div .item-head > .etc > .etc-list ul li a:hover {
	background-color: #f4f7fe;
}

.table .table-body .company-list .item > div .item-head > .etc > .etc-list ul li a.modify::before {
	content: "";
	background: url("../images/common/modify_icon.svg") no-repeat center/cover;
	width: 20px;
	height: 20px;
	display: inline-block;
	margin-right: 8px;
}

.table .table-body .company-list .item > div .item-head > .etc > .etc-list ul li a.del::before {
	content: "";
	background: url("../images/common/del_icon.svg") no-repeat center/cover;
	width: 20px;
	height: 20px;
	display: inline-block;
	margin-right: 8px;
}

.table .table-body .company-list .item .more {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 12px;
	display: flex;
}

.table .table-body .company-list .item .more a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: url("../images/common/more_icon.svg") no-repeat center/cover;
	transition: 0.25s;
}

.table .table-body .company-list .item.active .more a {
	transform: rotate(180deg);
}

.table .flip {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
}

.table .flip > a {
	font-size: 15px;
	color: #767676;
	display: flex;
	align-items: center;
}

.table .flip > a:after {
	content: "";
	background: url("../images/common/fold_icon.png") no-repeat center/cover;
	display: inline-block;
	width: 24px;
	height: 24px;
	transition: 0.25s;
}

.table .flip > a.active:after {
	transform: rotate(180deg);
}

.table .withdraw {
	display: flex;
	justify-content: flex-end;
}

.table .withdraw > a {
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 500;
	color: #222;
}

.status-text {
	padding: 12px 16px;
	background-color: #f2f2f2;
	border-radius: 12px;
	width: 100%;
	line-height: 1.4;
}

/* library */
.tal {
	text-align: left !important;
}

.tac {
	text-align: center !important;
}

.tar {
	text-align: right !important;
}

.taj {
	text-align: justify !important;
}

.vam {
	vertical-align: middle !important;
}

.vat {
	vertical-align: top !important;
}

.vab {
	vertical-align: bottom !important;
}

.float_l {
	float: left;
}

.float_r {
	float: right;
}

.clear_b {
	clear: both;
	float: none;
}

.clear_r {
	clear: right;
	float: none;
}

.clear_l {
	clear: left;
	float: none;
}

.normal {
	font-weight: normal;
}

.block {
	display: block !important;
}

.block_i {
	display: inline-block !important;
}

.block_n {
	display: none !important;
}

.bold {
	font-weight: bold;
}

.deco_l {
	text-decoration: line-through;
}

.deco_u {
	text-decoration: underline;
}

.displaynone {
	display: none !important;
}

.displayflex {
	display: flex;
	align-items: center;
}

.displayflex-wrap {
	flex-wrap: wrap;
}

.displayflex-spw {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.displayflex-column {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.displayflex-align-start {
	align-items: flex-start !important;
}

.displayflex-align-end {
	align-items: flex-end !important;
}

.displayflex-flex-start {
	justify-content: flex-start !important;
}

.displayflex-flex-end {
	justify-content: flex-end !important;
}

.displayflex-column.align-end {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
}

.gap-1 {
	gap: 1px;
}

.gap-2 {
	gap: 2px;
}

.gap-3 {
	gap: 3px;
}

.gap-4 {
	gap: 4px;
}

.gap-5 {
	gap: 5px;
}

.gap-6 {
	gap: 6px;
}

.gap-7 {
	gap: 7px;
}

.gap-8 {
	gap: 8px;
}

.gap-9 {
	gap: 9px;
}

.gap-10 {
	gap: 10px;
}

.position-relative {
	position: relative !important;
}

.sticky {
	position: -webkit-sticky !important;
	position: sticky !important;
}

.chk {
	display: flex;
	align-items: center;
}

.chk-area {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 24px;
}

.chkbox .view {
	display: inline-flex;
	color: #888888;
	font-size: 14px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.label {
	color: #969696;
	font-size: 14px;
	font-weight: 500;
}

.cPrimary {
	color: var(--primaryColor);
}

.cGray {
	color: var(--subTextColor);
}

.cGray02 {
	color: var(--CblueGray02);
}

.cRed {
	color: var(--redColor);
}

.w100p {
	width: 100% !important;
}

.h100p {
	height: 100% !important;
}

.f11 {
	font-size: 11px !important;
}

.f12 {
	font-size: 12px !important;
}

.f13 {
	font-size: 13px !important;
}

.f14 {
	font-size: 14px !important;
}

.f15 {
	font-size: 15px !important;
}

.f16 {
	font-size: 16px !important;
}

.f17 {
	font-size: 17px !important;
}

.f18 {
	font-size: 18px !important;
}

.f19 {
	font-size: 19px !important;
}

.f20 {
	font-size: 20px !important;
}

.f21 {
	font-size: 21px !important;
}

.f22 {
	font-size: 22px !important;
}

.f23 {
	font-size: 23px !important;
}

.f24 {
	font-size: 24px !important;
}

.f25 {
	font-size: 25px !important;
}

.f26 {
	font-size: 26px !important;
}

.fw100 {
	font-weight: 100 !important;
}

.fw200 {
	font-weight: 200 !important;
}

.fw300 {
	font-weight: 300 !important;
}

.fw400 {
	font-weight: 400 !important;
}

.fw500 {
	font-weight: 500 !important;
}

.fw600 {
	font-weight: 600 !important;
}

.fw700 {
	font-weight: 700 !important;
}

.fw800 {
	font-weight: 800 !important;
}

.fw900 {
	font-weight: 900 !important;
}

.modal-backdrop {
	width: 100%;
	height: 100%;
}

/* div.disabled,
	p.disabled,
	span.disabled,
	ul.disabled,
	li.disabled,
	input.disabled,
	textarea.disabled {border-color:#E3E6E8 !important;background-color:#F5F5F5 !important;opacity:0.45 !important;} */
.break-all {
	word-break: break-all !important;
}

*,
:before,
:after {
	box-sizing: border-box;
	word-break: keep-all;
}

/* :focus {outline-width:1px;border:0;outline-style:solid;outline-offset:0px;} */

/* page style */

html,
body {
	width: 100%;
	margin: 0;
	padding: 0;
	min-width: 350px;
	max-width: 100%;
	min-height: 100%;
	height: 100%;
}

body.layerPopScrFixed {
	overflow-y: hidden;
}

body.layerPopScrFixed .w-main-content main {
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}

body {
	position: relative;
}

.ml5 {
	margin-left: 0.3125rem !important;
}

.ml10 {
	margin-left: 0.625rem !important;
}

.ml15 {
	margin-left: 0.9375rem !important;
}

.ml20 {
	margin-left: 1.25rem !important;
}

.ml40 {
	margin-left: 2.5rem !important;
}

.ml60 {
	margin-left: 3.75rem !important;
}

.mr0 {
	margin-right: 0 !important;
}

.mr5 {
	margin-right: 0.3125rem !important;
}

.mr10 {
	margin-right: 0.625rem !important;
}

.mr15 {
	margin-right: 0.9375rem !important;
}

.mr20 {
	margin-right: 1.25rem !important;
}

.mr60 {
	margin-right: 3.75rem !important;
}

.mt0 {
	margin-top: 0 !important;
}

.mt5 {
	margin-top: 0.3125rem !important;
}

.mt8 {
	margin-top: 0.5rem !important;
}

.mt10 {
	margin-top: 0.625rem !important;
}

.mt15 {
	margin-top: 0.9375rem !important;
}

.mt20 {
	margin-top: 1.25rem !important;
}

.mt25 {
	margin-top: 1.5625rem !important;
}

.mt30 {
	margin-top: 1.875rem !important;
}

.mt40 {
	margin-top: 2.5rem !important;
}

.mt60 {
	margin-top: 3.75rem !important;
}

.mt80 {
	margin-top: 5rem !important;
}

.mt100 {
	margin-top: 6.25rem !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb5 {
	margin-bottom: 0.3125rem !important;
}

.mb10 {
	margin-bottom: 0.625rem !important;
}

.mb20 {
	margin-bottom: 1.25rem !important;
}

.mb30 {
	margin-bottom: 1.875rem !important;
}

.mb40 {
	margin-bottom: 2.5rem !important;
}

.pl0 {
	padding-left: 0 !important;
}

.pl5 {
	padding-left: 0.3125rem !important;
}

.pl10 {
	padding-left: 0.625rem !important;
}

.pl15 {
	padding-left: 0.9375rem !important;
}

.pl20 {
	padding-left: 1.25rem !important;
}

.pl60 {
	padding-left: 3.75rem !important;
}

.pr0 {
	padding-right: 0 !important;
}

.pr5 {
	padding-right: 0.3125rem !important;
}

.pr10 {
	padding-right: 0.625rem !important;
}

.pr15 {
	padding-right: 0.9375rem !important;
}

.pr20 {
	padding-right: 1.25rem !important;
}

.pr60 {
	padding-right: 3.75rem !important;
}

.pt0 {
	padding-top: 0 !important;
}

.pt5 {
	padding-top: 0.3125rem !important;
}

.pt10 {
	padding-top: 0.625rem !important;
}

.pt20 {
	padding-top: 1.25rem !important;
}

.pt30 {
	padding-top: 1.875rem !important;
}

.pt40 {
	padding-top: 2.5rem !important;
}

.pt100 {
	padding-top: 6.25rem !important;
}

.pdcenter {
	padding: 13vh 0 !important;
}

.pb0 {
	padding-bottom: 0 !important;
}

.pb5 {
	padding-bottom: 0.3125rem !important;
}

.pb10 {
	padding-bottom: 0.625rem !important;
}

.pb20 {
	padding-bottom: 1.25rem !important;
}

.pb30 {
	padding-bottom: 1.875rem !important;
}

.pb40 {
	padding-bottom: 2.5rem !important;
}

.pb50 {
	padding-bottom: 3.125rem !important;
}

.pb100 {
	padding-bottom: 6.25rem !important;
}

/* Link Style */
a:link,
a:visited {
	text-decoration: none;
	color: #121212;
}

a:hover {
	text-decoration: none;
	color: #121212;
}

.fade-up {
	opacity: 0;
	transform: translateY(40px);
	-webkit-animation: fadeUp 0.6s ease forwards;
	animation: fadeUp 0.6s ease forwards;
}

.fade-left {
	opacity: 0;
	transform: translateX(-40px);
	-webkit-animation: fadeLeft 0.6s ease forwards;
	animation: fadeLeft 0.6s ease forwards;
}

.fade-right {
	opacity: 0;
	transform: translateX(40px);
	-webkit-animation: fadeRight 0.6s ease forwards;
	animation: fadeRight 0.6s ease forwards;
}

.delay-1 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.delay-2 {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.delay-3 {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.delay-4 {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.delay-5 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.delay-6 {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

.delay-7 {
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}

.delay-8 {
	-webkit-animation-delay: 1.6s;
	animation-delay: 1.6s;
}

.delay-9 {
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}

.delay-10 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.delay-11 {
	-webkit-animation-delay: 2.2s;
	animation-delay: 2.2s;
}

@-webkit-keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes fadeLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@-webkit-keyframes fadeRight {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeRight {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@-webkit-keyframes fadeDown {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeDown {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

input[type="checkbox"] {
	display: none;
}

input[type="checkbox"].chkbox + label {
	font-size: 14px;
	color: #222222;
	display: inline-flex;
	align-items: center;
	margin: 0;
	font-weight: 500;
}

input[type="checkbox"].chkbox + label:before {
	content: "";
	width: 20px;
	min-width: 20px;
	height: 20px;
	border: 1px solid #58616a;
	border-radius: 4px;
	overflow: hidden;
	margin-right: 8px;
}

input[type="checkbox"].chkbox:checked + label:before {
	background: var(--primaryColor) url("../images/common/input_chk.svg") no-repeat center top/20px 40px;
	width: 20px;
	height: 20px;
	border: 1px solid var(--primaryColor);
}

input[type="checkbox"].chkbox:disabled + label:before {
	border: 1px solid #b1b8be;
	background-color: #cdd1d5;
}

input[type="checkbox"].chkbox:disabled:checked + label:before {
	background-position: center bottom;
}

input[type="checkbox"].checkBox-switch + label {
	display: flex;
	align-items: center;
	position: relative;
	width: 40px;
	height: 24px;
	background-color: var(--primaryColor);
	border-radius: 1000px;
	overflow: hidden;
}

input[type="checkbox"].checkBox-switch + label:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 24px;
	background-color: transparent;
	border-radius: 18px;
	transition: 0.45s;
}

input[type="checkbox"].checkBox-switch + label:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 2px;
	transform: translate(0, -50%);
	width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 50%;
	transition: 0.45s;
}

input[type="checkbox"].checkBox-switch:checked + label {
	border: 0px solid #0069b9;
}

input[type="checkbox"].checkBox-switch:checked + label:before {
	width: 43px;
	background-color: var(--redColor);
}

input[type="checkbox"].checkBox-switch:checked + label:after {
	transform: translate(16px, -50%);
	border-color: #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-text-fill-color: #000;
	box-shadow: 0 0 0px 1000px #fff inset;
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
	-webkit-text-fill-color: #000;
	box-shadow: 0 0 0px 1000px #fff inset;
	transition: background-color 5000s ease-in-out 0s;
}

input[type="radio"].radio {
	display: none;
}

input[type="radio"].radio + label {
	font-size: 14px;
	color: #222222;
	display: inline-flex;
	align-items: center;
	margin: 0;
	position: relative;
	font-weight: 500;
}

input[type="radio"].radio + label:before {
	content: "";
	width: 20px;
	height: 20px;
	background: #fff;
	border: 2px solid #58616a;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 8px;
}

input[type="radio"].radio + label:after {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	background-color: transparent;
	left: 5px;
	top: 5px;
}

input[type="radio"].radio:checked + label {
	color: #111111;
	font-weight: 500;
}

input[type="radio"].radio:checked + label:before {
	background: transparent;
	border-color: var(--primaryColor);
}

input[type="radio"].radio:checked + label:after {
	background-color: var(--primaryColor);
}

input[type="radio"].radio:disabled + label:before {
	border: 2px solid #8a949e;
	background-color: #cdd1d5;
}

input[type="radio"].radio:disabled:checked + label:before {
	background-position: center bottom;
}

input[type="radio"].radio:disabled:checked + label:after {
	background-color: #8a949e;
}

.overflow-y {
	overflow-y: auto;
}

textarea.auto-resize {
	width: 100%;
	resize: none;
	min-height: 2.875rem;
	overflow-y: hidden;
	border: 1px solid #dfdfdf;
	border-radius: 0.75rem;
	padding: 0.8125rem 1.25rem;
	outline: none;
	font-size: 1rem;
}

.textarea-ip textarea.auto-resize {
	width: 100%;
	resize: none;
	min-height: 4.875rem;
	overflow-y: hidden;
	border: 1px solid #dfdfdf;
	border-radius: 0.75rem;
	padding: 0.8125rem 1.25rem;
	outline: none;
	font-size: 1rem;
}

/* 셀렉트박스 디자인 */

/* 말줄임 : 1줄 */
.clamp-line1,
div.select-box-default-st span.selectText {
	overflow: hidden;
	display: block !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	word-break: break-all;
}

/* 말줄임 : 2줄 */
.clamp-line2 {
	overflow: hidden;
	display: block !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
}

/* 말줄임 : 3줄 */
.clamp-line3 {
	overflow: hidden;
	display: block !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	word-break: break-all;
}

.scroll-up {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-up.on {
	opacity: 1;
	transition: opacity 0.6s ease, transform 0.6s ease;
	transform: translateY(0);
}

#app {
	width: 100%;
}

.loading-overlay {
	position: fixed;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.loading-overlay .track {
	height: 12px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	max-width: 600px;
	width: 100%;
	margin: 0 20px;
}

.loading-overlay .bar {
	position: absolute;
	inset: 0 auto 0 0;
	height: 100%;
	border-radius: inherit;
	will-change: transform, left, width;
	background: linear-gradient(90deg, #487fee, #8fb3ff);
	opacity: 0.95;
}

.loading-overlay .bar.a {
	left: -60%;
	width: 60%;
	-webkit-animation: indetA 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
	animation: indetA 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
}

.loading-overlay .bar.b {
	left: -20%;
	width: 20%;
	-webkit-animation: indetB 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) infinite 0.2s;
	animation: indetB 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) infinite 0.2s;
	-webkit-filter: saturate(1.1);
	filter: saturate(1.1);
}

.toast-popup {
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	bottom: 40px;
	width: 100%;
	display: none;
	opacity: 0;
	transition: opacity 0.4s ease, transform 0.4s ease;
	pointer-events: none;
	z-index: 102;
}

.toast-popup.active {
	display: block;
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.toast-popup > div {
	border-radius: 100px;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	max-width: 300px;
	width: 100%;
	padding: 13px 16px;
	margin: 0 auto;
}

/* 로딩 애니메이션 */
@-webkit-keyframes indetA {
	0% {
		left: -40%;
		width: 40%;
	}

	50% {
		left: 25%;
		width: 70%;
	}

	100% {
		left: 110%;
		width: 12%;
	}
}

@keyframes indetA {
	0% {
		left: -40%;
		width: 40%;
	}

	50% {
		left: 25%;
		width: 70%;
	}

	100% {
		left: 110%;
		width: 12%;
	}
}

@-webkit-keyframes indetB {
	0% {
		left: -20%;
		width: 20%;
	}

	40% {
		left: 10%;
		width: 30%;
	}

	100% {
		left: 120%;
		width: 14%;
	}
}

@keyframes indetB {
	0% {
		left: -20%;
		width: 20%;
	}

	40% {
		left: 10%;
		width: 30%;
	}

	100% {
		left: 120%;
		width: 14%;
	}
}

@-webkit-keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.9;
	}

	50% {
		transform: scale(1.25);
		opacity: 1;
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.9;
	}

	50% {
		transform: scale(1.25);
		opacity: 1;
	}
}

span.status {
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	min-height: 30px;
	padding: 0 16px;
	justify-content: center;
	border-radius: 6px;
}

.status--draft {
	background: #eeeff3;
	color: #444444;
	border: 1px solid #eeeff3;
}

.status--submitted {
	background: #fff;
	color: #256ef4;
	border: 1px solid #256ef4;
}

.status--approved {
	background: #487fee;
	color: #fff;
	border: 1px solid #487fee;
}

.status--revision {
	background: #fff;
	color: #de3412;
	border: 1px solid #de3412;
}

.status--canceled {
	background: #de3412;
	color: #fff;
	border: 1px solid#DE3412;
}

.status--payment-approved {
	background: #fff;
	color: #4cb777;
	border: 1px solid #4cb777;
}

.status--completed {
	background: #4cb777;
	color: #fff;
	border: 1px solid #4cb777;
}

.status--charge {
	background: #ffb114;
	color: #fff;
	border: 1px solid #ffb114;
}

.inner {
	width: 100%;
	position: relative;
	margin: 0 auto;
	max-width: 1480px;
	padding: 0 1.25rem;
}

/* 달력 스타일 */
.calendar {
	display: flex;
	align-items: center;
}

.calendar-wrap {
	width: 10rem;
	border: 1px solid #dfdfdf;
	border-radius: 0.75rem;
	position: relative;
}

.calendar-wrap input[type="text"].calendar-date {
	display: block;
	width: 100%;
	height: 2.875rem;
	color: #111;
	font-size: 1rem;
	line-height: 2.875rem;
	text-align: center;
	border: none;
	padding: 0 1rem 0 3.25rem;
	background: url("../images/common/calendar-icon.svg") no-repeat left 1rem center;
}

.calendar-wrap input[type="text"].calendar-date::-webkit-input-placeholder {
	color: #ccc;
}

.calendar-wrap input[type="text"].calendar-date::-moz-placeholder {
	color: #ccc;
}

.calendar-wrap input[type="text"].calendar-date:-ms-input-placeholder {
	color: #ccc;
}

.calendar-wrap input[type="text"].calendar-date::-ms-input-placeholder {
	color: #ccc;
}

.calendar-wrap input[type="text"].calendar-date::placeholder {
	color: #ccc;
}

.calendar-wrap input[type="text"].calendar-date:disabled {
	background-color: #f2f2f2;
}

.ui-datepicker {
	width: 15rem;
}

.ui-widget.ui-widget-content {
	border: none;
}

.ui-widget-header {
	border: 0;
	background-color: #fff;
	border-bottom: none !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	width: 1.75rem;
	height: 1.75rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ui-datepicker .ui-datepicker-prev {
	top: 50% !important;
	left: 5px !important;
	transform: translate(0, -50%);
}

.ui-datepicker .ui-datepicker-next {
	top: 50% !important;
	right: 5px !important;
	transform: translate(0, -50%);
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	position: relative;
	left: 0;
	top: 0;
	margin: 0;
	width: 1.25rem;
	height: 1.25rem;
}

.ui-datepicker .ui-datepicker-prev span {
	background: url("../images/common/calendar-arrow-icon.png") no-repeat left -1px center;
}

.ui-datepicker .ui-datepicker-next span {
	background: url("../images/common/calendar-arrow-icon.png") no-repeat right -1px center;
}

.ui-datepicker .ui-datepicker-title {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 12px;
}

.ui-datepicker .ui-datepicker-title .ui-datepicker-year {
	font-size: 17px;
	font-weight: 600;
}

.ui-datepicker-multi .ui-datepicker-group table {
	width: 100%;
	margin: 0;
}

.ui-datepicker-multi .ui-datepicker-group table thead {
	border-bottom: 1px solid #eaebef;
}

ㄹㅍ .ui-datepicker-month {
	font-size: 17px;
	font-weight: 600;
	margin-left: 5px;
}

.ui-datepicker-month:after {
	content: "월";
	font-size: 15px;
	font-weight: 500;
}

.ui-datepicker-row-break {
	display: none !important;
}

#calendar .ui-datepicker-week-end:first-child,
#calendar td.ui-datepicker-week-end:first-child a.ui-state-default {
	color: #ff3b30;
}

#calendar-once .ui-datepicker-week-end:first-child,
#calendar-once td.ui-datepicker-week-end:first-child a.ui-state-default {
	color: #ff3b30;
}

/* 토요일 - 텍스트 색상 */
#calendar .ui-datepicker-week-end:last-child,
#calendar td.ui-datepicker-week-end:last-child a.ui-state-default {
	color: #487fee;
}

#calendar-once .ui-datepicker-week-end:last-child,
#calendar-once td.ui-datepicker-week-end:last-child a.ui-state-default {
	color: #487fee;
}

.date-picker-wrap {
	position: relative;
	display: inline-block;
	width: 100%;
}

/* .calendar-layer { position: absolute; bottom: 0; left: 0; z-index: 1000; background: rgba(0, 0, 0, 0.7); width: 100%; height: 100%; display: flex; align-items: flex-end; } 
.calendar-layer .wrap { background-color: #fff; width: 100%; padding: 30px 20px 20px; border-radius: 20px 20px 0 0; }  */
.calendar-layer .cont {
	height: 259px;
}

.calendar-layer .cont::-webkit-scrollbar {
	width: 6px;
	background-color: transparent;
	border-radius: 10px;
	padding: 0px;
}

.calendar-layer .cont::-webkit-scrollbar-thumb {
	display: block;
	width: 6px;
	background-color: var(--CblueGray);
	border-radius: 10px;
}

.calendar-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.calendar-head h2 {
	font-size: 20px;
	font-weight: 700;
}

.calendar-head .close {
	display: flex;
	background: url("../images/common/close_icon.png") no-repeat center/cover;
	width: 24px;
	height: 24px;
}

#calendar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.calendar-layer {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;

	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.calendar-layer.active {
	opacity: 1;
	pointer-events: auto;
}

.calendar-layer .wrap {
	background-color: #fff;
	width: 100%;
	padding: 30px 20px 20px;
	border-radius: 20px 20px 0 0;

	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.calendar-layer.active .wrap {
	transform: translateY(0);
}

#calendar .ui-datepicker-group {
	width: auto;
}

#calendar-once .ui-datepicker-group {
	width: auto;
}

.ui-widget.ui-widget-content {
	width: 100% !important;
}

#calendar .ui-datepicker-group + .ui-datepicker-group {
	border-top: none;
	margin-top: 15px;
}

#calendar-once .ui-datepicker-group + .ui-datepicker-group {
	border-top: none;
	margin-top: 15px;
}

.btn {
	transition: 0.25s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 52px;
	width: 100%;
	min-width: 312px;
	color: #fff;
	background-color: var(--primaryColor);
	border: 1px solid var(--primaryColor);
	border-radius: 12px;
	font-weight: 600;
	font-size: 20px;
	cursor: pointer;
}

.btn:hover {
	background-color: #3a66be;
}

.btn:active {
	background-color: #244077;
	border: 1px solid #244077;
}

.btn.solid {
	background-color: #fff;
	border: 1px solid var(--primaryColor);
	color: var(--primaryColor);
}

.btn.disabled {
	background-color: #f2f2f2;
	color: #767676;
	pointer-events: none;
	border: 1px solid #f2f2f2;
}

.btn.ready {
	pointer-events: none;
	background-color: rgba(200, 217, 250, 1);
	border: 1px solid rgba(200, 217, 250, 1);
}

.btn.cel {
	background-color: #eeeff3;
	color: #444;
	border: 1px solid #eeeff3;
}

.btn.primary {
	background-color: #ebf1ff;
	color: var(--primaryColor);
	border: 1px solid var(--primaryColor);
}

.btn.basic {
	background-color: #fff;
	color: #333;
	border: 1px solid #666666;
}

.btn.lxSize {
	line-height: 60px;
	font-size: 20px;
	border-radius: 20px;
}

.btn.lSize {
	line-height: 52px;
	font-size: 20px;
	border-radius: 12px;
}

.btn.mSize {
	line-height: 44px;
	border-radius: 8px;
	font-size: 17px;
}

.btn.smSize {
	line-height: 36px;
	font-size: 15px;
	border-radius: 6px;
}

.btn.xsmSize {
	line-height: 28px;
	font-size: 14px;
	border-radius: 4px;
}

.ui-datepicker th {
	font-size: 15px;
	font-weight: 500;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	font-size: 15px;
	text-align: center;
	border-radius: 8px;
	background-color: #fff;
	border: 1px solid transparent;
	font-weight: 500;
	color: #222;
	margin: 0 15px;
}

/* 날짜 기본 */
.ui-datepicker td span,
.ui-datepicker td a {
	padding: 0.4em 0.2em;
}

.ui-datepicker td {
	border: none !important;
}

.ui-datepicker tr {
	border: none !important;
}

.ui-datepicker tr th {
	background: none;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	color: #000;
	font-weight: 500;
	border-color: none;
}

/* 오늘 */
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	color: #fff !important;
	font-weight: 500;
	border-color: #2489f3;
	background-color: #2489f3;
}

/* 선택한 날짜 */
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	background-image: inherit;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	color: #c3c3c3;
	border-color: #eceff1;
	background-color: #fafafa;
}

/* 이전달,다음달 날짜 */

.ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker-header .ui-datepicker-next {
	display: none !important;
}

.file-wrap {
}

.file-wrap .file-list {
}

.file-wrap .file-list .file-item {
	position: relative;
	margin-top: 10px;
	padding-right: 23px;
}

.file-wrap .file-list .file-item .file-name {
	font-size: 20px;
	font-weight: 500;
	color: #222;
	word-break: break-all;
}

.file-wrap .file-list .file-item button.file-remove {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: url("../images/common/input_del.svg") no-repeat center/cover;
	cursor: pointer;
	border: none;
}

.file-area {
}

.file-area {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	border-bottom: 1px solid #e4e4e4;
}

.file-label {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
	position: absolute;
	width: 100%;
	height: 100%;
}

.file-label:before {
	content: "";
	background: url("../images/common/file_icon.svg") no-repeat center/cover;
	width: 24px;
	height: 24px;
	display: inline-block;
}

.file-area input[type="text"] {
	flex: 1;
	padding-left: 32px;
	padding-right: 56px;
}

/* .file-area input[type="text"]::placeholder{font-size:17px;font-weight: 500;color:#666;} */
.file-area span.find {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #222;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
	background-color: #eeeff3;
	padding: 0 16px;
	line-height: 32px;
	position: absolute;
	right: 0;
	pointer-events: none;
}

.file-wrap .file-list2 {
}

.file-wrap .file-list2 .file-item {
	position: relative;
	margin-top: 10px;
	padding-right: 23px;
}

.file-wrap .file-list2 .file-item .file-name {
	font-size: 20px;
	font-weight: 500;
	color: #222;
}

.file-wrap .file-list2 .file-item button.file-remove {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: url("../images/common/input_del.svg") no-repeat center/cover;
	cursor: pointer;
	border: none;
}

.file-area2 {
}

.file-area2 {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	border-bottom: 1px solid #e4e4e4;
}

.file-label2 {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
	position: absolute;
	width: 100%;
	height: 100%;
}

.file-label2:before {
	content: "";
	background: url("../images/common/file_icon.svg") no-repeat center/cover;
	width: 24px;
	height: 24px;
	display: inline-block;
}

.file-area2 input[type="text"] {
	flex: 1;
	padding-left: 32px;
	padding-right: 56px;
}

/* .file-area input[type="text"]::placeholder { font-size:17px; font-weight: 500; color:#666; } */
.file-area2 span.find {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #222;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
	background-color: #eeeff3;
	padding: 0 16px;
	line-height: 32px;
	position: absolute;
	right: 0;
	pointer-events: none;
}

.float-area {
	position: relative;
	z-index: 10;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.float-area.visible {
	opacity: 1;
	pointer-events: auto;
}

.float-area.active {
	width: 100%;
	height: 100%;
	position: absolute;
}

.float-area.active:before {
	content: "";
	background-color: rgba(0, 0, 0, 0.8);
	position: absolute;
	width: 100%;
	height: 100%;
}

.float-area .float-btn {
	position: absolute;
	right: 16px;
	bottom: 56px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.float-area .float-btn a.float-toggle {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--primaryColor);
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.float-area .float-btn a.float-toggle:before {
	content: "";
	background: url("../images/common/float_btn.svg") no-repeat right center;
	width: 56px;
	height: 56px;
	transition: 0.25s;
}

.float-area.active .float-btn a.float-toggle {
	background-color: #3a66be;
}

.float-area.active .float-btn a.float-toggle:before {
	background-position: left center;
}

.float-area .float-btn .float-menu {
	margin-bottom: 14px;
	display: none;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.float-area .float-btn .float-menu.show {
	display: block;
}

.float-area .float-btn .float-menu.active {
	opacity: 1;
	transform: translateY(0);
}

.float-area .float-btn .float-menu ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.float-area .float-btn .float-menu ul li > div {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: flex-end;
}

.float-area .float-btn .float-menu ul li p {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}

.float-area .float-btn .float-menu ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	overflow: hidden;
	border-radius: 50%;
	background-color: #fff;
}

.float-area .float-btn .float-menu ul li a:before {
	content: "";
	background: url("../images/common/float_menu.svg") no-repeat top center;
	width: 48px;
	height: 48px;
	display: inline-block;
}

.float-area .float-btn .float-menu ul li a.float-home:before {
	background-position: top center;
}

.float-area .float-btn .float-menu ul li a.float-request:before {
	background-position: top -48px center;
}

.float-area .float-btn .float-menu ul li a.float-setting:before {
	background-position: top -96px center;
}

#container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

#container .page-wrapper {
	max-width: 1200px;
	width: 100%;
	display: flex;
	height: 100%;
}

#container .left-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: center;
	padding-left: 54px;
	padding-right: 20px;
}

#container .left-content .sticky-item {
	max-width: 452px;
}

#container .left-content .sticky-item .sticky-logo {
	max-width: 152px;
}

#container .left-content .sticky-item .sticky-question {
	margin-top: 32px;
	color: #666666;
	font-size: 26px;
}

#container .left-content .sticky-item .sticky-intro {
	margin-top: 48px;
}

#container .left-content .sticky-item .sticky-intro > p {
	font-size: 36px;
	font-weight: 700;
	color: #222;
}

#container .left-content .sticky-item .sticky-intro > p:last-child {
	display: flex;
	align-items: center;
	gap: 4px;
}

#container .left-content .sticky-item .sticky-intro > p:last-child::before {
	content: "";
	background: url("../images/common/jumf_hangle.svg") no-repeat center/cover;
	display: inline-block;
	width: 58px;
	height: 32px;
}
#container .left-content .sticky-item .sticky-intro.no-before > p:last-child::before {
	display: none;
}
#container .left-content .sticky-item .sticky-intro.no-before > p:last-child > span {
	display: flex;
	align-items: center;
}
#container .left-content .sticky-item .sticky-intro.no-before > p:last-child > span::before {
	content: "";
	background: url("../images/common/jumf_hangle.svg") no-repeat center/cover;
	display: inline-block;
	width: 58px;
	height: 32px;
}

#container .left-content .sticky-item .sticky-cta {
	margin-top: 120px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

#container .left-content .sticky-item .sticky-cta > dl {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#container .left-content .sticky-item .sticky-cta > dl dt {
	font-size: 17px;
	color: #222;
}

#container .left-content .sticky-item .sticky-cta > dl dd > a {
	display: flex;
	align-items: center;
	font-size: 17px;
	font-weight: 600;
	color: var(--primaryColor);
}

#container .left-content .sticky-item .sticky-cta > dl dd > a:after {
	content: "";
	background: url("../images/common/p_arrow.svg") no-repeat center/cover;
	width: 24px;
	height: 24px;
	margin-left: 4px;
	display: inline-block;
}

#container .left-content .sticky-item .sticky-app-links {
	margin-top: 64px;
	display: flex;
	align-items: center;
	gap: 16px;
}

#container .left-content .sticky-item .sticky-app-links > a {
	border: 1px solid #000;
	border-radius: 8px;
	min-height: 56px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

#container .left-content .sticky-item .sticky-app-links > a.googleplay:before {
	content: "";
	background: url("../images/common/google_btn.svg") no-repeat center/cover;
	display: inline-block;
	width: 100%;
	height: 58px;
}

#container .left-content .sticky-item .sticky-app-links > a.appstore:before {
	content: "";
	background: url("../images/common/apple_btn.svg") no-repeat center/cover;
	display: inline-block;
	width: 100%;
	height: 58px;
}

.w-main-content {
	max-width: 500px;
	display: flex;
	flex: 1;
	width: 100%;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	box-shadow: -8px 0 20px rgba(0, 0, 0, 0.1);
	position: relative;
	max-height: 100vh;
}

.w-main-content main {
	overflow-y: auto;
	height: 100%;
}

.w-main-content main.--gray {
	background-color: #f0f2f4;
}

/* .w-main-content main.h170{height:calc(100% - 150px);} */
.w-main-content main::-webkit-scrollbar {
	display: none;
}

.w-main-content main article {
	padding: 16px 24px 24px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.w-main-content main article .alarm-cation {
	display: flex;
	background-color: #f2f2f2;
	border-radius: 12px;
	width: 100%;
	min-height: 40px;
	align-items: center;
	padding: 0 12px;
}

.w-main-content main article .alarm-cation p {
	font-size: 14px;
	color: #666666;
	display: flex;
	align-items: center;
}

.w-main-content main article .alarm-cation p:before {
	content: "";
	background: url("../images/common/notice_icon.svg") no-repeat center/cover;
	width: 20px;
	height: 20px;
	display: inline-block;
	margin-right: 8px;
}

.contents-navigation {
	display: none;
	position: fixed;
	left: -250px;
	top: 0;
	width: 250px;
	height: 100%;
	background-color: #ffffff;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
	transition: left 0.3s ease;
	z-index: 1000;
	padding: 20px 16px;
	box-sizing: border-box;
}

.contents-navigation.open {
	left: 0;
}

.contents-navigation > div {
	width: 100%;
	height: 100%;
	overflow-y: auto;
}

.contents-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contents-navigation ul li {
	margin-bottom: 14px;
}

.contents-navigation ul li a {
	display: block;
	font-size: 16px;
	color: #333;
	text-decoration: none;
	font-weight: 500;
	padding: 8px 10px;
	border-radius: 4px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.contents-navigation ul li a:hover {
	background-color: #f0f4ff;
	color: #2a5eff;
}

.contents-navigation ul li a.active {
	background-color: #f0f4ff;
	color: #2a5eff;
}

.contents-navigation .toggle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -32px;
	width: 32px;
	height: 60px;
	background-color: #fff;
	box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	z-index: 1001;
	display: flex;
	align-items: center;
	border-radius: 0 10px 10px 0;
}

.contents-navigation .toggle:before {
	content: "";
	background: url("../images/common/b_arrow_icon.svg") no-repeat center/cover;
	width: 32px;
	height: 32px;
	display: inline-block;
}

.contents-navigation.open .toggle:before {
	content: "";
	background: url("../images/common/b_arrow_icon.svg") no-repeat center/cover;
	width: 32px;
	height: 32px;
	display: inline-block;
	transform: rotate(180deg);
}

.contents-navigation > div::-webkit-scrollbar {
	width: 6px;
	background-color: transparent;
	border-radius: 10px;
	padding: 0px;
}

.contents-navigation > div::-webkit-scrollbar-thumb {
	display: block;
	width: 6px;
	background-color: var(--CblueGray);
	border-radius: 10px;
}

.head-normal {
}

.head-normal > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--headerHeight);
	padding: 0 24px;
}

.head-normal .back {
	display: flex;
	width: 24px;
	height: 24px;
	background: url("../images/common/back_icon.svg") no-repeat center/cover;
}

.head-normal .head-menu > a {
	display: flex;
	width: 24px;
	height: 24px;
	background: url("../images/common/gnb_icon.svg") no-repeat center/cover;
}

.head-normal h1 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 17px;
	color: #000;
	font-weight: 600;
}

.head-normal a.close {
	display: flex;
	background: url("../images/common/close_icon.png") no-repeat center/cover;
	width: 24px;
	height: 24px;
}

.logo-head {
}

.logo-head > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--headerHeight);
	padding: 0 24px;
}

.logo-head .logo {
	display: inline-flex;
	width: 39px;
	height: 20px;
}

.logo-head .logo::before {
	content: "";
	background: url(../images/main/header_logo.svg) no-repeat top center;
	display: inline-block;
	width: 39px;
	height: 20px;
}

.logo-head > div .r-header {
	display: flex;
	align-items: center;
	gap: 16px;
}

.logo-head > div .r-header .alarem > a {
	display: flex;
	align-items: center;
	width: 24px;
	height: 24px;
}

.logo-head > div .r-header .alarem > a::before {
	content: "";
	width: 24px;
	height: 24px;
	display: inline-block;
	background: url("../images/main/alarem_icon.svg") no-repeat right top;
}

.logo-head > div .r-header .alarem.active > a::before {
	background-position: right bottom;
}

.logo-head .head-menu > a {
	display: flex;
	width: 24px;
	height: 24px;
	background: url("../images/common/gnb_icon.svg") no-repeat center/cover;
}

.gnb-menu {
}

.gnb-menu {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 999;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	display: none;
	transition: -webkit-clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
	transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
	transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1), -webkit-clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.gnb-menu.active {
	display: block;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.gnb-menu .menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--headerHeight);
	padding: 0 24px;
}

.gnb-menu .menu-head a.close {
	display: flex;
	background: url("../images/common/close_icon.png") no-repeat center/cover;
	width: 24px;
	height: 24px;
}

.gnb-menu .menu-head .r-header {
	display: flex;
	align-items: center;
	gap: 16px;
}

.gnb-menu .menu-head a.alarem {
	display: flex;
	align-items: center;
	width: 24px;
	height: 24px;
}

.gnb-menu .menu-head a.alarem:before {
	content: "";
	width: 24px;
	height: 24px;
	display: inline-block;
	background: url("../images/main/alarem_icon.svg") no-repeat right top;
}

.gnb-menu .menu-head a.alarem.active:before {
	background-position: right bottom;
}

.gnb-menu .menu-head .select {
	gap: 8px;
}

.gnb-menu .menu-head .select p {
	font-size: 16px;
	font-weight: 600;
	color: #8c8c8c;
	transition: 0.45s;
}
.gnb-menu .menu-head .select p.cPrimary {
	color: var(--primaryColor);
}
.gnb-menu .menu-head .select p.cRed {
	color: var(--redColor);
}

.gnb-menu .menu-body {
	height: calc(100% - var(--headerHeight));
}

.gnb-menu .menu-body > div {
	padding: 16px 24px 24px;
	position: relative;
	height: 100%;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.gnb-menu .menu-body > div::-webkit-scrollbar {
	display: none;
}

.gnb-menu .menu-body > div .title-a {
}

.gnb-menu .menu-body > div .title-a p.t1 {
	color: var(--textColor);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.5;
}

.gnb-menu .menu-body > div .title-a p.t2 {
	margin-top: 4px;
	color: var(--subTextColor);
	font-size: 17px;
	font-weight: 500;
}

.gnb-menu .menu-body > div .menu-list {
	margin-top: 40px;
}

.gnb-menu .menu-body > div .menu-list ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gnb-menu .menu-body > div .menu-list ul li {
}

.gnb-menu .menu-body > div .menu-list ul li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 0;
	font-size: 24px;
	color: #222;
	font-weight: 600;
	border-bottom: 1px solid #e4e4e4;
}

.gnb-menu .menu-body > div .menu-list ul li > a:after {
	content: "";
	background: url("../images/common/b_arrow_icon.svg") no-repeat center/cover;
	width: 24px;
	height: 24px;
	display: inline-block;
}

.gnb-menu .menu-body > div .menu-bottom {
}

.gnb-menu .menu-body > div .menu-bottom > div {
}

.gnb-menu .menu-body > div .menu-bottom > div a.setting {
	display: flex;
	align-items: center;
	font-weight: 500;
	color: #222;
}

.gnb-menu .menu-body > div .menu-bottom > div a.setting:before {
	content: "";
	background: url("../images/common/setting_icon.svg") no-repeat center/cover;
	width: 24px;
	height: 24px;
	display: inline-block;
	margin-right: 4px;
}

.gnb-menu .menu-body > div .menu-bottom > div a.loginout {
	color: #666;
	font-weight: 500;
}

.gnb-menu .menu-body > div .menu-bottom .copy {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: #666;
	padding-top: 16px;
	border-top: 1px solid #dddddd;
	margin-top: 16px;
}
.gnb-menu .footer {
	background-color: #fff;
}
.gnb-menu .footer > div {
	padding: 20px 0 0 0;
	margin-top: 20px;
	border-top: 1px solid #dddddd;
}

.layer-popup {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 100%;
	top: 0;
	z-index: 101;
	background-color: #fff;
	transition: 0.45s;
	display: none;
}

.layer-popup.active {
	left: 0;
}

.layer-popup .popup {
	height: 100%;
	width: 100%;
}

.layer-popup .popup .popup-head {
	min-height: var(--headerHeight);
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.layer-popup .popup .popup-head .close {
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("../images/common/close_icon.png") no-repeat center/cover;
	width: 24px;
	height: 24px;
}

.layer-popup .popup .popup-body {
}

.layer-popup .popup .popup-body {
	max-height: calc(100% - var(--headerHeight));
	height: 100%;
	overflow-y: auto;
	padding: 16px 24px 24px;
}

.layer-popup .popup .popup-body::-webkit-scrollbar {
	display: none;
}

.layer-popup .popup .popup-body .wrap {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.layer-popup .popup .popup-body .wrap h2 {
	color: var(--textColor);
	font-weight: 700;
	font-size: 24px;
}

.layer-popup .popup .popup-body .wrap h4 {
	font-weight: 700;
	font-size: 17px;
	color: #222;
}

.layer-popup .popup .popup-body .wrap p {
	font-size: 14px;
	color: #666;
	font-weight: 500;
	margin-top: 8px;
	line-height: 1.4;
}

.layer-popup .popup .popup-body .wrap p strong {
	color: #222;
}

.layer-popup .popup .popup-body .wrap .select {
}

.layer-popup .popup .popup-body .wrap .terms-link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.layer-popup .popup .popup-body .wrap .terms-link > a {
	display: flex;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-size: 14px;
	font-weight: 500;
	color: #444;
}

.layer-popup .popup .popup-body .wrap .terms-item {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.layer-popup .popup .popup-body .wrap div ul {
	margin-top: 8px;
}

.layer-popup .popup .popup-body .wrap div ul li {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.layer-popup .popup .popup-body .wrap div ul li > p {
	position: relative;
	padding-left: 20px;
}

.layer-popup .popup .popup-body .wrap div ul li > p::before {
	content: "1";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid #666;
	color: #666;
	position: absolute;
	left: 2px;
	top: 3px;
	font-size: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 12px;
	font-weight: 300;
}

.layer-popup .popup .popup-body .wrap div ul li:nth-child(1) > p::before {
	content: "1";
}

.layer-popup .popup .popup-body .wrap div ul li:nth-child(2) > p::before {
	content: "2";
}

.layer-popup .popup .popup-body .wrap div ul li:nth-child(3) > p::before {
	content: "3";
}

.layer-popup .popup .popup-body .wrap div ul li:nth-child(4) > p::before {
	content: "4";
}

.layer-popup .popup .popup-body .wrap div ul li:nth-child(5) > p::before {
	content: "5";
}

.layer-popup .popup .popup-body .wrap div ul li:nth-child(6) > p::before {
	content: "6";
}

.layer-popup .popup .popup-body .wrap div ul li:nth-child(7) > p::before {
	content: "7";
}

.layer-popup .popup .popup-body .wrap div ul li + li {
	margin-top: 5px;
}

.layer-popup .popup .popup-body .wrap div ul li > ol {
	padding-left: 30px;
}

.layer-popup .popup .popup-body .wrap div ul li > ol > li {
	position: relative;
	padding-left: 10px;
}

.layer-popup .popup .popup-body .wrap div ul li > ol > li + li {
	margin-top: 5px;
}

.layer-popup .popup .popup-body .wrap div ul li > ol > li:before {
	content: "";
	background-color: #fff;
	border: 1px solid #666;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 7px;
}

.layer-popup .popup .popup-body table {
	margin-top: 10px;
}

.layer-popup .popup .popup-body .email {
}

.layer-popup .popup .popup-body .email h4 {
	font-size: 22px;
	color: #343d4c;
}

.layer-popup .popup .popup-body .email p {
	margin-top: 40px;
}

.layer-popup .popup .popup-body .email p strong {
	font-weight: 700;
}

.layer-popup .popup .popup-body .email span {
	display: flex;
	justify-content: flex-end;
	margin-top: 8px;
	font-size: 14px;
	color: #666666;
	font-weight: 500;
}

.layer-popup .popup .popup-body .email .figure {
	margin: 40px auto;
	max-width: 96px;
}

.layer-popup .popup .popup-body .email .caution-box {
	padding: 8px 16px;
	background-color: #f8f8f8;
	border-radius: 12px;
}

.layer-popup .popup .popup-body .email .caution-box p {
	font-size: 14px;
	font-weight: 500;
	color: #666;
	margin-top: 0;
	line-height: 1.5;
}

.layer-popup.alert .popup .popup-head {
	display: none;
}

.layer-popup.alert .popup {
	height: 100%;
	background-color: #fff;
	max-width: 300px;
	border-radius: 12px;
	height: auto;
	text-align: center;
	width: 100%;
	margin: 0 24px;
}

.layer-popup.alert .popup .popup-body {
	padding: 24px;
}

.layer-popup.alert .popup .popup-body .wrap {
	gap: 0;
}

.layer-popup.alert .popup .popup-body .alert-text {
	color: #343d4c;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
}

.layer-popup.alert .popup .popup-body .alert-text h4 {
	font-size: 18px;
	margin-bottom: 4px;
}

.layer-popup.alert {
	position: fixed;
	left: 0;
	top: 100%;
	width: 100%;
	height: 100%;
	z-index: 101;
	background-color: rgba(0, 0, 0, 0);
	display: none;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: top 0.35s ease, opacity 0.55s ease, background-color 0.65s ease;
}

.layer-popup.alert.active {
	top: 0;
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.7);
}

.layer-popup.alert .popup {
	background-color: #fff;
	max-width: 300px;
	border-radius: 12px;
	text-align: center;
	width: 100%;
	margin: 0 24px;
	transform: translateY(40px);
	opacity: 0;
	transition: transform 0.35s ease, opacity 0.55s ease;
}

.layer-popup.alert.active .popup {
	transform: translateY(0);
	opacity: 1;
}

.alert-btn {
	display: flex;
	gap: 4px;
	justify-content: center;
	margin-top: 16px;
}

.alert-btn button {
	transition: 0.25s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 36px;
	min-width: 80px;
	color: #fff;
	background-color: var(--primaryColor);
	border: none;
	border-radius: 6px;
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
}

.alert-btn button:hover {
	background-color: #3a66be;
}

.alert-btn button.disabled {
	background-color: #f2f2f2;
	color: #767676;
	pointer-events: none;
}

.alert-btn button:active {
	background-color: #244077;
}

.alert-btn button.ready {
	pointer-events: none;
	background-color: rgba(200, 217, 250, 1);
}

.alert-btn button.cel {
	background-color: #fff;
	color: #222;
	border: 1px solid #666666;
}

.date-picker-wrap {
}

.date-picker-wrap .picker-input {
}

.date-picker-wrap .picker-input .line {
	margin: 0 12px;
	color: #6c7682;
}

.date-picker-wrap .picker-input .input-area {
	position: relative;
}

.date-picker-wrap .picker-input .input-area input {
	min-width: auto;
	padding-right: 24px;
}

.date-picker-wrap .picker-input .input-area.calendar-input:before {
	content: "";
	background: url("../images/common/calendar_icon.svg") no-repeat center/cover;
	width: 24px;
	height: 24px !important;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.input-group {
	position: relative;
	z-index: 1;
}

.input-group.zIndex {
	z-index: 10;
}

.input-group .select-list {
	position: absolute;
	left: 0;
	width: 100%;
	top: 100%;
	z-index: 100;
	background-color: #fff;
	display: none;
}

.input-group .select-list ul {
	overflow-y: auto;
	max-height: 350px;
	height: 100%;
}

.input-group .select-list ul::-webkit-scrollbar {
	width: 6px;
	background-color: transparent;
	border-radius: 10px;
	padding: 0px;
}

.input-group .select-list ul::-webkit-scrollbar-thumb {
	display: block;
	width: 6px;
	background-color: var(--CblueGray);
	border-radius: 10px;
}

.input-group .select-list ul li {
	border-bottom: 1px solid #dddddd;
}

.input-group .select-list ul li > a {
	display: flex;
	flex-direction: column;
	padding: 16px 0;
}

.input-group .select-list ul li > a p {
	font-weight: 500;
	color: #222;
	font-size: 16px;
}

.input-group .select-list ul li > a dl {
	display: flex;
	flex-wrap: wrap;
	margin-top: 8px;
	gap: 4px 0;
}

.input-group .select-list ul li > a dl > dt {
	font-size: 14px;
	color: #767676;
	font-weight: 500;
	width: 26%;
}

.input-group .select-list ul li > a dl > dd {
	font-size: 14px;
	font-weight: 500;
	color: #222;
	width: 74%;
}

.input-group .radio-list {
	gap: 12px 24px;
	margin-top: 12px;
}

.admin-content {
	display: flex;
	width: 100%;
	height: 100%;
}

.admin-content .l-banner {
	position: relative;
	width: 50%;
}

.admin-content .l-banner::before {
	content: "";
	background: url("../images/common/admin_banner.jpg") no-repeat center/cover;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.admin-content .l-banner > div {
	padding: 80px;
}

.admin-content .l-banner > div .logo {
	max-width: 65px;
}

.admin-content .l-banner > div .text {
	margin-top: 34px;
}

.admin-content .l-banner > div .text p {
	color: #fff;
	font-size: 64px;
	font-weight: 700;
}

.admin-content .admin-form {
	width: 50%;
}

.admin-content .admin-form > div {
	max-width: 500px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 200px;
	height: 100%;
}

.admin-content .admin-form .admin-title {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}

.admin-content .admin-form .admin-title figure {
	max-width: 91px;
}

.admin-content .admin-form .admin-title h1 {
	font-size: 48px;
	color: var(--primaryColor);
	font-weight: 700;
}

.admin-content .admin-form .btn {
	margin-top: 50px;
}

.admin-content .admin-form .f-text {
	margin-top: 64px;
}

.admin-content .admin-form .f-text > h4 {
	font-size: 30px;
	font-weight: 700;
	color: #000;
}

.admin-content .admin-form .f-text > p {
	font-size: 14px;
	font-weight: 500;
	margin-top: 16px;
	color: #666;
}

.admin-content .admin-form .input-group .label {
	margin-bottom: 8px;
	font-size: 17px;
	color: #767676;
}

.admin-content .admin-form .input-group input {
	line-height: 62px;
	font-size: 17px;
	border: 1px solid #c3c3c3;
	border-radius: 8px;
	padding-left: 48px;
}

.admin-content .admin-form .input-group .input-area::after {
	display: none !important;
}

.admin-content .admin-form .input-group .input-area .icon {
	display: flex;
	width: 24px;
	height: 24px;
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
}

.admin-content .admin-form .input-group .input-area .icon.id {
	background: url("../images/common/admin_id_input.svg") no-repeat center/cover;
}

.admin-content .admin-form .input-group .input-area .icon.password {
	background: url("../images/common/admin_password_input.svg") no-repeat center/cover;
}

.filter-layer {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.filter-layer.active {
	opacity: 1;
	pointer-events: auto;
}

.filter-layer .popup {
	width: 100%;
}

.filter-layer .popup .wrap {
	background-color: #fff;
	width: 100%;
	padding: 30px 20px 40px;
	border-radius: 20px 20px 0 0;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.filter-layer.active .popup .wrap {
	transform: translateY(0);
}

.filter-layer .popup .wrap .popup-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 30px;
}

.filter-layer .popup .wrap .popup-head > h1 {
	font-size: 20px;
	font-weight: 600;
	color: #222;
}

.filter-layer .popup .wrap .popup-head > a.close {
	display: flex;
	background: url("../images/common/close_icon.png") no-repeat center/cover;
	width: 22px;
	height: 22px;
}

.filter-layer .popup .wrap .popup-body {
}

.filter-layer .popup .wrap .popup-body > div {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.filter-layer .popup .wrap .popup-body > div input[type="radio"].radio + label {
	font-size: 18px;
	color: #56585f;
	line-height: 1.2;
}

.filter-layer .popup .wrap .popup-body > div input[type="radio"].radio + label:after {
	top: 6px;
}

.perm-guide {
	left: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	display: none;
}

.perm-guide.active {
	display: flex;
	position: absolute;
	justify-content: center;
	align-items: center;
}

.perm-guide .perm-guide__popup {
	background-color: #fff;
	max-width: 312px;
	width: 100%;
	margin: 0 24px;
}

.perm-guide .perm-guide__popup .perm-guide__head {
	display: flex;
}

.perm-guide .perm-guide__popup .perm-guide__head > div {
	padding: 24px 24px 40px;
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__title {
	text-align: center;
	padding-bottom: 16px;
	margin-bottom: 24px;
	border-bottom: 1px solid #ddd;
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__title h4 {
	font-size: 20px;
	font-weight: 700;
	color: #222;
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__title p {
	font-size: 14px;
	color: #666666;
	font-weight: 500;
	margin-top: 8px;
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__body {
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__body > div {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 100%;
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__body > div .item {
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__body > div .item > h4 {
	font-weight: 600;
	color: #222;
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__body > div .item > ul {
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__body > div .item > ul li {
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__body > div .item > ul li .figure {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: #ebebeb;
}

.perm-guide
	.perm-guide__popup
	.perm-guide__head
	> div
	.perm-guide__body
	> div
	.item.i1
	> ul
	li:nth-child(1)
	.figure::before {
	content: "";
	background: url("../images/common/perm_guide_icon01.svg") no-repeat center/cover;
	width: 44px;
	height: 44px;
	display: inline-block;
}

.perm-guide
	.perm-guide__popup
	.perm-guide__head
	> div
	.perm-guide__body
	> div
	.item.i1
	> ul
	li:nth-child(2)
	.figure::before {
	content: "";
	background: url("../images/common/perm_guide_icon02.svg") no-repeat center/cover;
	width: 44px;
	height: 44px;
	display: inline-block;
}

.perm-guide
	.perm-guide__popup
	.perm-guide__head
	> div
	.perm-guide__body
	> div
	.item.i2
	> ul
	li:nth-child(1)
	.figure::before {
	content: "";
	background: url("../images/common/perm_guide_icon03.svg") no-repeat center/cover;
	width: 44px;
	height: 44px;
	display: inline-block;
}

.perm-guide
	.perm-guide__popup
	.perm-guide__head
	> div
	.perm-guide__body
	> div
	.item.i2
	> ul
	li:nth-child(2)
	.figure::before {
	content: "";
	background: url("../images/common/perm_guide_icon04.svg") no-repeat center/cover;
	width: 44px;
	height: 44px;
	display: inline-block;
}

.perm-guide
	.perm-guide__popup
	.perm-guide__head
	> div
	.perm-guide__body
	> div
	.item.i2
	> ul
	li:nth-child(3)
	.figure::before {
	content: "";
	background: url("../images/common/perm_guide_icon05.svg") no-repeat center/cover;
	width: 44px;
	height: 44px;
	display: inline-block;
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__body > div .item > ul li .text-a {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__body > div .item > ul li .text-a p.t1 {
	font-weight: 500;
	color: #222;
	font-size: 15px;
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__body > div .item > ul li .text-a p.t2 {
	font-size: 14px;
	font-weight: 500;
	color: #666;
}

.perm-guide .perm-guide__popup .perm-guide__head > div .perm-guide__body > div .caution {
	font-size: 12px;
	color: #666666;
	font-weight: 500;
}

.perm-guide .perm-guide__popup .perm-guide__btn {
}

.perm-guide .perm-guide__popup .perm-guide__btn > a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	height: 56px;
	font-size: 19px;
	font-weight: 600;
	background-color: var(--primaryColor);
}

.perm-guide__step {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.perm-guide__step.active {
	opacity: 1;
	pointer-events: auto;
}

.perm-guide__step .popup {
	width: 100%;
}

.perm-guide__step .popup .wrap {
	background-color: #fff;
	width: 100%;
	padding: 30px 20px 40px;
	border-radius: 20px 20px 0 0;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.perm-guide__step.active .popup .wrap {
	transform: translateY(0);
}

.perm-guide__step .popup .wrap .popup-head {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 16px;
	padding-bottom: 30px;
}

.perm-guide__step .popup .wrap .popup-head p {
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: #222;
}

.perm-guide__step .popup .wrap .popup-body {
}

.perm-guide__step .popup .wrap .popup-body > div {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.perm-guide__step .popup .wrap .popup-body > div input[type="radio"].radio + label {
	font-size: 18px;
	color: #56585f;
	line-height: 1.2;
}

.perm-guide__step .popup .wrap .popup-body > div input[type="radio"].radio + label:after {
	top: 6px;
}

@media only screen and (max-width: 1000px) {
	#container .left-content .sticky-item .sticky-question {
		font-size: 23px;
		margin-top: 20px;
	}

	#container .left-content .sticky-item .sticky-intro {
		margin-top: 40px;
	}

	#container .left-content .sticky-item .sticky-intro > p {
		font-size: 32px;
	}

	#container .left-content .sticky-item .sticky-intro > p:last-child::before {
		width: 51px;
		height: 28px;
	}

	#container .left-content .sticky-item .sticky-cta {
		margin-top: 60px;
	}

	#container .left-content .sticky-item .sticky-cta > dl dt {
		font-size: 15px;
	}

	#container .left-content .sticky-item .sticky-cta > dl dd > a {
		font-size: 15px;
	}
}

@media only screen and (max-width: 850px) {
	#container .left-content {
		display: none;
	}

	.w-main-content {
		max-width: 100%;
		box-shadow: none;
	}

	.ui-state-default,
	.ui-widget-content .ui-state-default,
	.ui-widget-header .ui-state-default,
	.ui-button,
	html .ui-button.ui-state-disabled:hover,
	html .ui-button.ui-state-disabled:active {
		margin: 0 1.6667vw;
	}
}

@media (hover: none) and (pointer: coarse) {
	.btn:active {
		background-color: inherit;
		border: inherit;
	}
}
.footer {
	background-color: #f2f4f6;
}
.footer > div {
	padding: 40px 24px 30px;
}
.footer > div .t-footer {
}

.footer > div .t-footer .infor > p {
	color: #666666;
	font-size: 14px;
	margin-top: 16px;
}
.footer > div .t-footer .infor > p.company {
	font-size: 14px;
	font-weight: 600;
	color: #222;
	margin-top: 0;
}
.footer > div .t-footer ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 16px;
}
.footer > div .t-footer ul li {
	width: calc((100% / 2) - 3px);
}
.footer > div .t-footer ul li a {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #666666;
}
.footer > div .b-footer {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #dddddd;
}
.footer > div .b-footer p {
	color: #666666;
	font-size: 13px;
}
