/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

article,
aside,
footer,
header,
menu,
nav,
section,
details,
table,
h1,
h2,
h3,
p,
div {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
}

/* Custom select dropdown */
.custom-select {
  position: relative;
}

.custom-select select {
  appearance: none;
  outline: none;
}

.custom-select select::-ms-expand {
  display: none; /* IE */
}

.custom-select::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 10px;
  width: 0.8em;
  height: 0.5em;
  background-color: #ccc;
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  pointer-events: none;
}

/* Other stuff */
input:focus,
select:focus,
button:focus,
a:focus {
  box-shadow: 0 0 0 2px rgba(67, 220, 255, 0.8);
  outline: none;
}

input[disabled],
select[disabled],
button[disabled] {
  cursor: default !important;
  color: #a9a9a9 !important;
  background-color: #eee !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: #cacaca !important;
}

option[disabled],
.disabled {
  cursor: default !important;
  color: #afafaf !important;
  outline: none !important;
}

body {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #263a44;
  background: #f4f6f7;
}

img {
  display: inline-block;
  border: 0;
  margin: 0;
  padding: 0;
}

a:hover {
  color: #00b0d8;
  text-decoration: none;
}

a,
a:link,
a:visited {
  text-decoration: none;
  color: #ffffff;
}

p {
  margin: 0 0 15px 0;
  font-size: 20px;
}

/* Forms */
input,
textarea,
select {
  font-size: 14px;
  color: #000;
  background-color: #fff;
  border: 1px solid #919192;
  border-radius: 4px;
  vertical-align: middle;
  padding: 0.5rem 0.725rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
}

input,
select {
  width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
  width: 20px;
  height: 20px;
  min-height: auto;
  margin: 0;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  margin-left: 5px;
  vertical-align: middle;
}

fieldset {
  position: relative;
  padding: 0 15px;
  border: 1px #c1c1c1 solid;
  border-radius: 4px;
  background: #f1f1f1;
}

.warning {
  color: #ff8d00;
  line-height: 1.2;
  display: block;
  margin-top: 5px;
}

/* Custom legend */
legend {
  position: relative;
  background: inherit;
  padding: 5px 10px;
  font-size: 13px;
  border: inherit;
  border-radius: 4px 4px 0 0;
  border-bottom: 0;
}

legend::before {
  content: '';
  position: absolute;
  width: 102%;
  height: 1rem;
  margin-left: -51%;
  top: 0.865rem;
  background: inherit;
  left: 50%;
}

legend span {
  position: relative;
}

fieldset legend + .row {
  margin-top: 5px;
}

/* Form groups */
.form-group {
  display: block;
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.form-group label + small {
  display: block;
  font-size: 13px;
  color: #888;
  margin: -2px 0 10px 0;
}

/* Layout */
.hidden {
  display: none !important;
}

.clear {
  display: table;
  clear: both;
}

.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.wrapper {
  margin: 0 auto;
  //min-width: 320px;
  //max-width: 640px;
  width: 100%;
  padding: 15px;
}

.row {
  margin-top: 5px;
  margin-bottom: 5px;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.go-back-separator {
  padding-top: 15px;
  border-top: 1px dashed #666;
}

/* Alignment */
.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

/* Margins, assuming gutters of 15px */
.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-05 {
  margin-top: 10px;
}

.mb-05 {
  margin-bottom: 10px;
}

.mt-1 {
  margin-top: 15px;
}

.mb-1 {
  margin-bottom: 15px;
}

.mt-2 {
  margin-top: 30px;
}

.mb-2 {
  margin-bottom: 30px;
}

.mt-3 {
  margin-top: 45px;
}

.mb-3 {
  margin-bottom: 5px;
}

.mr-1 {
  margin-right: 15px;
}

.ml-1 {
  margin-left: 15px;
}

.mr-2 {
  margin-right: 30px;
}

.ml-2 {
  margin-left: 30px;
}

/* Main elements */
#Header,
#Footer {
  text-align: center;
}

#Internet {
  height: 50px;
  text-align: center;
}

