@keyframes FOCUS {
  0% { box-shadow: 0 0 1px #f26522; }
  100% { box-shadow: 0 0 10px #f26522; }
}

.textarea {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 2em;
  padding: 1em;
  border-radius: 0;
  border: 1px solid #333;
}

.info th,
.info td {
  padding: 1em !important;
}

.info th {
  text-align: left;
  width: 8em;
}

.info td {
  position: relative;
  padding-right: 80px !important;
}

@media (min-width: 768px) {
  .info th {
    width: 14em;
  }
}

.copy {
  display: block;
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border-width: 0px;
  box-shadow: 0 0 5px rgb(4,4,41,.2);
  border-radius: 100%;
  padding: 14px;
  top: 0;
  margin-top: .5em;
  right: 15px;
  cursor: pointer;
}

.copy img {
  display: block;
  border-width: 0px;
  margin: 0;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  background-color: rgba(0,0,0,.8);
  z-index: 10000;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  font-weight: 700;
  padding: 1em 1.5em;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s ease .2s,opacity .2s ease-in-out 0s;
  transition: visibility 0s ease .2s,opacity .2s ease-in-out 0s;
}

.modal.is-show {
  -webkit-transition: visibility 0s ease 0s,opacity .2s ease-in-out 0s;
  transition: visibility 0s ease 0s,opacity .2s ease-in-out 0s;
  visibility: visible;
  opacity: 1;
}

@media (min-width: 768px) {
  .modal {
    font-size: 24px;
  }
}

@keyframes FOCUS {
  0% { box-shadow: 0 0 1px #f26522; }
  100% { box-shadow: 0 0 10px #f26522; }
}

.textbox {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 1em;
  padding: 1em;
  border-radius: 0;
  border: 1px solid #333;
}

.textbox:focus {
  border: 1px solid #f26522;
  outline: 1px solid #f26522;
  animation: FOCUS .5s ease-in-out 0s infinite alternate;
}

.select-outer {
  position: relative;
  border: 1px solid #333;
  margin-bottom: 1em;
}

.select-outer::after {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  right: 1em;
  width: 12px;
  height: 12px;
  border: 6px solid transparent;
  border-top-color: #333;
  pointer-events: none;
}

.select {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 1em;
  -webkit-appearance: none;
  appearance: none;
  border-width: 0;
  border-radius: 0;
}

