/* eslint-disable css/no-invalid-properties */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #1f2e44;
  color: #d8e1ee;
}

.ie11-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
}

.ie11-logo-corner {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ie11-card {
  width: 100%;
  max-width: 960px;
  display: flex;
  align-items: flex-start;
}

.ie11-card > div:not(.ie11-divider) {
  flex: 1 1 0;
}

.ie11-divider {
  flex: 0 0 1px;
  width: 1px;
  height: 200px;
  background: rgba(216, 225, 238, 0.2);
  margin: 0 32px;
}

.ie11-title {
  font-size: 20px;
  margin: 0 0 8px 0;
  color: #e8edf5;
}

.ie11-subtitle {
  font-size: 12px;
  margin: 0 0 22px 0;
  color: #aab8cc;
}

.ie11-text {
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 12px 0;
  color: #aab8cc;
}

.ie11-browser-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 14px -8px 10px -8px;
}

.ie11-browser {
  width: 25%;
  padding: 0 8px;
  text-align: center;
  font-size: 11px;
  color: #aab8cc;
}

.ie11-browser-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px auto;
  display: block;
}

/* IE11 flexbox fallbacks */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ie11-page {
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
  }

  .ie11-card {
    display: -ms-flexbox;
    -ms-flex-align: start;
  }

  .ie11-card > div:not(.ie11-divider) {
    -ms-flex: 1 1 0;
  }

  .ie11-browser-grid {
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
  }
}

.ie11-login-title {
  font-size: 16px;
  margin: 0 0 16px 0;
  color: #e8edf5;
}

.ie11-button {
  display: inline-block;
  padding: 8px 22px;
  background: #1e6bd6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  border: 1px solid #1e6bd6;
}

.ie11-button:hover,
.ie11-button:focus {
  background: #175bb6;
  border-color: #175bb6;
}

.ie11-login-wrap {
  display: block;
}

.ie11-login-note {
  font-size: 11px;
  color: #aab8cc;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .ie11-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .ie11-divider {
    display: none;
  }

  .ie11-browser {
    width: 50%;
    margin-bottom: 18px;
  }
}
