@charset "utf-8";

/* /member_list.css
   - member_list.php의 스타일 주도권을 이 파일로 통합
   - PC: 좌측 필터 + 우측 리스트
   - Mobile: 바텀시트 필터
   - Golfstar green/white tone
*/

:root{
  --ml-bg:#f3f7f4;
  --ml-bg-2:#f7fbf8;
  --ml-card:#ffffff;
  --ml-card-soft:#f8fcf9;
  --ml-line:#dfe8e3;
  --ml-line-2:#e8efe9;
  --ml-text:#132017;
  --ml-sub:#6f8275;
  --ml-green:#1f7a45;
  --ml-green-2:#2d9b59;
  --ml-green-soft:#e8f5ec;
  --ml-blue:#2563eb;
  --ml-blue-soft:#eff6ff;
  --ml-red:#ef4444;
  --ml-gold:#eab308;
  --ml-shadow:0 14px 34px rgba(15,26,17,.08);
  --ml-shadow-lg:0 22px 54px rgba(15,26,17,.12);
  --ml-radius-xl:22px;
  --ml-radius-lg:18px;
  --ml-radius-md:14px;
  --ml-radius-sm:12px;
}

html, body{
  background:var(--ml-bg) !important;
}

#wrap, #wrapper, #container, .container, .wrapper, .content, #hd, #ft{
  background:transparent !important;
}

/* ──────────────────────────────
   Page Layout
   ────────────────────────────── */
