/* ===========================
    HEADER
=========================== */
#header{
  position:fixed;
  top:0;
  left:0;
  z-index:100;
  width:100%;
  height:95px;
  background-color: #0000004d;
}

#header .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1240px;
  height:100%;
  margin:0 auto;
  padding:16px 0;
}

/*** SUB HEADER ***/
body.s-page #header{ background:#fff; border-bottom:1px solid #eee; }
body.s-page .gnb > ul > li > a{ color:#333; }

/*** LOGO ***/
.logo a{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{
  width:70px;
  display:block;
}

.logo span{
  color:#19c5d8;
  font-size:14px;
  font-weight:700;
  line-height:1.3;
}

/*** PC MENU ***/
.gnb > ul{
  display:flex;
  gap:30px;
}

.gnb > ul > li{
  position:relative;
  padding:15px 0;
}

.gnb > ul > li > a{
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-size:16px;
  font-weight:600;
}

.gnb > ul > li > a i{
  font-size:10px;
  transition:.2s;
}

.gnb > ul > li:hover > a i{
  transform:rotate(180deg);
}

.gnb > ul > li:hover .depth2{
  opacity:1;
  visibility:visible;
}

.depth2{
  position:absolute;
  top:45px;
  left:10%;
  width:220px;
  font-size: 14px;
  padding:8px 0;
  background:#fff;
  border-radius:10px;
  transform:translateX(-10%);
  opacity:0;
  visibility:hidden;
  transition:.2s;
}

.depth2 a{
  display:block;
  padding:12px 18px;
  color:#444;
  transition:.3s;
}

.depth2 a:hover{
  background:#f3f3f3;
  color:#2f65b8;
}

/*** MOBILE MENU BUTTON ***/
.menu-btn{
  display:none;
  width:23px;
  background:none;
  border:0;
}

.menu-btn span{
  display:block;
  height:3px;
  margin:5px 0;
  background:#fff;
  border-radius:10px;
}

body.s-page .menu-btn span{ background:#333; }

/*** MOBILE SIDE MENU ***/
.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  z-index:999;
  width:100%;
  height:100%;
  background:#fff;
  overflow-y:auto;
  transition:.3s;
}

.mobile-menu.active{ right:0; }

.mobile-head { height: 84px }
.mobile-head .inner { display: flex; align-items: center; padding: 16px 0;}

.close-btn{
  width: 100%;
  background:none;
  border:0;
  font-size:40px;
  color:#333;
  text-align: right;
}

.mobile-menu > ul{
  padding:1rem;
}

.mobile-menu > ul > li{
  border-bottom:1px solid #eee;
}

.mobile-menu > ul > li > a{
  display:flex;
  justify-content: space-between;
  padding:22px 0;
  color:#333;
  font-size:18px;
  font-weight:600;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom:1rem;
  transition:.3s;
}

.mobile-menu > ul > li > a i{
  display:flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  transform-origin:center center;
  transition:transform .3s ease;
}

.mobile-menu > ul > li > a.on i{
  transform:rotate(180deg);
}

.mobile-menu ul ul{
  display:none;
  padding-left: 1rem;
  padding-bottom:.5rem;
}

.mobile-menu ul ul a{
  display:block;
  padding:10px 15px;
  color:#666;
}


/* ==============================
    Footer
============================== */
#footer{
  background:#1f4679;
  color:#fff;
}

#footer .footer-inner{
  max-width:1240px;
  margin:0 auto;
  padding:26px 20px 0;
}

#footer .footer-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:40px;
  padding-bottom:20px;
}

#footer h4{
  margin:0 0 16px;
  font-size:21px;
  font-weight:700;
  line-height:1.3;
}

#footer .footer-info ul{
  margin:0;
  padding:0;
  list-style:none;
}

#footer .footer-info li{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin-bottom:10px;
  color:rgba(255,255,255,.85);
  font-size:14px;
  line-height:1.4;
}

#footer .footer-info li i{
  width:16px;
  margin-top:2px;
  font-size:14px;
  color:rgba(255,255,255,.9);
}

#footer .footer-sns{
  text-align:right;
}

#footer .sns-list{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
}

#footer .sns-list a{
  color:rgba(255,255,255,.85);
  font-size:24px;
  transition:.2s;
}

#footer .sns-list a:hover{
  color:#fff;
}

#footer .footer-copy{
  border-top:1px solid rgba(255,255,255,.15);
  padding:8px 0;
  color:rgba(255,255,255,.7);
  font-size:14px;
  text-align:center;
}


/*  */
.sub-page { background:#f5f6f8; }
.sub-page .sec-in { padding:80px 0; }
.sub-page .sec-1 { padding:10px 0 90px; }

/* about introduction */
#about_introduction .sub-top{ background-image: url('/images/sub/top_about_introduction.jpg'); }
#about_introduction .top-logo{ margin-bottom:12px; }
#about_introduction .top-logo img{ width:64px; }

#about_introduction .sec-1 .intro-block{ margin-bottom:65px; }
#about_introduction .sec-1 .intro-block:last-child{ margin-bottom:0; }
#about_introduction .sec-1 .intro-block h2{
  margin:0 0 32px;
  color:#1f4679;
  font-size:var(--font-medium);
  font-weight:800;
  line-height:1.3;
  text-align:center;
}
#about_introduction .sec-1 .intro-box{
  max-width: 56rem;
  margin:0 auto;
  padding: 2.5rem;
  background:#fff;
  border-radius:10px;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}
#about_introduction .sec-1 .intro-box p{
  margin:0 0 22px;
  color:#555;
  font-size:var(--font-small);
  line-height:1.7;
}
#about_introduction .sec-1 .intro-box p:last-child{ margin-bottom:0; }

