/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font: normal 62.5% "azo-sans-web", sans-serif;
  background-color: #fff;
  color:#444;
}

body {
  min-height: 100vh;
  background: #f9f9f9;
  font: 100% "azo-sans-web", sans-serif;
  color: #333;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
}

.container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}
.error-logo {
  margin-top: 48px;
}


.country-list {
  min-height: 200px;
  margin-top: 96px;
  margin-bottom: 64px;
  position: relative;
}
.tab {
  display: inline-block;
  vertical-align: middle;
}
.tab-label {
  display: inline-block;
  padding: 0 13px;
  position: relative;
  top: -34px;
  cursor: pointer;

}
.tab-label:hover .tab-img {
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
  transform: scale(1.25);
  border: 1px solid #0095da;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.tab-img {
  display: block;
  max-width: 36px;
  border: 1px solid transparent;
  border-radius: 50%;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.tab-radio {
  display: none;
}
.tab-radio:checked ~ .tab-label {
  z-index: 2;
}
.tab-radio:checked ~ .tab-label .tab-img {
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
  transform: scale(1.25);
  border: 1px solid #0095da;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.tab-radio:checked ~ .tab-label ~ .tab-content {
  z-index: 1;
  opacity: 1;
}
.tab-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 60px;
  opacity: 0;
}
.tab-content h2 {
  margin-bottom: 24px;
  font-size: 34px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: -0.04em;
}
.tab-content p {
  line-height: 1.5;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: -0.02em;
}
.tab-content p a {
  color: #0095da;
}
.error-img {
  position: relative;
  z-index: 2;
}
.error-glow {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -160px;
}

@media screen and (min-width: 1600px) {
  .container {
    max-width: 1250px;
  }
  .country-list {
    margin-bottom: 70px;
  }
  .error-logo {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  body {
      width: 1024px;
      overflow: auto;
  }
}