@import url("https://fonts.googleapis.com/css?family=Inter:300,400,450,500,600,700");
* {
  font-family: Inter, sans-serif; }

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #464a4c;
  background-color: #fff;
  background-image: none;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem; }

.p-1 {
  padding: 1em; }

.py-1 {
  padding-top: 1em;
  padding-bottom: 1em; }

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  color: #000;
  background-color: #efefef;
  cursor: pointer;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  height: 42px; }

.btn-link {
  padding: 0;
  color: #f05a22;
  background: transparent; }

.btn-primary {
  color: #fff;
  background-color: #f05a22;
  border-color: #f05a22; }

.btn-primary-alt {
  color: #f05a22;
  background: #fff;
  border-color: #f05a22; }

.btn img {
  height: 24px;
  padding-right: 1em; }

.section {
  display: flex;
  align-items: flex-start;
  gap: 10px; }
  @media (max-width: 768px) {
    .section {
      flex-direction: column;
      margin-bottom: 20px; } }

.inline-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 1em;
  margin-bottom: 1em;
  background: #fafafa; }
  .inline-section h4 {
    margin: 0;
    font-size: 1.1em;
    color: #333; }
  .inline-section textarea.form-control {
    flex-shrink: 0; }

header {
  padding: .5em 1em;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: larger;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; }
  header.hide + .main-content {
    margin-top: 0; }

header img {
  height: 40px; }

.main-content {
  margin-top: 80px;
  padding: 1em; }
  @media screen and (max-width: 400px) {
    .main-content {
      padding: 1em .5em; } }

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 0.8em;
  color: #0c4c75; }

.footer img {
  height: 48px; }

.vertical-bar {
  width: 1px;
  height: 25px;
  margin-left: 1em;
  margin-right: 1em;
  background: #ccc; }

.hide {
  display: none !important; }

@media screen and (max-width: 768px) {
  .mobile-gap {
    height: 200px; } }

.logos svg {
  width: 24px; }

a.link {
  color: #f05a22; }
  a.link:hover, a.link:visited, a.link:active {
    color: #f05a22; }

.textarea-wrapper {
  position: relative;
  width: 100%; }
  .textarea-wrapper textarea {
    padding-right: 36px !important; }

.btn-copy {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 4px 6px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center; }
  .btn-copy:hover {
    background: #f0f0f0;
    color: #f05a22; }

.copy-toast {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  z-index: 2147483647;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: opacity .3s ease; }
  .copy-toast.hide {
    display: none; }
