.displaynone {
  display: none !important;
}

/*font*/
@import url("https://fonts.googleapis.com/css2?family=Inter&family=Montserrat:wght@100;300;400;500;600;800&display=swap");
/* reset.css */
html,
body,
div,
p,
span,
strong,
b,
em,
iframe,
pre,
h1,
h2,
h3,
h4,
h5,
h6,
img,
dl,
dt,
dd,
fieldset,
form,
legend,
label,
table,
caption,
thead,
tbody,
tfoot,
tr,
th,
td,
ul,
ol,
li,
a,
input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0 none;
  line-height: inherit;
  font-size: inherit;
  font-family: "Noto Sans", sans-serif;
  font-weight: normal;
  color: #000;
}
html {
  overflow-x: hidden;
}
body {
  overflow: hidden;
}
ul,
ol,
li {
  list-style: none;
}
em,
address {
  font-style: normal;
}
img {
  display: block;
  max-width: 100%;
  vertical-align: middle;
  line-height: 0;
  border: 0 none;
  font-size: 0;
}
sup {
  position: relative;
  top: 2px;
  line-height: 100%;
  font-size: 11px;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}
caption {
  overflow: hidden;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
}
th,
td {
  vertical-align: middle; /* white-space: nowrap */
}
a {
  display: inline-block;
  color: inherit;
  line-height: 1;
  font-size: inherit;
  text-decoration: none;
  font-weight: inherit;
  padding: 5px 0;
  -webkit-tap-highlight-color: transparent; /* for removing the highlight */
}
a:hover,
a:focus,
a:active {
  text-decoration: none;
}
*,
html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
input,
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0 none;
  font-size: 14px;
}
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  line-height: 1;
  color: inherit;
  font-size: inherit;
  outline: 0 none;
}
b,
strong {
  font-weight: 700;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
input[disabled] {
  cursor: default;
}
textarea {
  outline: 0 none;
}
::-webkit-input-placeholder {
  color: #c1c1c1;
}
:-ms-input-placeholder {
  color: #c1c1c1;
}
::placeholder {
  color: #c1c1c1;
}
/*  */
/* IE 10, 11의 네이티브 화살표 숨기기 */
select::-ms-expand {
  display: none;
}
span {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}
label {
  cursor: pointer;
}
/* ie input icon display:none */
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
.ns_kr {
  font-family: "Noto Sans KR", sans-serif !important;
}
.no-event {
  pointer-events: none;
}
.hidden {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: "";
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 4px 8px;

  background: #3d3f45;
  border-radius: 5px;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip=""]::before,
[tooltip=""]::after {
  /* display: none !important; */
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: calc(100% + 5px);
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 10px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}
/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}
