/* ============================================================
   Casino frame — topbar, chat rail, lobby
   ============================================================ */
:root { --rail: 312px; --bar: 62px; }

/* The frame is a real grid: the rail is a column, not a fixed panel the page has
   to be padded around. Nothing can end up underneath it. */
body.app {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--rail);
  grid-template-areas: 'bar rail' 'main rail';
  align-content: start;
  min-height: 100vh;
}
body.app > .bar { grid-area: bar; }
body.app > main { grid-area: main; min-width: 0; }
body.app > .rail { grid-area: rail; }
body.app[data-rail='closed'] { grid-template-columns: minmax(0, 1fr) 0; }
body.app[data-rail='closed'] > .rail { display: none; }

/* ---------------------------------------------- topbar ---- */
.bar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: clamp(.6rem, 2vw, 1.4rem);
  min-height: var(--bar);
  padding-inline: clamp(.85rem, 2vw, 1.5rem);
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: var(--hair);
}
.bar .brand { margin-right: 0; }
.bar__nav {
  display: flex;
  gap: clamp(.6rem, 1.6vw, 1.4rem);
  margin-right: auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  list-style: none;
  margin-block: 0;
  padding: 0;
}
.bar__nav::-webkit-scrollbar { display: none; }
.bar__nav li { flex: 0 0 auto; }
.bar__nav a {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone-45);
  padding-block: .3rem;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  transition: color .25s var(--step), border-color .25s var(--step);
}
.bar__nav a:hover, .bar__nav a[aria-current='page'] { color: var(--bone); border-bottom-color: var(--gold); }

.purse-chip {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .38rem .5rem .38rem .9rem;
  border: 1px solid var(--gold-40);
  white-space: nowrap;
}
.purse-chip b {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--gold);
  font-variant-numeric: lining-nums tabular-nums;
}
.purse-chip span { font-size: .58rem; letter-spacing: .18em; color: var(--bone-45); }

.avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold-40);
  object-fit: cover;
  background: var(--ink-raise);
}
.who {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--bone);
  font-size: .8rem;
  padding: .2rem;
}
.who:hover { color: var(--gold); }
.who span { max-width: 9ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bar > .purse-chip, .bar > .icon-btn, .bar > .who { flex: 0 0 auto; }

.menu-pop {
  position: absolute;
  top: calc(var(--bar) - 6px);
  right: clamp(.85rem, 2vw, 1.5rem);
  z-index: 70;
  min-width: 210px;
  padding: .5rem;
  background: var(--ink-raise);
  border: 1px solid var(--gold-40);
  display: grid;
  gap: .15rem;
}
.menu-pop a, .menu-pop button {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem .7rem;
  background: none;
  border: 0;
  text-align: left;
  font-size: .8rem;
  color: var(--bone-70);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.menu-pop a:hover, .menu-pop button:hover { background: var(--gold-08); color: var(--bone); }
.menu-pop b { color: var(--gold); font-weight: 500; font-variant-numeric: lining-nums tabular-nums; }

/* ---------------------------------------------- chat rail ---- */
.rail {
  position: sticky;
  top: 0;
  z-index: 55;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ink-sink);
  border-left: var(--hair);
}

.rail__head {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-height: var(--bar);
  padding-inline: 1rem;
  border-bottom: var(--hair);
}
.rail__head .label { margin-right: auto; }
.rail__online { font-size: .68rem; color: var(--bone-45); }
.rail__online i {
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: .35rem;
  border-radius: 50%;
  background: var(--gold);
}
.icon-btn {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  background: none;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  color: var(--bone-45);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: color .2s, border-color .2s;
}
.icon-btn:hover { color: var(--gold); border-color: var(--gold-40); }

.rail__log {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-18) transparent;
}
.msg { display: grid; grid-template-columns: 26px 1fr; gap: .55rem; }
.msg img, .msg .msg__dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold-18);
}
.msg__dot {
  display: grid;
  place-items: center;
  background: var(--ink-raise);
  color: var(--gold);
  font-family: var(--serif);
  font-size: .8rem;
}
.msg__who { display: flex; align-items: baseline; gap: .45rem; }
.msg__name { font-size: .74rem; color: var(--gold); font-weight: 500; }
.msg__name[data-role='owner']::after { content: ' ◆'; font-size: .6rem; }
.msg__name[data-role='mod']::after { content: ' ·'; }
.msg__at { font-size: .62rem; color: rgba(242, 239, 230, .3); }
.msg__body {
  font-size: .82rem;
  line-height: 1.45;
  color: var(--bone-70);
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.rail__form { border-top: var(--hair); padding: .75rem; display: grid; gap: .5rem; }
.rail__form textarea {
  width: 100%;
  min-height: 44px;
  max-height: 110px;
  resize: none;
  padding: .6rem .7rem;
  background: var(--ink-raise);
  border: 1px solid var(--gold-18);
  border-radius: var(--r-sm);
  color: var(--bone);
  font-size: .82rem;
  line-height: 1.4;
  font-family: inherit;
}
.rail__form textarea:focus { outline: none; border-color: var(--gold-40); }
.rail__note { font-size: .7rem; color: var(--bone-45); text-align: center; padding: .4rem 0; }
.rail__note a { color: var(--gold); border-bottom: 1px solid var(--gold-40); }

.rail-toggle {
  position: fixed;
  right: 0;
  bottom: 1.25rem;
  z-index: 56;
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  background: var(--ink-raise);
  border: 1px solid var(--gold-40);
  border-right: 0;
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}
body.app[data-rail='closed'] .rail-toggle { display: flex; }

/* ---------------------------------------------- lobby ---- */
.lobby { padding: clamp(1.25rem, 3vw, 2.25rem) clamp(.85rem, 2vw, 1.5rem) 4rem; }
/* app.css gives free-standing sections editorial padding; inside the lobby the
   slabs set their own rhythm, so that would only open holes. */
.lobby section { padding-block: 0; }

.strip {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  margin-bottom: 1.75rem;
  border-bottom: var(--hair);
}
.strip > div:first-child { flex: 1 1 min(100%, 420px); }
.strip h1 { font-size: clamp(2rem, 1.3rem + 2.4vw, 3.2rem); line-height: 1; }
.strip > div:first-child p { margin: .5rem 0 0; font-size: .86rem; color: var(--bone-45); max-width: 44ch; }
.strip__stats { display: flex; gap: clamp(1.2rem, 3vw, 2.5rem); margin-left: auto; }
.strip__stats div { text-align: right; }
.strip__stats b {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-variant-numeric: lining-nums tabular-nums;
}
.strip__stats span { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-45); }

