/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.header {
  padding: 10px;
  display: flex;
  height: 55px;
}

.header .embedery-button-container {
  margin-left: auto;
}

.header img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, max-content));
  grid-gap: 10px;
  padding: 0 10px;
}

.card-container:not(.show-container) {
  display: none;
}

.welcome-panel {
  padding: 25px;
  font-family: -apple-system,BlinkMacSystemFont,Source Sans Pro,sans-serif
}

.welcome-panel > * {
  position: relative;
  z-index: 1;
}

.welcome-panel .embedery-button {
  margin-top: 10px;
  font-size: 1rem;
}

.embedery-card {
  background-color: #fff;
  min-height: 220px;
  border: 1px solid #cecece;
  border-radius: 3px;
  padding: 10px;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.embedery-card h3 {
  font-size: 1.1rem;
  line-height: 1.3em;
  margin: 0;
}
.embedery-card p {
  margin: 0;
  margin-top: 5px;
  font-size: .9rem;
  line-height: 1.7em;
  color: #5d5d5d;
}

.inner-content {
  margin-bottom: auto;
}

.embedery-card .button-container {
  margin-top: 10px;;
  text-align: center;
}

.id-container {
  padding: 10px;
  border: 1px solid #ccc;
  display: block;
  text-align: center;
}

.embedery-card .button-container span {
  display: block;
  padding: 10px;
  font-weight: 600;
  background: #f0f0f0;
  margin-bottom: 10px;
}

.embedery-card .button-container .embedery-button {
  padding: 5px 10px;
}

.embedery-button {
  padding: 12px 15px;
  display: inline-block;
  border: 1px solid #d1463c;
  font-size: 13px;
  border-radius: 3px;
  cursor: pointer;
  color: #fff;
  background-color: #d1463c;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
}

.embedery-button.secondary {
  background: #f0f0f0;
  color: #333;
  border-color: #d4d4d4;
}

.embedery-button:focus,
.embedery-button:hover {
  text-decoration: none;
  color: #fff;
  outline: none;
}

.embedery-button.secondary:hover,
.embedery-button.secondary:focus {
  color: #333;
}

.embedery-button:active {
  outline: 0;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  margin: 50px auto;
  max-width: 1200px;
}

.grid-container .item  {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.grid-container .item h2 {
  text-align: center;
}

.grid-container .item img {
  width: 100%;
  margin-top: 15px;
}

.wrap .lead-title {
  margin: 0;
  font-size: 3.5rem;
  color: #3d4852;
  max-width: 600px;
  line-height: 1.2;
}

.wrap .lead-follow {
  margin-top: 25px;
  color: #333;
  font-size: 1.7rem;
  max-width: 600px;
  letter-spacing: -.03rem;
  line-height: 1.5;
}

.lead-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  max-width: 700px;
  width: 100%;
}

.intro-container {
  padding: 50px 0;
  max-width: 1200px;
  margin: auto;
}

.intro-container > *:not(.lead-image) {
  position: relative;
  z-index: 1;
}

.button-container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  grid-gap: 10px;
}

.lead .title {
  color: #363636;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.125;
  text-align: center;
}

.lead-list {
  padding: 0;
  margin: 0 -5px;
  list-style: none;
  max-width: 600px;
}

.lead-list li {
  display: inline-block;
  padding: 5px;
  background: #f0f0f0;
  border-radius: 3px;
  margin: 5px;
}