/*!
 * it-send-v1.css
 * The Send and track tile, and what it turns into.
 */

.its-tile { position: relative; }
.its-tile .its-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #F26207; display: inline-block; margin-right: 8px;
  vertical-align: middle;
}
.its-tile.is-busy { opacity: .6; pointer-events: none; }

/* Signed out: present, greyed, and honest about what it needs. */
.its-tile.its-off {
  background: #F1EDE4 !important;
  border-color: #E2DCCF !important;
  color: #7A7365 !important;
}
.its-tile.its-off .its-dot { background: #CFC9BE; }

.its-msg {
  margin: 12px 0 0;
  padding: 11px 13px;
  border-radius: 10px;
  background: #FEF6F4;
  border: 1px solid #E7C4BC;
  color: #A83226;
  font-size: 13px;
  line-height: 1.5;
}
.its-msg[hidden] { display: none !important; }

.its-result {
  margin: 14px 0 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: #F7FCF9;
  border: 1px solid #BCE7CD;
}
.its-result[hidden] { display: none !important; }
.its-result > b { display: block; font-size: 14.5px; color: #0B6B3C; }
.its-result p { margin: 12px 0 0; font-size: 13px; line-height: 1.55; color: #54525E; }

.its-link { display: flex; gap: 8px; margin-top: 12px; }
.its-link input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #BCE7CD;
  border-radius: 10px;
  background: #fff;
  font: inherit;
  font-size: 13px;
  color: #15151A;
}
.its-link button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid #121214;
  background: #121214;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.its-link button:hover { background: #000; }

.its-go { margin-top: 14px; }
.its-go a {
  font-size: 13px;
  font-weight: 700;
  color: #0B6B3C;
}

@media (max-width: 560px) {
  .its-link { flex-direction: column; }
  .its-link button { width: 100%; min-height: 46px; }
}

@media print { .its-tile, .its-result, .its-msg { display: none !important; } }