.hasInternet {
  width: 100%;
  height: 100%;
  background-color: #7db928;
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
}

.hasNoInternet {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  background-color: #cdcdcd;
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
}

.middle {
  display: inline-block;
  vertical-align: middle;
  line-height: 50px;
  height: 50px;
}

#Header {
  height: 150px;
  padding: 15px;
  vertical-align: middle;
}

#Header .logo {
  //display: block;
  margin: auto;
  height: 120px;
  vertical-align: middle;
}

.PageTitle {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  font-size: 32px;
  padding-right: 20px;
  font-weight: bold;
  color: #330000
}

#Divider {
  background-color: #000066;
  color: white;
}

#Content {
  padding-bottom: 35px;
}

#Footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 33px;
  background: #fff;
  padding: 5px 0 6px;
  border-top: 1px #d8d8d8 solid;
  color: #888;
  font-size: 14px;
}

#Footer span,
#Footer .logo {
  display: inline-block;
  vertical-align: middle;
}

#Footer span {
  margin-right: 5px;
}

#Footer .logo {
  width: 120px;
}

/* General */
.install {
  -webkit-appearance: none;
  visibility: visible;
  width: 300px;
  margin: 0 auto;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #558ed5;
  border-radius: 15px;
  background-color: #5a93b8;
  font-size: 26px;
  color: white;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 -1px 1px #555555;
  box-shadow: 1px 3px 2px #888888;
}

/* Buttons */
button,
.Button {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  height: auto;
  cursor: pointer;
  width: auto;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px transparent solid;
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  background: none #330000;
  transition: all 250ms ease-in-out;
  display: inline-flex;
}

button:hover,
.Button:hover {
  box-shadow: 0 0 0 3px rgba(67, 220, 255, 0.8);
  background: #330000;
}

.ButtonBack {
  background: #ff4e00;
}

.ButtonBack:hover {
  box-shadow: 0 0 0 3px rgba(255, 143, 94, 0.8);
  background: #dc4400;
}

.ButtonText {
  appearance: none;
  border: 0;
  background: none;
  padding: 0.25rem;
  color: inherit;
}

.ButtonText:hover {
  box-shadow: none;
  background: none;
}

/* Social */
.social-buttons {
  min-height: 28px;
}

.social-buttons .ButtonText {
  display: inline-block;
}

.ButtonFacebook,
.ButtonTwitter {
  white-space: nowrap;
}

.ButtonTwitter {
  margin-left: 15px;
}

.ButtonFacebook .fb-icon,
.ButtonTwitter .tw-icon {
  margin-right: 5px;
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

.ButtonFacebook span,
.ButtonTwitter span {
  vertical-align: middle;
}

/* Language */
.LanguageSelect {
  position: absolute;
  top: 28px;
  right: 20px;
  width: 200px;
  text-align: right;
  padding: 0;
}

.LanguageSelect a:hover,
.LanguageSelect a:focus,
.MobileLanguageSelect a:hover,
.MobileLanguageSelect a:focus {
  text-decoration: none;
  color: #4b4b4b;
}

.LanguageSelect a,
.LanguageSelect a:link,
.LanguageSelect a:visited,
.MobileLanguageSelect a,
.MobileLanguageSelect a:link,
.MobileLanguageSelect a:visited {
  text-decoration: none;
  color: #4b4b4b;
  font-size: 1.1em !important;
}

/* Text */
.title {
  font-weight: 300;
  font-size: 2.75rem;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: break-word;
  color: #000000;
  margin-bottom: 14px;
}

.ConfirmText {
  width: 100%;
  color: #248700;
}

.text-center {
  text-align: center;
}

/* Advertising placeholder */
#adz {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #e4e4e4;
  text-align: center;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
}

#adz .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  margin-top: -0.5rem;
}

/* Mobile */
@media all and (max-width: 767px) {
  .MobileHide {
    display: none;
  }
}

