/* ============================================
   Contractor Projects UI
   - Account create/edit project
   - Account show project (units management)
   ============================================ */

/* Page containers */
.cp-container{
  max-width: 1100px;
  margin: 0 auto;
}
.cp-container--form{
  max-width: 980px;
}

/* Header */
.cp-headbar{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cp-headbar .cp-title{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.35;
}
.cp-headbar .cp-sub{
  opacity: .78;
  font-size: 13px;
  margin-top: 4px;
}
.cp-headbar .cp-actions{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* Icon sizing (fix inline SVG default 300x150) */
.cp-container .ico svg{
  width: 18px;
  height: 18px;
}
.cp-drop svg{
  width: 22px;
  height: 22px;
}

/* Stepper (anchor-based, works without JS) */
.cp-stepper{
  display: flex;
  gap: 8px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px;
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
}
.cp-stepper a{
  text-decoration: none;
}
.cp-step{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.28);
  background: #fff;
  color: var(--tl-ink, #0f172a);
  font-weight: 900;
  font-size: 12px;
  opacity: .85;
}
.cp-step:hover{
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
}
.cp-step .n{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(226,232,240,.85);
  color: var(--tl-ink, #0f172a);
  font-size: 12px;
}
.cp-step.is-active{
  opacity: 1;
  border-color: rgba(34,47,117,.30);
}
.cp-step.is-active .n{
  background: linear-gradient(135deg, var(--tl-primary, #222F75), var(--tl-secondary, #25BCCF));
  color: #fff;
}

/* Layout */
.cp-grid{
  display: grid;
  gap: 14px;
}
@media(min-width: 900px){
  .cp-grid--2{
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
  }
}

.cp-card-title{
  font-weight: 900;
  font-size: 15px;
}
.cp-card-sub{
  opacity: .76;
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.7;
}

.cp-heroInfo{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Media uploader */
.cp-drop{
  border: 1px dashed rgba(148,163,184,.8);
  border-radius: 18px;
  padding: 14px;
  background: #fff;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.cp-drop.is-drag{
  border-color: rgba(37,188,207,.85);
  box-shadow: 0 0 0 4px rgba(37,188,207,.15);
}
.cp-drop .cp-dropRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.cp-drop .cp-dropHint{
  font-size: 12px;
  opacity: .78;
  margin-top: 8px;
  line-height: 1.7;
}

.cp-mediaGrid{
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media(min-width: 760px){
  .cp-mediaGrid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.cp-tile{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.28);
  background: #0b1220;
  aspect-ratio: 1 / 1;
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
}
.cp-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cp-tile .cp-badge{
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(2,6,23,.70);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
.cp-tile .cp-del{ position:absolute; right:10px; top:10px; }

.cp-progress{
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}
.cp-progress > span{
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.cp-videoBox{
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 18px;
  overflow: hidden;
  background: #0b1220;
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
}
.cp-videoBox video{
  width: 100%;
  height: auto;
  display: block;
  max-height: 320px;
  object-fit: cover;
}

/* Sticky submit bar (mobile-friendly) */
.cp-stickyBar{
  position: sticky;
  bottom: calc(var(--tl-bottom-nav-h, var(--tl-bottomnav-h, 0px)) + 10px);
  z-index: 20;
  margin-top: 14px;
}
.cp-stickyBar .inner{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,.28);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
}

/* Units table + actions */
.cp-units{ margin-top: 14px; }
.cp-tableWrap{
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(148,163,184,.35);
  border-radius: 18px;
}
.cp-table{
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}
.cp-table thead th{
  position: sticky;
  top: 0;
  background: #f8fafc;
  color: #0f172a;
  text-align: right;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(148,163,184,.35);
  font-weight: 900;
}
.cp-table tbody td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(148,163,184,.2);
  color: #0f172a;
  vertical-align: middle;
}
.cp-table tbody tr:hover{ background: rgba(14,165,233,.06); }

/* Visual cue by unit status */
.cp-table tbody tr[data-unit-status="reserved"]{ background: rgba(245,158,11,.04); }
.cp-table tbody tr[data-unit-status="sold"]{ background: rgba(239,68,68,.03); }
.cp-table tbody tr[data-unit-status="sold"] td{ opacity: .82; }

.cp-priceOld{ opacity: .6; text-decoration: line-through; font-size: 12px; }
.cp-priceNew{ font-weight: 900; }

.cp-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(148,163,184,.35);
  background: #fff;
}
.cp-status--available{ border-color: rgba(16,185,129,.30); background: rgba(236,253,245,.85); color: #065f46; }
.cp-status--reserved{ border-color: rgba(245,158,11,.35); background: rgba(255,251,235,.92); color: #92400e; }
.cp-status--sold{ border-color: rgba(239,68,68,.30); background: rgba(254,242,242,.92); color: #991b1b; }

.cp-statusSelect{
  width: auto;
  min-width: 140px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.35);
  background: #fff;
  font-weight: 900;
  font-size: 12px;
  outline: none;
}
.cp-statusSelect:focus{ box-shadow: 0 0 0 4px rgba(37,188,207,.14); border-color: rgba(37,188,207,.55); }

.cp-unitActions{ display:flex; gap:8px; justify-content:flex-end; align-items:center; flex-wrap:wrap; }
.cp-iconBtn{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.35);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cp-iconBtn:hover{ box-shadow: 0 10px 24px rgba(2,6,23,.10); }
.cp-iconBtn svg{ width: 18px; height: 18px; }

/* Fallback submit button for status forms (shown when JS is disabled) */
.cp-statusSubmit{ min-height: 40px; padding: 10px 12px; }
.js .cp-statusSubmit{ display: none !important; }

.cp-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
}
.cp-filterChips{ display:flex; gap:8px; flex-wrap:wrap; }
.cp-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.30);
  background: #fff;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
}
.cp-chip.is-active{
  border-color: rgba(34,47,117,.30);
  background: rgba(34,47,117,.06);
}

/* Modal (small, self-contained) */
.cp-modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease;
  z-index: 2500;
}
.cp-modal-backdrop.is-open{ opacity: 1; pointer-events: auto; }

.cp-modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 2600;
}
.cp-modal.is-open{ display: flex; }

.cp-modal-card{
  width: min(620px, 100%);
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,.28);
  box-shadow: 0 30px 70px rgba(2,6,23,.22);
  overflow: hidden;
}
.cp-modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border-bottom: 1px solid rgba(148,163,184,.22);
}
.cp-modal-title{ font-weight: 900; font-size: 14px; }
.cp-modal-close{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.30);
  background: #fff;
  cursor: pointer;
  line-height: 1;
}
.cp-modal-body{ padding: 14px; }
.cp-modal-actions{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; margin-top: 12px; }

