@font-face {
  font-family: 'Raleway';
  src: url(../fnt/Raleway-Regular.ttf); }

* {
  font-family: 'Raleway';
  margin: 0;
  padding: 0; }

a {
  text-decoration: none;
  border-bottom: 1px dashed #0645AD;
  color: #0645AD; }

.space-below {
  margin-bottom: 15px; }

body {
  background-color: #90bade;
  background-image: url(../img/pockethop_background.png);
  background-size: cover;
  background-position: center; }

.content-box {
  border-radius: 10px;
  max-width: calc(400px - 10px * 2);
  margin: auto;
  text-align: center;
  padding: 10px; }
  .content-box#login-box {
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05) inset, 0px 0px 8px rgba(0, 0, 0, 0.6); }
    .content-box#login-box input.k-input {
      display: inline-block;
      width: 100%;
      font-size: 14px;
      margin-bottom: 10px; }
  .content-box.message-box {
    display: none;
    position: relative;
    top: -20px;
    margin-top: -40px; }
  .content-box.error-box {
    background-color: rgba(255, 0, 0, 0.6);
    box-shadow: 0px 1px 3px rgba(255, 0, 0, 0.05) inset, 0px 0px 8px rgba(255, 0, 0, 0.8); }
  .content-box.success-box {
    background-color: rgba(0, 255, 0, 0.6);
    box-shadow: 0px 1px 3px rgba(0, 255, 0, 0.05) inset, 0px 0px 8px rgba(0, 255, 0, 0.8); }
  .content-box ul {
    list-style-type: none; }

.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
  display: none; }
  .overlay .popup {
    background-color: #fff;
    border-radius: 10px;
    width: calc(80px - 10px * 2);
    height: calc(80px - 10px * 2);
    margin: auto;
    text-align: center;
    position: relative;
    top: calc(50% - 80px / 2);
    padding: 10px; }
    .overlay .popup button {
      left: 0;
      right: 0;
      width: 100%;
      bottom: -50px;
      position: absolute; }

#footer-box {
  position: fixed;
  bottom: 2px;
  text-align: center;
  width: 100%;
  font-size: 0.9em; }

button {
  display: inline-block;
  background-color: #337d9a;
  border: 0;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s; }
  button:hover {
    background-color: #004a67; }
  button:disabled {
    background-color: #777;
    color: #aaa;
    cursor: default; }

input.k-input {
  padding: 5px;
  border-radius: 10px;
  border: 0; }

input.k-input:focus {
  outline: none; }

.centre-outer {
  display: table;
  position: absolute;
  height: 100%;
  width: 100%; }

.centre-middle {
  display: table-cell;
  vertical-align: middle; }

.centre-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 400px; }