#about_mission_vision { background: #fff; }
#about_mission_vision .sub-top{ background-image: url('/images/sub/top_about_mission-vision.png'); }
#about_mission_vision .mission-box{
  max-width: 56rem;
  margin:0 auto 120px;
  padding:34px 36px;
  background:#f8f9fb;
  border-radius:12px;
  text-align:center;
}
#about_mission_vision h2{
  position:relative;
  margin:0 0 28px;
  padding-bottom:14px;
  color:#1f4679;
  font-size:var(--font-medium);
  font-weight:800;
  line-height:1.3;
  text-align:center;
}
#about_mission_vision h2::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width: 12rem;
  height:1px;
  background:#aebbd0;
  transform:translateX(-50%);
}
#about_mission_vision .mission-box p{
  margin:0;
  color:#555;
  font-size:var(--font-small);
  line-height:1.75;
}
#about_mission_vision .vision-wrap{ text-align:center; }
#about_mission_vision .vision-list{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:26px;
  padding:48px 0 42px;
}
#about_mission_vision .vision-circle{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  text-align:center;
  transition:.3s;
}
#about_mission_vision .vision-circle:hover{
  transform:scale(1.05);
}
#about_mission_vision .vision-circle.bg{
  width:290px;
  height:290px;
  background:#5bc8c8;
  color:#fff;
  box-shadow:0 0 0 10px rgba(91,200,200,.15);
}
#about_mission_vision .vision-circle.white{
  width:300px;
  height:300px;
  background:#fff;
  color:#5bc8c8;
  box-shadow:0 0 0 10px rgba(91,200,200,.15);
}
#about_mission_vision .vision-circle i{ margin-bottom:18px; font-size:36px; }
#about_mission_vision .vision-circle p{
  margin:0;
  padding:0 24px;
  font-size:var(--font-smaller);
  font-weight:600;
  line-height:1.35;
}
#about_mission_vision .vision-line{
  width:55px;
  height:2px;
  background:rgba(91,200,200,.3);
}
#about_mission_vision .vision-text{
  max-width: 56rem;
  margin:0 auto;
}
#about_mission_vision .vision-text p{
  margin:0 0 26px;
  color:#555;
  font-size:var(--font-small);
  line-height:1.7;
}
#about_mission_vision .vision-text p:last-child{
  margin-bottom:0;
}

#kol .sub-top{ background-image: url('/images/sub/top_kol.png'); }
#kol.board-member .sub-top{ background-image: url('/images/sub/top_board_members.png'); }
#kol .kol-list{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
#kol.board-member .kol-list{ grid-template-columns:repeat(3, 1fr); }
#kol .kol-list > li{
  min-height:310px;
  cursor: pointer;
}
#kol .kol-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  height:100%;
  padding:32px;
  background:#fff;
  border-radius:14px;
  text-align:center;
  box-shadow:0 10px 22px rgba(0,0,0,.10);
  transition:.3s;
}
#kol .kol-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 30px rgba(0,0,0,.16);
}
#kol .img-box{
  width:130px; height:130px;
  margin-bottom:24px;
  border-radius:50%;
  overflow:hidden;
  background:#3f78c8;
  box-shadow:0 6px 12px rgba(0,0,0,.18);
}
#kol .img-box img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: center 1%;
}
#kol.board-member .img-box{
  width:192px; height:192px;
}
#kol h3{
  margin:0 0 10px;
  color:#173d73;
  font-size:18px;
  font-weight:800;
  line-height:1.25;
}
#kol .country{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:0 0 10px;
  color:#555;
  font-size:14px;
  line-height:1.3;
}
#kol .country img{
  width:28px;
  height:auto;
  display:block;
}
#kol strong{
  display:block;
  margin-bottom:8px;
  color:#174b9b;
  font-size:14px;
  font-weight:600;
  line-height:1.35;
}
#kol .desc{
  margin:0;
  color:#555;
  font-size:14px;
  line-height:1.4;
}


#lecture .sub-top{ background-image: url('/images/sub/top_hands-on.png'); }
#lecture.webinars .sub-top{ background-image: url('/images/sub/top_webinars.png'); }
#lecture .lecture-group{ margin-bottom:65px; }
#lecture .lecture-group:last-child{ margin-bottom:0; }
#lecture .lecture-group h2{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 28px;
  padding-bottom:18px;
  border-bottom:1px solid #d8dde6;
  color:#173d73;
  font-size:36px;
  font-weight:800;
  line-height:1.3;
}
#lecture .lecture-group h2 i{ font-size:27px; }
#lecture .lecture-list{ display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:28px; }
#lecture .lecture-list > li{ min-width:0; cursor:pointer; }
#lecture .lecture-card{ height:100%; overflow:hidden; background:#fff; border-radius:12px; box-shadow:0 10px 22px rgba(0,0,0,.1); transition:.3s; }
#lecture .lecture-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 30px rgba(0,0,0,.16);
}
#lecture .thumb{ position:relative; width:100%; aspect-ratio:16 / 9; height:auto; overflow:hidden; background:#fff; }
#lecture .thumb img{ display:block; width:100%; height:100%; object-fit:cover; object-position:center; transition:.3s; }
#lecture .thumb::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:rgba(0,0,0,.18);
  opacity:0;
  transition:.3s;
}
#lecture .lecture-card:hover .thumb::before{ opacity:1; }
#lecture .play{
  position:absolute;
  top:50%;
  left:50%;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  border-radius:50%;
  background:rgba(255,255,255,.9);
  color:#173d73;
  font-size:20px;
  opacity:0;
  transform:translate(-50%, -50%) scale(.8);
  transition:.3s;
}
#lecture .lecture-card:hover .play{ opacity:1; transform:translate(-50%, -50%) scale(1); }
#lecture .time{
  position:absolute;
  right:12px;
  bottom:12px;
  z-index:3;
  padding:5px 8px;
  background:rgba(0,0,0,.75);
  border-radius:14px;
  color:#fff;
  font-size:14px;
}
#lecture .txt{ padding:24px 24px 22px; }
#lecture .txt h3{
  margin:0 0 8px;
  color:#173d73;
  font-size:18px;
  font-weight:700;
  line-height:1.35;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;

  overflow:hidden;

  word-break:keep-all; overflow-wrap:break-word;
}
#lecture .txt p{
  margin:0 0 12px;
  color:#555;
  font-size:14px;
  line-height:1.5;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;

  overflow:hidden;
  text-overflow:ellipsis;

  word-break:keep-all; overflow-wrap:break-word;
}
#lecture .info{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
#lecture .info strong{ color:#174b9b; font-size:14px; }
#lecture .info span{ color:#555; font-size:14px; }


