@import url("../country-guide-base.css");

.iceland-article-page {
  --article-accent:#3579a4;
  --article-accent-light:#ddecf5;
  --article-accent-dark:#255473;
  --article-tint:#fbfdff;
  margin:0;
}

.iceland-article-page .article-hero.notes {
  --article-accent:#397ea4;
  --article-accent-light:#ddecf5;
  --article-accent-dark:#285875;
}

.iceland-article-page .article-hero.payments {
  --article-accent:#2e7c70;
  --article-accent-light:#dcf1ec;
  --article-accent-dark:#20574f;
}

.iceland-article-page .article-hero.transit {
  --article-accent:#c18a2b;
  --article-accent-light:#fff0bf;
  --article-accent-dark:#7c591c;
}

.iceland-article-page .article-hero.refund {
  --article-accent:#b94f56;
  --article-accent-light:#f7dfe2;
  --article-accent-dark:#80373c;
}

.iceland-article-page .article-hero.tipping {
  --article-accent:#78578c;
  --article-accent-light:#eee5f2;
  --article-accent-dark:#543d62;
}

.isk-note-map,
.isk-wallet-grid,
.isk-bus-path,
.isk-tip-board,
.isk-card-board {
  display:grid;
  gap:14px;
  margin:28px 0;
  padding:20px;
  border:3px solid var(--ink);
  border-radius:6px;
}

.isk-note-map {
  grid-template-columns:repeat(3,minmax(0,1fr));
  background:linear-gradient(145deg,#ddecf5,#fff 48%,#eee5f2);
  box-shadow:5px 6px 0 #285875;
}

.isk-card-board {
  grid-template-columns:repeat(3,minmax(0,1fr));
  background:linear-gradient(145deg,#dcf1ec,#fff 48%,#ddecf5);
  box-shadow:5px 6px 0 #20574f;
}

.isk-wallet-grid {
  grid-template-columns:repeat(3,minmax(0,1fr));
  background:linear-gradient(145deg,#dcf1ec,#fff 48%,#fff0bf);
  box-shadow:5px 6px 0 #20574f;
}

.isk-tip-board {
  grid-template-columns:repeat(3,minmax(0,1fr));
  background:linear-gradient(145deg,#eee5f2,#fff 48%,#ddecf5);
  box-shadow:5px 6px 0 #543d62;
}

.isk-note-map > span,
.isk-wallet-grid > div,
.isk-bus-path > div,
.isk-tip-board > span,
.isk-card-board > span {
  min-width:0;
  padding:16px 10px;
  border:3px solid var(--ink);
  border-radius:5px;
  background:#fff;
  box-shadow:3px 4px 0 var(--ink);
  text-align:center;
}

.isk-note-map strong,
.isk-note-map small,
.isk-wallet-grid strong,
.isk-wallet-grid span,
.isk-bus-path strong,
.isk-bus-path span,
.isk-tip-board strong,
.isk-tip-board small,
.isk-card-board strong,
.isk-card-board small {
  display:block;
}

.isk-note-map strong,
.isk-wallet-grid strong,
.isk-bus-path strong,
.isk-tip-board strong,
.isk-card-board strong {
  font-size:1.05rem;
}

.isk-note-map small,
.isk-wallet-grid span,
.isk-bus-path span,
.isk-tip-board small,
.isk-card-board small {
  margin-top:5px;
  color:var(--muted);
  font-weight:750;
}

.isk-card-slip,
.isk-tax-slip,
.isk-tip-slip {
  width:min(100%,620px);
  margin:28px auto;
  padding:22px;
  border:3px solid var(--ink);
  border-radius:5px;
  background:linear-gradient(150deg,#fff,#dcf1ec);
  box-shadow:5px 6px 0 #20574f;
}

.isk-tax-slip {
  background:linear-gradient(150deg,#fff,#f7dfe2);
  box-shadow:5px 6px 0 #80373c;
}

.isk-tip-slip {
  background:linear-gradient(150deg,#fff,#eee5f2);
  box-shadow:5px 6px 0 #543d62;
}

.isk-card-slip > span,
.isk-tax-slip > span,
.isk-tip-slip > span {
  display:block;
  font-size:.78rem;
  font-weight:950;
}

.isk-card-slip > strong,
.isk-tax-slip > strong,
.isk-tip-slip > strong {
  display:block;
  margin:7px 0 16px;
  padding:9px;
  border:3px double var(--ink);
  text-align:center;
  font-size:clamp(1.25rem,4vw,2rem);
}

.isk-card-slip > strong {
  color:#20574f;
}

.isk-tax-slip > strong {
  color:#80373c;
}

.isk-tip-slip > strong {
  color:#543d62;
}

.isk-card-slip div,
.isk-tax-slip div,
.isk-tip-slip div {
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:9px 0;
  border-bottom:2px dotted rgba(22,22,22,.32);
}

.isk-card-slip div:last-child,
.isk-tax-slip div:last-child,
.isk-tip-slip div:last-child {
  border-bottom:0;
}

.isk-bus-path {
  grid-template-columns:1fr auto 1fr auto 1fr;
  align-items:center;
  background:linear-gradient(145deg,#fff0bf,#fff 48%,#ddecf5);
  box-shadow:5px 6px 0 #7c591c;
}

.isk-bus-path > b {
  font-size:1.35rem;
}

.iceland-article-page .article-money-explorer {
  background:linear-gradient(145deg,#fbfdff,#fff 52%,#fef7e8);
}

@media (max-width:700px) {
  .isk-note-map,
  .isk-wallet-grid,
  .isk-bus-path,
  .isk-tip-board,
  .isk-card-board {
    grid-template-columns:1fr;
  }

  .isk-bus-path > b {
    text-align:center;
    transform:rotate(90deg);
  }

  .isk-card-slip div,
  .isk-tax-slip div,
  .isk-tip-slip div {
    display:grid;
    gap:3px;
  }
}