.ml-wrap{
  padding:14px 14px 20px;
  background:
    radial-gradient(circle at top left, rgba(45,155,89,.05), transparent 24%),
    linear-gradient(180deg,#f8fbf8 0%, var(--ml-bg) 100%);
}

.ml-shell{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:300px minmax(0, 1fr);
  gap:14px;
  align-items:start;
}

.ml-aside{
  position:sticky;
  top:14px;
  align-self:start;
}

.ml-aside-card{
  border:1px solid rgba(15,23,42,.08);
  border-radius:var(--ml-radius-xl);
  background:rgba(255,255,255,.96);
  box-shadow:var(--ml-shadow);
  padding:12px;
  overflow:visible;
}

.ml-content{
  min-width:0;
}

.ml-main{
  min-width:0;
}

/* ──────────────────────────────
   Sections
   ────────────────────────────── */
.ml-section{
  padding:12px;
  border-radius:var(--ml-radius-xl);
  border:1px solid rgba(15,23,42,.08);
  background:
    radial-gradient(circle at 0% 0%, rgba(45,155,89,.05), transparent 20%),
    linear-gradient(180deg,#ffffff 0%, #f8fcf9 100%);
  box-shadow:var(--ml-shadow);
}

.ml-section + .ml-section{
  margin-top:12px;
}

.ml-section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.ml-section-title{
  margin:0;
  font-size:18px;
  line-height:1.2;
  font-weight:1000;
  letter-spacing:-.03em;
  color:var(--ml-text);
}

.ml-section-sub{
  margin:5px 0 0;
  font-size:12px;
  line-height:1.5;
  color:var(--ml-sub);
  font-weight:900;
}

.ml-head-actions{
  display:none;
  align-items:center;
  gap:8px;
}

/* 검색 결과는 필터 사용 시만 노출 */
.ml-section-result{
  display:none;
}
.ml-wrap.has-filter .ml-section-result{
  display:block;
}

/* ──────────────────────────────
   Buttons
   ────────────────────────────── */
.ml-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-height:40px;
  padding:0 13px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color:var(--ml-text);
  cursor:pointer;
  font-weight:1000;
  font-size:13px;
  line-height:1;
  text-decoration:none;
  white-space:nowrap;
  box-shadow:0 8px 18px rgba(15,26,17,.04);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.ml-btn:hover{
  transform:translateY(-1px);
}
.ml-btn.primary{
  border-color:rgba(31,122,69,.18);
  background:linear-gradient(135deg,var(--ml-green) 0%, var(--ml-green-2) 100%);
  color:#fff;
  box-shadow:0 12px 24px rgba(31,122,69,.18);
}
.ml-btn.ghost{
  color:#334155;
}
.ml-btn.block{
  width:100%;
}

/* ──────────────────────────────
   Filter
   ────────────────────────────── */
.filter-box{
  display:block;
}

.ml-filter-top{
  margin-bottom:6px;
}

.ml-filter-title{
  margin:0;
  font-size:16px;
  line-height:1.2;
  font-weight:1000;
  letter-spacing:-.03em;
  color:var(--ml-text);
}

.ml-filter-sub{
  margin:5px 0 0;
  font-size:12px;
  line-height:1.5;
  color:var(--ml-sub);
  font-weight:900;
}

.filter-box h3{
  margin:14px 0 7px;
  font-size:13px;
  line-height:1.2;
  font-weight:1000;
  color:var(--ml-text);
  letter-spacing:-.02em;
}

.filter-box label{
  display:block;
  margin:0 0 6px;
  font-size:12px;
  color:#415245;
  font-weight:1000;
}

.filter-box select{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  font-size:13px;
  color:var(--ml-text);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}

.filter-box select:focus{
  outline:none;
  border-color:rgba(31,122,69,.28);
  box-shadow:0 0 0 4px rgba(31,122,69,.10);
}

.ml-hint{
  margin-top:3px;
  font-size:11.5px;
  line-height:1.45;
  color:var(--ml-sub);
}

.ml-row2{
  display:flex;
  gap:8px;
  align-items:flex-end;
}
.ml-row2 .col{
  flex:1;
  min-width:0;
}

.ml-multi{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  padding:6px;
}

.ml-multi select[multiple]{
  width:100%;
  height:144px;
  border:0;
  outline:0;
  background:transparent;
  padding:6px 4px;
  overflow:auto;
  font-size:13px;
}

.filter-actions{
  margin-top:12px;
  display:flex;
  gap:8px;
}
.filter-actions .ml-btn{
  flex:1;
}

.purpose-wrap{
  display:none;
}
.purpose-wrap.show{
  display:block;
}

/* ──────────────────────────────
   Active chips
   ────────────────────────────── */
.ml-chips{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  margin:0 0 10px;
}
.ml-chips:empty{
  display:none;
}
.ml-chips .chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border:1px solid rgba(15,23,42,.10);
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:#334155;
  background:#fff;
  box-shadow:0 8px 16px rgba(15,23,42,.04);
}
.ml-chips .chip-x{
  appearance:none;
  border:0;
  background:transparent;
  cursor:pointer;
  font-size:13px;
  line-height:1;
  color:#64748b;
  padding:0;
  margin:0 0 0 2px;
}
.ml-chips .chip-x:hover{
  color:#111827;
}

.ml-summary{
  color:var(--ml-sub);
  font-size:13px;
  margin:2px 2px 10px;
  font-weight:900;
}

/* ──────────────────────────────
   List / Card
   ────────────────────────────── */
.searching_member{
  float:none;
  width:100%;
  margin:0;
  padding:0;
  background:transparent;
  border:0;
}

.member-row,
.member-item{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:12px;
  align-items:start;
  padding:12px;
  background:
    radial-gradient(120px 80px at 100% 0%, rgba(37,99,235,.05), transparent 60%),
    linear-gradient(180deg,#ffffff 0%, #f8fcf9 100%);
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  box-shadow:0 10px 20px rgba(15,26,17,.05);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.member-row:hover,
.member-item:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 28px rgba(15,26,17,.08);
  border-color:rgba(31,122,69,.16);
}
.member-row + .member-row,
.member-item + .member-item{
  margin-top:10px;
}

.member-cell{
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-width:0;
}

.member_pic img{
  width:56px;
  height:56px;
  border-radius:18px;
  object-fit:cover;
  border:1px solid rgba(15,23,42,.10);
  background:#f8fafc;
  box-shadow:0 8px 18px rgba(15,23,42,.06);
}

.mb_info{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
  flex:1;
}

.mb_info .name{
  color:var(--ml-text);
  font-weight:1000;
  font-size:15px;
  line-height:1.35;
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  letter-spacing:-.02em;
}

.id-label{
  font-size:12px;
  color:#6b7280;
  margin-left:2px;
  font-weight:900;
}

.mb_needs{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin-top:2px;
}

.mb_needs .need{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  font-size:12px;
  color:#334155;
  background:#f1f5f9;
  font-weight:1000;
}

.mb_needs .need.type{
  background:#eef8f1;
  border-color:rgba(31,122,69,.18);
  color:#10361d;
}
.mb_needs .need.age{
  background:#eff6ff;
  border-color:rgba(37,99,235,.22);
  color:#1d4ed8;
}
.mb_needs .need.sex{
  background:#f8fafc;
  border-color:rgba(15,23,42,.10);
  color:#0f172a;
}
.mb_needs .need.purpose{
  background:#f8fafc;
}

.purpose{
  display:inline-block;
}

.purpose .mb_area{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border:1px solid rgba(15,23,42,.10);
  border-radius:999px;
  background:#fff;
  color:#64748b;
  font-size:12px;
  white-space:nowrap;
  font-weight:900;
}

/* 오른쪽 버튼 */
.gogo_btn{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
  min-width:128px;
}

.gogo_btn .td_3{
  display:inline-flex;
  align-items:center;
}
.gogo_btn .td_3 b{
  font-size:12px;
  color:#64748b;
  font-weight:1000;
}

.btn_clubhouse,
.btn_profile{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  text-decoration:none;
  font-weight:1000;
  font-size:12px;
  color:var(--ml-text);
  cursor:pointer;
  box-shadow:0 8px 16px rgba(15,23,42,.04);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn_clubhouse:hover,
.btn_profile:hover{
  transform:translateY(-1px);
  background:#f8fafc;
}
.btn_clubhouse.disabled{
  opacity:.45;
  cursor:not-allowed;
  pointer-events:auto;
}

.chat-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(37,99,235,.24);
  color:#2563eb;
  background:#fff;
  font-weight:1000;
  font-size:12px;
  cursor:pointer;
  text-decoration:none;
  box-shadow:0 8px 16px rgba(37,99,235,.06);
  transition:transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.chat-link:hover{
  transform:translateY(-1px);
  background:rgba(37,99,235,.06);
}

/* ──────────────────────────────
   Badge
   ────────────────────────────── */
.badge-level{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  font-size:12px;
  font-weight:1000;
  box-shadow:0 8px 16px rgba(15,23,42,.04);
}

.badge-pick{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:1000;
  color:#7a4b00;
  border:1px solid rgba(234,179,8,.35);
  background:
    radial-gradient(circle at 0 0, rgba(250,204,21,.35), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(249,115,22,.18), transparent 55%),
    rgba(255,255,255,.92);
  box-shadow:0 10px 24px rgba(234,179,8,.12);
}

/* ──────────────────────────────
   Promo marquee
   ────────────────────────────── */
.promo-box{
  margin-top:2px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.08);
  background:
    linear-gradient(180deg,#f8fafc 0%, #ffffff 100%);
  padding:8px 10px;
  box-shadow:0 8px 18px rgba(15,23,42,.04);
}

.promo-marquee{
  --dur:12s;
  --shift:240px;
  position:relative;
  overflow:hidden;
  white-space:nowrap;
}
.promo-marquee::before,
.promo-marquee::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:22px;
  pointer-events:none;
  z-index:1;
}
.promo-marquee::before{
  left:0;
  background:linear-gradient(90deg, rgba(248,250,252,.96), rgba(248,250,252,0));
}
.promo-marquee::after{
  right:0;
  background:linear-gradient(270deg, rgba(248,250,252,.96), rgba(248,250,252,0));
}
.promo-track{
  display:inline-flex;
  align-items:center;
  gap:24px;
  will-change:transform;
  animation:promoShift var(--dur) linear infinite;
}
.promo-text{
  font-size:11.5px;
  font-weight:900;
  color:#0f172a;
  letter-spacing:-.2px;
}
.promo-marquee.is-static .promo-track{
  animation:none;
}
@keyframes promoShift{
  to { transform:translateX(calc(-1 * var(--shift))); }
}
@media (prefers-reduced-motion: reduce){
  .promo-track{ animation:none !important; }
  .promo-marquee::before,
  .promo-marquee::after{ display:none; }
}

/* ──────────────────────────────
   No results
   ────────────────────────────── */
.no-results-container{
  padding:24px 18px;
  text-align:center;
  color:#6b7280;
}
.no-results-container h2{
  margin:6px 0 4px;
  font-size:18px;
  color:#132017;
  font-weight:1000;
}
.no-results-container p{
  margin:0;
  font-size:13px;
  line-height:1.6;
  color:#6f8275;
  font-weight:900;
}
.no-results-icon{
  font-size:36px;
  margin-bottom:4px;
}

/* ──────────────────────────────
   Bottom Sheet
   ────────────────────────────── */
.sheet{
  position:fixed;
  inset:0;
  z-index:10000;
  display:none;
}
.sheet.open{
  display:block;
}
.sheet-backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.48);
  opacity:0;
  transition:opacity .24s ease;
}
.sheet.open .sheet-backdrop{
  opacity:1;
}
.sheet-panel{
  position:absolute;
  left:50%;
  transform:translate(-50%, 100%);
  bottom:0;
  width:min(600px, 96vw);
  max-height:88vh;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-bottom:0;
  border-radius:20px 20px 0 0;
  box-shadow:0 -18px 48px rgba(0,0,0,.28);
  display:flex;
  flex-direction:column;
  transition:transform .24s cubic-bezier(.2,.8,.2,1);
}
.sheet.open .sheet-panel{
  transform:translate(-50%, 0);
}
.sheet-head{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 42px;
  border-bottom:1px solid rgba(15,23,42,.08);
  background:#f8fafc;
  border-radius:20px 20px 0 0;
}
.sheet-grabber{
  position:absolute;
  top:6px;
  left:50%;
  transform:translateX(-50%);
  width:42px;
  height:4px;
  border-radius:999px;
  background:#d1d5db;
}
.sheet-head strong{
  font-weight:1000;
  color:var(--ml-text);
}
.sheet-close{
  position:absolute;
  right:8px;
  top:8px;
  width:36px;
  height:36px;
  border:0;
  background:transparent;
  font-size:18px;
  color:#333;
  cursor:pointer;
}
.sheet-body{
  padding:12px;
  overflow:auto;
}
body.no-scroll{
  overflow:hidden;
}