#research .sub-top{ background-image: url('/images/sub/top_board_members.png'); }
#research .research-search{
  padding:20px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 4px 14px rgba(0,0,0,.06);
}
#research .search-row{
  display:flex;
  gap:12px;
  margin-bottom:10px;
}
#research .search-row:last-child{ margin-bottom:0; }
#research input{
  width:100%;
  padding:10px 16px;
  border:1px solid #dde3ec;
  background: rgb(249, 250, 251);
  border-radius:8px;
  color:#333;
  font-size:14px;
  line-height: 20px;
  transition:.3s;
}
#research input:focus{
  outline:none;
  border-color:#2f5fa8;
  background:#fff;
  box-shadow:0 0 0 4px rgba(47,95,168,.12);
}
#research .search-row.col2 input{ flex:1; }
#research .search-row button{
  width:90px;
  height:40px;
  border:0;
  border-radius:8px;
  background:#2f5fa8;
  color:#fff;
  font-size:13px;
  font-weight:700;
}
#research .research-filter{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  margin-bottom:26px;
  padding:20px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 4px 14px rgba(0,0,0,.05);
}
#research .research-filter strong{
  margin-right:8px;
  color:#173d73;
  font-size:14px;
  font-weight:800;
}
#research .research-filter button{
  height:28px;
  padding:0 14px;
  border:1px solid #d9e1ec;
  border-radius:20px;
  background:#fff;
  color:#555;
  font-size:13px;
}
#research .research-filter button.on{
  border-color:#2f5fa8;
  background:#2f5fa8;
  color:#fff;
}
#research .research-list > li{
  margin-bottom:22px;
  padding:32px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,.1);
}
#research .research-head{
  display:flex;
  justify-content:space-between;
  gap:24px;
  margin-bottom:18px;
}
#research .research-head h3{
  margin:0 0 8px;
  color:#173d73;
  font-size:21px;
  font-weight:800;
  line-height:1.3;
}
#research .author{
  margin:0 0 8px;
  color:#555;
  font-size:13px;
}
#research .meta{
  display:flex;
  flex-wrap:wrap;
  gap:0 12px;
  margin:0;
  color:#666;
  font-size:13px;
}
#research .meta strong{
  color:#174b9b;
}
#research .btns{
  display:flex;
  flex-shrink:0;
  gap:8px;
}
#research .btns a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  height:32px;
  padding:0 12px;
  border:1px solid #2f5fa8;
  border-radius:18px;

  font-size:13px;
  font-weight:700;
}
#research .btns a.link_btn{ color:#2f5fa8; }
#research .btns a.file_btn{ background:#2f5fa8;color:#fff; }
#research .abstract-box{
  padding:18px;
  background:#f8f9fb;
  border-radius:8px;
}
#research .abstract-box strong{
  display:block;
  margin-bottom:10px;
  color:#0f1e3d;
  font-size:13px;
  font-weight:800;
}
#research .abstract-box p{
  margin:0 0 14px;
  color:#555;
  font-size:13px;
  line-height:1.65;
}
#research .abstract-box p:last-child{ margin-bottom:0; }
#research .tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}
#research .tag-list span{
  display:inline-flex;
  align-items:center;
  padding:5px 10px;
  background:#eaf1fb;
  border-radius:16px;
  color:#174b9b;
  font-size:12px;
  font-weight:700;
}


#event_international .sub-top{ background-image: url('/images/sub/top_international-conference.png'); }
#event_international .event-tab{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px;
  margin-bottom:38px;
}
#event_international .event-tab a{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  height:86px;
  border:1px solid #d8dde6;
  border-radius:14px;
  background:#fff;
  color:#777;
  box-shadow:0 4px 12px rgba(0,0,0,.04);
  transition:.3s;
}
#event_international .event-tab a:hover{ border-color:#2f5fa8; }
#event_international .event-tab a.on{
  border-color:#2f5fa8;
  background:#2f5fa8;
  color:#fff;
  box-shadow:0 10px 22px rgba(47,95,168,.25);
}
#event_international .event-tab strong{
  margin-bottom:6px;
  font-size:18px;
  font-weight:800;
}
#event_international .event-tab span{ font-size:13px; opacity:.75; }
#event_international .event-list > li{ margin-bottom:34px; }
#event_international .event-list > li:last-child{ margin-bottom:0; }
#event_international .event-card{
  overflow:hidden;
  background:#fff;
  border-radius:18px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  transition:.3s;
}
#event_international .event-card:hover{ transform:translateY(-8px); box-shadow:0 16px 32px rgba(0,0,0,.14); }
#event_international .img-box{
  position:relative;
  height:260px;
  overflow:hidden;
}
#event_international .img-box img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.3s;
}
#event_international .event-card:hover .img-box img{ transform:scale(1.04); }
#event_international .badge{position:absolute;top:18px;left:18px;padding:8px 16px;border-radius:22px;color:#fff;font-size:13px;font-weight:800;}
#event_international .badge.past{background:rgba(0,0,0,.78);}
#event_international .badge.progress{background:#1f9d55;}
#event_international .badge.upcoming{background:#174b9b;}
#event_international .txt-box{ padding:28px 30px 26px; }
#event_international .location{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 12px;
  color:#2f5fa8;
  font-size:13px;
  font-weight:800;
  letter-spacing:.03em;
}
#event_international h3{
  margin:0 0 14px;
  color:#111827;
  font-size:28px;
  font-weight:800;
  line-height:1.3;
}
#event_international .date{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 18px;
  color:#64748b;
  font-size:15px;
  font-weight:700;
}
#event_international .date span{ font-weight:400; }
#event_international .desc{
  margin:0 0 22px;
  padding-bottom:22px;
  border-bottom:1px solid #e5e7eb;
  color:#4b5563;
  font-size:16px;
  line-height:1.65;
}
#event_international .btn-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
#event_international .btn-wrap a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:36px;
  padding:0 18px;
  border:2px solid #2f5fa8;
  border-radius:20px;
  color:#2f5fa8;
  font-size:13px;
  font-weight:800;
  transition:.25s;
}
#event_international .btn-wrap a.more,
#event_international .btn-wrap a:hover{ background:#2f5fa8; color:#fff; }
#event_international .event-list .empty{ padding:80px 20px; text-align:center; }
#event_international .event-list .empty p{ color:#666; font-size:16px; }