.sect { margin-top: clamp(2rem, 4vw, 3rem); }
.sect__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}
.sect__head h2 { font-size: 1.5rem; }
.sect__head .label { margin-left: auto; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--gold-18);
  border: 1px solid var(--gold-18);
}
@media (min-width: 600px) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px) { .cards { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: .85rem;
  min-height: 208px;
  padding: 2rem 1rem 1.5rem;
  background: linear-gradient(180deg, var(--ink-raise), var(--ink) 62%);
  isolation: isolate;
  overflow: hidden;
  transition: background .35s var(--step);
}
/* Faint house guilloche pressed into every tile so it reads engraved, not empty. */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('/assets/img/guilloche.svg') center 120% / 150% no-repeat;
  opacity: .05;
  transition: opacity .4s var(--step), transform .6s var(--swing);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(120% 90% at 50% 112%, rgba(20, 64, 47, .95), transparent 70%);
  transition: opacity .4s var(--step);
}
.card:hover, .card:focus-visible { background: linear-gradient(180deg, var(--ink-raise), var(--ink) 55%); }
.card:hover::before, .card:focus-visible::before { opacity: 1; }
.card:hover::after, .card:focus-visible::after { opacity: .1; transform: translateY(-4px); }

/* The icon rides in a gold-hairline medallion — the salon's calling card. */
.card i {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  padding: 15px;
  color: var(--gold);
  border: 1px solid var(--gold-18);
  background: rgba(232, 184, 75, .04);
  transition: transform .45s var(--swing), border-color .35s var(--step), background .35s var(--step);
}
.card i svg { width: 100%; height: 100%; }
.card:hover i, .card:focus-visible i {
  transform: translateY(-3px);
  border-color: var(--gold-40);
  background: rgba(232, 184, 75, .08);
}
.card b { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; line-height: 1; margin-top: .15rem; }
.card span {
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone-45);
  padding-top: .3rem;
  margin-top: auto;
  border-top: 1px solid var(--gold-08);
  width: 100%;
  text-align: center;
}

.cards--live { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 900px) { .cards--live { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.card--live { min-height: 190px; }
.card__live {
  position: absolute;
  top: .7rem; left: .7rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}
.card__live i {
  display: block;
  padding: 0;
  border: 0;
  background: var(--red);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.75); }
}
.card__count {
  margin-left: .1rem;
  padding-left: .4rem;
  border-left: 1px solid var(--gold-18);
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--gold);
  font-variant-numeric: lining-nums tabular-nums;
}