/* ──────────────────────────────
   Chat popup
   ────────────────────────────── */
#layer-popup{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
  background:none;
}
#layer-popup.show{
  display:block;
}
#layer-popup::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.48);
  opacity:0;
  transition:opacity .24s ease;
}
#layer-popup.show::before{
  opacity:1;
}
#popup-content{
  position:absolute;
  left:50%;
  bottom:0;
  width:min(95vw, 520px);
  height:min(92vh, 680px);
  background:#fff;
  border-radius:18px 18px 0 0;
  overflow:hidden;
  box-shadow:0 -18px 48px rgba(0,0,0,.28);
  border:1px solid rgba(15,23,42,.08);
  border-bottom:0;
  transform:translate(-50%, 100%);
  transition:transform .24s cubic-bezier(.2,.8,.2,1);
  will-change:transform;
}
#popup-content.open{
  transform:translate(-50%, 0);
}
#popup-content iframe{
  display:block;
  width:100%;
  height:100%;
  border:0;
}
#close-popup{
  position:absolute;
  top:8px;
  right:8px;
  width:36px;
  height:36px;
  border:0;
  background:transparent;
  font-size:20px;
  color:#333;
  cursor:pointer;
  z-index:2;
}

/* ──────────────────────────────
   UI summary popup
   ────────────────────────────── */