#event_local .sub-top{ background-image: url('/images/sub/top_local-seminar.png'); }
#event_local .seminar-filter{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-bottom:36px;
  padding:28px 24px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}
#event_local .filter-item label{
  display:block;
  margin-bottom:8px;
  color:#111827;
  font-size:16px;
  font-weight:800;
}
#event_local .filter-item select{
  width:100%;
  height:42px;
  padding:0 42px 0 16px;
  border:1px solid #d9e1ec;
  border-radius:8px;
  background-color:#fff;
  background-image:url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23333' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:12px 8px;
  color:#333;
  font-size:16px;
  appearance:none;
}
/* pc table */
#event_local .seminar-table-wrap{
  overflow:hidden;
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 24px rgba(0,0,0,.1);
}
#event_local .seminar-table{
  width:100%;
  border-collapse:collapse;
  table-layout:fixed;
}
#event_local .seminar-table th{
  padding:22px 26px;
  background:#2f5fa8;
  color:#fff;
  font-weight:600;
  text-align:left;
  white-space:nowrap;
}
#event_local .seminar-table td{
  padding:22px 26px;
  border-bottom:1px solid #e9edf3;
  color:#374151;
  line-height:1.35;
  vertical-align:middle;
}
#event_local .seminar-table tbody tr:nth-child(even){ background:#f8f9fb; }
#event_local .seminar-table tbody tr:hover{ background:#eef5ff; }
#event_local .seminar-table .title, .seminar-card-list h3,
#event_local .speaker, #event_local .seminar-card-list .speaker{ cursor: pointer; }
#event_local .seminar-table .date,
#event_local .seminar-table .title{ color:#174b9b; font-weight:600; }
#event_local .country,
#event_local .speaker{ display:flex; align-items:center; gap:12px; }
#event_local .country img{ width:28px; }
#event_local .speaker img{
  width:34px;
  height:34px;
  border-radius:50%;
  object-fit:cover;
}
#event_local .seminar-card-list{ display:none; }


#board .sub-top{ background-image: url('/images/sub/top_board_qna.png'); }

.country_flag span { font-size: 18px; }


/* board */
/*
.search-btn{border:0}
#bo_gall, #bo_v, #bo_w{padding-bottom:100px; position: relative;}
#bo_gall ul#gall_ul{display:flex;    flex-wrap: wrap;}
#bo_w input[type="text"]{width: 100%;font-size: var(--font-small);background: #fff;border: 1px solid #DCDCDC;border-radius: 5px;font-weight: 300;color: #1F1F1F;padding: 20px;appearance: none;margin-bottom: 10px;transition: all 0.2s linear;}
#bo_w .write_div label{    font-size: var(--font-basic);font-weight: 600;color: var(--black-color);margin-bottom: 4px;}
#bo_w .write_div label.lb_icon{display: inline-block;padding: 10px 20px;font-size: 16px;line-height: normal;color: #fff;background: #b3b3b3;border: 1px solid #ebebeb;vertical-align: middle;cursor: pointer;}
#bo_w .btn_submit{    background: #b09979 !important;
    color: #fff !important;    font-size: 18px;
    font-weight: 600;}
#bo_v .edit-wrap a{color:var(--black-color)}
#bo_gall .pagination{justify-content: center;}
#bo_gall .pagination li a{color:var(--gray-color)}
#bo_gall .pagination li a:hover, #bo_gall .pagination li a.on{color:var(--main-color)}
#bo_gall .form-check-input:checked{background-color:var(--main-color); border-color:var(--main-color);}
#bo_gall .form-check-input:focus{box-shadow:0 0 0 .25rem rgba(144,118,83,.25);}
#bo_gall .cate_list{position: absolute;right: 0;top: 20px;}

.wr_content textarea, .tbl_frm01 textarea, .form_01 textarea, .frm_input, input[type="password"]{box-shadow:none!important}
input[type=text]:focus, input[type=password]:focus, textarea:focus, select:focus, input[type="password"]:focus{box-shadow:none;border:1px solid #ddd;}
.frm_input {height: 40px;font-size:12pt;}
#bo_w {margin-top:100px;}
#bo_w #wr_password, #bo_w #wr_homepage{margin-left:0;border: 1px solid #ddd;}
.cke_sc{display:none}
#bo_w p { padding-bottom:20px; text-align: center; line-height: 150%; }
*/