/* ---------------------------------------------- tables ---- */
.duo {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  margin-top: clamp(2rem, 4vw, 3rem);
}
.slab { border: var(--hair); }
.slab__head {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.1rem;
  border-bottom: var(--hair);
}
.slab__head .label { margin-right: auto; }

table.list { width: 100%; border-collapse: collapse; font-size: .8rem; }
table.list th {
  text-align: left;
  padding: .55rem 1.1rem;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone-45);
  border-bottom: var(--hair);
}
table.list td {
  padding: .55rem 1.1rem;
  border-bottom: 1px solid rgba(232, 184, 75, .07);
  color: var(--bone-70);
  font-variant-numeric: lining-nums tabular-nums;
}
table.list tr:last-child td { border-bottom: 0; }
table.list td.right, table.list th.right { text-align: right; }
table.list .win { color: var(--gold); }
table.list .lose { color: rgba(242, 239, 230, .35); }
table.list .who-cell { display: flex; align-items: center; gap: .5rem; }
table.list .who-cell img, table.list .who-cell i {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--gold-18);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: .6rem;
  color: var(--gold);
  flex-shrink: 0;
}
.flash-in { animation: flashIn .5s var(--step) backwards; }
@keyframes flashIn { from { opacity: 0; transform: translateY(-6px); background: var(--gold-08); } }

/* ---------------------------------------------- auth modal ---- */
.veil {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(8, 8, 8, .78);
  backdrop-filter: blur(5px);
  animation: fade .3s var(--step);
}
@keyframes fade { from { opacity: 0; } }
.sheet {
  border-radius: var(--r);
  width: min(100%, 400px);
  max-height: 92vh;
  overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--ink);
  border: 1px solid var(--gold-40);
  animation: lift .4s var(--swing);
}
@keyframes lift { from { opacity: 0; transform: translateY(14px); } }
.sheet h2 { font-size: 1.8rem; margin-bottom: .35rem; }
.sheet > p { font-size: .82rem; color: var(--bone-45); margin-bottom: 1.4rem; }
.sheet form { display: grid; gap: .85rem; }
.sheet label { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-45); }
.sheet input {
  width: 100%;
  padding: .7rem .8rem;
  background: var(--ink-raise);
  border: 1px solid var(--gold-18);
  color: var(--bone);
  font-size: .9rem;
}
.sheet input:focus { outline: none; border-color: var(--gold-40); }
.sheet .err { font-size: .78rem; color: var(--red); min-height: 1.2em; }
.swap { text-align: center; font-size: .78rem; color: var(--bone-45); margin-top: 1.1rem; }
.swap button {
  background: none;
  border: 0;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  border-bottom: 1px solid var(--gold-40);
  padding: 0;
}
.or {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 1.1rem 0;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone-45);
}
.or::before, .or::after { content: ''; flex: 1; height: 1px; background: var(--gold-18); }

.discord-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: .8rem;
  background: #5865F2;
  border: 0;
  color: #fff;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter .25s;
}
.discord-btn:hover { filter: brightness(1.12); }
.discord-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------------------------------------------- responsive ---- */
@media (max-width: 1100px) {
  body.app,
  body.app[data-rail='closed'] {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: 'bar' 'main';
  }
  body.app > .rail,
  body.app[data-rail='closed'] > .rail {
    display: flex;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(var(--rail), 100vw);
    height: auto;
    transform: translateX(100%);
    box-shadow: -20px 0 50px rgba(0, 0, 0, .5);
    transition: transform .4s var(--swing);
  }
  body.app[data-rail='open'] > .rail { transform: none; }
  .rail-toggle { display: flex; }
  body.app[data-rail='open'] .rail-toggle { display: none; }
}

@media (max-width: 640px) {
  :root { --rail: 100vw; }
  .bar__nav { display: none; }
  .strip__stats {
    margin-left: 0;
    width: 100%;
    gap: 1.25rem 1.75rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .strip__stats div { text-align: left; }
  .strip__stats span { font-size: .55rem; letter-spacing: .12em; }
  .card { padding: 1.3rem .7rem 1.1rem; }
  .card i { width: 30px; height: 30px; }
}

/* ---- player card ---- */
.who-link {
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.who-link:hover .who-cell { color: var(--gold); }
.sheet--wide { width: min(100%, 520px); }
.who-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: var(--hair);
}
.who-head img, .who-head i {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-40);
  display: grid;
  place-items: center;
  font-style: normal;
  color: var(--gold);
  font-family: var(--serif);
}
.who-head b { display: block; font-family: var(--serif); font-size: 1.3rem; }
.who-head span { font-size: .72rem; color: var(--bone-45); }
.sheet--wide dl { display: grid; gap: .1rem; margin: 0 0 1.25rem; }
.sheet--wide .fair__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; font-size: .8rem; }
.sheet--wide .fair__row dt { color: var(--bone-45); }
.sheet--wide .fair__row dd { margin: 0; }
.sheet--wide .num.win { color: var(--gold); }
.sheet--wide .num.lose { color: var(--red); }
.sheet--wide table.list th, .sheet--wide table.list td { padding-inline: 0; }