@media (max-width: 1024px), ((hover: none) and (pointer: coarse) and (max-width: 1366px)){
  /* Layout: single column (app-like) */
  .cp-grid{ grid-template-columns: 1fr; }
  .cp-summary{ grid-template-columns: 1fr; }
  .cp-mediaGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Header actions: make buttons wrap nicely on mobile */
  .cp-headbar{ gap: 10px; }
  .cp-headbar .cp-actions{ width: 100%; }
  .cp-headbar .cp-actions > *{ flex: 1 1 160px; }
  .cp-headbar .cp-actions .tl-btn{ width: 100%; justify-content: center; white-space: normal; text-align: center; }

  /* Units: remove horizontal scroll and render rows as cards */
  .cp-tableWrap{ overflow: visible; border: none; background: transparent; }
  .cp-table{ min-width: 0; width: 100%; }
  .cp-table thead{ display: none; }
  .cp-table tbody{ display: block; }
  .cp-table tbody tr{
    display: block;
    margin-bottom: 10px;
    border: 1px solid rgba(148,163,184,.28);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 26px rgba(2,6,23,.06);
  }
  .cp-table tbody td{
    display: block;
    padding: 10px 12px;
    border-bottom: 1px dashed rgba(148,163,184,.28);
  }
  .cp-table tbody td:last-child{ border-bottom: none; }
  .cp-table tbody td::before{
    content: attr(data-label);
    display: block;
    font-weight: 900;
    font-size: 12px;
    opacity: .72;
    margin-bottom: 4px;
  }

  .cp-statusSelect{ width: 100%; min-width: 0; }
  .cp-unitActions{ justify-content: flex-start; }
}

@media(max-width: 640px){
  .cp-headbar .cp-title{ font-size: 17px; }
}

/* ============================================
   Contractor Project Form (App-like UI)
   - New modern UI for add/edit project
   ============================================ */

