*,
*::after,
*::before {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	width: 100%;
	height: 100%;
}

.clearfix:after {
	height: 0;
	display: block;
	content: '.';
	visibility: hidden;
	clear: both;
}

ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
form,
label {
	display: block;
}

ul {
	margin: 0;
	padding: 0;
}

em,
strong {
	/*font-weight: 400;*/
	font-style: normal;
	font-variant: normal;
}
a {
	text-decoration: none;
	color: #232323;
	/* display: block; */
}


img {
	border: 0;
}
.ellipsis{white-space: nowrap;  text-overflow: ellipsis;  overflow: hidden; }
/* button,
input,
select,
textarea {
	vertical-align: middle;
	outline: 0
} */

/* a,
button,
input,
select,
textarea {
	-webkit-tap-highlight-color: transparent
} */

textarea {
	padding: 10px;
	resize: none;
	border: 1px solid #E5E5E5;
}
input,select{
	padding-left: 10px;
	border: 1px solid #D2D2D2;

}

button,
input[type=button],
input[type=reset],
input[type=submit] {
	cursor: pointer;
	-webkit-appearance: button;
	-moz-appearance: button
}

 input:focus:-moz-placeholder,
input:focus::-webkit-input-placeholder {
	color: transparent
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: 0
} 

table {
	border-spacing: 0;
	border-collapse: collapse
}
button{
	border: none;
}
input:focus, select:focus, button:focus, textarea:focus{
	outline:1px solid #377FEB;
	/* border-color: 1px solid #377FEB; */
	/* box-shadow: none; */
}


.flex {
	display: flex
}

.flex-row {
	display: flex;
	flex-direction: row
}

.flex-col {
	display: flex;
	flex-direction: column;
	align-content: space-between;
}

.flex-grow-0 {
	min-width: 0;
	flex-grow: 0;
	flex-shrink: 0
}

.flex-grow-1 {
	min-width: 0;
	flex-grow: 1;
	flex-shrink: 1
}

.flex-x-center {
	display: flex;
	justify-content: center
}
.flex-x-between{
	display: flex;
	justify-content: space-between
}

.flex-y-center {
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center
}

.flex-y-bottom {
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	-ms-grid-row-align: flex-end;
	align-items: flex-end
}
.hide{
	display: none;
}
.inner{
	width: 1200px;
	margin: 0 auto;
}


