:root {
  --header-background: #F3684D;
  --background: #f1f3f5;
  --color: #36414e;
  --button-background: #2ea70b;
  --button-color: #fff;

  --header-height: 56px;
  --header-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.1);
  --padding: 10px;
  --font-size: 14px;
  --button-padding: 10px 20px;
  --button-border-radius: 2px;
  --button-font-weight: bold;
  --button-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: var(--font-size);
  background: var(--background);
  color: var(--color);
}
body {
  margin: 0;
  padding: var(--padding);
  padding-top: calc(var(--padding) + var(--header-height));
  min-height: 100vh;
  box-sizing: border-box;
}

.flexv {
  display: flex;
  flex-direction: column;
}
.flexh {
  display: flex;
  flex-direction: row;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.mb2 {
  margin-bottom: 2rem;
}
@media (min-width: 520px) {
  .flexh--md {
    display: flex;
    flex-direction: row;
  }

  .flex-start--md {
    align-items: flex-start;
  }

  .ml2--md {
    margin-left: 2rem;
  }
  .mb0--md {
    margin-bottom: 0;
  }
}

header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--header-background);
  box-shadow: var(--header-shadow);
}
.vendor-logo {
  background: no-repeat center url("./img/zello@2x.png");
  background-size: contain;
  width: 120px;
  height: 28px;
  text-indent: -9999px;
  display: block;
  margin: 0 auto;
}

h1 {
  font-size: 1.75rem;
  margin: 0 0 1rem;
}
h2 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
p {
  margin: 0 0 1rem;
}

.app-version {
  color: var(--app-version-color, var(--color));
  opacity: var(--app-version-opacity, 0.7);
  font-weight: normal;
}
.app-icon {
  width: 160px;
  height: 160px;
  border-radius: 26%;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;

  background: var(--button-background);
  color: var(--button-color);
  font-weight: var(--button-font-weight);
  text-decoration: none;

  padding: var(--button-padding);
  border-radius: var(--button-border-radius);
  box-shadow: var(--button-shadow);
}
.platform-logo {
  width: 1.5em;
  height: 1.5em;
  margin-right: 10px;
}

/* Ocultar itens dependendo da plataforma */
.is-ios .hide-ios,
.is-android .hide-android {
  opacity: 0.5;
  /* display: none; */
}

.is-not-ios .disable-non-ios {
  opacity: 0.5;
  cursor: not-allowed;
}
