@charset "utf-8";

:root {
	--white: #fff;
	--black: #000;
	--key-color: #0207A0;
	--base: #F4F6F8;
	--base2: #F4F6F8;
	--gray: #E2E1E1;
	--gray2: #9A9A9A;
	--red: #EA4335;
	--default: #BAC0C6;
	--strock: #E0E5EC;
	--point: #B2B0C0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, button {
	margin: 0;
	padding: 0;
	border: 0;
}

html {
  height: 100%;
  min-height: -webkit-fill-available;
}
ul ,ol ,li {
  list-style: none;
}
body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: 'GmarketSans',sans-serif;
	font-weight: 400;
	min-width: 300px;
	background: var(--base2);
	-webkit-text-size-adjust: none;
	color: var(--black);
}
input,select,button {
  vertical-align: middle;
}
img {
  vertical-align: top;
  -webkit-perspective: 1;
}
i, em, address {
  font-style: normal;
}
label, button {
  cursor: pointer;
}
a {
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
	text-decoration: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*:focus {
	outline: none;
}
button {
	background: transparent;
	font-family: inherit;
	padding: 0;
	font-size: 15px;
	-webkit-tap-highlight-color: transparent;
	color: #191919;
}
input[type=text],
input[type=button],
input[type=password],
input[type=number],
textarea,
button {
	outline-style:none;
	-webkit-appearance:none;
	-webkit-border-radius:0;
	font-family: inherit;
}
input[type=text]::-webkit-input-placeholder,
input[type=button]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: var(--gray2);
	font-weight: 400;
}
input[type=text]:-moz-placeholder,
input[type=button]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=number]:-moz-placeholder,
textarea:-moz-placeholder {
	color: var(--gray2);
	font-weight: 400;
	opacity: 1;
}
input[type=text]::-moz-placeholder,
input[type=button]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=number]::-moz-placeholder,
textarea::-moz-placeholder {
	color: var(--gray2);
	font-weight: 400;
	opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=button]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: var(--gray2);
	font-weight: 400;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
select {
	position: relative;
	width: 100%;
	height: 40px;
	padding: 0 20px;
	box-sizing: border-box;
	font-family: inherit;
	background: #f9f9f9 url('../images/select-arrow.svg') no-repeat calc(100% - 20px) 50% / 20px;
	border: 0;
	font-size: 16px;
	color: var(--black);
	border-radius: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
select:disabled {
	color: var(--black);
	opacity: 1;
	background-image: none;
	padding-right: 0!important;
}
select option {
	color: var(--black);
}
select.active {
	color: var(--black);
}
select::-ms-expand {
    display: none;
}
.fl {
	float:left;
}
.fr {
	float:right;
}
.ta_l {
	text-align:left!important;
}
.ta_c {
	text-align:center!important;
}
.ta_r {
	text-align:right!important;
}
.table {
	display: table;
}
.row {
	display: table-row;
}
.cell {
	display: table-cell;
}
.f0 {
	font-size: 0!important;
}
.clear:after {
	content: '';
	display: block;
	clear: both;
}
.vaT {
	vertical-align: top;
}
.vaM {
	vertical-align: middle;
}
.vaB {
	vertical-align: bottom;
}
.w100 {
	width: 100%!important;
}
.f500 {
	font-weight: 500;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex_js {
	justify-content: space-between;
	gap: 5px;
}
.flex_c {
	justify-content: center;
}
.flex_end {
	justify-content: end;
}
.flex_col {
	flex-direction: column;
}
.flex_col > * {
	width: 100%;
	box-sizing: border-box;
}
.ag_c {
	align-items: center;
}
.gap10 {
	gap: 10px;
}
.gap20 {
	gap: 20px;
}
.mt40 {
	margin-top: 40px;
}
.mb40 {
	margin-bottom: 40px;
}
.btn_green {
	background: #00A757!important;
	color: #fff!important;
}
.btn_blue {
	background: var(--key-color)!important;
	color: #fff!important;
}
.btn_red {
	background: #F10000!important;
	color: #fff!important;
}
.btn_gray {
	background: #5A5C69!important;
	color: #fff!important;
}
.btn_gray2 {
	background: rgba(90, 92, 105, 0.1)!important;
	color: #212121!important;
}
.btn_purple {
	background: var(--key-color)!important;
	color: #fff!important;
}
.btn_line_purple {
	border: 1px solid var(--purple)!important;
	background: var(--white)!important;
	color: var(--purple)!important;
}
.btn_red {
	background: #FF1515!important;
	color: var(--white)!important;
}
.btn_line_red {
	border: 1px solid var(--red)!important;
	background: var(--white)!important;
	color: var(--red)!important;
}
.btn_line_color {
	border: 1px solid var(--key-color)!important;
	background: var(--white)!important;
	color: var(--key-color)!important;
}
.hidden {
	display: none!important;
}
.txt_purple {
	color: var(--purple)!important;
}
.txt_red {
	color: var(--red)!important;
}
.txt_gray {
	color: #A4A4A4!important;
}
.txt_color {
	color: var(--key-color)!important;
}
.btn_color {
	background: var(--key-color)!important;
	color: var(--white)!important;
}
.point_color {
	background: var(--key-color3)!important;
	color: var(--white)!important;
}
.white_bg {
	background: var(--white);
	border-radius: 10px;
	padding: 20px;
}
.btn_black {
	background: var(--black)!important;
	color: var(--white)!important;
}
.btn_line_black {
	border: 1px solid var(--black)!important;
	background: var(--white)!important;
	color: var(--black)!important;
}
.btn_white {
	border: 1px solid var(--border-secondary)!important;
	background: var(--white)!important;
	color: var(--text-)!important;
}
.btn_line_gray {
	border: 1px solid var(--border-secondary)!important;
	color: var(--text-)!important;
}
.btn_line_red {
	border: 1px solid #E00000!important;
	color: #E00000!important;
}


input[type=radio] {
	display: none;
}
input[type=radio] + label {
	position: relative;
	display: block;
	color: #424242;
	font-size: 16px;
	padding-left: 25px;
}
input[type=radio] + label:before {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	border: 1px solid var(--strock);
	background: var(--white);
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 0;
	box-sizing: border-box;
}
input[type=radio]:checked + label:before {
	border: 1px solid var(--key-color2);
}
input[type=radio]:checked + label:after {
	content: '';
	position: absolute;
	top: 6px;
    left: 4px;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--key-color2);
}

input[type=checkbox] {
	display: none;
}
input[type=checkbox] + label {
	position: relative;
	display: block;
	font-size: 16px;
	padding-left: 25px;
}
input[type=checkbox] + label:before {
	content: '';
	position: absolute;
	top: 1px;
	left: 0;
	display: block;
	width: 18px;
	height: 18px;
	border: 1px solid #A5AEBC;
	border-radius: 3px;
	background: #fff;
	box-sizing: border-box;
}
input[type=checkbox]:checked + label:before {
	background: var(--key-color) url("../images/ic_check.svg")no-repeat 50% 50% / 11px;
	border: 1px solid var(--key-color);
}

table tbody.list tr:hover{
	background:#acb2d4;
}

@media screen and (max-width: 1280px){
	input[type=radio] + label {
		font-size: 14px;
	}
	input[type=radio] + label:before {
		top: 0;
	}
	input[type=radio]:checked + label:after {
		top: 4px;
        left: 4px;
	}
	
	input[type=checkbox] + label {
		font-size: 14px;
	}
}
@media screen and (max-width: 768px){
}