@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

:root {
    --dark_red: rgb(205, 0, 0);
    --grey: #777;
    --light_grey: #eee;
    --light_red: rgb(255, 68, 68);    

    --bg-blue: #1267de;
    --bg-red: #de263b;
    --bg-green: #00DE5A;
    --bg-white: #fff;
    --bg-light-blue: #f4f7fe;
    --bg-light-gray: #f9f9f9;

    --text-color-white: #fff;
    --text-color-blue: #1267de;
    --text-color-black: #111;
    --text-color-black2: #333;
    --text-color-gray: #5f5e5c;
    --text-color-red: #de263b;
 
    --line-gray: #ddd;
    --line-blue: #1267de;
}

html, body{
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

*{
  box-sizing: border-box;
  font-family: Pretendard;
}

ul, li, ol{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    font-weight: bold;
    font-size: 1rem;
    display: block;    
    text-decoration: none;
    margin: 0 !important;
}
a {
    all: unset;
}
a:link {
    text-decoration: none;
    color: #3f464d;
}
a:visited {
    text-decoration: none;
    color: #3f464d;
}
a:active {
    text-decoration: none;
    color: #3f464d;
}
a:hover {
    text-decoration: none;
    color: #1267DE;
    cursor: pointer;
}

hr{
  margin: 0.5em 0;
  color: inherit;
  background-color: var(--line-gray);  
  opacity: .25;
}

section{
    width: 100%;
    min-width: 375px;
    position: relative;
    text-align: center;
}

section>.content_wrap{
    max-width: 1194px;    
    margin:0 auto;
}


h1, h2, h3, h4{
  display: inline-block;
  margin: 0.5em 0;
}

h1{
  font-size: 3em;
  line-height: 120%;
}

h2{
  font-size: 1.5em;
  line-height: 120%;
  color: #111;
  margin: 0;
  padding: 0.5em 0;
}

h3{
  font-size: 1.3em;
}

h4{
  font-size: 1em;
}

.w-20{ width: 20% !important; }
.w-30{ width: 30% !important; }
.w-40{ width: 40% !important; }
.w-46{ width: 46.3% !important; }
.w-50{ width: 50% !important; }
.w-100{ width: 100% !important; }


.font-lg{ font-size: 1.5em !important; }
.font-sm{ font-size: 0.895em !important; }
.font-xsm{ font-size: 0.95em !important; }

.bold{ font-weight: 600; }
.font-light{ font-weight: 200; }
.font-light2{ font-weight: 300; }
.font-normal{ font-weight: 400; }

.align-l{ text-align: left; }
.align-c{ text-align: center; }
.align-r{ text-align: right; }

select{
  width: 100%;
  padding: 1em;
  border: 1px solid var(--line-gray);  
  border-radius: 0.3em;
  background: url('../../images/ico_arrow_dw.png') calc(100% - 20px) center no-repeat #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;  
  position: relative;
}


.btn{
  cursor: pointer;
  display: inline-block;
  padding: 0.65em 1em;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.5;
  user-select: none;
  border: 1px solid transparent;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-radius{
  border-radius: 1.5em !important;
}


.btn-blue{
  background-color: var(--bg-blue);
  color: var(--text-color-white) !important;
  border-radius: 0.3em;
}

.btn-gray{
  background: #5F5E5C;
  color: var(--text-color-white) !important;
  border-radius: 0.3em;
}

.btn-green{
  background-color: var(--bg-green);
  color: var(--text-color-black) !important;
  border-radius: 0.3em;
}

.btn-outline-white{
  background-color: var(--bg-white);
  color: var(--text-color-black2) !important;
  border: 1px solid var(--line-gray);
  border-radius: 0.3em;
}

.btn-outline-light-blue{
  background-color: var(--bg-light-blue);
  color: var(--text-color-blue) !important;
  border: 1px solid var(--line-blue);
  border-radius: 0.3em;
}

.btn-sm{
  padding:0.2em 0.5em;
  font-size: 16px;
}

.icon-btn{
  color: var(--text-color-gray);
}

.icon-btn:hover, .icon-btn:active{
  color: var(--text-color-blue);
}

.icon-btn .material-symbols-outlined{
  font-size: 24px;  
}


input{
  padding: 0.5em 0.7em;
}

input:focus{ outline: none; }

.input_group{ display: flex; }
.btn_wrap{ display: flex; }

.quantity_input{
  width: fit-content;
  justify-content: flex-end;
  border: 1px solid var(--line-gray);
  border-radius: 0.3em;
  float: inline-end;
}
.quantity_input .btn{
  color: var(--text-color-gray);  
  width: 40px;
}
.quantity_input .btn:first-child{
  border-radius: 0.3em 0 0 0.3em;
}
.quantity_input .btn:last-child{
  border-radius: 0 0.3em 0.3em 0;
}

.quantity_input .btn:active{
  background-color: rgba(0, 0, 0, 0.1);
}
.quantity_input input{
  width: 100px;
}
.quantity_input .btn span{
  font-size: 20px;
  line-height: 1.5;
}
.quantity_input .btn, .quantity_input input{
  flex-shrink:0;
  height: 40px;
  padding: 0.5em;
  margin: 0;
  background: #fff;
  border: 0;
  text-align: center;
  font-weight: 400;
}

.d-flex{
  display: flex;
  align-items: center
}
.d-flex-r{
  display: flex;
  flex-direction: row !important;
}

.g-2{
  flex: 1 1 40%;
}

.row{
  display: block;
}

.justify-content-space-between{
  justify-content: space-between;
}
.justify-content-start{
  justify-content: flex-start;
}
.justify-content-end{
  justify-content: flex-end;
}

.float-l{ float: left; }
.float-r{ float: right; }

.bg-none{ background: none; }
.bg-light-blue{ background-color: var(--bg-light-blue); }
.bg-light-gray{ background-color: var(--bg-light-gray); }
.bg-white{ background-color: var(--bg-white); }

.border-b{ border-bottom: 1px solid var(--line-gray); }

.m0{ margin:0; }
.m-1{ margin: 1em; }
.m-2{ margin: 2em; }
.m-3{ margin: 3em; }
.m-4{ margin: 4em; }
.m-5{ margin: 5em; }

.ml-0{ margin-left: 0; }
.ml-1{ margin-left: 1em; }
.ml-2{ margin-left: 2em; }
.ml-3{ margin-left: 3em; }
.ml-4{ margin-left: 4em; }
.ml-5{ margin-left: 5em; }

.mr-0{ margin-right: 0; }
.mr-1{ margin-right: 1em; }
.mr-2{ margin-right: 2em; }
.mr-3{ margin-right: 3em; }
.mr-4{ margin-right: 4em; }
.mr-5{ margin-right: 5em; }

.mt-0{ margin-top: 0; }
.mt-1{ margin-top: 1em; }
.mt-2{ margin-top: 2em; }
.mt-3{ margin-top: 3em; }
.mt-4{ margin-top: 4em; }
.mt-5{ margin-top: 5em; }

.mb-0{ margin-bottom: 0; }
.mb-1{ margin-bottom: 1em; }
.mb-2{ margin-bottom: 2em; }
.mb-3{ margin-bottom: 3em; }
.mb-4{ margin-bottom: 4em; }
.mb-5{ margin-bottom: 5em; }

.p0{ padding:0; }
.p-1{ padding: 1em; }
.p-2{ padding: 2em; }
.p-3{ padding: 3em; }
.p-4{ padding: 4em; }
.p-5{ padding: 5em; }

.pl-0{ padding-left: 0; }
.pl-1{ padding-left: 1em; }
.pl-2{ padding-left: 2em; }
.pl-3{ padding-left: 3em; }
.pl-4{ padding-left: 4em; }
.pl-5{ padding-left: 5em; }

.pr-0{ padding-right: 0; }
.pr-1{ padding-right: 1em; }
.pr-2{ padding-right: 2em; }
.pr-3{ padding-right: 3em; }
.pr-4{ padding-right: 4em; }
.pr-5{ padding-right: 5em; }

.pt-0{ padding-top: 0; }
.pt-1{ padding-top: 1em; }
.pt-2{ padding-top: 2em; }
.pt-3{ padding-top: 3em; }
.pt-4{ padding-top: 4em; }
.pt-5{ padding-top: 5em; }

.pb-0{ padding-bottom: 0; }
.pb-1{ padding-bottom: 1em; }
.pb-2{ padding-bottom: 2em; }
.pb-3{ padding-bottom: 3em; }
.pb-4{ padding-bottom: 4em; }
.pb-5{ padding-bottom: 5em; }

.col-blue{ color:var(--text-color-blue) !important; }
.col-gray{ color:var(--text-color-gray); }
.col-red{ color:var(--text-color-red); }

.c_title{
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub_title{
  position: relative;
  text-align: left;
  font-size: 22px;
  font-weight: 400;
  padding: 0.5em 0 1em 0;
  border-bottom: 1px solid var(--light_grey);
}


.border-light-box{
  background: var(--bg-white);
  border-radius: 0.3em;
  border: 1px solid var(--light_grey);
  padding: 1em;
  margin: 1em 0;
}

.border-button-box{
  /*width: 100%;*/
  /*background: var(--bg-white);*/
  /*padding-right: 0.3em;*/
  padding: 0.3em;
  /*margin: 1em 0;*/
}

.badge_light_blue{
  display: inline-block;
  padding: 0.025em 0.5em;
  color: var(--text-color-blue);
  background-color: var(--bg-light-blue);
  font-size: 1em;
  margin-right: 0.3em;
  border-radius: 0.2em;
}

.badge_red{
  display: inline-block;
  padding: 0.025em 0.5em;
  color: var(--text-color-white);
  background-color: var(--bg-red);
  font-size: 1em;
  margin-right: 0.3em;
  border-radius: 0.2em;
}

.badge_blue{
  display: inline-block;
  padding: 0.05em 0.5em;
  color: var(--text-color-white);
  background-color: var(--bg-blue);
  font-size: 1em;
  margin-right: 0.3em;
  border-radius: 0.2em;
}

/*scrollbar*/
/*세로기준*/
.scroll-style1::-webkit-scrollbar-track {
  background-color: none;
}

.scroll-style1::-webkit-scrollbar {
  width: 4px;
  background-color: none;
}

.scroll-style1::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
  border-radius:2px;
}

/*가로기준*/
.scroll-style2::-webkit-scrollbar-track {
  background-color: none;
}

.scroll-style2::-webkit-scrollbar {
  height: 4px;
  background-color: none;
}

.scroll-style2::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
  border-radius:2px;
}

.overflow-y-none{
  overflow-y: hidden;
}
.overflow-x-none{
  overflow-x: hidden;
}


/*list type*/
.list_style1{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.list_style1 li{
  width: 100%;
  font-size: 18px;
  line-height: 140%;
  margin: 0.25em 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list_style1 li a{
  color: #333;
}

.list_style2{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.list_style2 li, .list_style2 li a{
  display: flex;
  width: 100%;
  font-size: 18px;
  line-height: 140%;
  margin: 0.7em 0;
  text-align: left;
  white-space: nowrap;  
  text-overflow: ellipsis;
  justify-content: space-between;
}
.list_style2 li p{
  margin:0;
}
.list_style2 li p:first-child{
  padding-left: 0.5em;
}
.list_style2 li p:last-child{
  padding-right: 0.5em;
}
.list_style2 li a{
  color: #333;
}


/*tab css*/
.tab{ width:100%; }
.tabnav{font-size:0; display: flex; }
.tabnav li{ flex: 1 1 0;  height:49px; text-align:center; border-bottom: 1px solid var(--line-gray);}
.tabnav li a:before{content:""; position:absolute; left:0; bottom:0px; width:100%; height:2px; }
.tabnav li a.active:before{background: var(--bg-blue);}
.tabnav li a.active{border-bottom:1px solid #fff;}
.tabnav li a{ position:relative; display:block; color: var(--text-color-gray); padding:0 30px; line-height:48px; text-decoration:none; font-size:16px;}
.tabnav li a:hover,
.tabnav li a.active{background:#fff; color: var(--bg-blue);  border-bottom: 1px solid var(--line-gray);}
.tabcontent{padding: 0px 0; }



.table_estimate{  
  font-size: .9em;  
  width: 100%;
  border-collapse: collapse;  
  overflow: hidden;
}

.table_estimate th {
  padding: .5em .5em;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 300;
  width: 30%;
  background: var(--bg-light-gray);
  color: var(--text-color-gray);
}

.table_estimate td {
  padding: .5em .5em;
  text-align:left;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 300;
}

.table_estimate th, td{
  border-bottom: 1px solid var(--line-gray);  
  color: #333;
}



.table_style1{
  border-bottom: 1px solid var(--light_grey);
  font-size: .9em;  
  width: 100%;
  border-collapse: collapse;
  border-radius: 5px;
  overflow: hidden;
}

.table_style1 thead{
  border-top: 2px solid #333;
  border-bottom: 1px solid var(--line-gray);
}
.table_style1 thead th{
  text-align: center;
}

.table_style1 td, th {
  padding: 1.2em .5em;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 300;
}


.table_style1 td{
  border-bottom: 1px solid var(--line-gray);  
  color: #333;
}

.table_style1 .d-flex div{
  flex: 1 1 auto;
}


.table_style2{  
  font-size: .9em;  
  width: 100%;
  border-collapse: collapse;  
  overflow: hidden;
}

.table_style2 thead th{
  font-weight: 500;
  text-align: center;
  border-top: 1px solid var(--line-gray);
  background: var(--bg-light-gray);
  color: var(--text-color-gray);
}

.table_style2 td, th {
  padding: 1.2em .5em;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 300;
}


.table_style2 td{
  border-bottom: 1px solid var(--line-gray);  
  color: #333;
}


.table_style3{  
  font-size: .9em;  
  width: 100%;
  border-collapse: collapse;  
  overflow: hidden;
}

.table_style3 thead th{
  font-weight: 500;
  text-align: center;
  border-top: 1px solid var(--line-gray);
  background: var(--bg-light-gray);
  color: var(--text-color-gray);
}

.table_style3 td, th {
  padding: 1.2em .5em;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 300;
}


.table_style3 td{
  border-bottom: 1px solid var(--line-gray);  
  color: #333;
}

.table_style3 .prd-img{
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin: 0 auto;
}
.table_style3 .prd-img img{
  width: 100%;
}

.bbs_page{
  margin: 1em 0;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.bbs_page li a{
  display: block;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
} 


.bbs_page li.num a.active{
  background-color: var(--bg-light-blue);  
  color: var(--text-color-blue);
  border-radius: 12px;
}

.bbs_page li a.disabled{
  opacity : 0.5;
  pointer-events: none;
}




/* form style */
/* The container */
.input-container {
  display: block;
  position: relative;
  padding-left: 1.5em;  
  cursor: pointer;
  font-size: 16px;  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.input-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 14px;
  width: 14px;
  border-radius:20px;
  background-color: #fff;
  border: 1px solid var(--line-gray);
}

/* On mouse-over, add a grey background color */
.input-container:hover input ~ .checkmark {
  background-color: #fff;
  border: 1px solid var(--line-gray);
}

/* When the checkbox is checked, add a blue background */
.input-container input:checked ~ .checkmark {
  background-color: #fff;
  border: 1px solid var(--line-blue);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display:none;
}

/* Show the checkmark when checked */
.input-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */

.input-container .checkmark:after {  
  width: 8px;
  height: 8px;
  top: 2px;
  left: 2px;
  background: var(--bg-blue);
  border-radius:5px;  
}



.input{
  display: inline-block;
  padding: 0.5em 1em;
  border: 1px solid var(--line-gray);
}

input::placeholder, textarea::placeholder{
  color: #CECECE;
  font-weight: 300;
}