@charset "UTF-8";
/* 스포카 */
@import url("//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css");
/* 주아 */
@import url("https://fonts.googleapis.com/css2?family=Jua&display=swap");
/* 프리텐다드 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

* {
  font-family: "Pretendard", "Spoqa Han Sans Neo", "sans-serif";
}
:root {
  --white: #fff;
  --grey1: #F2F3F7;
  --grey2: #F5F5F5;
  --grey3: #AFAFAF;
  --border: #DFDFDF;
  --dark: #313131;
  /* --point_main: #2D4DCC; */
  --point_main: #002C66;
  --point_blue: #2D4DCC;
  --point_red: #FF0057;
  --point_yellow: #ffae1f;
  --point_navy: #333f55;
  --point_green: #14ddb9;
  --black: #000;
  --padding: 10px;
}

/* reset */
h1 a{display: block;}
a{
  color: inherit;
  text-decoration: none;
}
button{
  background: none;
  border: none;
}
img,
video{
  vertical-align: bottom;
}
video[poster]{
  height: 100%;
  width: 100%;
}
.hidden{
  display: none;
}
.ellipsis_1{
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis_2{
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 표시할 줄 수 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis_3{
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 표시할 줄 수 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.word_keep{
  word-break: keep-all;
}
/* layout */
body{
  min-width: 1480px; /* 또는 1920px */
  width: 100%;
  width: 100%;
  overflow-x: auto;
  background-color: var(--white);
  line-height: 1.1em;
  font-family: Pretendard;
  /* overflow-x: hidden; */
}
.container_pc{
  width: 1220px;
  margin: auto;
  padding: 0 15px;
  box-sizing: content-box;
}
@media (max-width: 1220px){
  .container_pc {
    /* margin-left: 0; */
    /* margin-right: auto; */
  }
}
li, p, a{
  font-family: Pretendard;
}
ul, ol, dl, dd, dt, p{
  padding: 0;
  margin: 0;
  list-style: none;
}
.d-flex{
  display: flex;
}
.d-none{
  display: none !important;
}
.wrap{
  flex-wrap: wrap;
}
.all_center{
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 0 auto;
}
.sub_btn{
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 7px;
  background-color: var(--grey3);
  color: var(--white);
  transition: .2s;
  cursor: pointer;
}
.sub_btn:hover{
  background-color:#909090;
}
.cf{
  display: block;
  clear: both;
  content: ' ';
}

.pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1%;
  padding-bottom: calc(var(--padding)*2);
}
.pagination li{
  position: relative;
  font-size: 0.95em;
  line-height: 1em;
  border-radius: 50%;
  color: var(--grey3);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination li a, .pagination li span{
  padding: 5px 8px;
}
.pagination li.active{
  color: #4d4d4d;
  font-weight: 600;
}
.pagination li.next, .pagination li.prev{
  color: #4d4d4d;
}
/* .pagination li.active::before{
  position: absolute;
  width: 30px;
  height: 30px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  content: "";
  border-radius: 50%;
  border: 1px solid var(--point_main);
  color: var(--point_main);
  font-weight: 600;
} */
.pagination li a{
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  /* gap: 5px; */
}
.pagination li a i{
  /* font-size: 0.85em; */
}

.margin_xl{
  padding-bottom: calc(var(--padding)*4);
}
.margin_l{
  padding-bottom: calc(var(--padding)*3.5);
}
.margin_m{
  padding-bottom: calc(var(--padding)*2.5);
}
.margin_s{
  padding-bottom: calc(var(--padding)*1.5);
}

/* TYPOGRAPHY */
.size_xl{
  font-size: 1.5rem !important;
}
.size_l{
  font-size: 1.25rem !important;
}
.size_m{
  font-size: 1.05rem !important;
}
.size_s{
  font-size: 0.925rem !important;
}
.size_xs{
  font-size: 0.875rem !important;
}
.image-style-align-center{}
.image-style-align-left{}
.image-style-align-right{}
/*COLOR*/
.white{
  color: var(--white);
}
.dark{
  color: var(--dark);
}
.cl_point {
  color: var(--point_main);
}
.cl_red {
  color: var(--point_red);
}
.cl_blue {
  color: var(--point_blue);
}
.cl_yelow {
  color: var(--point_yellow);
}
.cl_navy {
  color: var(--point_navy);
}
.cl_green {
  color: var(--point_green);
}

/* hover, button*/
.cursor{
  cursor: pointer;
}
.user_hover{
  text-decoration: none;
  color: var(--black);
  transition: .3s;
}
.user_hover:hover{
  color: var(--point_blue);
}
.butn_tab{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}
.butn_tab li{
  border-radius: 50px;
  overflow: hidden;
  transition: .2s;
}
.butn_tab li a{
  display: block;
  padding: 6px 12px;
  line-height: 1em;
  transition: .3s;
}
.butn_tab li a:hover{
  color: var(--point_main);

}
.butn_tab li.active{
  background-color: var(--point_main);
  color: var(--white) !important;
}
.butn_tab li.active a{
  color: var(--white) !important;
}
.border_s{
  border-radius: 7px;
  overflow: hidden;
}
.border_l{
  border-radius: 10px;
  overflow: hidden;
}
.page_prev{
  color: var(--grey3);
  fill: var(--grey3);
  cursor: pointer;
  line-height: 1em;
  transition: .2s;
}
.page_prev a{
  display: flex;
  align-items: center;
}
.page_prev:hover{
  filter: brightness(75%);
}
.value_inp{
  display: block;
  width: 100%;
  border-radius: 7px;
  border: 1px solid var(--border);
  font-size: 0.9em;
  padding: 15px;
  max-height: 50px;
  transition: .2s;
  box-sizing: border-box;
}
textarea.value_inp{
  max-height: none;
  resize: none;
}
textarea.value_inp:focus{
  outline: none;
}
.value_inp.active{
  border: 1px solid #858585;
}
.texta .value_inp.active{
  border: none;
}
.value_inp.file{
  height: 50px;
  cursor: pointer;
}
.value_inp_hidden{
  display: none;
}
.value_select{
  position: relative;
  display: inline-block;
  width: auto;
  border-radius: 7px;
  border: 1px solid var(--border);
  font-size: 0.9em;
  max-height: 50px;
  transition: .2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(/images/down_arrow.svg) no-repeat 95% 50% / 15px auto;
}
.value_select.active{
  border: 1px solid #858585;
}
.value_select_label{
  padding: 15px;
}
/* 옵션 리스트 */
.value_select_list{
  position: absolute;
  min-width: 100%;
  width: auto;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: none;
  list-style: none;
  padding: 0;
  margin-top: 3%;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  left: 3%;
}
.value_select_list li{
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.value_select_list li:hover{
  background: #f0f0f0;
}

.scrollBar::-webkit-scrollbar {
  width: 10px;
}
.scrollBar::-webkit-scrollbar-thumb {
  height: 30%;
  background: #dcdfe6;
  border-radius: 10px;
}
.scrollBar::-webkit-scrollbar-track {
  background: rgba(215, 217, 219, 0.1);
}
/* 공통 구조 */
.check_design {
  display: block;
  position: relative;
  line-height: 20px;
  padding-left: 25px;
  cursor: pointer;
  user-select: none;
}

/* 기본 체크박스 숨기기 */
.check_design .check_point[type="checkbox"] {
  display: none;
}

/* 체크박스 기본 박스 */
.check_design .on {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #B4B4B4;
  border-radius: 3px;
}

/* 체크된 경우: check_point가 체크되면 바로 뒤의 .on에 적용 */
.check_design .check_point[type="checkbox"]:checked + .on {
  background: #4164f0;
  border-color: #4164f0;
}

/* 체크모양 기본 숨김 */
.check_design .on::after {
  content: "";
  position: absolute;
  display: none;
}

/* 체크된 상태의 체크모양 */
.check_design .check_point[type="checkbox"]:checked + .on::after {
  display: block;
  width: 7px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  left: 6px;
  top: 2px;
}

/* null */
.ex_null{
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vh 0;
}
.null_tt{
  font-size: 1.175em;
  line-height: 1.2em;
  padding-bottom: calc(var(--padding)*1.5);
  font-weight: 600;
}
.null_tt span{
  color: var(--point_blue);
}
.null_tt span::after, .null_tt span::before{
  color: var(--black);
  content: "'";
}
.null_arl{
  line-height: 1.5em;
  font-size: 0.9em;
  color: #949494;
}

/* 공통 구조 설정 */
input[type="radio"].radio_design{
  appearance: none;
  border-radius: 50%;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  border: 1px solid rgb(192, 192, 192);
  cursor: pointer;
  vertical-align: middle;
  background-color: #fff;
  transition: border 0.05s ease;
}
input[type="radio"].radio_design:checked{
  border: 2px solid yellowgreen;
  outline: 2px solid yellowgreen;
}
/* datepicker dropdown 스타일 */
.flatpickr-current-month{
  font-size: 1.05rem;
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{
  font-size: 0.95rem;
}
/* header */
.header{
  position: relative;
  z-index: 100;
  min-width: 1480px;
}

.header .wid_banner{
  margin: auto;
  height: 64px;
  width: 652px;
  border-radius: 6px;
  overflow: hidden;
  max-width: 652px;
}
.H_header{
  background-color: #F6F6F6;
  position: relative;
  z-index: 1001;
}
.H_header .guide{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--padding)*1.2) 0;
}
.l_adver a, .r_adver a{
  max-width: 110px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.l_adver a img, .r_adver a img{
  width: 100%;
}
.M_header .guide{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.M_header .menu_data, .M_header .user_data{
  display: flex;
  align-items: center;
}
.menu_btn,
.search_btn{
  transition: .2s;
  position: relative;
  cursor: pointer;
  padding: 5px;
}
.search_btn{
  top: -1px;
}
.search_btn a{
  display: block;
}
.menu_btn.active{
  background-color: #F3F3F3;
  border-radius: 6px;
  overflow: hidden;
}
.search_btn.active{
  background-color: #F3F3F3;
  border-radius: 6px;
  overflow: hidden;
}
/* .menu_btn:hover{
  filter: brightness(75%);
} */
.search_btn:hover svg{
  filter: brightness(75%);
}
.hamburger-button{
  position: relative;
  display: block;
  transition: .3s ease-in-out;
  width: 22px;
  height: 22px;
}
.hamburger-button span{
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: #9E9E9E;
  transition: 0.35s;
}
/* .hamburger-button.active span{
  height: 3px;
} */
.hamburger-button span:nth-child(1){
  top: 2px;
}
.hamburger-button span:nth-child(2),
.hamburger-button span:nth-child(3){
  top: 9px;
}
.hamburger-button span:nth-child(4){
  top: 16px;
}
/* .hamburger-button.active span:nth-child(1),
.hamburger-button.active span:nth-child(4){
  opacity: 0;
}
.hamburger-button.active span:nth-child(2){
  transform:rotate(45deg);
}
.hamburger-button.active span:nth-child(3){
  transform:rotate(-45deg);
} */
.header li{
  position: relative;
}
.M_header{
  position: relative;
  padding: 20px 0;
  background-color: var(--white);
  z-index: 102;
}
.M_header .menu_data{
  font-size: 0.875em;
  gap: 3px;
  color: var(--grey3);
}
.M_header .search_btn a{
  height: 25px;
}
.M_header .menu_data li a{
  display: block;
}
.header .user_data{
  font-size: 0.9em;
  color: #636363;
  gap: 14px;
}
.header .user_data li + li::before{
  position: absolute;
  display: block;
  content: "|";
  font-weight: 300;
  top: 0;
  left: -7px;
  color: var(--border);
}
.news_header .user_data li + li::before{
  display: none;
}
.header .user_data li a{
  padding: 5px 8px;
  transition: .3s;
}
.header .user_data .search_btn a{
  padding: 0;
  width: 25px;
  height: 25px;
}
.header .user_data li a:hover{
  color: var(--dark);
}
.header .main_advimg{
  position: absolute;
  left: calc(50% + 625px);
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 75px;
  height: 75px;
  z-index: 105;
}
.header .main_advimg img{
  width: 100%;
}
.B_header{
  position: relative;
  white-space: nowrap;
  padding-bottom: 30px;
  box-shadow: 3px 3px 3px #A2A2A229;
  background-color: var(--white);
  z-index: 102;
}
.B_header .logo{
  width: 145px;
}
.B_header h1 a{
  display: block;
}
.B_header h1 a img{
  width: 100%;
}
.B_header .guide{
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  align-items: start;
}
.B_header .nav_home{
  position: relative;
  top: 5px;
}
.B_header.cloned.fixed .nav_home{
  top: 0px;
}
.news_header .B_header .nav_home, .B_header.cloned .nav_home, .B_header.hd_news .nav_home{
  top: 0px;
}
.B_header .nav_home .menu_list{
  font-size: 1.05em;
  display: flex;
  gap: 15px;
  color: #414141;
  white-space: nowrap;
}
.B_header .nav_home .menu_list li{
  position: relative;
  transition: .3s;
}
.B_header .nav_home .menu_list li.active{
  color: #002C66;
}
.B_header .nav_home .menu_list li:hover{
  color: var(--black);
}
.B_header .nav_home .menu_list li.active:hover{
  color: #002C66;
}
.B_header .nav_home .menu_list li a{
  display: block;
  padding: 5px 10px;
}
.B_header .nav_home .menu_list .head_icon{
  position: absolute;
  bottom: calc(100% - 5px);
  /* left: 0; */
  z-index: 103;
  font-size: 11px;
  line-height: 1em;
  right: 10px;
}
.B_header .nav_home .menu_list .hd_tip .head_icon{
  padding: 3px 5px;
  border-radius: 5px;
  /* border: 1px solid #b3b3b3; */
  color: #8f8f8f;
  /* box-shadow: 1px 1px 7px rgb(0 0 0 / 20%); */
  /* transition: .3s; */
  visibility: visible;
  opacity: 1;
  font-weight: 500;
}
.B_header .nav_home .menu_list .hd_tip .head_icon.active{
    visibility: hidden;
  opacity: 0;
}
.B_header.hd_news{
  padding-bottom: calc(var(--padding));
}
.B_header.hd_news .guide{
  align-items: center;
}
.B_header.hd_news .user_data{
  display: flex;
  align-items: center;
  font-weight: 400;
}
.B_header.hd_news .user_data .search_btn{
  position: relative;
  top: 3px;
}
.B_header.hd_news .user_data{
  position: relative;
}
.B_header.hd_news .user_data .now_time{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 105%;
}
.B_header.hd_news .user_data .now_time::before{
  display: none;
}
.B_header.hd_news .user_data .search_btn::before{
  content: '';
  display: none;
}
.B_header.hd_news .nav_home{
  top: 0px;
}
.B_header.hd_news .nav_home .menu_list li.active{
  color: #002C66;
}
.B_header.hd_news .nav_home .menu_list li.active::after{
  content: '';
  display: block;
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: #002C66;
}
.news_header .B_header{
  padding: 25px 5px 20px;
  overflow: hidden;
}
.news_header .B_header.hd_news .nav_home .menu_list{
  margin: 0;
}
/* 헤더 복사 */
/* 원래 헤더 */
.news_header .B_header {
  position: relative;
  z-index: 1000;
  background-color: var(--white);
}

/* 복제된 헤더 */
.B_header.cloned{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 9999;
  padding: 15px 5px;
  height: 55px;
  display: flex;
}
.B_header.cloned .search_btn{
  display: none;
}
.B_header.cloned .guide{
  justify-content: start;
  align-items: center;
  gap: 2%;
}
.B_header.cloned .logo{
  margin-right: auto;
  width: 105px;
}
.B_header.cloned .user_data{
  display: flex;
  align-items: center;
  font-size: 0.9em;
  color: var(--grey3);
  gap: 14px;
  font-weight: 400;
}
/* 복제된 헤더 활성화 */
.B_header.cloned.fixed {
  opacity: 1;
  visibility: visible;
}

/* 데팜 헤더 클론 */
.B_header.cloned{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.B_header.cloned.fixed{
  opacity: 1;
  visibility: visible;
}
.B_header.sticky{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding-top: 12px;
  padding-bottom: 8px;
  transform: translateY(0);
  transition: transform 0.5s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.B_header.sticky.enter{
  transform: translateY(-100%);
  opacity: 0;
}
.logo_wrap{
  position: relative;
  display: inline-block;
}
.logo_wrap img{
  display: block;
  pointer-events: none;
}
.logo_wrap a{
  position: absolute;
  top: 0; bottom: 0;
  display: block;
}
.logo_link_left{
  left: 0;
  width: 40%;
}
.logo_link_right{
  right: 0;
  width: 60%;
}
/*  */



.news_header .B_header .guide{
  justify-content: start;
  align-items: center;
  gap: 2%;
  box-sizing: border-box;
}
.news_header .B_header .nav_home .menu_list{
  margin-left: auto;
}
.news_header .B_header .nav_home .menu_list li.active::before,
.B_header.cloned .nav_home .menu_list li.active::before{
  content: '';
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #002C66;
}
.B_header.cloned .nav_home .menu_list li.active::before{
  bottom: -12px;
}
.news_header .logo{
  margin-right: auto;
}
.news_header .B_header .logo{
  width: 90px;
}
.news_header .B_header .logo img{
  width: 90px;
}
.news_header .B_header .user_data{
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.9em;
  color: var(--grey3);
  gap: 14px;
  font-weight: 400;
  white-space: nowrap;
}
.news_header .B_header .user_data li{
  transition: .2s;
  position: relative;
}
.news_header .B_header .user_data .now_time{
  position: absolute;
  left: 102%;
  font-size: 0.9em;
}
.news_header .B_header .user_data li::after{
  position: absolute;
  display: block;
  content: "|";
  font-weight: 300;
  top: 0;
  right: -10px;
  color: var(--border);
}
.news_header .B_header .user_data .search_btn::after{
  display: none;
}
.news_header .B_header .user_data li:last-child::after, .news_header .B_header .user_data li.tip_off::after{
  display: none;
}
.news_header .B_header .user_data li.dummy:hover a{
  color: var(--grey3);
}
.news_header .B_header .user_data li:hover{
  /* filter: brightness(75%); */
}
.news_header .B_header .user_data .search_btn{
  top: 2px;
}
[class^="drop_bar"]{
  box-shadow: 5px 5px 6px #A2A2A229;
  background-color: var(--white);
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 100;
}
[class^="drop_bar"].ansfixd{
  position: sticky !important;
  top: 55px !important;
  z-index: 99;
}
[class^="drop_bar"]::before{
  content: '';
  position: absolute;
  bottom: 100%;
  width: 100%;
  height: 100px;
  background-color: var(--white);
}
[class^="drop_bar"].active{
  display: block;
}
[class^="drop_bar"] .bar_grid{
  max-width: 900px;
  margin: auto;
  padding: 35px 15px 45px;
}
[class^="drop_bar"] .keyword_title{
  font-size: 1.5em;
  font-weight: 700;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: calc(var(--padding)*1.5);
}
[class^="drop_bar"] .keyword_title .tt{
  line-height: 1em;
  white-space: nowrap;
}
[class^="drop_bar"] .keyword_title .xBox{
  padding: 5px 0 5px 5px;
  cursor: pointer;
  transition: .3s;
}
[class^="drop_bar"] .keyword_title .xBox:hover{
  transform: scale(1.05);
}
[class^="drop_bar"] .keyword_title .recom_keyword{
  margin-left: 15px;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.925rem;
  line-height: 1em;
  font-weight: 400;
  gap: 4px 10px;
  color: var(--dark);
}
[class^="drop_bar"] .keyword_title .recom_keyword li{
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid var(--grey3);
  background-color: var(--grey1);
  transition: .3s;
  white-space: nowrap;
  cursor: pointer;
}
[class^="drop_bar"] .keyword_title .recom_keyword li:hover{
  border-color: var(--dark);
}
[class^="drop_bar"] .search_bar{
  width: 100%;
  margin: auto;
  border-radius: 7px;
  border: 1px solid #CFCFCF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--padding)*.5) calc(var(--padding)*2);
  box-sizing: border-box;
  font-size: 1.2em;
  margin-bottom: calc(var(--padding)*2);
  transition: .2s;
}
[class^="drop_bar"] .search_bar.active{
  border: 1px solid #858585;
}
[class^="drop_bar"] .search_bar .search_click{
  padding: 10px 0 10px 10px;
  cursor: pointer;
  transition: .2s;
}
[class^="drop_bar"] .search_bar .search_click:hover{
  filter: brightness(75%);
  transform: scale(1.025);
}
[class^="drop_bar"] .search_bar input{
  display: block;
  width: 100%;
  height: 100%;
}
[class^="drop_bar"] .rec_top{
  padding-bottom: calc(var(--padding));
}
[class^="drop_bar"] .rec_top .rec_search{
  font-weight: 600;
}
[class^="drop_bar"] .rec_top .to_date::before,
[class^="drop_bar"] .rec_top .al_cancle::before{
  content: '|';
  padding: 0 10px;
  color: #BEBEBE;
}
[class^="drop_bar"] .rec_top .to_date span,
[class^="drop_bar"] .rec_top .al_cancle span{
  color: #BEBEBE;
  transition: .15s;
}
[class^="drop_bar"] .rec_top .al_cancle span{
  cursor: pointer;
}
[class^="drop_bar"] .rec_top .al_cancle span:hover{
  color: #868686;
}
[class^="drop_bar"] .record_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 10px;
  max-height: 30px;
  overflow: hidden;
}
[class^="drop_bar"] .record_list li{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: #F2F3F7;
  border-radius: 15px;
  color: #949494;
  max-height: 29.5px;
}
[class^="drop_bar"] .record_list li .reBox{
  position: relative;
  top: -1.5px;
  width: 15px;
  opacity: .3;
  cursor: pointer;
  transition: .3s;
  transform: scale(1.1);
}
[class^="drop_bar"] .record_list li .reBox:hover{
  opacity: .5;
}
[class^="drop_bar"] .record_list li .reBox img{
  width: 100%;
}
[class^="nav_drop"]{
  background-color: var(--white);
  padding: calc(var(--padding)*3.5) 0 calc(var(--padding)*7);
  box-shadow: 3px 3px 6px #6A6A6A29;
  font-size: 0.95em;
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 100;
}
[class^="nav_drop"].active{
  display: block;
}
[class^="nav_drop"] .header_drop{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 1%;
  gap: 1%;
  color: #464646;
}
[class^="nav_drop"] .header_drop .gnb_title{
  color: #002C66;
  font-size: 1.125em;
  font-weight: 600;
  padding-bottom: calc(var(--padding)*3);
}
[class^="nav_drop"] .header_drop .gnb_title a{
  display: block;
  padding: 5px 0;
}
[class^="nav_drop"] .header_drop .depth_01{
  flex: 1;
  padding: 0 0 0 1%;
}
[class^="nav_drop"] .header_drop .depth_01 + .depth_01{
  border-left: 1px solid var(--border);
}
[class^="nav_drop"] .header_drop .drop_menu{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
[class^="nav_drop"] .header_drop .drop_menu li{
  transition: .2s;
}
[class^="nav_drop"] .header_drop .drop_menu li:hover{
  color: var(--point_blue);
}
[class^="nav_drop"] .header_drop .gnb_title.order{
  padding-bottom: calc(var(--padding)*1.5);
}
[class^="nav_drop"] .header_drop .drop_menu li.gnb_title{
  padding: 0;
}
[class^="nav_drop"] .header_drop .drop_menu li.gnb_title:hover{
  color: var(--point_main);
}
[class^="nav_drop"] .header_drop .drop_menu li a{
  display: block;
  padding: 5px 0;
  /* background-color: #0000000a; */
}
.menu_shadow{
  display: none;
  opacity: 0;
  transition: .9s;
}
.menu_shadow.active{
  width: 100%;
  height: 100vh;
  position: fixed;
  bottom: 0px;
  left: 0px;
  background: #00000045;
  z-index: 1000;
  display: block;
  opacity: 1;
  z-index: 99;
}
/* footer */
.footer{
  background-color: #F5F5F5;
  min-width: 1480px;
}
.footer_nav{
  background-color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.footer_nav .nav_list{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
  font-size: 0.95em;
  background-color: var(--white);
  padding: 15px 0;
  /* border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); */
}
.footer_nav .nav_list li{
  color: #303030;
  transition: .2s;
}
.footer_nav .nav_list li:hover{
  color: var(--black);
}
.footer_nav .nav_list li.bold{
  font-weight: 800;
}
.footer_nav .nav_list li a{
  padding: 5px;
}
.footer_content{
  /* background-color: #E9E9E9; */
  display: flex;
  justify-content: space-around;
  align-items: start;
  color: #303030;
  font-size: 0.875em;
  padding: calc(var(--padding)*5) 0 calc(var(--padding)*6);
}
.footer_content .del{
  padding-top: 15px;
}
footer .address{
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: calc(var(--padding));
  padding-bottom: calc(var(--padding)*2);
}
footer .address li, footer .address li span{
  position: relative;
}
footer .address li span + span::before{
  content: '|';
  color: #C1C1C1;
  padding: 0 10px;
}
footer .warning_info{
  padding-bottom: 5px;
}
footer .copyright{
  font-weight: 700;
}
.mail_tooltip{
  position: absolute;
  bottom: 110%;
  left: 65%;
  background: #002C66;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85em;
  line-height: 1em;
  display: none;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 9999;
}
.mail_tooltip.show{
  display: block;
  opacity: 1;
}
.terms_channer{
  padding-bottom: calc(var(--padding)*6.5);
}
.terms_channer ul{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5%;
}
.terms_channer ul li{
  border-radius: 100px;
  border: 1px solid #a5a5a5;
  line-height: 1.1em;
  color: #878787;
}
.terms_channer ul li.active{
  border-color: #707070;
  color: #3a3a3a;
  font-weight: 600;
}
.terms_channer ul li a{
  display: block;
  padding: calc(var(--padding)*.6) calc(var(--padding)*1.8);
}
.terms_box{
  padding-bottom: calc(var(--padding)*5.5);
}
.terms_box h2{
  font-size: 1.125em;
  color: #414141;
  text-align: center;
  font-weight: 500;
  padding-bottom: calc(var(--padding)*2.5);
}
.terms_box h3{
  position: relative;
  top: -10px;
  font-size: 0.95em;
  color: #747474;
  text-align: center;
  font-weight: 500;
  line-height: 1.35em;
}
.terms_border{
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: calc(var(--padding)*2.5);
  word-break: keep-all;
  color: #878787;
  line-height: 1.45em;
  max-height: 350px;
  overflow-y: auto;
}
.terms_border p{
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 0.5%;
}
.terms_border p.pin{
  flex-direction: row;
}
.terms_border p span{
  position: relative;
  font-weight: 500;
  color: #707070;
}
.terms_border p i{
  text-align: right;
  font-size: 0.885em;
}
.select_wrap{
  position: relative;
  width: 100%;
}
.selectDiv{
  position: absolute;
  width: 80%;
  top: 10px;
  /* bottom: 0; */
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 0;
  border: 1px solid var(--border);
  border-radius: 7px;
  transition: .3s;
  z-index: 9;
  background-color: #fcfcfc;
}
.selectDiv .select_nomal{
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  gap: 10px;
}
.selectDiv .arrow{
  color: var(--grey3);
  transition: .3s;
  width: auto;
  height: auto;
  overflow: auto;
  display: block;
}
.option_list{
	display: none;
}
.option_list li{
	margin: 6px 0;
  transition: .2s;
}
.option_list li:last-child{
	margin-bottom: 0;
}
.option_list li:hover{
	color: #5158DD;
  /* font-weight: 500; */
  background-color: var(--grey1);
}
.option_list .proMatch{
	color: #5158DD;
	font-weight: bold;
}
.option_list li a{
  display: block;
  padding: 6px 8px;
}
.option_list{
  position: absolute;
  bottom: 100%;
  left: -1px;
  width: calc(100% + 2px);
  background: #fff;
  border: 1px solid var(--border);
  display: none;
  transform-origin: bottom;
  border-radius: 7px 7px 0 0;
  border-bottom: 0;
  box-sizing: border-box;
  max-height: 150px;
  overflow-y: auto;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.selectDiv.active .option_list{
  display: block;
}
.selectDiv.active{
	border-color: var(--border);
	background: none;
	background-color: #fff;
	border-radius: 0 0 7px 7px;
	transition: .3s;
	padding: 8px 0;
	color: #324663;
  top: 10px;
}
.selectDiv.active .select{
	color: #C5C5C5;
	text-align: left;
}
.selectDiv.active .arrow{
  transform: rotate(180deg);
}

/* login */
/* .login_on */
main{
  position: relative;
  padding: 30px 0 80px;
  min-height: calc(100vh - 205px - 293px);
  /* min-width: 1480px; */
}
.daily_flx{
  display: flex;
  justify-content: space-between;
  padding-bottom: calc(var(--padding)*5);
}
.content_l{
  max-width: 876px;
  width: 100%;
}
.content_news{
  max-width: 720px;
  width: 100%;
}
.content_r{
  max-width: 290px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  gap: calc(var(--padding)*3);
}
.content_r .h3q{
  justify-content: space-between;
  width: 100%;
}
.content_r .plus_link{
  font-size: 0.9em;
  line-height: 1em;
  fill: #BBBBBB;
  transition: .3s;
}
.content_r .plus_link:hover{
  fill: #7a7a7a;
}
.content_r .plus_link span{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  line-height: 1em;
  padding: 2px;
  /* background: #F3F3F3; */
  font-size: 0.9rem;
  color: #636363;
  border-radius: 100px;
  transition: .3s;
}
.content_r .plus_link img{
  width: 15px;
  display: block;
}
.content_r .plus_link span:hover{
  /* background: #e0e0e0; */
  color: #171923;
}
.content_list{
  max-width: 700px;
  width: 100%;
}
.content_dp{
  max-width: 875px;
  width: 100%;
}
.content_banner_side{
  max-width: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content_banner_side img{
  max-width: 100%;
  display: block;
  margin: auto;
  border-radius: 6px;
  overflow: hidden;
}
.n_dp_banner{
  position: relative;
  padding-bottom: calc(var(--padding)*3);
}
.n_dp_banner a{
  width: 100%;
  margin: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user_data_info{
  justify-content: space-between;
  padding-bottom: calc(var(--padding));
}
.user_data_info .del{
  width: 60%;
}
.user_login{
  border-radius: 10px;
  overflow: hidden;
  background-color: #F2F3F7;
  padding: 20px;
  box-sizing: border-box;
  margin: calc(var(--padding)*2.5) 0 calc(var(--padding)*5);
}
.login_btn{
  width: 100%;
  background-color: var(--point_main);
  border-radius: 7px;
  padding: 6% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
  color: var(--white);
}
.login_btn img{
  width: 75px;
}
.login_box{
  display: flex;
  justify-content: center;
  align-items: center;
}
.login_box li + li::before{
  content: "|";
  padding: 0 5px;
}
.adv_kind{
  display: inline-block;
  background-color: var(--grey1);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.8em;
  color: #464646;
}
.adv_title{
  padding: 5px 0;
  font-size: 0.95em;
  font-weight: 600;
}
.adv_phr{
  color: #8E8E8E;
  font-size: 0.9em;
}
.login_on .user_name{
  font-size: 1.1em;
  font-weight: 700;
  color: var(--point_main);
  margin-bottom: calc(var(--padding)*.5);
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 표시할 줄 수 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user_ID{
  font-size: 0.875em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user_data_info .save_setting{
  display: flex;
  align-items: center;
  font-size: 0.8em;
  color: #8d8d8d;
  border: 1px solid var(--grey3);
  padding: 2px 8px;
  border-radius: 50px;
  gap: 2px;
  cursor: pointer;
  transition: .2s;
}
.user_data_info .save_setting img{
  transition: .2s;
}
.user_data_info .save_setting:hover{
  color: #636363;
  border: 1px solid #a0a0a0;
}
.user_data_info .save_setting:hover img{
  filter: brightness(75%);
}
.user_active{
  display: flex;
  background-color: var(--white);
  border-radius: 7px;
  align-items: center;
  justify-content: space-around;
  padding: 12px 0 15px;
  margin-bottom: calc(var(--padding));
}
.user_active .tt{
  color: var(--grey3);
  padding-bottom: 5px;
  font-size: 0.875em;
}
.user_point{
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: auto;
  font-weight: 700;
}
.user_point .my_point{
  font-size: 0.875em;
  font-weight: 600;
}
.user_active span{
  display: block;
  color: var(--point_main);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user_active
.user_point{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.user_point .point_count{
  display: flex;
  align-items: center;
  gap: 3px;
}

.mall_swiper_pagination{
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}


/* review style */
.first_review{
  margin-bottom: calc(var(--padding)* 2);
}
.first_review span{
  display: block;
  padding: 5px 0;
  color: var(--grey3);
}
.db_review input{
  display: block;
  width: 100%;
  height: 100%;
}
.my_ID{
  padding-bottom: calc(var(--padding)*1.5);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tier{
  width: 25px;
  height: 25px;
  overflow: hidden;
  border-radius: 50%;
}
.tier img{
  width: 100%;
}
.db_review .sub_btn:hover{
  background-color:#909090;
}
.sub_btn.active{
  background-color: #363636 !important;
}
.entry_list{
  display: flex;
  flex-direction: column;
  gap: calc(var(--padding)*2);
}
.entry_list li + li{
  padding-top: calc(var(--padding)*2);
  border-top: 1px solid #E5E5E5;
}
.entry_list .ent_top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: calc(var(--padding)*2);
}
.entry_list .ent_top .ent_data{
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}
.rv_mid .rv_left .rv_time,
.entry_list .ent_top .ent_data .rv_time{
  color: var(--grey3);
  font-weight: 300;
}
.entry_list .ent_top .ent_data .rv_delete{
  position: relative;
}
.entry_list .ent_top .ent_data .rv_delete::before{
  position: absolute;
  display: block;
  content: '|';
  color: var(--grey3);
  font-weight: 200;
  left: -11px;
}
.entry .my_ID{
  padding: 0;
}
.entry_list .ent_p{
  line-height: 1.25em;
}
.write_cut{
  justify-content: space-between;
  align-items: center;
  color: var(--grey3);
}
.write_cut div{
  display: flex;
  justify-content: center;
  align-items: center;
}
.review_guide{
  background-color: #F8F8F8;
  padding: calc(var(--padding)*2) calc(var(--padding)*3);
  margin-top: calc(var(--padding)*2);
  display: none;
}
.review_guide.active{
  display: block;
}
.review_guide .enter{
  padding-bottom: calc(var(--padding)*2);
}
.rv_top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: calc(var(--padding)*2);
  font-weight: 300;
  color: var(--grey3);
  font-size: 0.95em;
}
.rv_top .rv_list{
  display: flex;
  gap: 15px;
}
.rv_top .rv_list li{
  transition: .2s;
  cursor: pointer;
}
.rv_top .rv_list li.rv_count{
  font-weight: 600;
  color: var(--dark) !important;
  cursor: auto;
}
.rv_top .rv_list li.active{
  color: var(--point_main);
  font-weight: 400;
}
.rv_mid{
  font-size: 0.95em;
  padding-bottom: calc(var(--padding)*1.5);
}
.rv_mid .rv_ID, .rv_mid .my_ID{
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}
.rv_mid .top{
  justify-content: space-between;
  align-items: center;
}
.rv_mid .rv_left{
  display: flex;
  align-items: center;
  gap: 20px;
  /* margin-right: 30px; */
}
.rv_mid .rv_left div{
  /* padding: 2px 5px; */
  font-weight: 500;
}

.rv_left .rv_time{
  color: var(--grey3);
  font-weight: 500;
  padding: 0;
}
.rv_revise, .rv_delete{
  cursor: pointer;
  transition: .2s;
}
.rv_revise:hover, .rv_delete:hover{
  color: var(--point_main);
}
.rv_left .rv_delete{
  position: relative;
}
.rv_left .rv_delete::before{
  position: absolute;
  display: block;
  content: '|';
  color: var(--grey3);
  font-weight: 200;
  left: -10px;
}
.rv_btn{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rv_btn .review{
  cursor: pointer;
  transition: .2s;
}
.rv_btn .review:hover{
  filter: brightness(75%);
}
.rv_btn .review svg{
  transition: .3s;
}
.rv_btn.active .review svg{
  transform: rotate(180deg);
}
.rv_btn .rv_riveiw{
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--grey3);
}
.rv_like{
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--grey3);
  font-weight: 600;
}
.rv_like .like_svg{
  fill: var(--grey3);
}
.rv_like.active{
  color: var(--point_main);
}
.rv_like.active .like_svg{
  fill: var(--point_main);
}
.comment_list .rv_mid{
  border-bottom: 1px solid var(--border);
}
.comment_list .rv_mid.active{
  padding-bottom: 0;
  border: none;
}
.comment_list .rv_mid + .rv_mid{
  padding-top: calc(var(--padding)* 2);
}
.rule{
  cursor: pointer;
  transition: .2s;
}
.rule:hover{
  filter: brightness(75%);
}
/*  */
.Edit_review{
  width: 100%;
  margin: auto;
  border-radius: 7px;
  border: 1px solid #CFCFCF;
  color: var(--grey3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
  padding: calc(var(--padding)*1.2);
  box-sizing: border-box;
  font-size: 1em;
  margin-bottom: calc(var(--padding)* 2);
  transition: .2s;
  background: white;
}
.input_form{
  width: 100%;
}
.input_form .texta{
  border-bottom: 1px solid #DFDFDF;
  margin-bottom: calc(var(--padding));
}
.input_form textarea{
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  border: none;
  resize: none;
  overflow-y: hidden;
  padding: 0;
}
.input_form textarea:focus{
  border: none;
  outline: none;
}
.db_review{
  width: 100%;
  border-radius: 7px;
  border: 1px solid #CFCFCF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
  padding: calc(var(--padding)*1) calc(var(--padding)*1.2);
  box-sizing: border-box;
  font-size: 1em;
  transition: .2s;
  background-color: var(--white);
}
.db_review.active{
  border-color: #363636;
}
.db_review.active .sub_btn{
  background-color: #363636;
}
.db_review.active .sub_btn:hover{
  background-color: var(--black);
}
/* form css */
.news_review form{
  display: block;
  width: 100%;
}
.rv_null{
  color: var(--grey3);
  line-height: 1.5em;
  padding: calc(var(--padding)*3) 0 calc(var(--padding)*13);
  text-align: center;
}
/* review style */


/* Model */
.file-info, .error-message{
  grid-column: 2 / 5;
}
.h2q{
  font-size: 1.125em;
  line-height: 1em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.h2q > a{
  display: flex;
  align-items: center;
  gap: 2px;
}
.h3q{
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.95em;
  padding-bottom: var(--padding);
  line-height: 18px;
}
.h3q a{
  display: flex;
  align-items: center;
}
.h3q svg{
  height: 18px;
}
.href_link a{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.95em;
  font-weight: 600;
}
.href_link a svg{
  height: 18px;
}
.wid_banner{
  max-width: 430px;
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
  margin-bottom: 50px;
}
.wid_banner2{
  justify-content: space-between;
  gap: 16px;
}
.wid_banner2 .banner_box{
  max-width: 430px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.wid_banner3{
  padding-top: calc(var(--padding)*12);
}
.wid_banner3 img{
  max-width: none !important;
}
[class^="wid_banner"] img{
  max-width: 100%;
  width: 100%;
}
[class^="wid_banner"] a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.recruit{
  font-size: 0.875em;
}
.recruit .re_logo{
  width: 90px;
  height: 25px;
  flex: 0 0 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.recruit .re_logo img{
  max-width: 100%;
  max-height: 100%;
}
.recruit .recruit_list li a{
  display: flex;
  align-items: center;
  gap: 5px;
}
.TOP100 .top{
  justify-content: space-between;
  align-items: center;
  color: var(--grey3);
  padding-bottom: var(--padding);
}
.TOP100 .top .h3q{
  padding: 0;
  gap: 10px;
  word-break: keep-all;
}
.TOP100 .top .date{
  font-size: 0.85em;
  margin-right: auto;
  color: var(--grey3);
  font-weight: 300;
}
.TOP100 .top .date::before{
  content: "|";
  padding: 0 5px;
}
.today_list, .report_mater_list{
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.875em;
}
.today_list li a, .report_mater_list li a{
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 3px 0;
  transition: .15s;
}
.today_list li a:hover, .report_mater_list_list li a:hover{
  color: #4d4d4d;
  transition: .15s;
}
.today_list li a span, .report_mater_list li a span{
  font-size: 0.95em;
  padding-right: 6px;
  color: #444444;
}
.notice .today_list li a span::after{
  content: "|";
  padding-left: 6px;
  color: var(--border);
}
.pharmstar_img{
  max-width: 80px;
  max-height: 70px;
  flex: 0 0 80px;
  width: 35%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pharmstar_img img{
  width: 100%;
}
/* thepharm_mall pharm_mall_swiper */
.thepharm_mall{overflow: hidden;}
.thepharm_mall .h3q{
  white-space: nowrap;
}
.thepharm_mall .top{
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--padding);
}
.thepharm_mall .chnell_home{
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 2px 0;
  margin-left: 15px;
}
.pharm_mall_swiper .swiper-wrapper{
  padding-bottom: calc(var(--padding)*1.5);
}
.pharm_mall_swiper li{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.u_writ, .u_like, .u_review{
  text-align: center;
  width: 33%;
  border-left: 1px solid #F2F3F7;
}
.u_writ{
  border: none;
}
.pharm_mall_swiper li .item{
  width: 100%;
  overflow: hidden;
}
.pharm_mall_swiper li .item a{
  display: block;
}
.pharm_mall_swiper li .item .mall_img{
  width: 90px;
  height: 90px;
  border-radius: 7px;
  border: 1px solid #DFDFDF;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pharm_mall_swiper li .item .mall_img img{
  width: 100%;
}
.pharm_mall_swiper li .item .infoList{
  padding: 3px 0;
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 0.75em;
  line-height: 1em;
  gap: 4px;
  white-space: nowrap;
}
.pharm_mall_swiper li .item .infoList .discount{
  color: var(--point_red);
}
.pharm_mall_swiper li .item .infoList .price{
  color: var(--dark);
}
.mlauto{
  margin-left: auto;
  margin-right: 5px;
}
.content_r .plus_link.mlauto img{
  width: 12px !important;
}
.pharm_adv{
  border-radius: 7px;
  border: 1px solid #DFDFDF;
  transition: .3s;
  background-color: var(--white);
}
.pharm_adv:hover{
  border-color: #c3c4c9;
}
.pharm_adv a{
  padding: 8px 5px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.pharm_adv + .pharm_adv{
  margin-top: 10px;
}
.pharm_adv .sel{
  display: block;
  width: 65%;
}
.pharm_mall_swiper li .item .mall_name{
  padding-top: 5px;
  font-size: 0.875em;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 표시할 줄 수 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(1.2em * 2);
}
.aside_banner{
  width: 100%;
  max-width: 100%;
  height: 152px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
}
.aside_banner img{
  max-width: 100%;
}
.aside_banner3{
  width: 100%;
  max-width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
}
.aside_banner3 img{
  max-width: 100%;
}
.aside_banner2{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.aside_banner2 img{
  display: block;
  width: 100%;
  height: 90px;
}
.pharm_mall_swiper .mall_swiper_pagination{
  gap: 10px;
  font-size: 0.8em;
  line-height: 1em;
}
.pharm_mall_swiper .mall_swiper_pagination .fa-solid{
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.25em;
  width: 16px;
  height: 16px;
  color: #222222;
  cursor: pointer;
}
.aside_news{
  overflow: hidden;
  font-size: 0.875em;
  line-height: 1em;
  width: 100%;
}
.aside_news .aside_news_list li{
  display: flex;

  align-items: center;
  gap: 10px;
}
.aside_news .culo{
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  background-color: #F2F3F7;
  white-space: nowrap;
}
.rank_table{
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 0.85em;
  color: #484848;
}
.rank_table li{
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  gap: 4px;
}
.rank_table .rank{
  flex: 1.5;
  text-align: center;
}
.rank_table .name{
  flex: 3.5;
}
.rank_table .count{
  flex: 2;
  text-align: center;
}
.rank_table .bgd{
  background-color: #F5F5F5;
  text-align: center;
  border: none;
}
.TOP100.region .top .date::before{
  display: none;
}
.region .rank_table .bgd .rank{
  text-align: center;
}
.region .rank_table .rank{
  flex: 3.5;
  text-align: left;
  line-height: 17px;
  max-height: 34px;
  overflow: hidden;
  padding-left: 5px;
}
.region .rank_table .name{
  flex: 1.3;
}
.region .rank_table .count{
  flex: 1.3;
  text-align: center;
}
.ahter_list{
  display: flex;
  flex-direction: column;
  gap: calc(var(--padding)*1.5);
  font-size: 0.9em;
}
.ahter_list li a{
  display: block;
  padding: 15px 15px 15px 10px;
  border-radius: 7px;
  border: 1px solid var(--border);
}
.ahter_tt{
  color: #002C66;
  font-weight: 500;
  margin-bottom: calc(var(--padding)*.5);
}
.ahter_ct{
  line-height: 1.5em;
}

.share{
  position: relative;
  transition: .2s;
  cursor: pointer;
  bottom: 1px;
}
.share_btn{
  padding: 10px 12px;
  position: absolute;
  top: 33px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  right: 0%;
  background-color: var(--white);
  border: 1px solid #E9E9E9;
  box-shadow: 3px 3px 5px #B9B9B929;
  border-radius: 6px;
}
.share_btn.active{
  display: flex;
}
.funct_btn{
  gap: 5px;
  color: var(--black);
  fill: var(--black);
  display: flex;
  justify-content: start;
  align-items: center;
}
.funct_btn > li{
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 10px;
  position: relative;
}
.funct_btn .language{
  padding: 5px;
  /* width: auto; */
  position: relative;
}
.funct_btn .language .box_dash{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.funct_btn .print svg{
  width: 23px;
}
.funct_btn .share svg{
  width: 23px;
}
.funct_btn li:hover{
  /* color: #8d8d8d; */
}
.funct_btn > li:hover svg{
  /* filter: brightness(75%); */
}
.funct_btn .share_btn li{
  transition: .2s;
  padding: 0;
}
.share_btn img{
  display: block;
}
.language_btn{
  padding: 10px 12px;
  position: absolute;
  top: 33px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  right: 0%;
  background-color: var(--white);
  border: 1px solid #E9E9E9;
  box-shadow: 3px 3px 5px #B9B9B929;
  border-radius: 6px;
  font-weight: normal;
}
.language_btn.active{
  display: flex;
}
.language_btn li{
  line-height: 0.5em;
  transition: .2s;
}
.language_btn li:hover{
  color: var(--black) !important;
}

/* 동영상 play_icon */
.img_box{
  position: relative;
  /* transition: .3s; */
}
.hover_play::before{
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #00000045;
  opacity: 0;
  transition: .2s;
}
.hover_play::after{
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  background-image: url(/storage/images/play_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
  opacity: 0;
  transition: .8s;
}
.hover_play:hover::after, .hover_play:hover::before{
  opacity: 1;
}
.play_icon::before{
  display: block;
  content: '';
  position: absolute;
  bottom: 6px;
  right: 10px;
  width: 22px;
  height: 22px;
  background-image: url(/images/play_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
}

/* 약담소 별도 임시 */
/* 좋아요 댓글 */
.art_state{
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}
.search .art_state{
  justify-content: start;
  margin: 0;
}
.evalu{
  display: flex;
  align-items: center;
  gap: 15px;
}
.like,.review, .hate{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--grey3);
  font-weight: 400;
}
.like.active{
  color: var(--point_main);
  font-weight: 600;
}
.like.active .like_svg{
  fill: var(--point_main);
}
.like_svg, .review_svg, .hate_svg{
  fill: var(--grey3);
}
.like_svg, .hate_svg{
  cursor: pointer;
}
.like_svg, .review_svg, .hate_svg{
  width: 18px;
}
.hate.active{
  color: var(--point_red);
  font-weight: 600;
}
.hate.active .hate_svg{
  fill: var(--point_red);
}

/* 카테고리 */
.category{
  font-weight: 600;
  display: flex;
  align-items: center;
  padding-bottom: calc(var(--padding)*2);
}
.category div + div{
  /* color: var(--point_main); */
}
.category div + div::before{
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 2px 8px;
  border: solid #C6C6C6;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
}

/* nav_content */
.nav_content{
  max-width: 120px;
  width: 100%;
}
.nav_content > ul{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 20px;
  font-size: 1.1em;
}
.nav_content > ul li{
  position: relative;
  width: 100%;
  color: var(--grey3);
  line-height: 1.2em;
}
.nav_content > ul li.active{
  color: #002c66;
}
.nav_content > ul li.active::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--dark);
  border-width: 1px 1px 0 0;
  transform: rotate(45deg) translateY(-50%);
}
.nav_content > ul li a{
  display: block;
  padding: 5px 0;
}

/* Modal */
.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal.active{
  display: flex;
}
.modal_content_l{
  max-width: 600px;
  max-height: 800px;
}
.modal_content_m{
  max-width: 500px;
  max-height: 800px;
}
.modal_content_s{
  max-width: 400px;
  max-height: 800px;
}
[class^="modal_content"]{
  background-color: var(--white);
  box-sizing: border-box;
  width: 95%;
  border-radius: 10px;
  box-shadow: 3px 3px 6px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  padding: calc(var(--padding)*2);
}
[class^="modal_content"] form{
  display: block;
}
[class^="modal_content"] .modal_top{
  display: flex;
  justify-content: start;
  align-items: center;
  /* margin-bottom: calc(var(--padding)*2); */
}
[class^="modal_content"] .modal_top .modal_close{
  margin-left: auto;
  cursor: pointer;
  transition: .2s;
}
[class^="modal_content"] .modal_top .modal_close:hover{
  transform: sc
}
[class^="modal_content"] .action_btn{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2%;
  text-align: center;
}
[class^="modal_content"] .action_btn > div{
  padding: 3% 0;
  width: 100%;
  background-color: #949494;
  border-radius: 6px;
  color: white;
  line-height: 1em;
  font-size: 1.1em;
  cursor: pointer;
}
[class^="modal_content"] .action_btn [class^="okay_btn"]{
  background-color: var(--point_main);
}
[class^="modal_content"] .action_btn .close_btn{
  background-color: #949494;
  transition: .3s;
}
[class^="modal_content"] .action_btn .close_btn:hover{
  background-color: #787a7c;
}
[class^="modal_content"] .tip{
  line-height: 1.5em;
  font-size: 0.95em;
  max-height: 40vh;
  overflow-y: auto;
  margin-bottom: calc(var(--padding)*3);
  padding-right: 2%;
}
[class^="modal_content"] .tip em{
  font-weight: 600;
  display: inline-block;
  padding-bottom: 5px;
}
[class^="modal_content"] .tip span{
  padding-top: 5px;
  display: inline-block;
  font-size: 0.9em;
  color: var(--grey3);
  font-weight: 300;
}
[class^="modal_content"] .nomal{
  padding: calc(var(--padding)*3) 0;
  font-size: 1.2em;
  line-height: 1.2em;
  text-align: center;
}

.modal .form-title {
    white-space: pre-line;
}










/* 광고 새로운 구조 */
.layout-3col{
  /* display: grid; */
  display: flex;
  grid-template-columns: 100px 1220px 100px;
  column-gap: 15px;
  width: calc(1250px + 100px + 100px + 30px);  /* 새로운 팝업 광고 생길때마다 px 유동적으로 변경 */
  margin: 0 auto;
  align-content: center;
  justify-content: start;
  justify-items: center;
}
/* .layout-3col .container_pc{ margin: 0; } */
.side-banner{
  top: 30px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.side-banner .adv_item{
  max-width: 100px; max-height: 250px;
  display: flex; justify-content: center; align-items: center; overflow: hidden;
}
.side-banner img{ max-width: 100%; }
.outside_banner{
  position: relative;
  margin-top: 30px;
}
.outside_banner_left{
  position: relative;
  margin-top: 365px;
}
.outside_banner_left.news_side_wrap{
  margin-top: 330px;
    /**
    20251201 정승훈 좌측 밀리는 거 수정
     */
    min-width: 100px;
}
[class^="outside_banner"] .adv_small{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 30px;
}
[class^="outside_banner"] .adv_small li a{
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 75px;
  overflow: hidden;
}
[class^="outside_banner"]{
  /**
      20251201 좌측 와따가따 하는거수정 정승훈
   */
    min-width:100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: start;
  align-items: end;
}
[class^="outside_banner"] .adv_item, .nav_wrap .adv_item{
  max-width: 100px;
  max-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
}
.nav_wrap .adv_item{
  margin: 30px 0;
}
[class^="outside_banner"] img, .nav_wrap .adv_item img{
  max-width: 100%;
}
.AD_bottom_fix{
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10000;
}
.AD_bottom_fix a{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 3;
}
.AD_bottom_fix .adv_close{
  position: absolute;
  left: calc(50% + 595px);
  bottom: 100%;
  transition: .3s;
  cursor: pointer;
  padding: 0 5px;
  box-sizing: content-box;
}
.AD_bottom_fix .adv_close:hover{
  transform: scale(1.15);
}
.AD_bottom_fix{ transition: transform .35s ease, opacity .35s ease; }
.AD_bottom_fix.is-hide{ transform: translateY(100%); opacity: 0; pointer-events: none; }
.AD_bottom_fix_L{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(42, 59, 212, 0.336);
  z-index: 2;
  left: 0;
}
.AD_bottom_fix_R{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(89, 207, 60, 0.336);
  z-index: 2;
  right: 0;
}