/* ---- the win moment ---- */
.hype {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.confetti i {
  position: absolute;
  left: 50%; top: 50%;
  width: var(--w, 6px);
  height: calc(var(--w, 6px) * 1.7);
  background: var(--c, var(--gold));
  opacity: 0;
  animation: confetti var(--d, 1200ms) var(--step) forwards;
}
@keyframes confetti {
  0% { transform: translate(-50%, -50%) rotate(0); opacity: 1; }
  30% { transform: translate(calc(-50% + var(--dx) * .6), calc(-50% + var(--dy))) rotate(calc(var(--rot) * .4)); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + 52vh)) rotate(var(--rot)); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .confetti { display: none; } }
.strike {
  border-radius: var(--r);
  position: relative;
  display: grid;
  justify-items: center;
  gap: .5rem;
  padding: clamp(1.1rem, 4vw, 1.8rem) clamp(1.8rem, 7vw, 3.2rem);
  background: rgba(13, 13, 13, .92);
  border: 1px solid var(--gold-40);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  animation: struck .42s var(--swing) both;
}
.strike.is-going { animation: unstruck .32s var(--step) both; }
@keyframes struck { from { opacity: 0; transform: scale(.86); } }
@keyframes unstruck { to { opacity: 0; transform: translateY(-10px) scale(.98); } }
.strike__mult {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 11vw, 5rem);
  font-weight: 600;
  line-height: .9;
  color: var(--gold);
  font-variant-numeric: lining-nums tabular-nums;
}
.strike__rule { width: 54px; height: 1px; background: var(--gold-40); }
.strike__paid {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-70);
}
.strike--big { border-color: var(--gold); }
.strike--big .strike__mult { text-shadow: 0 0 28px rgba(232, 184, 75, .45); }
.strike__halo {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: min(78vw, 420px);
  aspect-ratio: 1;
  border: 1px solid var(--gold-18);
  border-radius: 50%;
  animation: halo 2.4s var(--step) both;
}
@keyframes halo {
  from { opacity: 0; transform: scale(.5); }
  35% { opacity: 1; }
  to { opacity: 0; transform: scale(1.25); }
}

/* ---- toasts ---- */
.toasts {
  position: fixed;
  left: clamp(.75rem, 2vw, 1.25rem);
  bottom: clamp(.75rem, 2vw, 1.25rem);
  z-index: 85;
  display: grid;
  gap: .5rem;
  width: min(82vw, 268px);
}
.tray-note {
  border-radius: var(--r-sm);
  display: grid;
  gap: .2rem;
  padding: .65rem .8rem;
  background: rgba(13, 13, 13, .95);
  border: 1px solid var(--gold-18);
  border-left: 2px solid var(--gold);
  cursor: pointer;
  animation: slidein .34s var(--swing) both;
}
.tray-note.is-going { animation: slideout .3s var(--step) both; }
@keyframes slidein { from { opacity: 0; transform: translateX(-14px); } }
@keyframes slideout { to { opacity: 0; transform: translateX(-10px); } }
.tray-note b { font-size: .78rem; color: var(--bone); }
.tray-note span { font-size: .72rem; color: var(--bone-45); line-height: 1.4; }
.tray-note--win { border-left-color: var(--gold); }
.tray-note--lose { border-left-color: var(--red); }

@media (prefers-reduced-motion: reduce) {
  .strike, .tray-note { animation-duration: .2s; }
  .strike__halo { display: none; }
  @keyframes struck { from { opacity: 0; } }
  @keyframes slidein { from { opacity: 0; } }
}

/* ---- standing ---- */
.tier { display: grid; gap: .5rem; }
.tier__bar {
  height: 3px;
  background: rgba(232, 184, 75, .16);
  overflow: hidden;
}
.tier__bar i {
  display: block;
  height: 100%;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .8s var(--swing);
}
.tier__note { margin: 0; font-size: .72rem; color: var(--bone-45); }
.strike__streak {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--gold-18);
  padding-top: .45rem;
  margin-top: .1rem;
}