#ui-layer{
  position:fixed;
  inset:0;
  display:none;
  z-index:10050;
}
#ui-layer.show{
  display:block;
}
#ui-layer::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.48);
  opacity:0;
  transition:opacity .24s ease;
}
#ui-layer.show::before{
  opacity:1;
}
#ui-panel{
  position:absolute;
  left:50%;
  bottom:0;
  width:min(95vw, 560px);
  max-height:min(88vh, 720px);
  background:#fff;
  border-radius:18px 18px 0 0;
  overflow:hidden;
  box-shadow:0 -18px 48px rgba(0,0,0,.28);
  border:1px solid rgba(15,23,42,.08);
  border-bottom:0;
  transform:translate(-50%, 100%);
  transition:transform .24s cubic-bezier(.2,.8,.2,1);
  will-change:transform;
}
#ui-panel.open{
  transform:translate(-50%, 0);
}
#ui-close{
  position:absolute;
  top:8px;
  right:8px;
  width:36px;
  height:36px;
  border:0;
  background:transparent;
  font-size:20px;
  color:#333;
  cursor:pointer;
  z-index:2;
}
#ui-body{
  padding:16px 16px 20px;
  overflow:auto;
  max-height:calc(min(88vh, 720px) - 0px);
}
.ui-top{
  display:flex;
  gap:12px;
  align-items:center;
}
.ui-top img{
  width:58px;
  height:58px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  object-fit:cover;
  background:#f8fafc;
}
.ui-title{
  font-weight:1000;
  color:#0f172a;
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  line-height:1.35;
}
.ui-sub{
  margin-top:4px;
  font-size:12px;
  color:#64748b;
  font-weight:900;
}
.ui-chips{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:10px;
}
.ui-chip{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#f1f5f9;
  font-size:12px;
  font-weight:900;
  color:#334155;
}
.ui-chip.type{
  background:#eef8f1;
  border-color:rgba(31,122,69,.18);
  color:#10361d;
}
.ui-chip.age{
  background:#eff6ff;
  border-color:rgba(37,99,235,.22);
  color:#1d4ed8;
}
.ui-promo{
  margin-top:10px;
  padding:10px 10px;
  border-radius:14px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  color:#0f172a;
  font-weight:900;
  font-size:12px;
  line-height:1.5;
}
.ui-actions{
  display:flex;
  gap:8px;
  margin-top:12px;
  flex-wrap:wrap;
}
.ui-actions a,
.ui-actions button,
.ui-actions span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 13px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  font-weight:1000;
  font-size:12px;
  color:#0f172a;
  text-decoration:none;
  cursor:pointer;
}
.ui-actions a.primary{
  border-color:rgba(31,122,69,.18);
  background:linear-gradient(135deg,var(--ml-green) 0%, var(--ml-green-2) 100%);
  color:#fff;
}
.ui-actions a.primary:hover{
  background:linear-gradient(135deg,var(--ml-green) 0%, var(--ml-green-2) 100%);
}

