/* WC Trip Specs 1.3.1 */
.wctps-table{
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  border:1px solid #eee;
  box-shadow:0 8px 18px rgba(0,0,0,.05);
  font-family:var(--wctps-font, system-ui,-apple-system,Segoe UI,Arial);
}

.wctps-table.align-center{ margin-left:auto; margin-right:auto; }
.wctps-table.align-right{ margin-left:auto; }

/* header */
.wctps-head{
  display:flex; justify-content:space-between; align-items:center;
  background:#f6f7f8;
  padding: var(--wctps-pad-head-y, 18px) var(--wctps-pad-head-x, 22px);
}
.wctps-title{ font-weight:700; font-size:var(--wctps-size-title,22px); color:#111; line-height: var(--wctps-lh,1.25); }
.wctps-days{ font-weight:700; color:#111; font-size:var(--wctps-size-days,18px); line-height: var(--wctps-lh,1.25); }
.wctps-days span{ font-weight:600; opacity:.85; }

/* body/rows */
.wctps-body{ display:block; }
.wctps-row{
  display:grid;
  grid-template-columns: var(--wctps-col-icon, 36px) minmax(var(--wctps-min-label,120px),1fr) minmax(var(--wctps-min-value,60px), auto);
  align-items:center;
  padding: var(--wctps-pad-row-y, 16px) var(--wctps-pad-row-x, 22px);
  border-top:1px solid #eee;
}
.wctps-label{ font-weight:700; color:#3b3b3b; font-size:var(--wctps-size-label,20px); line-height: var(--wctps-lh,1.25); }
.wctps-value{ justify-self:end; font-size:var(--wctps-size-value,20px); color:#111; line-height: var(--wctps-lh,1.25); }

/* icons */
.wctps-ico{
  width: var(--wctps-size-icon, 28px);
  height: var(--wctps-size-icon, 28px);
  display:inline-block;
  opacity: var(--wctps-ico-opacity, .82);
  background-repeat:no-repeat; background-size:contain;
  filter: drop-shadow(0 0 0 var(--wctps-ico-color, #666)); /* for color var use in mask below */
}

/* We colorize simple SVGs by embedding the color into the data URI (default #777) */
.wctps-depart{ background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23777' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 19h20v2H2v-2zm2.3-9.7l1.4 1.4 2.8-.7 3.5 3.5 1.4-1.4-3.5-3.5.7-2.8-1.4-1.4-1.8 4.9-4.9 1.8z'/%3E%3C/svg%3E"); }
.wctps-return{ background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23777' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 7h8.2L11.6 3.4 13 2l6 6-6 6-1.4-1.4L15.2 9H7V7zM2 20h20v2H2v-2z'/%3E%3C/svg%3E"); }
.wctps-flight{ background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23777' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 16l18-3.5-.7-2L13 12 8 2 6.6 2.4l2.6 9.3-5.1.9L2 16zm9 3l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E"); }
.wctps-room{   background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23777' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3l9 6v12h-6v-6H9v6H3V9l9-6z'/%3E%3C/svg%3E"); }
.wctps-meals{  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23777' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v8H7V2zm4 0h2v8h-2V2zM4 14h16v2H4v-2zm0 4h16v2H4v-2z'/%3E%3C/svg%3E"); }

@media (max-width: 767px){
  .wctps-row{ grid-template-columns: var(--wctps-col-icon, 34px) 1fr auto; }
}
