@charset "utf-8";

@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:100,300,400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,800i&display=swap");

body {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  overflow-x: hidden;
  max-width: 100%;
}
html, body {max-width: 100%; overflow-x: hidden; }
body {overflow: hidden; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

/* ie10,11에서 select 화살표 없애기  */
select::-ms-expand {
  display: none;
}

select {
  /* select 화살표 없애기 */
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background: url(../images/sub/select.png) no-repeat 95% 50% #fff;
  padding-right: 30px !important;
  cursor: pointer;
}
/* input number 버튼삭제 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  margin: 0;
}
input {
  color: #777;
  font-weight: 400;
}
input::placeholder {
  color: #c2c6cb;
  font-weight: 500;
}

select {
  color: #777;
  font-weight: 400;
}
select::placeholder {
  color: #c2c6cb;
  font-weight: 500;
}

/* ie10,11에서 select 화살표 없애기  */
.searchbox select::-ms-expand {
  display: none;
}

/* common styles */
.btn_common {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
