html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a {
  color: inherit;
}
a:visited {
  color: inherit;
}

body {
  min-height: 100vh;
  display: flex;
  font-family: "Roboto", sans-serif;
  flex-direction: column;
  align-items: center;
  color: #333;
}

header {
  width: 900px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
}
header img {
  width: 156px;
  height: 61px;
  margin-right: 20px;
}
header h1 {
  font-weight: 300;
  font-size: 38px;
}
header h1 span {
  font-weight: 700;
  font-size: 18px;
  display: block;
  margin-top: 4px;
}

main {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 900px;
  max-width: 100%;
  flex-direction: column;
}

.intro {
  line-height: 1.5;
  background-color: #F6F6F6;
  padding: 20px;
  margin-bottom: 40px;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.check-intro-text {
  font-size: 11px;
  color: #888;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1.7;
}

.step {
  padding: 40px;
  width: 100%;
}
.step.result {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
  padding-top: 30px;
}
.step.result h3 {
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.step .result-header {
  margin-bottom: 20px;
  border-bottom: 1px solid #dedede;
  display: flex;
  padding-bottom: 16px;
  align-items: center;
  justify-content: space-between;
}
.step .result-header h4 {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.5;
}

#result-summary {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 0.4;
}
#result-summary .success {
  color: #333;
}
#result-summary .failed {
  color: #E44545;
}

#step-2-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
#step-2-actions button {
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  background-color: #fff;
  transition: background-color 0.15s ease-in-out;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  min-height: 40px;
  color: #6B6B6B;
  cursor: pointer;
  outline: none;
}
#step-2-actions button + button {
  margin-left: 10px;
}
#step-2-actions button:hover {
  background-color: #F0F0F0;
  color: #333;
}
#step-2-actions button:disabled {
  cursor: wait;
  position: relative;
  padding-left: 45px;
  color: #ccc;
}
#step-2-actions button:disabled:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #489FFF;
  left: 13px;
  top: 8px;
  animation: spin 2s infinite linear;
}
#step-2-actions button:disabled:after {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  left: 13px;
  top: 8px;
}

#step-1 {
  text-align: center;
}

#start-check-button {
  padding: 15px 30px 15px 30px;
  background-color: #489FFF;
  color: #fff;
  letter-spacing: 0.8px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 5px;
  border: 0;
  outline: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
#start-check-button:hover {
  background-color: #2e92ff;
}
#start-check-button:disabled {
  opacity: 0.8;
  pointer-events: none;
  cursor: not-allowed;
  position: relative;
  padding-left: 60px;
  transition: all 0.2s ease-in-out;
}
#start-check-button:disabled:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #fff;
  left: 23px;
  top: 13px;
  animation: spin 2s infinite linear;
}
#start-check-button:disabled:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  left: 23px;
  top: 13px;
}

#outbound-results {
  list-style: none;
}
#outbound-results li {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 30px;
  font-size: 14px;
  padding: 4px 5px;
  border-radius: 4px;
  animation: fadein 0.3s alternate ease-in-out;
}
#outbound-results li span {
  opacity: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.6px;
}
#outbound-results li span.key {
  flex-grow: 1;
  opacity: 1;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.4;
  margin-right: 10px;
}
#outbound-results li:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}
#outbound-results li.checking:before {
  background-color: #adb5bd;
}
#outbound-results li.success:before {
  background-color: #b5df87;
}
#outbound-results li.failed {
  font-weight: 700;
  color: #E44545;
}
#outbound-results li.failed:before {
  background-color: #E44545;
}
#outbound-results li.partial-success:before {
  background-color: #f3ad4f;
}
#outbound-results li:hover {
  background-color: #F6F6F6;
}
#outbound-results li:hover span {
  opacity: 1;
}

footer {
  flex-shrink: 0;
  flex-grow: 0;
  padding: 30px;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.5px;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0Deg);
  }
  100% {
    transform: rotate(360Deg);
  }
}
@media print {
  #step-1,
  #step-2-actions {
    display: none !important;
  }
  #step-2 {
    box-shadow: none !important;
    padding: 0 20px;
  }
  #outbound-results {
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
  }
  #outbound-results li span {
    opacity: 1;
  }
  #outbound-results li:before, #outbound-results li:after {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
