*,
*:before,
*:after {
  margin: 0;
  padding: 0;
}

:root {
  --logo-width: 80px;
  --font-large: 16px;
  --font-medium: 14px;
  --gutter-horizontal: 16px;
  --gutter-vertical: 20px;
  --spacing-small: calc(var(--gutter-vertical) * 2);
  --spacing-large: calc(var(--gutter-vertical) * 3);
  --store-wrapper-width-large: 600px;
  --store-wrapper-width-small: 288px;
  --store-button-width: 260px;
  --myer-black: #1f1f1f;
}

body {
  box-sizing: border-box;
  margin: 0 auto;
  color: var(--myer-black);
  font-size: var(--font-large);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo {
  margin-bottom: var(--spacing-small);
  padding: calc(var(--gutter-vertical) * 2) var(--gutter-vertical) var(--gutter-vertical);
}

.logo > svg {
  max-width: var(--logo-width);
  margin-left: calc(50% - var(--logo-width) / 2);
}

.content {
  margin: 0 var(--gutter-horizontal) var(--spacing-small);
  padding: 0 5px;
  text-align: center;
}

.content-message-main {
  margin-bottom: var(--gutter-vertical);
  font-weight: bold;
  font-size: var(--font-large);
  line-height: 24px;
}

.content-message-main:last-child {
  margin-bottom: 0;
}

.store-wrapper {
  /* DON'T DELETE */
  /* display: flex; */
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  box-sizing: border-box;
  height: 224px;
  margin: 0 var(--gutter-horizontal);
  padding: var(--gutter-vertical) var(--gutter-horizontal);
  text-align: center;
  background-color: #f8f8f8;
}

.store-copy {
  line-height: 24px;
}

.store-button {
  width: var(--store-button-width);
  height: 40px;
  background-color: white;
  border: 1px solid var(--myer-black);
  outline: none;
  cursor: pointer;
}

.store-button:hover {
  box-shadow: rgba(31, 31, 31, 0.2) 0 2px 8px;
}

.store-button > a {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--myer-black);
  font-weight: bold;
  font-size: var(--font-medium);
  line-height: 21px;
  text-align: center;
  text-decoration: none;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px var(--gutter-horizontal) 100px;
}

.footer > .help,
.footer > .resources-title {
  margin: 20px 0 10px;
  color: black;
  font-weight: bold;
  font-size: var(--font-large);
}

.footer > .help {
  margin-top: 30px;
}

.footer > .call-myer {
  margin: var(--gutter-vertical) 0;
}

.footer > .operations-title {
  margin-bottom: var(--gutter-vertical);
}

.footer > table {
  margin-bottom: var(--spacing-small);
}

.footer > table .time {
  line-height: 24px;
  text-align: right;
}

.footer > .resources-link {
  margin-top: var(--gutter-vertical);
}

.footer > .resources-link > a {
  color: var(--myer-black);
}

@media screen and (min-width: 600px) {
  .inner {
    width: 600px;
  }
}

@media screen and (min-width: 768px) {
  .logo {
    margin-bottom: var(--spacing-large);
    padding-top: calc(var(--gutter-vertical) * 3);
  }
  .content {
    margin-bottom: var(--spacing-large);
  }
  table {
    margin-bottom: var(--spacing-large);
  }
  .store-wrapper {
    max-width: 600px;
  }
  .footer {
    padding-top: 50px;
  }
}