.cp-form{
  padding-top: 14px;
  padding-bottom: calc(var(--tl-bottom-nav-h, var(--tl-bottomnav-h, 0px)) + 120px);
}

/* Anchor scroll offsets (app header) */
#cpInfo, #cpLocation, #cpMedia{ scroll-margin-top: 90px; }

/* Hero */
.cpf-heroCard{
  position: relative;
  overflow: hidden;
  border: none;
  padding: 14px;
  background: linear-gradient(135deg, rgba(34,47,117,.96), rgba(37,188,207,.88));
  color: #fff;
}
.cpf-heroCard .tl-chip{
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  color: #fff;
}
.cpf-heroBg{
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(900px 320px at 15% 5%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(600px 260px at 85% 35%, rgba(255,255,255,.16), transparent 65%),
    radial-gradient(420px 220px at 80% 110%, rgba(255,255,255,.12), transparent 70%);
  pointer-events: none;
  opacity: .9;
}
.cpf-hero{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cpf-heroTop{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cpf-back{
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
}
.cpf-heroActions{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.cpf-heroBody{
  display: flex;
  gap: 14px;
  align-items: stretch;
  flex-wrap: wrap;
}
.cpf-brand{
  flex: 0 0 auto;
}
.cpf-brandLogo{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
}
.cpf-brandLogo--fallback{
  display: flex;
  align-items: center;
  justify-content: center;
}
.cpf-brandLogo--fallback svg{
  width: 22px;
  height: 22px;
}
.cpf-heroMain{
  min-width: 0;
  flex: 1 1 280px;
}
.cpf-heroTitleRow{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.cpf-heroTitle{
  margin: 0;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.4;
}
.cpf-heroSub{
  opacity: .92;
  font-size: 13px;
  margin-top: 4px;
}
.cpf-heroMeta{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}
.cpf-chip{
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.cpf-chip .ico svg{
  width: 16px;
  height: 16px;
}
.cpf-chip--discount{
  border-color: rgba(16,185,129,.45) !important;
  background: rgba(16,185,129,.18) !important;
}
.cpf-heroThumb{
  flex: 0 0 auto;
  width: 120px;
}
.cpf-heroThumb img{
  width: 120px;
  height: 86px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}
@media(min-width: 900px){
  .cpf-heroThumb{ width: 160px; }
  .cpf-heroThumb img{ width: 160px; height: 110px; }
}

/* Layout */
.cpf-layout{
  display: grid;
  gap: 14px;
}
@media(min-width: 980px){
  .cpf-layout{
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}
.cpf-asideInner{
  position: sticky;
  top: 14px;
}
@media(max-width: 979px){
  .cpf-asideInner{ position: static; }
}

/* Card heads */
.cpf-card{
  padding: 14px;
}
.cpf-cardHead{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.cpf-cardIcon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(34,47,117,.09);
  border: 1px solid rgba(34,47,117,.14);
  color: var(--tl-primary, #222F75);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cpf-cardIcon svg{
  width: 22px;
  height: 22px;
}
.cpf-cardHeadText{
  min-width: 0;
  flex: 1;
}
.cpf-cardTitle{
  font-weight: 900;
  font-size: 15px;
}
.cpf-cardSub{
  opacity: .76;
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.7;
}

.cpf-fields{
  display: grid;
  gap: 12px;
}

.cpf-grid2{
  display: grid;
  gap: 12px;
}
@media ((min-width: 820px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .cpf-grid2{ grid-template-columns: 1fr 1fr; }
}


.cpf-slugRow{
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.cpf-slugRow .tl-input{
  flex: 1;
  min-width: 0;
}
.cpf-slugBtn{
  min-height: 44px;
  white-space: nowrap;
}
.cpf-urlRow{
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.cpf-urlRow .tl-input{
  flex: 1;
  min-width: 0;
}
.cpf-urlBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  min-height: 44px;
}
.cpf-urlBtn .ico svg{
  width: 18px;
  height: 18px;
}

/* Blocks within Media card */
.cpf-block{
  border-top: 1px dashed rgba(148,163,184,.28);
  padding-top: 14px;
}
.cpf-blockHead{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.cpf-blockTitle{
  font-weight: 900;
  font-size: 14px;
}
.cpf-blockSub{
  opacity: .78;
  font-size: 12px;
  margin-top: 4px;
}

/* Drop zones */
.cpf-drop{
  padding: 14px;
}
.cpf-dropHead{
  display: flex;
  gap: 12px;
  align-items: center;
}
.cpf-dropIcon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(34,47,117,.08);
  border: 1px solid rgba(34,47,117,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tl-primary, #222F75);
  flex: 0 0 auto;
}
.cpf-dropIcon svg{
  width: 22px;
  height: 22px;
}
.cpf-dropTitle{
  font-weight: 900;
  font-size: 13px;
}
.cpf-dropText{
  min-width: 0;
}

/* Discount */
.cpf-discountBox{
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(16,185,129,.22);
  background: rgba(236,253,245,.85);
  border-radius: 18px;
}
.cpf-discountHead{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.cpf-discountTitle{
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cpf-discountIcon{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(16,185,129,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cpf-discountValue{
  font-weight: 900;
  font-size: 13px;
}
.cpf-discountControls{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}
.cpf-range{
  flex: 1;
  accent-color: var(--tl-primary, #222F75);
}
.cpf-discountInput{
  width: 120px;
}
@media(max-width: 420px){
  .cpf-discountControls{
    flex-direction: column;
    align-items: stretch;
  }
  .cpf-discountInput{ width: 100%; }
}

/* Sticky submit bar: improve alignment when buttons wrap */
.cpf-submitActions{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
@media(max-width: 520px){
  .cpf-submitActions{
    width: 100%;
  }
  .cpf-submitActions .tl-btn{
    width: 100%;
    justify-content: center;
  }
}

/* Aside: preview */
.cpf-previewCard{
  padding: 14px;
}
.cpf-previewHead{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.cpf-previewTitle{
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cpf-previewTitle .ico svg{
  width: 18px;
  height: 18px;
}
.cpf-previewHero{
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.28);
  background: rgba(226,232,240,.55);
}
.cpf-previewHero img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.cpf-previewBody{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.cpf-previewName{
  font-weight: 900;
  font-size: 14px;
  line-height: 1.5;
}
.cpf-previewRow{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.cpf-previewKey{
  font-weight: 900;
  font-size: 12px;
  opacity: .72;
}
.cpf-previewVal{
  font-weight: 800;
  font-size: 12px;
  text-align: left;
}
.cpf-checklist{
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px dashed rgba(148,163,184,.38);
  background: rgba(248,250,252,.9);
}
.cpf-check{
  font-weight: 800;
  font-size: 12px;
  margin: 6px 0;
}
.cpf-check--ok{
  color: rgba(16,185,129,1);
}
.cpf-check--muted{
  opacity: .6;
}

/* Tips */
.cpf-tipsCard{
  padding: 14px;
}
.cpf-tipsTitle{
  font-weight: 900;
  font-size: 14px;
}
.cpf-tipsList{
  margin: 10px 0 0;
  padding-inline-start: 18px;
  line-height: 1.9;
  opacity: .85;
}
/* ------------------------------------------------------------
   App-like media UX improvements
   ------------------------------------------------------------ */
.cpf-nativePicker{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  touch-action: manipulation;
}
.cpf-nativePickerInput{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
  pointer-events: auto;
  font-size: 100px;
}
.cpf-nativePickerInput::-webkit-file-upload-button{
  cursor: pointer;
}
.cpf-nativePicker:focus-within{
  outline: none;
  box-shadow: 0 0 0 4px rgba(34,47,117,.12);
}
.cpf-blockHead .cpf-nativePicker{
  max-width: 100%;
}
.cp-drop--clickable{
  cursor: pointer;
}
.cp-drop--desktopClickable .cpf-dropHead,
.cp-drop--desktopClickable .cpf-dropText{
  pointer-events: none;
}
.cp-drop--appSafe{
  cursor: default;
}
.cp-drop--clickable:focus,
.cp-drop--clickable:focus-visible{
  outline: none;
  border-color: rgba(34,47,117,.45);
  box-shadow: 0 0 0 4px rgba(34,47,117,.12);
}
.cp-drop--clickable .cp-tile,
.cp-drop--clickable button,
.cp-drop--clickable a{
  cursor: default;
}

.cp-videoPreview{
  padding-top: 2px;
}
.cp-videoBox--preview{
  border-radius: 18px;
}
.cp-videoBox--preview video{
  max-height: 360px;
}
.cp-videoMetaName{
  font-weight: 900;
  font-size: 13px;
}
