/*CSS reset*/
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;
}

strong {
	font-weight: bold;
}

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;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*CSS reset end*/
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Maven Pro', sans-serif;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../assets/background-sbs.jpg") no-repeat center center fixed;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/background.jpg") no-repeat center center fixed;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/background.jpg") no-repeat center center fixed;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/background.jpg") no-repeat center center fixed;
  background-size: cover;
}

button:active, button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

.container {
  padding: 0 30px;
}

.main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 600px;
  max-height: 90%;
  color: #535353;
  background-color: white;
  overflow: hidden;
}

.scrolling-wrapper {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.header {
  padding-top: 20px;
}

.error {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  background-color: #d00a22;
  display: none;
}

.logo-wrapper {
  margin-bottom: 20px;
  text-align: center;
}

.logo-on-top {
  height: 50px;
}

.title {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.content-wrapper {
  padding-bottom: 15px;
}

.content {
  font-size: 14px;
  line-height: 1.36;
}

.content p {
  margin-bottom: 18px;
}

.content a {
  text-decoration: none;
  color: #078ecb;
}

.two-columns-content {
  margin-bottom: 18px;
}

.two-columns-content p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2px;
}

.two-columns-content strong {
  -webkit-flex-basis: 160px;
      -ms-flex-preferred-size: 160px;
          flex-basis: 160px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-weight: bold;
}

.panel {
  padding: 20px 30px;
  margin-bottom: 35px;
  background-color: #f3f3f3;
}

.list-title {
  margin-bottom: 5px;
  font-weight: bold;
}

.panel-list {
  line-height: 1.57;
}

.button-wrapper {
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.button-wrapper button {
  padding: 16px 50px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: white;
  background-color: #078ecb;
  text-transform: uppercase;
  -webkit-transition: background-color .1s;
  -o-transition: background-color .1s;
  transition: background-color .1s;
}

.button-wrapper button:hover {
  background-color: #007ab1;
}

.button-wrapper button:hover {
  cursor: pointer;
}

.logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.side img {
  padding-left: 7px;
}

@media (max-width: 660px) {
  .main {
    width: 90%;
  }
  .container {
    padding: 0 20px;
  }
  .error {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
  }
  .title {
    font-size: 20px;
  }
  .content {
    font-size: 13px;
  }
  .two-columns-content p,
  .two-columns-content strong {
    display: block;
  }
  .button-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .button-wrapper button {
    padding-left: 0;
    padding-right: 0;
    display: block;
    width: 100%;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .main {
    display: block;
    height: 90%;
  }
  .scrolling-wrapper {
    height: calc(100% - 100px);
  }
}