@charset "utf-8";
@font-face {
  font-family: 'GmarketSansBold';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
/* Reset */
html, body{height:100%}
html{font-size:100%;overflow-y:scroll}
*{margin:0;padding:0;border:0;outline:0;vertical-align:top;box-sizing:border-box;zoom:1}
*, body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
body{font-family:'Noto Sans KR','Malgun Gothic','돋움','dotum','Apple SD Gothic Neo','Helvetica Neue','Helvetica','Roboto','Arial',sans-serif;line-height:1;word-break:break-all;color:#333}
/* *:focus{outline:none}   */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img,
ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video{margin:0;padding:0;border:0}
ul, li, ol{list-style:none}
a{margin:0;padding:0;background:transparent;color:#000;text-decoration:none !important;vertical-align:baseline}
a:hover{text-decoration:none !important}
a:active, a:hover, a:visited, a:link{outline:0 none;text-decoration:none}
a, img{border:0;outline:none}
img{border:0 none;vertical-align:top}
/* img, video{max-width:100%} */
table{border-collapse:collapse;border-spacing:0}
figure{margin:0}
legend{border:0;padding:0}
fieldset{border:0}
em,address{font-style:normal}
input,select,button{cursor:pointer;font:inherit}
input{background:#fff}
input:focus{border:1px solid #a6c8ff !important}
textarea{overflow:auto;vertical-align:top;resize:none}
textarea:focus{box-sizing:border-box}
input[type="radio"]{border:none !important;outline:0 !important;box-shadow:none;vertical-align:middle}
input[type="checkbox"]{border:none !important;outline:0;box-shadow:none;vertical-align:middle}
pre{overflow-x:scroll}


.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-b-md {
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.rounded-tl-full {
  border-top-left-radius: 9999px;
}

.rounded-tr-full {
  border-top-right-radius: 9999px;
}

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-r {
  border-right-width: 1px;
}
.border-l {
  border-left-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.cursor-pointer {
  cursor: pointer;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}
.xy-center{
  display: flex;
  align-content: center;
  justify-content: center;
}
.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.span-2{
  grid-column: span 2;
}
.span-3{
  grid-column: span 3;
}
.span-4{
  grid-column: span 4;
}

.inline-grid {
  display: inline-grid;
}

.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}

.place-items-center {
  place-items: center;
}

.items-start {
  align-items: start !important;
}
.items-center {
  align-items: center;
}

.self-start {
  align-self: flex-start;
}

.justify-start {
  justify-content: start !important;
}
.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.align-start{
	align-content: flex-start;
}
.flex-wrap{
	flex-wrap: wrap;
}
.flex-nowrap{
	flex-wrap: nowrap;
}
.flex-1 {
  flex: 1 1 0%;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.float-right {
  float: right;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700 ;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem !important;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-24 {
  height: 6rem;
}

.h-27-6 {
  height: 6.9rem;
}
.h-28 {
  height: 7rem;
}

.h-36 {
  height: 9rem;
}

.h-72 {
  height: 18rem;
}

.h-1\/3 {
  height: 33.333333%;
}

.h-2\/3 {
  height: 66.666667%;
}

.h-full {
  height: 100%;
}
.min-h-full {
  min-height: 100%;
}

.h-screen {
  height: 100vh;
}
.text-border{
  text-decoration: underline;
}
.text-zero {
  font-size: 0;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-s {
  font-size: 0.8125rem;
  line-height: 1.375rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-m {
  font-size: 0.9375rem !important;
  line-height: 1.5rem;
}

.text-rg {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xxl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.leading-4 {
  line-height: 1rem;
}

.leading-5 {
  line-height: 1.3rem;
}

.leading-8 {
  line-height: 2rem;
}

.leading-9 {
  line-height: 2.25rem;
}
.leading-10 {
  line-height: 2.5rem;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.m-2 {
  margin: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}
.mr-2p {
  margin-right: 2%;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}
.mt-2-5 {
  margin-top: 0.625rem;
}

.mr-2 {
  margin-right: 0.5rem;
}
.mr-2-5 {
  margin-right: 0.625rem;
}
.ml-2-5 {
  margin-left: 0.625rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-2-5 {
  margin-bottom: 0.625rem;
}
.mt-3-5{
  margin-top: .875rem;
}
.mt-4 {
  margin-top: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}
.mb-4-5 {
  margin-bottom: 1.125rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-7 {
  margin-bottom: 1.875rem;
}
.mb-9 {
  margin-bottom: 2.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mr-8 {
  margin-right: 2rem;
}
.mr-10 {
  margin-right: 2.5rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}

.mt-auto {
  margin-top: auto;
}
.min-w-26{
 min-width: 6.625rem
}
.max-h-0 {
  max-height: 0px;
}

.max-h-52 {
  max-height: 13rem;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.opacity-0 {
  opacity: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.p-1px{
	padding: 0.0625rem
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-7-5 {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.pt-0 {
  padding-top: 0px;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pb-7{
  padding-bottom: 1.875rem;
}
.pt-3-5 {
  padding-top: .625rem !important;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem !important;
}
.pt-7-5{
  padding-top: 1.875rem !important;
}
.pb-7-5{
  padding-bottom: 1.875rem;
}
.py-7-5{
  padding-top: 1.875rem !important;
  padding-bottom: 1.875rem !important;
}
.pt-9 {
  padding-top: 2.5rem;
}
.pt-12-5 {
  padding-top: 3.125rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pr1rem {
  padding-right: 1.1rem;
}

.pr-7 {
  padding-right: 1.75rem;
}

.pt-0\.5 {
  padding-top: 0.125rem;
}

.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
  left: 0;
  top: 0;
}
.pst_center{
	left: 50%;
	top: 50%; 
	transform: translate(-50%, -50%);
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}
.left-100per {
  left: 100%;
}

.right-2 {
  right: 0.5rem;
}

.top-11 {
  top: 2.75rem;
}
.worder-break{
  word-break: break-all;
}
* {
  --tw-shadow: 0 0 #0000;
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-none {
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

* {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-gray-10 {
  color: #8B8B8B ;
}
.text-gray-20 {
  color: #B4B4B4 ;
}
.text-gray-30 {
  color: #787878 ;
}
.text-gray-50 {
  --tw-text-opacity: 1;
  color: rgba(119, 119, 119, 1) ;


}
.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgba(170, 170, 170, 1) !important;

}
.text-gray-200 {
  --tw-text-opacity: 1;
  color:  rgba(136, 136, 136, 1) !important;
}


.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgba(160, 160, 160, var(--tw-text-opacity));

}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgba(85, 85, 85, var(--tw-text-opacity));
}

.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}
.text-gray-750 {
  --tw-text-opacity: 1;
  color: rgba(51, 51, 51, 1);

}

.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-text-opacity));
}

.text-blue-500 {
  --tw-text-opacity: 1;
  color: #434AFA !important;
}

.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgba(37, 99, 235, var(--tw-text-opacity));
}

.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-text-opacity));
  font-weight: 500;
}

.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-text-opacity));
}

.text-red-500{
  color: #FF3636 !important;
}

.hover\:text-blue-700:hover {
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-text-opacity));
}

.overflow-ellipsis {
  text-overflow: ellipsis;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 3.75rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}
.w-27-6{
	width: 6.9rem
}
.w-28 {
  width: 7rem;
}

.w-29 {
  width: 7.4rem;
}
.w-32 {
  width: 8rem;
}

.w-36 {
  width: 9rem;
}
.w-52 {
  width: 13rem;
}

.w-56 {
  width: 14rem;
}

.w-60 {
  width: 15rem;
}
.w-72 {
  width: 18rem;
}

.w-96 {
  width: 24rem;
}
.w-97 {
  width: 24.3rem;
}
.w-45per {
  width: 45%;
}
.w-49per {
  width: 49%;
}
.w-half {
  width: 50%;
}

.w-2\/3 {
  width: 66.666667%;
}
.w-10p {
  width: 10%;
}
.w-18p {
  width: 18%;
}
.w-20p {
  width: 20%;
}
.w-25p {
  width: 25%;
}
.w-30p {
  width: 30%;
}
.w-39p {
  width: 39%;
}
.w-75p {
  width: 75%;
}

.w-full {
  width: 100%;
}


.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}

.z-50 {
  z-index: 50;
}
.z-100 {
  z-index: 50;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-x-1 {
  -moz-column-gap: 0.3rem;
  column-gap: 0.3rem;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}
.gap-x-3{
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}
.gap-x-4{
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
.gap-x-6{
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}
.gap-x-8{
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}
.gap-y-1{
	row-gap: .3rem;
}
.gap-y-2{
	row-gap: .5rem;
}
.gap-y-2-5{
	row-gap: .625rem !important;
}
.gap-y-4 {
  row-gap: 1rem !important;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-template-canvas{
	grid-template-columns: 55% 45%;
}
.grid-template-canvas-active{
	grid-template-columns: 40% auto 400px;
}


.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-180 {
  --tw-rotate: 180deg;
}

.-rotate-180 {
  --tw-rotate: -180deg;
}

.translate-y-72 {
  --tw-translate-y: 18rem;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}
.ico_ar-right{
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../images/icon/icon_arrow-right.png) center center no-repeat;
  background-size: cover;
}
@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes ping2 {
  75%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

input[type="checkbox"]:checked + div {
  --tw-border-opacity: 1;
  border-color: rgba(29, 78, 216, var(--tw-border-opacity))
}

input[type="checkbox"]:checked + div svg {
  opacity: 1
}

.radio-tabs .tab > input[type="radio"]:checked ~ label {
  --tw-bg-opacity: 1;
  background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.radio-tabs .tab + .radio-tabs .tab {
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  border-left-width: 1px;
}

.radio-tabs .tab label {
  border-radius: 0.375rem;
  cursor: pointer;
}

.tab {
  display: inline-block;
}

a {
  cursor: pointer;
}

select {
  background-image: url("data:image/svg+xml, %3Csvg fill='none' stroke='currentColor' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-position: center right 0.5rem;
  background-size: .75rem .75rem;
  padding-right: 1.75rem !important;
  background-repeat: no-repeat;
}

.button-active-blue {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: #2563eb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
  --tw-gradient-to: #1e40af;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.align_menu .button-active-blue path{
	stroke: #fff;
	}

.button-active-blue.svg_fill path{
	fill: #fff;
}
.flair {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .25rem;
    position: relative;
    font-weight: 500;
    font-size: 1rem;
    text-overflow: initial;
    overflow: hidden;
    width: 78px;
    border-radius: 14px;
}
.flair--dev {
    background: #1d4ed8;
    color: #fff;
}
.flair--local {
    background: #f42d1f;
    color: #fff;
}
.flair--shine:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image: linear-gradient( -45deg, transparent 33%, rgba(255,255,255,0.3) 55%, transparent 66% );
    background-size: 300% 100%;
    animation: shine 4s infinite;
    animation-delay: 2.5s;
}
.l-radio{
	border-radius: 50px;
	display: inline-flex;
	cursor: pointer;
	transition: background .2s ease;
	align-items: center;
}

.l-radio input[type="radio"]{
	vertical-align: middle;
    width: 16px;
    height: 16px;
    border-radius: 10px;
    background: none;
    border: 0;
    box-shadow: inset 0 0 0 1px #bbb;
    box-shadow: inset 0 0 0 1px  #bbb;
    appearance: none;
    padding: 0;
    margin: 0;
    transition: box-shadow 150ms cubic-bezier(.95,.15,.5,1.25);
    pointer-events: none;
    margin-right: .3rem
}
   
  
.l-radio input[type="radio"]:focus {
  outline: none
}

.l-radio input[type="radio"]:checked {
  box-shadow: inset 0 0 0 3px #fff;
  border: 1px solid #2563EB;
  background: #2563EB
}


.filter-gray {
  filter: grayscale(100%);
}

@keyframes shine {
	0% {
		background-position: right;
	}
	50% {
      background-position: left;
    }

	100% {
		background-position: left;
	}
}

.clearfix:after, .cf:after{content:"";display:block;clear:both}
.clear{clear:both}
.line1{overflow:hidden;text-overflow:ellipsis;white-space:nowrap} /* 문장 한줄(···) */
.line2{display:-webkit-box;-webkit-line-clamp:2;overflow:hidden;white-space:normal !important;text-overflow:ellipsis;-webkit-box-orient:vertical}
.line3{display:-webkit-box;-webkit-line-clamp:3;overflow:hidden;white-space:normal !important;text-overflow:ellipsis;-webkit-box-orient:vertical}
.line4{display:-webkit-box;-webkit-line-clamp:4;overflow:hidden;white-space:normal !important;text-overflow:ellipsis;-webkit-box-orient:vertical}
.line5{display:-webkit-box;-webkit-line-clamp:5;overflow:hidden;white-space:normal !important;text-overflow:ellipsis;-webkit-box-orient:vertical}
.line6{display:-webkit-box;-webkit-line-clamp:6;overflow:hidden;white-space:normal !important;text-overflow:ellipsis;-webkit-box-orient:vertical}
.line7{display:-webkit-box;-webkit-line-clamp:7;overflow:hidden;white-space:normal !important;text-overflow:ellipsis;-webkit-box-orient:vertical}
.line8{display:-webkit-box;-webkit-line-clamp:8;overflow:hidden;white-space:normal !important;text-overflow:ellipsis;-webkit-box-orient:vertical}
.line9{display:-webkit-box;-webkit-line-clamp:9;overflow:hidden;white-space:normal !important;text-overflow:ellipsis;-webkit-box-orient:vertical}
.line10{display:-webkit-box;-webkit-line-clamp:10;overflow:hidden;white-space:normal !important;text-overflow:ellipsis;-webkit-box-orient:vertical}

/* IR block formating context */
.sr-only{overflow:hidden;position:absolute !important;border:0;width:1px;height:1px;clip:rect(1px 1px 1px 1px);/*IE6,7*/clip:rect(1px,1px,1px,1px);clip-path:inset(50%)}
/* IR inline formating context */
.sr-only2{overflow:hidden;display:inline-block;border:0;margin:-1px;width:1px;height:1px;clip:rect(1px 1px 1px 1px);/*IE6,7*/clip:rect(1px,1px,1px,1px);clip-path:inset(50%)}

::-webkit-input-placeholder {/* 크롬 4–56 */color: #9e9e9e}
:-moz-placeholder { /* 파이어폭스 4–18 */ color: #9e9e9e;opacity:1}
::-moz-placeholder { /* 파이어폭스 19–50 */ color: #9e9e9e;opacity:1}
:-ms-input-placeholder { /* 인터넷 익스플로러 10+ */ color:#9e9e9e}
::placeholder { /* 파이어폭스 51+, 크롬 57+ */color:#9e9e9e;opacity:1}

/* 20200611 추가 리셋 */
*{margin: 0; padding: 0; box-sizing: border-box;}
ul, ol, li{list-style: none;}
a{text-decoration: none; color: black;}
::before, ::after{box-sizing: border-box;}
.hide{position: absolute; left: -3000%;}
body{font-family: 'Noto Sans KR' !important; position: relative;}
button{cursor: pointer; outline: 0; border: 0;}
.cb:after {content: ""; display: block; clear: both; }
.btnCenter {text-align: center; }
.btnRight {text-align: right; }
.btnLeft {text-align: left; }
.spoka { font-family: 'Spoqa Han Sans' !important; }
.red { color: #ff0000; }
p { word-break: break-all; }
::selection {background-color: #ff00006e;color: #fff;} /*드래그 색 변경*/
select {-webkit-appearance: none;  /* 네이티브 외형 감추기 */-moz-appearance: none;appearance: none;background: url(/images/icon/icon-select_down.svg) no-repeat 97% 50%;} /*select 화살표 모양*/

.auto{height: auto !important;} /*풀페이지 섹션 자동 height*/
.auto .fp-tableCell{height: auto !important;}

/*** 공통영역 2020/06/07 메인헤더교체 ***/
/** HEADER **/

.header{width: 100%; height: 100px; line-height: 100px; border-bottom: 1px solid #eee; background: #fff; position: fixed; left: 0; top: 0; z-index: 10;}
.header .logo{float: left; width: 136px; height: 100%; margin-right: 54px; }
.header .logo a{display: block; width: 100%; height: 100%;}
.header .logo img{width: 100%; padding-top: 35px;}
.header nav{float: left;}
.header nav .gnb > li{display: inline-block; margin: 0 24px; }
.header nav .gnb > li > a{display: block; width: 100%; height: 100%; }
.header nav .gnb > li > a span{font-size: 18px; color: #000; letter-spacing: -0.72px; position: relative; z-index: 1;}
.header nav .gnb > li.on > a span:after{content: ''; display: block; width: 100%; height: 10px; background: #47ca4540; position: absolute; top: 70%; left: 50%; transform: translate(-50%, 0%); z-index: -1;}
.header .sns{float: right;}
.header .sns > li{display: inline-block; padding: 0 10px;}
.header .sns > li img{width: 36px; vertical-align: -8px;}

.header nav .mb_wrap{display: none;}
.header nav .mb_nav{display:none;justify-content: space-between; align-items:center; padding: 0 50px; border-top: 1px solid #ddd;}
.header nav .mb_nav .mb_sns li{display: inline-block; width: 36px; height: 36px; margin-right: 13px;}
.header nav .mb_nav .mb_sns li img{width: 100%; height: 100%; vertical-align: -14px;}
.header nav .mb_nav .app_btn{display: inline-block; width: 120px; height: 40px; line-height: 40px; border-radius: 20px; color: #fff; background: #F42D1F; text-align: center;}
.header .toggle{display: none; float: right; width: 22px; height: 20px; position: relative; cursor: pointer; margin-top: 20px;}
.header .toggle span{display: block; width: 22px; height: 1.5px; background: #000; position: absolute; transition: .3s;}
.header .toggle span:nth-child(1){top: 0; left: 0;}
.header .toggle span:nth-child(2){top: 7px; left: 0;}
.header .toggle span:nth-child(3){top: 14px; left: 0;}
.header .toggle.on span:nth-child(1){top: 10px; transform: rotate(45deg);}
.header .toggle.on span:nth-child(2){display: none;}
.header .toggle.on span:nth-child(3){top: 10px; transform: rotate(-45deg);}


/* 푸터영역 */
span.mb_none{display: inline-block;}
.footer{background: #404040; position: relative;}
#footer footer{width: 1100px; margin: 0 auto;}
footer .footer_inner{width: 1100px; margin: 0 auto; padding-bottom: 22px;}
footer .footer-menu { display: flex; flex-direction: row; justify-content: space-between; width: 100%; height: 68px; margin-bottom: 30px; line-height: 68px; border-bottom: 1px solid #707070; }
footer .footer-menu ul { display: flex; flex-direction: row; }
footer .footer-menu ul li { margin-right: 30px; }
footer .footer-menu ul li a { color: #B1B1B1; }
footer .footer-menu .cs-center { display: flex; margin-left: auto; font-family: 'SpoqaHanSans', sans-serif; font-size: 16px; font-weight: 700; color: #FFFFFF; letter-spacing: -0.64px; }
footer .footer-menu .cs-center strong { display: flex; margin-left: 12px; font-size: 25px; font-weight: normal; letter-spacing: -1px; color: #fff;}
footer .footer-info { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; width: 100%; font-size: 14px; line-height: 24px; letter-spacing: -0.56px; color: #9D9D9D; }
footer .footer-info .logo-btm { display: flex; margin-bottom: 10px; }
footer .footer-info .ft-con { display: flex; flex-direction: row; justify-content: space-between; align-items: center; width: 100%; }
footer .footer-info .ft-con .ft-inner { display: flex; flex-direction: column; }
footer .footer-info .ft-con .ft-inner .info { text-align: left; }
footer .footer-info .ft-con .ft-inner address { text-align: left; }
footer .footer-info .ft-con .ft-sns { display: flex; align-items: center; margin-left: auto; }
footer .footer-info .ft-con .ft-sns a:nth-child(1) { margin-right: 29px; }
br.footer_mb{display: none;}
.footer_res_menu{display: none; width: 100%; padding: 20px 0; border-bottom: 1px solid #707070; margin-bottom: 20px;}
.footer_res_menu > li{float: left; width: 50%; height: 30px; line-height: 30px;}
.footer_res_menu > li > a{display: block; width: 100%; height: 100%; font-size: 12px; letter-spacing: -0.48px; color: #B1B1B1;} 
.footer-wrap { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #404040 !important; color: #B1B1B1 !important; height: 198px !important; }
section.page10.fp-section { height: 298px !important; }

/* 푸터 정책 */
.footer_policy{padding: 120px 0;}
.footer_policy .inner{width: 750px;}
.footer_policy h1.title{font-size: 28px; margin: 48px 0 1.5rem;}
.footer_policy img{max-width: 100%;}
.footer_policy .txt_title{display: block; font-size: 20px; font-weight: bold; margin-bottom: 15px;}
.footer_policy hr {margin-top: 1rem;margin-bottom: 1rem;border: 0;border-top: 1px solid rgba(0, 0, 0, 0.1);}
.footer_policy > .inner > div{margin-top: 20px;}
.footer_policy p{font-size: 15px; line-height: 1.8rem;}
.footer_policy .txt_desc li{margin-top: 15px;}
.footer_policy .table {margin:0 0 50px;}
.footer_policy table {width:100%;border-top:1px solid #8B8B8B;}
.footer_policy tr {border-bottom:1px solid #8B8B8B;}
.footer_policy th,
.footer_policy td {color:#222222;font-size:0.813rem;text-align:center;vertical-align:middle;}
.footer_policy th {height:60px; background:#E5E5E5;}
.footer_policy th span {display:block;color:#222222;font-size:0.625rem;padding-top:5px;}
.footer_policy td {height:42px;}
.footer_policy th:nth-child(2),
.footer_policy td:nth-child(2) {border-left:1px solid #8B8B8B;}

.mt-4{
  margin-top: 1rem;
}
.px-8{
  padding-left: 32px;
  padding-right: 32px;
}
.button-border--bottom{
  background: none;
  outline: 0;
  border-bottom: 1px solid #000;
}
.icon-s{display: block; width: 16px; height: 16px;}
i.toggle{
  background-image: url(../images/icon/icon-toggle.svg);
}
@media screen and (max-width: 1100px){

  span.mb_dn{display: none;}
  .header{width: 100%; height: 60px; line-height: 60px; z-index: 999; background: #fff;}
  .header .logo{float: left; width: 90px; height: 100%; margin-right: 0;}
  .header .logo img{  padding-top: 20px;}
  .nav_bg{display: none; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.7); z-index: 10; position: fixed; left: 0; top: 0;}
  .nav_bg.on{display: block;}
  .header nav{float: none; width: 100%; background: #fff; position: absolute; left: 0; top: 60px; z-index: 999;}
  .header nav .gnb > li{display: block; height: 70px; text-align: center; margin: 0;}
  .header nav .mb_nav .app_btn{font-size: 17px;}
  .header .sns{display: none;}
  .header nav{display: none;}
  .header nav.on{display: block;}
  .header .toggle{display: block;}
  .header nav .mb_nav{display: flex;}
  .visual{padding-top: 60px;}

  footer {display: block; width: 100% ; }
  footer .footer_inner{width: 100%; padding: 0 50px 50px;}
  #footer footer{width: 100%; padding: 0 0px 50px;}
  footer .footer-menu { display: flex; flex-direction: row; justify-content: space-between; width: 100%; height: 68px; margin-bottom: 0px; line-height: 68px; border-bottom: 1px solid #707070; }
  footer .footer-menu ul { display: none;  }
  footer .footer-menu .cs-center { margin-left: 0;}
  .footer_res_menu{display: block;}
  footer .footer-info .ft-con .ft-sns { position: absolute; top: 20px; right: 50px;}

}
@media screen and (max-width: 900px){
  #footer footer{padding: 0px;}
  .footer_policy .inner{width: 100%; padding: 0 50px;}
}

@media screen and (max-width: 510px){
  br.footer_mb{display: block;}
  span.mb_none{display: none;}
  .header .inner{padding: 0 16px !important;}
  .header nav .mb_nav{padding: 0 22px !important;}
  .header nav .mb_nav .app_btn{font-size: 14px;}
  footer {padding-bottom: 0px;}
  .footer_policy .inner{width: 100%; padding: 0 20px;}
  /* .tms footer .inner{padding: 0 14px;} */
  footer .footer_inner{padding: 0 20px 50px;}
  footer .footer-menu .cs-center{font-size: 12px;}
  footer .footer-menu .cs-center strong{font-size: 22px;}
  footer .footer-info .ft-con .ft-sns { position: absolute; top: 20px; right: 22px;}
  footer .footer-info .logo-btm img{width: 100px;}
  footer .footer-info .ft-con .ft-sns a:nth-child(1){margin-right: 18px;}
  footer .footer-info .ft-con .ft-inner .info,
  footer .footer-info .ft-con .ft-inner address {font-size: 10px; letter-spacing: -.4px; line-height: 15px;}
  .footer_policy h1.title{font-size: 20px; margin: 0;}
  .footer_policy .txt_title {font-size: 16px;}
  .footer_policy p{font-size: 14px;}
}

.ctn-btn{display: block; text-align: center; width: 100%; height: 72px; line-height: 72px; border-radius: .5rem; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3); font-size: 24px; font-weight: bold;}
.ctn-btn-primary{background: #FF3236; color: #fff;}
.ctn-btn-secondary{background: #fff; color: #3C3C3C;}

/* 20231018 팝업 추가 */
.popup{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.3);
  z-index: 999;
}
.popup .popup-wrap{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 40%;
  min-width: 650px;
  max-width: 850px;
}
.popup .popup-wrap .popup-box{
  position: relative;
}
/* .popup-box .popup-content{}
.popup-box .popup-content .img-box{} */
.popup-box .popup-content .img-box img{
  width: 100%;
  height: auto;
}
.popup-box .popup-btn-wrap{
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.popup-box .popup-btn-wrap > a{
  display: inline-block;
  padding: 4px 8px 5px;
  margin: 0 0 0 2px;
  font-size: 14px;
  line-height: 1;
  color: #666;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 3px;
}

@media screen and (max-width: 768px) {
  .popup .popup-wrap{
    width: calc(100% - 60px);
    min-width: 0;
  }
  .popup-box .popup-btn-wrap{
    bottom: calc(100% + 5px);
    right: 0;
  }
  .popup-box .popup-btn-wrap > a{
    font-size: 13px;
  }
}