/* FORM */
/*
.counsel{padding:30px 0 100px 0}
.counsel h3{    font-size: var(--font-large);color: var(--black-color);font-weight: 600; letter-spacing: -0.2rem;}
.counsel .form-area{display:flex;     flex-direction: column;}
.counsel .form-area .input-title{    font-size: var(--font-basic);font-weight: 600;color:var(--black-color);margin-bottom: 4px;}
.counsel .form-area input[type="text"], .counsel .form-area textarea{width: 100%;  font-size: var(--font-small);background: #fff;border: 1px solid #DCDCDC;border-radius: 5px;font-weight: 300;color: #1F1F1F;padding: 20px;appearance: none;  margin-bottom: 30px;transition: all 0.2s linear;}
.counsel .form-area input[type="text"]:hover, .counsel .form-area textarea:hover, .counsel .form-area .nice-select:hover{border: 1px solid #999;}
.counsel .form-area textarea{height:170px}
.counsel .form-area .nice-select{ font-size: var(--font-small);border: 1px solid #DCDCDC;border-radius: 5px;font-weight: 300;color: #898989;padding: 13px 20px ; height: 69px;margin-bottom: 30px;}
.counsel .form-area .nice-select.open .list{width:100%}
.counsel .form-area .nice-select .option{ line-height: 60px;}
.counsel .form-area .agree input[type="checkbox"] {display: inline-block;font-weight: 300;color: #1F1F1F;line-height: 1.6;width: 20px; accent-color:var(--main-color);height: 20px;border: 1px solid #DCDCDC;margin-right: 7px;vertical-align: text-bottom;padding-left: 30px;position: relative;cursor: pointer;}
.counsel .form-area .agree input#agree{display:none}
.counsel .form-area .agree label{font-size:18px;    letter-spacing: -1px;}

#sub-page button.submit{border: 0;background-color:var(--main-color); font-size:var(--font-medium);padding: 15px; ;border-radius: 5px;color:var(--white-g-color);font-weight: 600;letter-spacing: -0.1rem;     margin-top: 30px;transition: all 0.2s linear;}
#sub-page button.submit:hover{background-color:#726049;transition: all 0.2s linear;}
*/

/*
.privacy_box input[type="checkbox"] {position: absolute;width: 1px;height: 1px;padding: 0;margin: -1px;overflow: hidden;clip:rect(0,0,0,0);border: 0}
.privacy_box input[type="checkbox"] + label {display: inline-block;position: relative;cursor: pointer;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;}
.privacy_box input[type="checkbox"] + label:before {content: ' ';display: inline-block;width: 15px;height:15px; line-height: 15px;margin: -2px 8px 0 0;text-align: center; vertical-align: middle;background: #fff;border: 1px solid #a6a6a6;border-radius : 0px;position: absolute;left: 0;top: 50%;transform: translateY(-50%);margin-top: 0;opacity: .6;box-shadow: none;border-color: #DCDCDC;-webkit-transition: all .12s, border-color .08s;transition: all .12s, border-color .08s;}
.privacy_box input[type="checkbox"] + label:active:before,
.privacy_box input[type="checkbox"]:checked + label:active:before {box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);}
.privacy_box input[type="checkbox"]:checked + label:before {content: '\2714';color: #99a1a7;text-shadow: 1px 1px #fff;background: #a6a6a6;border-color: #a6a6a6;box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);}
.privacy_box input[type="checkbox"] + label {padding-left: 25px; font-weight:400;}

.privacy_box input[type="checkbox"]:checked + label:before {position: absolute;content: "";width: 7px;top:0;left: 5px;border-radius: 0;opacity:1; background: transparent;border-color:transparent #a6a6a6 #a6a6a6 transparent;border-top-color:transparent;border-left-color:transparent;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);}
.privacy_box input[type="checkbox"]:checked + label{color: #000;}
#sub-page #rsv button.submit{font-size:var(--font-basic); width:100%}
.font-60 > .bold700{font-size:20pt;font-weight:700;color:#444444;margin-bottom:20px;display:block; text-align: center; } 

#sub-page .modal-body, #main-page .modal-body  {font-family: 'Pretendard', sans-serif !important; font-size:16px; line-height:1.6}
#sub-page .modal-body strong, #main-page .modal-body strong{display:block;font-size: 20px;margin: 35px 0 15px 0; }
#sub-page .modal-body > strong:first-child, #main-page .modal-body > strong:first-child{margin-top:10px}
#sub-page .modal-body b, #main-page .modal-body b{display:block; font-size: 18px;margin: 20px 0 10px 0;}
*/

