
/* Global */
body {
  color: black;
  font-family: sans-serif;
}

/* Layout */
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-small {
  max-width: 400px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* Header */
.header {
  overflow-y: hidden;
}



/* Spots */
.spots {
  padding: 16px;
  text-align: center;
}

.spot {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  margin: 8px;
  padding: 8px;
  border-radius: 8px;
  width: 128px;
  vertical-align: text-top;
}

.spot:hover {
  transition: all 0.1s ease-out;
  transform: scale(1.1, 1.1);
  box-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.spot .spot-icon {
  display: inline-block;
  width: 128px;
  height: 128px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.spot .spot-title {
  display: block;
  font-weight: bold;
  color: #269ada;
  font-size: 120%;
}

.spot .spot-description {
  display: block;
  color: gray;
}

/* code */
.code {
  background-color: #FFFFEE;
  border: solid 1px #EEEEDD;
  border-radius: 0.25rem;
  padding: 0.25rem;
  white-space: pre-wrap;
  font-family: monospace, mono;
  font-size: 0.8rem;
  text-align: left;
}

/* output */
/*
.output {
  display: inline-block;
  padding: 0.5rem 1rem;
  line-height: 1.25;
  color: #464a4c;
  border: solid 1px #5cb3fd;
  border-radius: 0.25rem;
  outline: 0;
  width: 370px;
  font-size: 1rem;
  text-align: center;
  font-family: monospace, mono;
}*/

#consumer-line {
  padding: 4px 0;
  font-family: monospace, mono;
  font-size: 60%;
  color: gray;
}


/* button */
.button {
  /* Layout */
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;

  /* Colors */
  text-decoration: none;
  color: white;
  background-color: #0275d8;
  border: solid 1px #0275d8;
  line-height: 1.25;
  font-size: 1rem;
  margin: 0;

  /* Interaction */
  touch-action: manipulation;
  cursor: pointer;

  /* Animation */
  transition: all .1s ease-in-out;
}

.button:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(2,117,216,.5)
}

.button:hover {
  background-color: #025aa5;
  border-color: #01549b;
}

/* Card */

.card {
  color: white;
  position: relative;
  width: 403px;
  height: 264px;
  background: black url('img/card.png') center center no-repeat;
  background-size: contain;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  border-radius: 22px;
}

.card div {
  font-family: monospace, mono;
}

.card #OutputApiKey {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  width: 100%;
}

.card #card-picture {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  top: 8px;
  right: 8px;
  background: gray center center no-repeat;
  background-size: contain;
  border-top-right-radius: 16px;
}

.card #card-apikey-frame {
  position: absolute;
  left: 20px;
  right: 0;
  top: 62%;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(128,128,255,0.6);
}

.card #OutputApiKey {
  color: white;
  font-family: monospace, mono;
  text-align: center;
  font-size: 16px;
}

.card #OutputApiKey:focus {
  outline: 0;
}

.card #card-email {
  position: absolute;
  left: 28px;
  right: 8px;
  top: 24%;
  text-align: right;
}

.card #card-consumerid-frame {
  position: absolute;
  left: 9%;
  right: 110px;
  top: 83%;
  font-size: 12px;
  color: gray;
  text-align: left;
}
