:root {
  --main-color: #6E69D9;
  --border-color: #e5e5e5;
  --grey-line: #D8DFE8;
  --text-color: #333333;
  --white-color: #fff;
  --bg-grey-color: #F7F9FC;
  --btn-primary: #22283C;
  --fs-h1: 28px;
  --fs-h2: 24px;
  --fs-h3: 22px;
  --fs-h4: 20px;
  --fs-h5: 18px;
  --fs-h6: 16px;
  --fs-h7: 15px;
  --fs-normal: 14px;
  --fs-small: 13px;
  --fs-smaller: 11px;
  --fs-smallest: 10px;
  --width-left-menu: 218px;
  --height-header: 69px;
  --height-footer: 51px;
}



@font-face {
  font-family: "Malgun Gothic";
  src: url(../font/malgun-gothic.ttf);
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Malgun Gothic", sans-serif;
}

/* Apply Roboto font to entire website */
body {
  font-family: "Malgun Gothic", sans-serif;
  color: var(--text-color);
  font-size: var(--fs-normal);
}

ul li {
  list-style: none;
}

input,
textarea {
  outline: none;
}
a {
  text-decoration: none;
  cursor: pointer;
}

select {
  cursor: pointer;
  outline: none !important;
  background-image: url("../img/arrow_select.svg");
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
  background-color: #fff;
}

/* For IE10 */
select::-ms-expand {
  display: none;
}

button {
  cursor: pointer;
  border: 0;
  outline: none;
}

img {
  display: block;
  max-width: 100%;
}

.nl-row {
  display: flex;
  flex-wrap: wrap;
}
.nl-row-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-1 {
  flex: 1;
}

.gap-5 {
  gap: 5px;
}

.flex-2 {
  flex: 2;
}

.gap-10 {
  gap: 10px;
}

.flex-3 {
  flex: 3;
}

.gap-15 {
  gap: 15px;
}

.flex-4 {
  flex: 4;
}

.gap-20 {
  gap: 20px;
}

.flex-5 {
  flex: 5;
}

.gap-25 {
  gap: 25px;
}

.flex-6 {
  flex: 6;
}

.gap-30 {
  gap: 30px;
}

.flex-7 {
  flex: 7;
}

.gap-35 {
  gap: 35px;
}

.flex-8 {
  flex: 8;
}

.gap-40 {
  gap: 40px;
}

.flex-9 {
  flex: 9;
}

.gap-45 {
  gap: 45px;
}

.flex-10 {
  flex: 10;
}

.gap-50 {
  gap: 50px;
}

.flex-11 {
  flex: 11;
}

.gap-55 {
  gap: 55px;
}

.flex-12 {
  flex: 12;
}

.gap-60 {
  gap: 60px;
}

.a-center {
  align-items: center;
}

.a-start {
  align-items: flex-start;
}

.a-end {
  align-items: flex-end;
}

.a-stretch {
  align-items: stretch;
}

.a-baseline {
  align-items: stretch;
}

.j-center {
  justify-content: center;
}

.j-start {
  justify-content: flex-start;
}

.j-end {
  justify-content: flex-end;
}

.j-between {
  justify-content: space-between;
}

.j-around {
  justify-content: space-around;
}

.f-column {
  flex-direction: column;
}

.f-column-re {
  flex-direction: column-reverse;
}

.f-row {
  flex-direction: row;
}

.f-row-re {
  flex-direction: row-reverse;
}

.f-no-wrap {
  flex-wrap: nowrap;
}

.nl-hidden {
  display: none !important;
}

.nl-max {
  width: 100%;
}

.nl-relative {
  position: relative;
}

input::-moz-placeholder {
  color: #aaaaaa;
}

input::placeholder {
  color: #aaaaaa;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}
/*custom-check*/
.nl-custom-check {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}

.nl-custom-check .nl-cb {
  position: relative;
  height: 20px;
  width: 20px;
  border-radius: 3px;
  display: inline-block;
  border: 0;
  margin-right: 4px;
  background-color: #fff;
  border: 1px solid var(--border-color);
}

.nl-custom-check .nl-cb::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  height: 6px;
  width: 9px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(-45deg);
}

.nl-custom-check input:checked~.nl-cb {
  background-color: #438FFE;
   border-color: #438FFE;
}

.nl-custom-check input:checked~.nl-cb::after {
  border-left-color: #fff;
  border-bottom-color: #fff;
}

.nl-custom-check .nl-text {
  font-size: var(--fs-normal);
}

/*custom-radio*/
.nl-custom-radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}

.nl-custom-radio .nl-rad {
  position: relative;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  display: inline-block;
  border: 1px solid #d4d4d4;
  margin-right: 4px;
  background-color: #fff;
}

.nl-custom-radio .nl-rad::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  background-color: #438FFE;
  display: none;
}

.nl-custom-radio .nl-rad .nl-text {
  line-height: 20px;
}

.nl-custom-radio input:checked~.nl-rad {
  border-color: #438FFE;
}

.nl-custom-radio input:checked~.nl-rad::after {
  display: block;
}

.nl-custom-radio .nl-text {
  font-size: var(--fs-normal);
}

.width-check {
  width: 50px;
  padding-right: 0 !important;
}

.width-no {
  width: 80px;
}

.width-80 {
  width: 80px;
}

.width-90 {
  width: 90px;
}

.width-100 {
  width: 100px;
}

.width-110 {
  width: 110px;
}

.width-120 {
  width: 120px;
}

.width-130 {
  width: 130px;
}

.width-140 {
  width: 140px;
}

.width-150 {
  width: 150px;
}

.width-160 {
  width: 160px;
}

.width-170 {
  width: 170px;
}

.width-180 {
  width: 180px;
}

.width-190 {
  width: 190px;
}

.width-200 {
  width: 200px;
}
.width-210 {
  width: 210px;
}
.width-220 {
  width: 220px;
}
.width-230 {
  width: 230px;
}
.width-240 {
  width: 240px;
}
.width-250 {
  width: 250px;
}
.width-260 {
  width: 260px;
}
.width-270 {
  width: 270px;
}
.width-280 {
  width: 280px;
}
.width-290 {
  width: 290px;
}
.width-300 {
  width: 300px;
}
.width-350 {
  width: 350px;
}
.width-370 {
  width: 370px;
}
.width-390 {
  width: 390px;
}
.width-400 {
  width: 400px;
}
.width-410 {
  width: 410px;
}
.width-420 {
  width: 420px;
}