/* ──────────────────────────────
   Responsive
   ────────────────────────────── */
@media (min-width:981px){
  .ml-head-actions{
    display:none !important;
  }
  #filterSheet{
    display:none !important;
  }
}

@media (max-width:980px){
  .ml-wrap{
    padding:10px 10px 16px;
  }

  .ml-shell{
    grid-template-columns:1fr;
    gap:10px;
    max-width:680px;
  }

  .ml-aside{
    display:none;
  }

  .ml-head-actions{
    display:flex;
  }

  .member-row,
  .member-item{
    grid-template-columns:1fr;
    gap:10px;
  }

  .gogo_btn{
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:flex-end;
    align-items:center;
    min-width:0;
  }
}

@media (max-width:768px){
  .ml-section{
    padding:10px;
    border-radius:18px;
  }

  .ml-section-title{
    font-size:16px;
  }

  .member-cell{
    gap:10px;
  }

  .member_pic img{
    width:52px;
    height:52px;
    border-radius:16px;
  }

  .mb_info .name{
    font-size:14px;
  }

  .badge-level,
  .badge-pick{
    font-size:11px;
    padding:4px 8px;
  }

  .btn_clubhouse,
  .btn_profile,
  .chat-link{
    min-height:34px;
    padding:0 11px;
    font-size:11.5px;
  }
}

@media (max-width:560px){
  .ml-wrap{
    padding:8px 8px 14px;
  }

  .ml-section-head{
    gap:10px;
  }

  .ml-head-actions{
    width:100%;
    justify-content:space-between;
  }

  .ml-head-actions .ml-btn{
    flex:1;
  }

  .filter-actions{
    flex-direction:column;
  }

  .ml-row2{
    flex-direction:column;
  }

  .purpose .mb_area{
    white-space:normal;
    line-height:1.4;
  }

  .member-row,
  .member-item{
    padding:10px;
  }

  .gogo_btn{
    justify-content:flex-start;
  }

  #popup-content,
  #ui-panel{
    width:100%;
    left:0;
    transform:translate(0, 100%);
    border-radius:18px 18px 0 0;
  }

  #popup-content.open,
  #ui-panel.open{
    transform:translate(0, 0);
  }

  .sheet-panel{
    width:100%;
    left:0;
    transform:translate(0, 100%);
    border-radius:18px 18px 0 0;
  }

  .sheet.open .sheet-panel{
    transform:translate(0, 0);
  }
}