/* ==============================
    pagination
============================== */
.pagination{display:flex;justify-content:center;align-items:center;margin:40px 0 30px;padding:0;list-style:none;}
.pagination .page-item{margin-left:-1px;}
.pagination .page-link{display:flex;align-items:center;justify-content:center;min-width:42px;height:38px;padding:0 14px;border:1px solid #d9dfe7;background:#fff;color:#6b7a90;font-size:15px;font-weight:500;text-decoration:none;transition:.2s ease;}
.pagination .page-item:first-child .page-link{border-radius:6px 0 0 6px;}
.pagination .page-item:last-child .page-link{border-radius:0 6px 6px 0;}
.pagination .page-link:hover{background:#f6f8fb;color:#1f3f75;position:relative;z-index:1;}
.pagination .page-link.on,
.pagination .page-link.active{background:#fff;color:#1f3f75;font-weight:700;position:relative;z-index:2;}
.pagination .page-link i{font-size:14px;}


/* ==============================
    layer
============================== */
/* layer common */
html.layer-open,
body.layer-open{
  overflow:hidden;
}

.layer{
  display:none;
  position:fixed;
  inset:0;
  z-index:3000;
}

.layer.on{
  display:block;
}

.layer-dim{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.layer-popup{
  position:absolute;
  top:50%;
  left:50%;
  width:calc(100% - 40px);
  max-height:calc(100vh - 80px);
  padding:0 !important;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  transform:translate(-50%, -50%);
}

.layer-content{
  max-height:calc(100vh - 80px);
  overflow-y:auto;
}

.layer-close{
  position:absolute;
  top:20px;
  right:20px;
  z-index:10;

  display:flex;
  align-items:center;
  justify-content:center;

  width:48px;
  height:48px;

  border:0;
  border-radius:50%;

  background:rgba(0,0,0,.55);
  color:#fff;

  font-size:24px;
  cursor:pointer;

  transition:.3s;
}

.layer-close:hover{
  background:rgba(0,0,0,.75);
}

/* profile layer */
.profile-popup{
  max-width:1180px;
}

.profile-content{
  padding:36px 34px;
}

.profile-top{
  display:flex;
  gap:42px;
  padding-bottom:32px;
  border-bottom:1px solid #e5e5e5;
}

.profile-img{
  flex:0 0 220px;
  width:220px;
  height:220px;
  border-radius:50%;
  overflow:hidden;
  background:#f5f6f8;
  box-shadow:0 0 0 4px #e9eef5, 0 10px 20px rgba(0,0,0,.12);
}

.profile-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.profile-info{
  flex:1;
}

.profile-info h2{
  margin:0 0 10px;
  color:#173d73;
  font-size:40px;
  font-weight:800;
  line-height:1.2;
}

.profile-info .country{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 24px;
  color:#333;
  font-size:22px;
  font-weight:600;
}

.profile-info .country img{
  width:32px;
}

.profile-line{
  height:1px;
  margin-bottom:24px;
  background:#e5e5e5;
}

.profile-info dl{
  margin:0;
}

.profile-info dt{
  margin-bottom:8px;
  color:#9aa2b3;
  font-size:14px;
  font-weight:800;
  letter-spacing:.03em;
}

.profile-info dd{
  margin:0 0 18px;
  color:#0f1e3d;
  font-size:20px;
  line-height:1.4;
}

.profile-info dd:first-of-type{
  color:#174b9b;
  font-weight:800;
}

.profile-info dd span{
  display:inline-block;
  padding:8px 18px;
  background:#edf2f8;
  border-radius:30px;
  color:#174b9b;
  font-size:16px;
  font-weight:600;
}

.profile-section{
  padding:32px 0;
  border-bottom:1px solid #e5e5e5;
}

.profile-section:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.profile-section h3{
  margin:0 0 16px;
  color:#9aa2b3;
  font-size:15px;
  font-weight:800;
  letter-spacing:.03em;
}

.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tag-list span{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  background:#f1f3f6;
  border-radius:30px;
  color:#0f1e3d;
  font-size:14px;
  line-height:1.2;
}

.profile-section p{
  margin:0;
  color:#0f1e3d;
  font-size:17px;
  line-height:1.6;
}

/* lecture layer size */
#lectureLayer .lecture-popup{
  max-width:900px;
}

/* video detail */
.video-detail .video-area{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  background:#000;
}

.video-detail .video-area iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.video-detail .video-info{
  padding:30px 34px;
}

.video-detail h2{
  margin:0 0 16px;
  color:#173d73;
  font-size:24px;
  font-weight:700;
  line-height:1.35;
}

.video-detail .date{
  margin:0;
  color:#555;
  font-size:16px;
}

.video-detail .doctor{
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px 34px;
  border-top:1px solid #e5e5e5;
  cursor:pointer;
  transition:.3s;
}

.video-detail .doctor:hover{
  background:#f5f6f8;
}

.video-detail .doctor img{
  width:68px;
  height:68px;
  border-radius:50%;
  object-fit:cover;
}

.video-detail .doctor strong{
  color:#174b9b;
  font-size:18px;
  font-weight:700;
}

.video-detail .doctor span{
  color:#555;
  font-size:17px;
}

.video-detail .doctor p{
  margin:4px 0 0;
  color:#111;
  font-size:14px;
}

/* contact layer */
.contact-popup{ max-width:560px; }
.contact-popup .contact-head{ padding:24px 30px; background:#2f5fa8; color:#fff; border-top: 1px solid #2f5fa8; }
.contact-popup .contact-head h2{ margin:0 0 5px; font-size:34px; font-weight:700; }
.contact-popup .contact-head p{ margin:0; color:rgba(255,255,255,.7); }
.contact-popup .contact-body{ padding:30px; }
.contact-popup .form-row{ display:flex; gap:16px; }
.contact-popup .form-item{ flex:1; margin-bottom:18px; }
.contact-popup .form-item label{ display:block; margin-bottom:8px; font-weight:600; }
.contact-popup .form-item input,
.contact-popup .form-item textarea{ width:100%; border:1px solid #d9e1ec; border-radius:10px; padding:14px 16px; }
.contact-popup .form-item textarea{ height:180px; resize:none; }
.contact-popup .form-item input.error,
.contact-popup .form-item textarea.error{ border-color:#e53935; }
.contact-popup .error-msg{ margin-top:6px; color:#e53935; font-size:13px; line-height:1.4; }
.contact-popup .btn-wrap{ display:flex; gap:12px; }
.contact-popup .btn-cancel{ flex:1; height:52px; border:0; border-radius:10px; background:#eceef3; }
.contact-popup .btn-submit{ flex:2; height:52px; border:0; border-radius:10px; background:#2f5fa8; color:#fff; }



input.error,
textarea.error{ border-color:#e53935; }
.error-msg{ margin-top:6px; color:#e53935; font-size:13px; line-height:1.4; }


.toast-msg{position:fixed;left:50%;z-index:9999;min-width:260px;max-width:90%;padding:14px 22px;border-radius:8px;color:#fff;font-size:15px;text-align:center;opacity:0;transition:.3s;}
.toast-msg.bottom{bottom:40px;transform:translate(-50%,20px);}
.toast-msg.bottom.on{opacity:1;transform:translate(-50%,0);}
.toast-msg.top{top:40px;transform:translate(-50%,-20px);}
.toast-msg.top.on{opacity:1;transform:translate(-50%,0);}
.toast-msg.success{background:#174b9b;}
.toast-msg.error{background:#e53935;}
.toast-msg.info{background:#333;}


#loadingBox { display: none; display: flex;height: 300px;justify-content: center;align-items: center; }

@media (max-width:1024px){
  #header{ height:84px; }
  .gnb{ display:none; }
  .menu-btn{ display:block; }
  .logo img{ width:60px; }
  .logo span{ font-size:12px; }
  .sub-top{ margin-top:84px; }


  .sub-page .sub-top .sec-in { padding:60px 0; }
  .sub-page .sec-in { padding:60px 0; }
  .sub-page .sec-1 { padding:10px 0 75px; }

  #about_mission_vision .mission-box{margin-bottom:90px;}
  #about_mission_vision .vision-list{gap:18px;}
  #about_mission_vision .vision-circle.bg{width:220px;height:220px;}
  #about_mission_vision .vision-circle.white{width:250px;height:250px;}
  #about_mission_vision .vision-line{width:35px;}


  #kol .kol-list{grid-template-columns:repeat(3,1fr) !important;gap:24px;}
  #kol .kol-card{padding:32px 20px 28px;}
  #kol h3{font-size:20px;}


  #lecture .lecture-group h2{ font-size:32px; }
  #lecture .lecture-list{ grid-template-columns:repeat(2, minmax(0, 1fr)); gap:24px; }
  #lecture .txt h3{ font-size:20px; }


  #research .research-head h3{ font-size:20px; }


  #event_international .img-box{ height:230px; }
  #event_international h3{ font-size:25px; }
  #event_international .desc{ font-size:15px; }


  #event_local .seminar-table-wrap{ overflow-x:auto; }



  /* layer */
  .profile-content{ padding:32px 28px; }
  .profile-top{ gap:32px; }
  .profile-img{ flex-basis:190px; width:190px; height:190px; }
  .profile-info h2{ font-size:34px; }
  .profile-info .country{ font-size:20px; }
}

@media (max-width:768px){
  #footer .footer-inner{ padding:30px 20px 0; }
  #footer .footer-top{ flex-direction:column; gap:28px; }
  #footer .footer-sns{ text-align:left; }
  #footer .sns-list{ justify-content:flex-start;}
  #footer h4{ font-size:19px; }
  #footer .footer-copy{ margin-top:6px; font-size:13px; line-height:1.5; }

  .sub-page .sec-1 { padding:10px 0 70px; }


  #about_introduction .sec-1 .intro-block{ margin-bottom:55px; }
  #about_introduction .sec-1 .intro-box{ padding:24px 22px; border-radius:8px; }
  #about_introduction .sec-1 .intro-box p{ line-height:1.65; }


  #about_mission_vision h2{margin-bottom:22px;}
  #about_mission_vision .mission-box{margin-bottom:65px;padding:28px 22px;}
  #about_mission_vision .mission-box p,
  #about_mission_vision .vision-text p{line-height:1.65;}
  #about_mission_vision .vision-list{flex-direction:column;gap:22px;padding:35px 0;}
  #about_mission_vision .vision-line{width:2px;height:34px;}
  #about_mission_vision .vision-circle.bg,
  #about_mission_vision .vision-circle.white{width:240px;height:240px;}
  #about_mission_vision .vision-circle i{font-size:32px;}


  #kol .kol-list{grid-template-columns:repeat(2,1fr) !important;gap:22px;}
  #kol .kol-list > li{min-height:300px;}
  #kol .img-box{width:118px;height:118px;margin-bottom:22px;}
  #kol h3{font-size:19px;}
  #kol .country{font-size:14px;}
  #kol strong{font-size:14px;}


  #lecture .lecture-group h2{ font-size:28px; }
  #lecture .lecture-list{ grid-template-columns:1fr; gap:22px; }


  #research .search-row.col2{ flex-wrap:wrap; }
  #research .search-row.col2 input{ flex:1 1 100%; }
  #research .search-row button{ width:100%; height:42px; }
  #research .research-filter{ flex-wrap:wrap; }
  #research .research-filter strong{ width:100%; margin-bottom:4px; }
  #research .research-list > li{ padding:24px 20px; }
  #research .research-head{ flex-direction:column; gap:14px; }
  #research .btns{ justify-content:flex-start; }
  #research .research-head h3{ font-size:19px; }


  #event_international .event-tab{ margin-bottom:30px; }
  #event_international .event-tab a{ height:78px; }
  #event_international .event-tab strong{ font-size:16px; }
  #event_international .event-tab span{ font-size:12px; }
  #event_international .img-box{ height:200px; }
  #event_international .txt-box{ padding:24px 22px; }
  #event_international h3{ font-size:22px; }
  #event_international .desc{ font-size:14px; }


  #event_local .seminar-filter{ grid-template-columns:repeat(3, 1fr); gap:14px; padding:24px 20px; }
  #event_local .filter-item label{ font-size:14px; }
  #event_local .filter-item select{ height:38px; font-size:14px; }
  #event_local .seminar-table-wrap{ display:none; }
  #event_local .seminar-card-list{ display:flex; flex-direction:column; gap:16px; }
  #event_local .seminar-card-list li{ padding:18px 18px 20px; background:#fff; border-radius:12px; box-shadow:0 8px 18px rgba(0,0,0,.1); }
  #event_local .card-top{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:14px; }
  #event_local .card-top .date{ display:inline-flex; align-items:center; padding:7px 13px; background:#eaf1fb; border-radius:20px; color:#174b9b; font-size:14px; font-weight:800; }
  #event_local .card-top .place{ display:flex; align-items:center; gap:7px; color:#333; font-size:14px; }
  #event_local .card-top .place img{ width:24px; }
  #event_local .seminar-card-list h3{ margin:0 0 14px; color:#0f2f5f; font-size:16px; font-weight:800; line-height:1.4; }
  #event_local .seminar-card-list .speaker{ display:flex; align-items:center; gap:10px; color:#333; font-size:15px; }
  #event_local .seminar-card-list .speaker img{ width:28px; height:28px; border-radius:50%; object-fit:cover; }



  /* ==============================
      layer
  ============================== */
  .layer-popup{ width:calc(100% - 28px); max-height:calc(100vh - 40px); }

  .layer-content{ max-height:calc(100vh - 40px); }

  /* kol */
  .profile-content{ padding:30px 22px; }
  .profile-top{ flex-direction:column; gap:24px; }
  .profile-img{ flex-basis:auto; width:170px; height:170px; }
  .profile-info h2{ font-size:30px; }
  .profile-info .country{ font-size:18px; }
  .profile-info dl{ text-align:left; }
  .profile-section p{ font-size:15px; }

  /* lecture */
  #lectureLayer .lecture-popup{ width:calc(100% - 28px); max-height:calc(100vh - 40px); }
  #lectureLayer .lecture-content{ max-height:calc(100vh - 40px); }
  .video-detail .video-info{ padding:26px 24px; }
  .video-detail h2{ font-size:22px; }
  .video-detail .doctor{ padding:20px 24px; }

  /* contact */
  .contact-popup .form-row{ flex-direction:column; gap:0; }
  .contact-popup .contact-body{ padding:24px 20px; }

  /* ==============================
      pagination
  ============================== */
  .pagination{margin-top:30px;}
  .pagination .page-link{min-width:38px;height:36px;padding:0 10px;font-size:14px;}

  /* ==============================
    toast
  ============================== */
  .toast-msg{min-width:auto;width:calc(100% - 28px);max-width:none;padding:12px 16px;font-size:14px;border-radius:8px;}
  .toast-msg.top{top:20px;}
  .toast-msg.bottom{bottom:20px;}
}

@media (max-width:480px){

  .sub-page .sub-top .sec-in { padding:40px 0; }
  .sub-page .sec-1 { padding: 10px 0 70px; }

  #about_introduction .top-logo img{ width:44px; }
  #about_introduction .sec-1 .intro-box{ padding:22px 18px; }


  #about_mission_vision .mission-box{padding:24px 18px;border-radius:10px;}
  #about_mission_vision h2::after{width:100px;}
  #about_mission_vision .vision-circle.bg,
  #about_mission_vision .vision-circle.white{width:215px;height:215px;}
  #about_mission_vision .vision-circle p{padding:0 18px;}


  #kol .kol-list{grid-template-columns:1fr !important;}
  #kol .kol-card{padding:30px 18px 26px;}
  #kol .img-box{width:112px;height:112px;}
  #kol h3{font-size:20px;}


  #lecture .lecture-group h2{ font-size:24px; }
  #lecture .lecture-list{ grid-template-columns:1fr; }
  #lecture .txt{ padding:22px 20px; }
  #lecture .txt h3{ font-size:19px; }


  #research .research-search,
  #research .research-filter,
  #research .research-list > li{ max-width:none; }
  #research .research-list > li{ padding:22px 16px; border-radius:10px; }
  #research .research-head h3{ font-size:18px; }
  #research .abstract-box{ padding:16px; }
  #research .btns a{ height:30px; padding:0 10px; font-size:12px; }


  #event_international .event-tab{ grid-template-columns:1fr; gap:10px; }
  #event_international .img-box{ height:170px; }
  #event_international .badge{ top:14px; left:14px; padding:7px 13px; font-size:12px; }
  #event_international h3{ font-size:20px; }
  #event_international .date{ flex-wrap:wrap; font-size:14px; }
  #event_international .btn-wrap a{ height:34px; padding:0 14px; font-size:12px; }


  #event_local .seminar-filter{ gap:12px; padding:22px 16px; }
  #event_local .card-top .place{ font-size:13px; }






  /* ===========================
      LAYER
  =========================== */
  .layer-popup{ width:100%; height:100vh; max-height:none; border-radius:0; }
  .layer-content{ height:100vh; max-height:none; }
  .profile-content{ padding:28px 20px; }
  .layer-close{ top:16px; right:16px; }

  /* KOL */
  .profile-img{ width:145px; height:145px; }
  .profile-info h2{ font-size:26px; }
  .profile-info .country{ font-size:16px; }
  .profile-info dd{ font-size:17px; }
  .tag-list span{ font-size:13px; }

  /* lecture layer */
  #lectureLayer .lecture-popup{ width:100%; height:100vh; max-height:none; border-radius:0;}
  #lectureLayer .lecture-content{ height:100vh; max-height:none; }
  .video-detail .video-info{ padding:24px 20px; }
  .video-detail h2{ font-size:20px; }
  .video-detail .doctor{ align-items:flex-start; padding:20px; }
  .video-detail .doctor img{ width:58px; height:58px; }
  .video-detail .doctor strong{ font-size:17px; }
  .video-detail .doctor span{ font-size:15px; }

  /* ==============================
    toast
  ============================== */
  .toast-msg{width:calc(100% - 20px);padding:11px 14px;font-size:13px;border-radius:6px;}
  .toast-msg.top{top:10px;}
  .toast-msg.bottom{bottom:10px;}
}
