html,
body {
  /*
  width: 100%;
  height: 100%;
  */
}
html {
  overflow-y: scroll;
  overflow-x: auto;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: #99b3cf;
  font-family: 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #113c66;
  display: flex;
  flex-direction: column;
}


/* Fonts ---------------------------------------------------------------------------------------- */

/* - Rubik - */

@media screen and (min-width: 676px) {
  
  /* latin normal */
  @font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/rubik/v21/iJWKBXyIfDnIV7nBrXyw023e.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  
  /* latin bold */
  @font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/rubik/v21/iJWKBXyIfDnIV7nBrXyw023e.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  
  /* latin normal italic */
  @font-face {
    font-family: 'Rubik';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE3U3f4LnlY1PK6w.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  
}

/* - Blinker - */

/* latin bold */
@font-face {
  font-family: 'Blinker';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_PGFdGYmnaBnSL8.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* - FontAwesome - */

@font-face {
  font-family: 'FontAwesome';
  src: url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0')             format('embedded-opentype'),
       url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0')                  format('woff2'),
       url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0')                   format('woff'),
       url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0')                    format('truetype'),
       url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* General -------------------------------------------------------------------------------------- */

* {
  padding: 0;
  border: 0;
  outline: none;
  margin: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
  font-size: 14px;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: underline;
  color: #113c66;
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.no-touch a:hover,
          a:active,
.no-touch a:focus {
  color: #ee6600;
}

table {
  border-collapse: collapse;
}
table th,
table td {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

label {
  cursor: pointer;
}
input,
textarea,
select,
button {
  background-color: transparent;
  font-family: 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #113c66;
}
textarea {
  resize: none;
}
select,
button {
  cursor: pointer;
}
button {
  outline: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

input[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

::-webkit-input-placeholder {
  color: #113c66;
}
:-moz-placeholder {
  color: #113c66;
  opacity: 1;
}
::-moz-placeholder {
  color: #113c66;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #113c66;
}
::-ms-input-placeholder {
  color: #113c66;
}
::placeholder {
  color: #113c66;
}


/* Banners -------------------------------------------------------------------------------------- */

.banner_container {
  background-color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 5px;
  border-radius: 6px;
}
.banner {
  text-align: center;
  overflow: hidden;
  margin: 0 auto 0 auto;
}

.banner ins {
  margin: 0 auto 0 auto !important;
}

/*
ins.adsbygoogle[data-ad-status='unfilled']{
  display: none !important;
}
*/


/* Button --------------------------------------------------------------------------------------- */

.button {
  height: 30px;
  display: block;
  position: relative;
  background-color: #99b3cf;
  background-image: linear-gradient(to bottom, #bacce2, #99b3cf);
  font-weight: bold;
  line-height: 29px;
  text-decoration: none;
  text-align: left;
  color: #113c66 !important;
  padding: 0 14px 0 35px;
  border-radius: 4px;
}
.button:before {
  width: 15px;
  height: 20px;
  position: absolute;
  top: 5px;
  left: 12px;
  font-family: 'FontAwesome';
  font-weight: normal;
  line-height: 20px;
  text-align: center;
}
.no-touch .button:hover,
          .button:active,
.no-touch .button:focus {
  background-color: #bacce2;
  background-image: linear-gradient(to bottom, #99b3cf, #bacce2);
}


/* Message -------------------------------------------------------------------------------------- */

.message_container {
  background-color: #fff;
  border-radius: 4px;
  margin: 0 20px 20px 0;
}
.message {
  position: relative;
  background-color: #fff;
  line-height: 22px;
  padding: 3px 8px 3px 33px;
  border: 1px solid;
  border-radius: 4px;
}
.message:before {
  width: 22px;
  height: 22px;
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 12px;
  text-align: center;
  color: #fff;
  content: '1';
  border-radius: 2px;
}

.message.error {
  background-color: rgba(238, 102, 0, 0.1);
  border-color: #ee6600;
}
.message.error:before {
  background-color: #ee6600;
  content: '\f12a';
}

.message.info {
  background-color: #bacce2;
  border-color: #113c66;
}
.message.info:before {
  background-color: #113c66;
  content: '\f129';
}


/* Page container ------------------------------------------------------------------------------- */

#page_container {
  width: 100%;
  flex: 1 0 auto;
}

a#skip_to_nav {
  display: none;
}


/* Network -------------------------------------------------------------------------------------- */

#network_container {
  width: 100%;
  position: relative;
  z-index: 20;
  background-color: #d3d3d3;
  background-image: linear-gradient(#ececec, #d3d3d3);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
#network {
  width: 100%;
  max-width: 1300px;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#network li {
  float: left;
  border-right: 1px solid #bbb;
}
#network li.first {
  border-left: 1px solid #bbb;
}
#network a,
#network span {
  height: 36px;
  display: block;
  position: relative;
  line-height: 34px;
  text-decoration: none;
  color: #333;
  padding: 0 12px 0 36px;
  transition: none;
}
.no-touch #network a:hover,
          #network a:active,
.no-touch #network a:focus,
          #network span {
  background-color: #ececec;
  background-image: linear-gradient(#d3d3d3, #ececec);
}
#network a:before,
#network span:before {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 9px;
  left: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 2px;
}

#network #net_dosgames       :before { background-image: url('../images/ico_dosgames.svg');                                          }
#network #net_windows        :before { background-image: url('../images/ico_windows.svg');        width: 19px; left: 10px; top: 8px; }
#network #net_macgames       :before { background-image: url('../images/ico_macgames.svg');       top: 8px;                          }
#network #net_gamewolf       :before { background-image: url('../images/ico_gamewolf.svg');       background-color: #8e725e;         }
#network #net_whirlwind      :before { background-image: url('../images/ico_whirlwind.svg');      background-color: #304896;         }
#network #net_cargochallenge :before { background-image: url('../images/ico_cargochallenge.svg'); background-color: #a06e3e;         }

@media screen and (max-width: 1015px) {
  
  #network #net_gamewolf,
  #network #net_whirlwind,
  #network #net_cargochallenge {
    display: none;
  }
  
}

@media screen and (max-width: 675px) {
  
  #network_container {
    display: none;
  }
  
}


/* Header --------------------------------------------------------------------------------------- */

#header_container {
  width: 100%;
  background-color: #113c66;
}
#header {
  width: 100%;
  max-width: 1300px;
  height: 110px;
  position: relative;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

/* Logo */
#logo {
  width: 307px;
  height: 53px;
  position: absolute;
  top: 26px;
  left: 15px;
  z-index: 20;
  background-image: url('../images/logo.svg');
  background-repeat: no-repeat;
  background-position: center center;
}
#logo.en { background-image: url('../images/logo.svg');    }
#logo.nl { background-image: url('../images/logo_nl.svg'); }
#logo.de { background-image: url('../images/logo_de.svg'); }
#logo.fr { background-image: url('../images/logo_fr.svg'); }
#logo.it { background-image: url('../images/logo_it.svg'); }
#logo.es { background-image: url('../images/logo_es.svg'); }
#logo.se { background-image: url('../images/logo_se.svg'); }

#logo a {
  width: 307px;
  height: 53px;
  display: block;
  text-decoration: none;
  color: #fff;
}
#logo span {
  display: none;
}

/* Slideshow */
#slideshow {
  width: 600px;
  height: 110px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
#slideshow:before {
  width: 280px;
  height: 110px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  background-image: linear-gradient(to right, #113c66, rgba(0, 0, 0, 0));
  font-size: 0;
  line-height: 0;
  content: ' ';
  pointer-events: none;
}

#slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s linear;
  pointer-events: none;
}
#slideshow .slide.active {
  opacity: 1;
  pointer-events: auto;
}
#slideshow .slide a,
#slideshow .slide div {
  width: 600px;
  height: 110px;
  display: block;
  background-repeat: no-repeat;
  background-position: left center;
  image-rendering: crisp-edges;
}
#slideshow .slide span {
  display: none;
}

@media screen and (max-width: 875px) {
  
  #header {
    height: auto;
    padding: 26px 15px 31px 15px;
  }
  
  #logo {
    position: static;
    margin: 0 auto 0 auto;
  }
  
  #slideshow {
    display: none;
  }
  
}


/* Menu bar ------------------------------------------------------------------------------------- */

#menubar_container {
  width: 100%;
  background-color: #49749c;
}
#menubar_container.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}
#menubar_placeholder {
  width: 100%;
  height: 50px;
  display: none;
  background-color: #49749c;
}
#menubar {
  width: 100%;
  max-width: 1300px;
  height: 50px;
  position: relative;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

/* Menu mobile */
#menubar a#menu_mobile {
  height: 40px;
  display: none;
  position: relative;
  font-family: 'Blinker', 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 17px;
  line-height: 38px;
  text-transform: uppercase;
  text-decoration: none;
  color: #dce7f5;
  padding: 0 42px 0 42px;
}
#menubar a#menu_mobile:before,
#menubar a#menu_mobile:after {
  position: absolute;
  top: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
  line-height: 40px;
  text-align: center;
}
#menubar a#menu_mobile:before {
  width: 15px;
  left: 15px;
  content: '\f0c9';
}
#menubar a#menu_mobile:after {
  right: 15px;
  font-size: 20px;
  content: '\f107';
}
.no-touch #menubar a#menu_mobile:hover,
          #menubar a#menu_mobile:active,
.no-touch #menubar a#menu_mobile:focus {
  background-color: #dce7f5;
  color: #113c66;
}

/* Menu */
#menu {
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 20;
}
#menu li {
  float: left;
  padding: 0 2px 0 0;
}
#menu li.last {
  padding-right: 0;
}
#menu a,
#menu span {
  height: 40px;
  display: block;
  background-color: #99b3cf;
  background-image: linear-gradient(to bottom, #bacce2, #99b3cf);
  font-family: 'Blinker', 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 17px;
  line-height: 38px;
  text-transform: uppercase;
  text-decoration: none;
  color: #113c66;
  padding: 0 14px 0 14px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  transition: none;
}
.no-touch #menu a:hover,
          #menu a:active,
.no-touch #menu a:focus {
  background-color: #bacce2;
  background-image: linear-gradient(to bottom, #99b3cf, #bacce2);
}
#menu span,
#menu li.active a {
  background-color: #779cc0;
  background-image: none;
}
.no-touch #menu li.active a:hover,
          #menu li.active a:active,
.no-touch #menu li.active a:focus {
  background-color: #779cc0;
  background-image: none;
  text-decoration: underline;
}

/* Search */
#search {
  width: 346px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 10;
}
#search form {
  width: 100%;
  position: relative;
}
#search input {
  width: calc(100% - 35px);
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #dce7f5;
  color: #113c66;
  padding: 0 0 0 10px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-sizing: border-box;
}
#search input:focus {
  background-color: #fff;
}
#search button {
  width: 35px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #113c66;
  text-align: center;
  color: #fff;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
#search button:before {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f002';
}
#search button span {
  display: none;
}
.no-touch #search button:hover,
          #search button:active,
.no-touch #search button:focus {
  background-color: #ee6600;
}

@media screen and (max-width: 1015px) {
  
  #menubar {
    height: auto;
    padding: 0;
  }
  
  #menu {
    position: static;
    padding: 10px 15px 0 15px;
  }
  
  #search {
    width: 100%;
    height: auto;
    position: static;
    background-color: #779cc0;
    padding: 20px 15px 20px 15px;
    box-sizing: border-box;
  }
  #search form {
    height: 30px;
  }
  #search input {
    font-size: 16px;
  }
  
}

@media screen and (max-width: 675px) {
  
  #menubar a#menu_mobile {
    display: block;
  }
  
  #menu {
    display: none;
    padding: 0;
  }
  #menu li {
    float: none;
    padding: 0;
    border-bottom: 1px solid #779cc0;
  }
  #menu li.last {
    border-bottom: 0;
  }
  #menu a,
  #menu span {
    position: relative;
    background-image: none;
    padding: 0 15px 0 42px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  #menu a:before,
  #menu span:before {
    width: 15px;
    position: absolute;
    top: 0;
    left: 15px;
    font-family: 'FontAwesome';
    font-weight: normal;
    line-height: 40px;
    text-align: center;
    content: '\f105';
  }
  .no-touch #menu a:hover,
            #menu a:active,
  .no-touch #menu a:focus {
    background-image: none;
  }
  
}


/* Sub bar -------------------------------------------------------------------------------------- */

#subbar_container {
  width: 100%;
  background-color: #779cc0;
}
#subbar {
  width: 100%;
  max-width: 1300px;
  height: 50px;
  position: relative;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

/* Breadcrumbs */
#breadcrumbs {
  position: absolute;
  top: 10px;
  left: 15px;
}
#breadcrumbs li {
  display: block;
  float: left;
  margin: 0 8px 0 0;
}
#breadcrumbs li:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  color: #49749c;
  content: '\f105';
  margin: 0 0 0 8px;
}
#breadcrumbs li.last {
  margin: 0;
}
#breadcrumbs li.last:after {
  content: '';
}
#breadcrumbs a,
#breadcrumbs span {
  line-height: 30px;
  text-decoration: none;
  color: #113c66 !important;
}
.no-touch #breadcrumbs a:hover,
          #breadcrumbs a:active,
.no-touch #breadcrumbs a:focus {
  text-decoration: underline;
}

/* Languages */
#languages {
  position: absolute;
  top: 15px;
  right: 111px;
  z-index: 20;
}
#languages li {
  float: left;
  padding: 0 0 15px 0;
  margin: 0 9px 0 0;
}
#languages li.last {
  margin-right: 0;
}
#languages li.active {
  background-image: url('../images/bglanguage.svg');
  background-repeat: no-repeat;
  background-position: bottom center;
}
#languages a,
#languages span {
  width: 28px;
  height: 20px;
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
}
#languages a    span,
#languages span span {
  display: none;
}

     #languages #lang_en a,
     #languages #lang_en span {
  background-image: url('../images/lang_en.svg');
}
     #languages #lang_nl a,
     #languages #lang_nl span {
  background-image: url('../images/lang_nl.svg');
}
     #languages #lang_de a,
     #languages #lang_de span {
  background-image: url('../images/lang_de.svg');
}
     #languages #lang_fr a,
     #languages #lang_fr span {
  background-image: url('../images/lang_fr.svg');
}
     #languages #lang_it a,
     #languages #lang_it span {
  background-image: url('../images/lang_it.svg');
}
     #languages #lang_es a,
     #languages #lang_es span {
  background-image: url('../images/lang_es.svg');
}
     #languages #lang_se a,
     #languages #lang_se span {
  background-image: url('../images/lang_se.svg');
}

/* Social media */
#socialmedia {
  position: absolute;
  top: 10px;
  right: 15px;
}
#socialmedia        ul li,
#footer_socialmedia ul li {
  float: left;
  padding: 0 9px 0 0;
}
#socialmedia        ul li.last,
#footer_socialmedia ul li.last {
  padding-right: 0;
}
#socialmedia        ul a,
#footer_socialmedia ul a {
  width: 35px;
  height: 30px;
  display: block;
  background-color: #113c66;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  border-radius: 4px;
}
#footer_socialmedia ul a {
  background-color: #49749c;
}
#socialmedia        ul #social_facebook        a:before,
#footer_socialmedia ul #footer_social_facebook a:before {
  content: '\f09a';
}
#socialmedia        ul #social_twitter        a:before,
#footer_socialmedia ul #footer_social_twitter a:before {
  content: '\f099';
}
#socialmedia        ul span,
#footer_socialmedia ul span {
  display: none;
}
.no-touch #socialmedia        ul a:hover,
          #socialmedia        ul a:active,
.no-touch #socialmedia        ul a:focus,
.no-touch #footer_socialmedia ul a:hover,
          #footer_socialmedia ul a:active,
.no-touch #footer_socialmedia ul a:focus {
  background-color: #ee6600;
  color: #fff;
}

@media screen and (max-width: 1015px) {
  
  #subbar {
    height: auto;
  }
  
  #breadcrumbs {
    display: none;
  }
  
  #languages {
    position: static;
  }
  
  #socialmedia {
    top: -5px;
  }
  
}

@media screen and (max-width: 675px) {
  
  #languages li.active {
    background-image: none;
  }
  
}


/* Mobile banner -------------------------------------------------------------------------------- */

#banner_mobile {
  width: 100%;
  height: 280px;
  max-height: 280px;
  display: none;
  background-color: transparent;
  text-align: center;
}
#banner_mobile ins {
  margin: 0 auto 0 auto !important;
}

@media screen and (max-width: 875px) {
  
  #banner_mobile {
    display: block;
  }
  
}


/* Body ----------------------------------------------------------------------------------------- */

#body_container {
  width: 100%;
}
#body {
  width: 100%;
  max-width: 1300px;
  padding: 30px 15px 10px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

/* Leaderboard banner */
#banner_container_leaderboard {
  height: 280px !important;
  margin: 0 0 30px 0;
}
#banner_leaderboard {
  width: 100%;
  max-width: 1200px;
  height: 280px !important;
}

/* Columns 2 */
#columns_2 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 0 auto;
}
#columns_2 .column_1 {
  width: 170px;
  float: left;
}
#columns_2 .column_2 {
  width: calc(100% - 170px - 20px);
  float: right;
}

@media screen and (max-width: 875px) {
  
  #banner_container_leaderboard {
    display: none;
  }
  
}


/* Column 1 ------------------------------------------------------------------------------------- */

/* Nav box */
.navbox {
  margin: 0 0 20px 0;
}
.navbox_header {
  background-color: #ee6600;
  background-image: linear-gradient(to bottom, #ee7700, #cc5500);
  font-family: 'Blinker', 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 13px 7px 13px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.navbox_body {
  background-color: #dce7f5;
  padding: 8px 0 8px 0;
  overflow: hidden;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.navbox_body a,
.navbox_body span {
  display: block;
  position: relative;
  line-height: 20px;
  text-decoration: none;
  color: #113c66;
  padding: 2px 0 4px 13px;
}
.navbox_body ul.padding_right a,
.navbox_body ul.padding_right span {
  padding-right: 40px;
}
.no-touch .navbox_body a:hover,
          .navbox_body a:active,
.no-touch .navbox_body a:focus,
          .navbox_body span {
  background-color: #fff;
  color: #113c66;
}
.navbox_body ul.padding_right a    span,
.navbox_body ul.padding_right span span {
  display: inline;
  position: absolute;
  top: 2px;
  right: 13px;
  background-color: transparent;
  color: #779cc0;
  padding: 0;
}

.navbox_body .select_container {
  position: relative;
  padding: 3px 13px 4px 13px;
}
.navbox_body .select_container select {
  width: 100%;
  height: 30px;
  background-color: #fff;
  padding: 0 0 0 8px;
  border: 1px solid #779cc0;
  border-radius: 4px;
  box-sizing: border-box;
}
/*
@-moz-document url-prefix() {
  .navbox_body .select_container select {
    padding-left: 4px;
  }
}
*/
.navbox_body .select_container select:focus {
  border-color: #ee6600;
}
.navbox_body .select_container:after {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 3px;
  right: 13px;
  background-color: #fff;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  content: '\f107';
  pointer-events: none;
  border: 1px solid #779cc0;
  border-left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  box-sizing: border-box;
}

/* Skyscraper banner */
#banner_container_skyscraper {
  width: 160px !important;
  height: 600px !important;
  margin: 0 auto 20px auto;
}
#banner_skyscraper {
  width: 160px !important;
  height: 600px !important;
}


/* Column 2 ------------------------------------------------------------------------------------- */

#columns_2 .column_2 h1 {
  position: relative;
  background-color: #fff;
  font-family: 'Blinker', 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 28px;
  line-height: 34px;
  color: #113c66;
  padding: 14px 70px 16px 20px;
  border-bottom: 2px solid #ee6600;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
#columns_2 .column_2 h1:before {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 34px;
}

#columns_2 .column_2 h1.error_404:before  { content: '\f056'; }
#columns_2 .column_2 h1.about:before      { content: '\f05a'; }
#columns_2 .column_2 h1.companies:before  { content: '\f0c0'; }
#columns_2 .column_2 h1.contact:before    { content: '\f0e0'; }
#columns_2 .column_2 h1.disclaimer:before { content: '\f15c'; }
#columns_2 .column_2 h1.download:before   { content: '\f019'; }
#columns_2 .column_2 h1.game_page:before  { content: '\f11b'; }
#columns_2 .column_2 h1.help:before       { content: '\f1cd'; }
#columns_2 .column_2 h1.home:before       { content: '\f0c7'; }
#columns_2 .column_2 h1.links:before      { content: '\f0ac'; }
#columns_2 .column_2 h1.newsletter:before { content: '\f2b6'; }
#columns_2 .column_2 h1.play:before       { content: '\f135'; }
#columns_2 .column_2 h1.privacy:before    { content: '\f007'; }
#columns_2 .column_2 h1.related:before    { content: '\f07c'; }
#columns_2 .column_2 h1.shop:before       { content: '\f07a'; }
#columns_2 .column_2 h1.sitemap:before    { content: '\f0e8'; }
#columns_2 .column_2 h1.terms:before      { content: '\f15c'; }

/* Main + extra */
#main_extra {
  width: 100%;
}
#main {
  width: calc(100% - 346px - 20px);
  float: left;
  background-color: #dce7f5;
  padding: 20px 0 5px 20px;
  margin: 0 0 20px 0;
  box-sizing: border-box;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
#extra {
  width: 346px;
  float: right;
  padding: 20px 0 0 0;
}


/* Main ----------------------------------------------------------------------------------------- */

/* General */
#columns_2 .column_2 h2 {
  font-family: 'Blinker', 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 22px;
  line-height: 28px;
  padding: 0 20px 6px 0;
  border-bottom: 1px solid #99b3cf;
  margin: 30px 0 20px 0;
}
#columns_2 .column_2 h2.first {
  margin-top: 0;
}
#columns_2 .column_2 h3 {
  font-weight: bold;
  line-height: 20px;
  padding: 0 20px 0 0;
  margin: 0 0 5px 0;
}
#columns_2 .column_2 p {
  line-height: 20px;
  padding: 0 20px 0 0;
  margin: 0 0 20px 0;
}
#columns_2 .column_2 ul {
  line-height: 20px;
  padding: 0 20px 0 0;
  margin: 0 0 20px 0;
}
#columns_2 .column_2 ul li {
  position: relative;
  padding: 0 0 10px 15px;
}
#columns_2 .column_2 ul.less_padding li {
  padding-bottom: 5px;
}
#columns_2 .column_2 ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f105';
}
#columns_2 .column_2 ul li.last {
  padding-bottom: 0;
}
#columns_2 .column_2 ul span.tip {
  font-weight: bold;
  color: #ee6600;
}

#columns_2 .column_2 ol {
  line-height: 20px;
  padding: 0 20px 0 0;
  margin: 0 0 20px 20px;
}
#columns_2 .column_2 ol li {
  padding: 0 0 10px 0;
}
#columns_2 .column_2 ol li.last {
  padding-bottom: 0;
}

#columns_2 .column_2 a.more {
  display: block;
  line-height: 20px;
  text-decoration: none;
  margin: 0 0 20px 0;
}
#columns_2 .column_2 a.more:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f105';
  margin: 0 0 0 5px;
}

#columns_2 .column_2 .image_in_text {
  float: right;
  margin: 5px 20px 20px 20px;
}
#columns_2 .column_2 .image_in_text a {
  display: block;
  background-color: #fff;
  overflow: hidden;
  padding: 5px;
  border: 1px solid #779cc0;
  border-radius: 6px;
}
#columns_2 .column_2 .image_in_text img {
  display: block;
  border-radius: 4px;
}
.no-touch #columns_2 .column_2 .image_in_text a:hover,
          #columns_2 .column_2 .image_in_text a:active,
.no-touch #columns_2 .column_2 .image_in_text a:focus {
  border-color: #ee6600;
}

#columns_2 .column_2 #multiplex_container,
#columns_2 .column_2 #in-article_container {
  width: auto;
  height: auto;
  background-color: #fff;
  overflow: hidden;
  padding: 5px;
  border-radius: 6px;
  margin: 30px 20px 20px 0;
}

#columns_2 .column_2 #google_search_container {
  width: auto;
  height: auto;
  background-color: #fff;
  overflow: hidden;
  padding: 5px;
  border-radius: 6px;
  margin: 0 20px 20px 0;
}

#columns_2 .column_2 .in-feed_banner_container {
  overflow: hidden;
  padding: 20px 20px 0 0;
  border-top: 1px solid #99b3cf;
  margin: 0 0 20px 0;
}

/* Game list */
#columns_2 .column_2 .game_list {
  border-bottom: 1px solid #99b3cf;
  margin: 0 0 20px 0;
}
#columns_2 .column_2 .game {
  padding: 20px 0 20px 0;
  border-top: 1px solid #99b3cf;
}
#columns_2 .column_2 .game.first {
  padding-top: 0;
  border-top: 0;
}
#columns_2 .column_2 .game .game_screenshot {
  width: 128px;
  float: left;
}
#columns_2 .column_2 .game .game_screenshot a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}
#columns_2 .column_2 .game .game_screenshot a.no_screenshot {
  background-color: #000;
  line-height: 80px;
  text-decoration: none;
  text-align: center;
  color: #fff;
}
#columns_2 .column_2 .game .game_screenshot img {
  display: block;
  image-rendering: crisp-edges;
}
#columns_2 .column_2 .game .game_screenshot ul {
  padding: 0;
  margin: 0;
}
#columns_2 .column_2 .game .game_screenshot ul li {
  padding: 8px 0 0 0;
}
#columns_2 .column_2 .game .game_screenshot ul li:before {
  display: none;
}
#columns_2 .column_2 .game .game_screenshot ul a.download:before {
  top: 6px;
  content: '\f019';
}
#columns_2 .column_2 .game .game_screenshot ul a.play:before {
  content: '\f135';
}
#columns_2 .column_2 .game .game_screenshot ul a.buy:before {
  top: 4px;
  content: '\f07a';
}

#columns_2 .column_2 .game .game_info {
  width: calc(100% - 128px);
  float: left;
  padding: 0 20px 0 20px;
  box-sizing: border-box;
}
#columns_2 .column_2 .game .game_info h3 {
  font-family: 'Blinker', 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  padding: 0;
  margin: 0 0 5px 0;
}
#columns_2 .column_2 .game .game_info h3 a {
  text-decoration: none;
}

#columns_2 .column_2 .game_rating {
  line-height: 20px;
  letter-spacing: 2px;
  color: #ee6600;
  margin: 0 0 10px 0;
}
#columns_2 .column_2 .game_rating:before {
  font-family: 'FontAwesome';
  font-weight: normal;
}
#columns_2 .column_2 .game_rating.stars_0:before   { content: '\f006\f006\f006\f006\f006'; }
#columns_2 .column_2 .game_rating.stars_10:before  { content: '\f123\f006\f006\f006\f006'; }
#columns_2 .column_2 .game_rating.stars_20:before  { content: '\f005\f006\f006\f006\f006'; }
#columns_2 .column_2 .game_rating.stars_30:before  { content: '\f005\f123\f006\f006\f006'; }
#columns_2 .column_2 .game_rating.stars_40:before  { content: '\f005\f005\f006\f006\f006'; }
#columns_2 .column_2 .game_rating.stars_50:before  { content: '\f005\f005\f123\f006\f006'; }
#columns_2 .column_2 .game_rating.stars_60:before  { content: '\f005\f005\f005\f006\f006'; }
#columns_2 .column_2 .game_rating.stars_70:before  { content: '\f005\f005\f005\f123\f006'; }
#columns_2 .column_2 .game_rating.stars_80:before  { content: '\f005\f005\f005\f005\f006'; }
#columns_2 .column_2 .game_rating.stars_90:before  { content: '\f005\f005\f005\f005\f123'; }
#columns_2 .column_2 .game_rating.stars_100:before { content: '\f005\f005\f005\f005\f005'; }

#columns_2 .column_2 #game_rating_details {
  min-height: 35px;
  position: relative;
  padding: 0 80px 0 0;
  margin: 0 20px 15px 0;
}
#columns_2 .column_2 #game_details {
  margin: 0;
}
#columns_2 .column_2 #game_rating {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 30px;
  margin: 0;
}

#columns_2 .column_2 .game .game_info p {
  line-height: 20px;
  padding: 0;
  margin: 0 0 10px 0;
}
#columns_2 .column_2 .game .game_info table {
  line-height: 20px;
}
#columns_2 .column_2 .game .game_info table th {
  white-space: nowrap;
  padding: 0 10px 0 0;
}
#columns_2 .column_2 .game .game_info table td {
  width: 100%;
}

#columns_2 .column_2 .game_details {
  padding: 0;
  margin: 0 20px 20px 0;
}
#columns_2 .column_2 .game .game_info .game_details {
  padding: 10px 0 0 0;
  margin: 0;
}
#columns_2 .column_2 .game_detail {
  float: left;
  position: relative;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
  line-height: 22px;
  padding: 4px 6px 4px 30px;
  border-radius: 4px;
  margin: 0 5px 5px 0;
}
#columns_2 .column_2 .game .game_info .game_detail {
  margin: 5px 5px 0 0;
}
#columns_2 .column_2 .game_detail a {
  text-decoration: none;
}
#columns_2 .column_2 .game_detail:before {
  width: 18px;
  height: 22px;
  display: block;
  position: absolute;
  top: 4px;
  left: 6px;
  font-family: 'FontAwesome';
  font-weight: normal;
  text-align: center;
  color: #49749c;
}
#columns_2 .column_2 .game_detail.dosbox:before {         content: '\f00c'; font-size: 16px; color: #438f4e; }
#columns_2 .column_2 .game_detail.dosbox_unknown:before { content: '\f128'; font-size: 16px; }
#columns_2 .column_2 .game_detail.violence:before {       content: '\f071'; font-size: 16px; color: #ee6600; }
#columns_2 .column_2 .game_detail.video:before {          content: '\f008'; }
#columns_2 .column_2 .game_detail.cheats:before {         content: '\f219'; }

/* Sitemap */
#columns_2 .column_2 #sitemap {
  padding: 0 20px 0 0;
  margin: 0 0 15px 0;
}
#columns_2 .column_2 #sitemap ul {
  padding: 0;
  margin: 0;
}
#columns_2 .column_2 #sitemap ul li {
  padding: 0 0 5px 0;
}
#columns_2 .column_2 #sitemap ul li:before {
  display: none;
}
#columns_2 .column_2 #sitemap ul ul {
  padding: 0 0 0 30px;
}
#columns_2 .column_2 #sitemap ul ul li {
  padding: 5px 0 0 0;
}
#columns_2 .column_2 #sitemap ul a,
#columns_2 .column_2 #sitemap ul span {
  display: block;
  background-color: rgba(255, 255, 255, 0.5);
  font-weight: bold;
  line-height: 20px;
  text-decoration: none;
  padding: 4px 10px 4px 10px;
  border: 1px solid #99b3cf;
  border-radius: 4px;
}
.no-touch #columns_2 .column_2 #sitemap ul a:hover,
          #columns_2 .column_2 #sitemap ul a:active,
.no-touch #columns_2 .column_2 #sitemap ul a:focus {
  background-color: #fff;
  border-color: #ee6600;
}
#columns_2 .column_2 #sitemap ul ul a,
#columns_2 .column_2 #sitemap ul ul span {
  font-weight: normal;
}

/* Column 2 full */
#columns_2 .column_2 .column2_full_container {
  padding: 0;
  margin: 0;
}
#columns_2 .column_2 .column2_full {
  width: calc(100% - 170px - 20px);
  float: left;
  background-color: #dce7f5;
  padding: 20px 0 5px 20px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  margin: 0 0 20px 0;
  box-sizing: border-box;
}
#columns_2 .column_2 .column2_full_extra {
  width: 170px;
  float: right;
  padding: 20px 0 0 0;
}

/* Form */
#columns_2 .column_2 span.required {
  font-weight: bold;
  color: #ee6600;
}

#columns_2 .column_2 form {
  padding: 0 20px 0 0;
  margin: 0 0 20px 0;
}

#columns_2 .column_2 .field_container {
  width: 100%;
  padding: 0 0 10px 0;
}
#columns_2 .column_2 .field_container label {
  width: 150px;
  display: block;
  float: left;
  line-height: 30px;
}
#columns_2 .column_2 .input_container {
  width: 350px;
  float: left;
}
#columns_2 .column_2 .input_container .message_container {
  margin: 0 0 10px 0;
}
#columns_2 .column_2 .input_container .select_container {
  position: relative;
}
#columns_2 .column_2 .input_container input.text,
#columns_2 .column_2 .input_container textarea,
#columns_2 .column_2 .input_container select {
  width: 100%;
  height: 30px;
  background-color: #fff;
  line-height: 22px;
  padding: 0 0 0 8px;
  border: 1px solid #99b3cf;
  border-radius: 4px;
  box-sizing: border-box;
}
/*
@-moz-document url-prefix() {
  #columns_2 .column_2 .input_container select {
    padding-left: 4px;
  }
}
*/
#columns_2 .column_2 .input_container textarea {
  height: 150px;
  padding-top: 3px;
}
#columns_2 .column_2 .input_container input.text:focus,
#columns_2 .column_2 .input_container textarea:focus,
#columns_2 .column_2 .input_container select:focus {
  border-color: #ee6600;
}
#columns_2 .column_2 .input_container .select_container:after {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fff;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  content: '\f107';
  pointer-events: none;
  border: 1px solid #99b3cf;
  border-left: 0;
  border-top-right-radius:    4px;
  border-bottom-right-radius: 4px;
  box-sizing: border-box;
}

#columns_2 .column_2 .button_container {
  width: 500px;
  padding: 10px 0 0 150px;
  box-sizing: border-box;
}
#columns_2 .column_2 .button_container button {
  float: right;
}
#columns_2 .column_2 .button_container button.envelope:before {
  content: '\f003';
}
#columns_2 .column_2 .button_container button.search:before {
  content: '\f002';
}
#columns_2 .column_2 .button_container button.vote:before {
  content: '\f005';
}

/* Table container */
#columns_2 .column_2 .table_container {
  padding: 0 20px 0 0;
}

/* Text table */
#columns_2 .column_2 table.text {
  width: 100%;
  line-height: 20px;
  margin: 0 0 20px 0;
}
#columns_2 .column_2 table.text th {
  white-space: nowrap;
  padding: 0 20px 0 0;
}
#columns_2 .column_2 table.text td {
  width: 100%;
}
#columns_2 .column_2 table.text td ul {
  padding: 0;
  margin: 0;
}
#columns_2 .column_2 table.text td ul li {
  padding: 0;
}
#columns_2 .column_2 table.text td ul li:before {
  display: none;
}

/* Data table */
#columns_2 .column_2 table.data {
  width: 100%;
  line-height: 20px;
  margin: 0 0 20px 0;
}
#columns_2 .column_2 table.data th,
#columns_2 .column_2 table.data td {
  padding: 4px 8px 4px 8px;
  border: 1px solid #779cc0;
}
#columns_2 .column_2 table.data th {
  background-color: #bacce2;
  font-weight: bold;
}
#columns_2 .column_2 table.data td {
  vertical-align: middle;
}
#columns_2 .column_2 table.data th br {
  display: none;
}
#columns_2 .column_2 table.data th.max_width,
#columns_2 .column_2 table.data td.max_width {
  width: 100%;
}
#columns_2 .column_2 table.data th.amount,
#columns_2 .column_2 table.data td.amount {
  text-align: center;
  white-space: nowrap;
}
#columns_2 .column_2 table.data th.no_wrap,
#columns_2 .column_2 table.data td.no_wrap {
  white-space: nowrap;
}
#columns_2 .column_2 table.data tbody tr:nth-child(odd) td {
  background-color: rgba(255, 255, 255, 0.25);
}
#columns_2 .column_2 table.data tbody tr:hover th,
#columns_2 .column_2 table.data tbody tr:hover td {
  background-color: #fff;
}

#columns_2 .column_2 table.data td ul {
  padding: 0;
  margin: 0;
}
#columns_2 .column_2 table.data td ul li {
  padding: 0;
}
#columns_2 .column_2 table.data td ul li:before {
  display: none;
}

#columns_2 .column_2 table.data td a.strong {
  font-weight: bold;
}

#columns_2 .column_2 table.data td span.free,
#columns_2 .column_2 table.data td span.price {
  font-weight: bold;
  color: #ee6600;
}

/* Shop image */
#columns_2 #shop_image {
  margin: 30px 20px 20px 0;
}
#columns_2 #shop_image a {
  width: 100%;
  max-width: 404px;
  display: block;
}
#columns_2 #shop_image img {
  width: 100%;
  max-width: 404px;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media screen and (max-width: 1150px) {
  
  #columns_2 .column_2 #form_game_rating .field_container label {
    width: 100%;
    float: none;
    line-height: 22px;
    margin: 0 0 10px 0;
  }
  #columns_2 .column_2 #form_game_rating .input_container {
    width: 100%;
    float: none;
  }
  #columns_2 .column_2 #form_game_rating .button_container {
    width: 100%;
    padding-left: 0;
  }
  
}

@media screen and (max-width: 875px) {
  
  #columns_2 .column_2 .field_container label {
    width: 100%;
    float: none;
    line-height: 22px;
    margin: 0 0 10px 0;
  }
  #columns_2 .column_2 .input_container {
    width: 100%;
    float: none;
  }
  #columns_2 .column_2 .button_container {
    width: 100%;
    padding-left: 0;
  }
  
  #columns_2 .column_2 .column2_full {
    width: 100%;
    float: none;
  }
  #columns_2 .column_2 .column2_full_extra {
    width: 100%;
    float: none;
    padding: 0;
  }
  
}

@media screen and (max-width: 675px) {
  
  #columns_2 .column_2 table.data th br {
    display: inline;
  }
  
}


/* Extra ---------------------------------------------------------------------------------------- */

/* Game tip */
#columns_2 .column_2 #extra h2 {
  background-color: #ee6600;
  background-image: linear-gradient(to bottom, #ee7700, #cc5500);
  font-family: 'Blinker', 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 13px 7px 13px;
  border-bottom: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin: 0;
}
#columns_2 .column_2 #extra h2 span {
  opacity: 0.666;
}
#columns_2 .column_2 #extra h2 a {
  text-decoration: none;
  color: #fff;
}
.no-touch #columns_2 .column_2 #extra h2 span a:hover,
          #columns_2 .column_2 #extra h2 span a:active,
.no-touch #columns_2 .column_2 #extra h2 span a:focus {
  text-decoration: underline;
}
#columns_2 .column_2 #extra .box {
  background-color: #dce7f5;
  padding: 13px;
  margin: 0 0 20px 0;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

#columns_2 .column_2 #extra .video_container {
  display: block;
}
#columns_2 .column_2 #extra .video_container iframe {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 auto 0 auto;
}

#columns_2 .column_2 #tip_screenshots {
  width: 320px;
  position: relative;
  background-color: #000;
  overflow: hidden;
  color: #fff;
  border-radius: 4px;
  margin: 0 auto 0 auto;
}
#columns_2 .column_2 #tip_screenshots img {
  display: block;
}
#columns_2 .column_2 #tip_screenshots .screenshot {
  width: 320px;
  height: 240px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s linear;
  image-rendering: crisp-edges;
}
#columns_2 .column_2 #tip_screenshots .screenshot.active {
  opacity: 1;
}
#columns_2 .column_2 #tip_screenshots .screenshot img {
  image-rendering: crisp-edges;
}

#columns_2 .column_2 #tip_screenshots button#prev_screenshot,
#columns_2 .column_2 #tip_screenshots button#next_screenshot {
  width: 35px;
  height: 30px;
  display: block;
  position: absolute;
  top: 105px;
  background-color: #113c66;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  opacity: 1;
}
#columns_2 .column_2 #tip_screenshots button#prev_screenshot {
  left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
#columns_2 .column_2 #tip_screenshots button#next_screenshot {
  right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
#columns_2 .column_2 #tip_screenshots button#prev_screenshot:before {
  content: '\f104';
}
#columns_2 .column_2 #tip_screenshots button#next_screenshot:before {
  content: '\f105';
}
#columns_2 .column_2 #tip_screenshots button#prev_screenshot.disabled,
#columns_2 .column_2 #tip_screenshots button#next_screenshot.disabled {
  background-color: #113c66 !important;
  opacity: 0;
  cursor: auto;
}
#columns_2 .column_2 #tip_screenshots button#prev_screenshot span,
#columns_2 .column_2 #tip_screenshots button#next_screenshot span {
  display: none;
}
.no-touch #columns_2 .column_2 #tip_screenshots button#prev_screenshot:hover,
          #columns_2 .column_2 #tip_screenshots button#prev_screenshot:active,
.no-touch #columns_2 .column_2 #tip_screenshots button#prev_screenshot:focus,
.no-touch #columns_2 .column_2 #tip_screenshots button#next_screenshot:hover,
          #columns_2 .column_2 #tip_screenshots button#next_screenshot:active,
.no-touch #columns_2 .column_2 #tip_screenshots button#next_screenshot:focus {
  background-color: #ee6600;
}

#columns_2 .column_2 #extra .box h3 {
  font-family: 'Blinker', 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  margin: 16px 0 5px 0;
}
#columns_2 .column_2 #extra .box h3 a {
  text-decoration: none;
}

#columns_2 .column_2 #extra .box table {
  width: 100%;
  line-height: 20px;
  margin: 0 0 20px 0;
}
#columns_2 .column_2 #extra .box table th {
  padding: 0 13px 0 0;
  white-space: nowrap;
}
#columns_2 .column_2 #extra .box table td {
  width: 100%;
}

#columns_2 .column_2 #extra .box .game_buttons {
  width: 100%;
}
#columns_2 .column_2 #extra .box .game_buttons a.download {
  float: left;
  margin: 0;
}
#columns_2 .column_2 #extra .box .game_buttons a.download:before {
  top: 6px;
  content: '\f019';
}
#columns_2 .column_2 #extra .box .game_buttons a.play {
  float: left;
  margin: 0 0 0 8px;
}
#columns_2 .column_2 #extra .box .game_buttons a.play:before {
  content: '\f135';
}
#columns_2 .column_2 #extra .box .game_buttons a.buy {
  float: left;
  margin: 0 0 0 8px;
}
#columns_2 .column_2 #extra .box .game_buttons a.buy:before {
  content: '\f07a';
}

/* Rectangle banner */
#banner_container_rectangle {
  width: 336px !important;
  height: 280px !important;
  margin: 0 auto 20px auto;
}
#banner_rectangle {
  width: 336px !important;
  height: 280px !important;
}

/* Half-page banner */
#banner_container_halfpage {
  width: auto !important;
  height: 600px !important;
  margin: 0 auto 20px 0;
}
#banner_halfpage {
  width: 300px !important;
  height: 600px !important;
}

@media screen and (max-width: 1015px) {
  
  #columns_2 .column_1 {
    width: 100%;
    float: none;
  }
  
  #columns_2 .column_2 {
    width: 100%;
    float: none;
  }
  
}

@media screen and (max-width: 875px) {
  
  #main {
    width: 100%;
    float: none;
  }
  
  #extra {
    width: 100%;
    float: none;
    padding: 0;
  }
  
  #main_extra #extra #banner_container_halfpage {
    display: none;
  }
  
}

@media screen and (max-width: 675px) {
  
  #tip_screenshots {
    margin-left: auto;
    margin-right: auto;
  }
  
}


/* Links page ----------------------------------------------------------------------------------- */

#columns_2 .column_2 #links_container {
  width: 100%;
  padding: 20px 0 0 0;
}
#columns_2 .column_2 .links_col {
  width: 50%;
  float: left;
  box-sizing: border-box;
}
#columns_2 .column_2 #links_col1 {
  padding: 0 10px 0 0;
}
#columns_2 .column_2 #links_col2 {
  padding: 0 0 0 10px;
}

#columns_2 .column_2 .linkbox {
  margin: 0 0 20px 0;
}
#columns_2 .column_2 .linkbox_header h2 {
  background-color: #ee6600;
  background-image: linear-gradient(to bottom, #ee7700, #cc5500);
  font-family: 'Blinker', 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 13px 7px 13px;
  border: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin: 0;
}
#columns_2 .column_2 .linkbox_body {
  background-color: #dce7f5;
  padding: 11px 13px 13px 13px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
#columns_2 .column_2 .linkbox_body ul {
  padding: 0;
  margin: 0;
}
#columns_2 .column_2 .linkbox_body ul li {
  padding: 3px 0 3px 15px;
}
#columns_2 .column_2 .linkbox_body ul li:before {
  top: 3px;
}
#columns_2 .column_2 .linkbox_body ul a {
  text-decoration: none;
  color: #113c66 !important;
}
.no-touch #columns_2 .column_2 .linkbox_body ul a:hover,
          #columns_2 .column_2 .linkbox_body ul a:active,
.no-touch #columns_2 .column_2 .linkbox_body ul a:focus {
  text-decoration: underline;
}
#columns_2 .column_2 .linkbox_body ul span.comment {
  color: #779cc0;
}
#columns_2 .column_2 .linkbox_body ul span.comment a {
  color: #779cc0 !important;
}
#columns_2 .column_2 .linkbox_body ul span.tip {
  font-weight: bold;
  color: #ee6600;
}
#columns_2 .column_2 .linkbox_body ul i,
#columns_2 .column_2 .linkbox_body ul em {
  font-style: italic;
}

@media screen and (max-width: 675px) {
  
  #columns_2 .column_2 .links_col {
    width: 100%;
    float: none;
  }
  #columns_2 .column_2 #links_col1,
  #columns_2 .column_2 #links_col2 {
    padding: 0;
  }
  
}


/* Game page ------------------------------------------------------------------------------------ */

#columns_2 .column_2 a#button_play {
  display: inline-block;
  margin: 0 20px 0 0;
}
#columns_2 .column_2 a#button_play:before {
  content: '\f135';
}

#columns_2 .column_2 .gallery {
  margin: 0 10px 0 0;
}
#columns_2 .column_2 .gallery ul {
  padding: 0;
  margin: 0;
}
#columns_2 .column_2 .gallery ul li {
  float: left;
  padding: 10px 10px 0 0;
}
#columns_2 .column_2 .gallery ul li:before {
  display: none;
}
#columns_2 .column_2 .gallery ul a {
  display: block;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center center;
  image-rendering: crisp-edges;
  color: #fff;
  overflow: hidden;
  border-radius: 4px;
}
#columns_2 .column_2 .gallery ul img {
  display: block;
  opacity: 0;
  image-rendering: crisp-edges;
}


/* Download page -------------------------------------------------------------------------------- */

#columns_2 .column_2 a#button_download {
  display: inline-block;
  margin: 0 20px 20px 0;
}
#columns_2 .column_2 a#button_download:before {
  content: '\f019';
}


/* Games page ----------------------------------------------------------------------------------- */

#columns_2 .column_2 #form_games {
  position: relative;
  padding: 0;
  margin: 0;
}

#columns_2 .column_2 #form_games a#reset_filters {
  position: absolute;
  top: -11px;
  right: 20px;
  padding: 0 14px 0 14px;
}

#columns_2 .column_2 .search_select_container,
#columns_2 .column_2 .search_checkbox_container,
#columns_2 .column_2 .search_input_container,
#columns_2 .column_2 .search_submit_container {
  width: 33.333333333333333%;
  float: left;
  padding: 0 20px 0 0;
  box-sizing: border-box;
  margin: 0 0 10px 0;
}
#columns_2 .column_2 .search_checkbox_container.top_margin {
  margin-top: 5px;
}
#columns_2 .column_2 .search_select_container.last_row,
#columns_2 .column_2 .search_checkbox_container.last_row,
#columns_2 .column_2 .search_input_container.last_row,
#columns_2 .column_2 .search_submit_container.last_row {
  margin-bottom: 0;
}

/* Select */
#columns_2 .column_2 .search_select_container label,
#columns_2 .column_2 .search_input_container  label {
  display: block;
  line-height: 22px;
  margin: 0 0 5px 0;
}
#columns_2 .column_2 .search_select_container .select_container {
  position: relative;
}
#columns_2 .column_2 .search_select_container .select_container select,
#columns_2 .column_2 .search_input_container                    input {
  width: 100%;
  height: 30px;
  background-color: #fff;
  line-height: 22px;
  padding: 0 0 0 8px;
  border: 1px solid #779cc0;
  border-radius: 4px;
  box-sizing: border-box;
}
#columns_2 .column_2 .search_select_container .select_container select.disabled,
#columns_2 .column_2 .search_input_container                    input.disabled {
  color: #779cc0;
  cursor: auto;
}
/*
@-moz-document url-prefix() {
  #columns_2 .column_2 .search_select_container .select_container select {
    padding-left: 4px;
  }
}
*/
#columns_2 .column_2 .search_select_container .select_container:after {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  content: '\f107';
  border: 1px solid #779cc0;
  border-left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  box-sizing: border-box;
  pointer-events: none;
}
#columns_2 .column_2 .search_select_container .select_container select:focus,
#columns_2 .column_2 .search_input_container                    input:focus {
  border-color: #ee6600;
}

/* Checkbox */
#columns_2 .column_2 .search_checkbox_container .checkbox,
#columns_2 .column_2 .search_checkbox_container .checkbox_disabled {
  position: relative;
  line-height: 22px;
  cursor: pointer;
  padding: 4px 0 4px 40px;
}
#columns_2 .column_2 .search_checkbox_container .checkbox_disabled {
  cursor: auto;
}
#columns_2 .column_2 .search_checkbox_container .checkbox_disabled {
  color: #779cc0;
}
#columns_2 .column_2 .search_checkbox_container .checkbox:before,
#columns_2 .column_2 .search_checkbox_container .checkbox_disabled:before {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  content: ' ';
  border: 1px solid #779cc0;
  border-radius: 4px;
  box-sizing: border-box;
}
#columns_2 .column_2 .search_checkbox_container .checkbox.checked:before,
#columns_2 .column_2 .search_checkbox_container .checkbox_disabled:before {
  content: '\f00c';
}
#columns_2 .column_2 .search_checkbox_container .checkbox_disabled:before {
  color: #779cc0;
}

/* Submit button */
#columns_2 .column_2 .search_submit_container {
  padding-top: 27px;
}
#columns_2 .column_2 .search_submit_container button {
  width: 100%;
}
#columns_2 .column_2 .search_submit_container button:before {
  content: '\f002';
}

@media screen and (max-width: 675px) {
  
  #columns_2 .column_2 .search_select_container,
  #columns_2 .column_2 .search_checkbox_container,
  #columns_2 .column_2 .search_input_container,
  #columns_2 .column_2 .search_submit_container {
    width: 100%;
    float: none;
  }
  #columns_2 .column_2 .search_select_container.last_row,
  #columns_2 .column_2 .search_checkbox_container.last_row,
  #columns_2 .column_2 .search_input_container.last_row,
  #columns_2 .column_2 .search_submit_container.last_row {
    margin-bottom: 10px;
  }
  #columns_2 .column_2 .search_submit_container {
    padding-top: 10px;
  }
  
}


/* Pagination ----------------------------------------------------------------------------------- */

#columns_2 .column_2 .pagination {
  width: 100%;
  margin: 0 20px 12px 0;
}
#columns_2 .column_2 .pagination ul {
  padding: 0;
  margin: 0;
}
#columns_2 .column_2 .pagination li {
  float: left;
  padding: 0 8px 8px 0;
  margin: 0;
}
#columns_2 .column_2 .pagination li:before {
  display: none;
}
#columns_2 .column_2 .pagination li        a,
#columns_2 .column_2 .pagination li.active span {
  width: 30px;
  height: 30px;
  display: block;
  background-color: #99b3cf;
  background-image: linear-gradient(to bottom, #bacce2, #99b3cf);
  font-weight: bold;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
  color: #113c66;
  border-radius: 4px;
}
#columns_2 .column_2 .pagination li.active span {
  background-color: #113c66;
  background-image: none;
  color: #fff;
}
.no-touch #columns_2 .column_2 .pagination li a:hover,
          #columns_2 .column_2 .pagination li a:active,
.no-touch #columns_2 .column_2 .pagination li a:focus {
  background-color: #bacce2;
  background-image: linear-gradient(to bottom, #99b3cf, #bacce2);
}
#columns_2 .column_2 .pagination li a span {
  display: none;
}

#columns_2 .column_2 .pagination li.first_page a,
#columns_2 .column_2 .pagination li.prev_page  a,
#columns_2 .column_2 .pagination li.next_page  a,
#columns_2 .column_2 .pagination li.last_page  a {
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 16px;
}
#columns_2 .column_2 .pagination li.first_page a:before { content: '\f100'; }
#columns_2 .column_2 .pagination li.prev_page  a:before { content: '\f104'; }
#columns_2 .column_2 .pagination li.next_page  a:before { content: '\f105'; }
#columns_2 .column_2 .pagination li.last_page  a:before { content: '\f101'; }


/* Play page ------------------------------------------------------------------------------------ */

#jsdos_container_1 {
  margin: 0 20px 20px 0;
}
#jsdos_container_2 {
  width: 100%;
  height: 100%;
  max-width: 640px;
  max-height: 480px;
  background-color: #000;
  color: #fff;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 auto 0 auto;
}

canvas#jsdos,
.dosbox-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
canvas#jsdos {
  image-rendering: crisp-edges;
}

.dosbox-overlay,
.dosbox-loader {
  background-color: transparent !important;
}
.dosbox-loader-message {
  font-size: 14px !important;
}
.dosbox-powered {
  display: none !important;
}

#columns_2 .column_2 #button_fullscreen_container {
  text-align: center;
  margin: 0 20px 20px 0;
}
#columns_2 .column_2 button#button_fullscreen {
  display: inline-block;
}
#columns_2 .column_2 button#button_fullscreen:before {
  top: 6px;
  content: '\f108';
}


/* Footer --------------------------------------------------------------------------------------- */

#footer_container {
  width: 100%;
}


/* Footer 1 ------------------------------------------------------------------------------------- */

#footer1_container {
  width: 100%;
  background-color: #113c66;
}
#footer1 {
  width: 100%;
  max-width: 1300px;
  position: relative;
  padding: 30px 15px 30px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.footer_heading {
  font-family: 'Blinker', 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #ee6600;
  margin: 0 0 20px 0;
}
.footer_heading a {
  text-decoration: none;
  color: #ee6600;
}
.no-touch .footer_heading a:hover,
          .footer_heading a:active,
.no-touch .footer_heading a:focus {
  color: #fff;
}

/* Footer menu */
#footer_menu {
  width: 210px;
  float: left;
}
#footer_menu ul {
  float: left;
  margin: 0 20px 0 0;
}
#footer_menu ul.last {
  margin-right: 0;
}
#footer_menu ul a,
#footer_menu ul span {
  display: block;
  position: relative;
  line-height: 20px;
  text-decoration: none;
  color: #fff;
}
          #footer_menu ul span,
.no-touch #footer_menu ul a:hover,
          #footer_menu ul a:active,
.no-touch #footer_menu ul a:focus {
  color: #99b3cf;
}

/* Quote */
#quote {
  width: calc(100% - 170px - 20px - 20px - 20px - 346px);
  float: left;
  color: #fff;
}
#quote blockquote {
  line-height: 20px;
  margin: 0 0 20px 0;
}
#quote span {
  line-height: 20px;
  color: #99b3cf;
}
#quote a {
  text-decoration: none;
  color: #99b3cf;
}
.no-touch #quote a:hover,
          #quote a:active,
.no-touch #quote a:focus {
  color: #fff;
}

/* Footer social media */
#footer_socialmedia {
  width: 346px;
  float: right;
  position: relative;
  z-index: 20;
}

/* Footer game art */
#footer_gameart {
  width: 346px;
  height: 130px;
  position: absolute;
  bottom: 0;
  right: 15px;
  z-index: 10;
  background-repeat: no-repeat;
  background-position: bottom right;
  image-rendering: crisp-edges;
}
#footer_gameart img {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  image-rendering: crisp-edges;
}
#footer_gameart.prince      { background-image: url('../images/footer/prince.png');      }
#footer_gameart.biomenace   { background-image: url('../images/footer/biomenace.png');   }
#footer_gameart.framed      { background-image: url('../images/footer/framed.png');      }
#footer_gameart.hocuspocus  { background-image: url('../images/footer/hocuspocus.png');  }
#footer_gameart.keen1       { background-image: url('../images/footer/keen1.png');       }
#footer_gameart.keen5       { background-image: url('../images/footer/keen5.png');       }
#footer_gameart.lostvikings { background-image: url('../images/footer/lostvikings.png'); }
#footer_gameart.mario       { background-image: url('../images/footer/mario.png');       }
#footer_gameart.megamanx    { background-image: url('../images/footer/megamanx.png');    }

@media screen and (max-width: 875px) {
  
  #footer_menu {
    display: none;
  }
  
  #quote {
    width: 100%;
    float: none;
    margin: 0 0 30px 0;
  }
  
  #footer_socialmedia {
    width: 100%;
    float: none;
  }
  
}


/* Footer 2 ------------------------------------------------------------------------------------- */

#footer2_container {
  width: 100%;
  background-color: #113c66;
  color: #fff;
  border-top: 1px solid #49749c;
}
#footer2 {
  width: 100%;
  max-width: 1300px;
  padding: 14px 15px 16px 15px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#footer2 a,
#footer2 span {
  text-decoration: none;
  color: #fff;
}
          #footer2 span,
.no-touch #footer2 a:hover,
          #footer2 a:active,
.no-touch #footer2 a:focus {
  color: #99b3cf;
}

/* Service links */
#service_links {
  float: left;
  line-height: 20px;
}
#service_links li {
  float: left;
  position: relative;
  padding: 0 15px 0 0;
  margin: 0 10px 0 0;
}
#service_links li:after {
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  top: 8px;
  right: 0;
  background-color: #ee6600;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 5px;
}
#service_links li.last {
  padding: 0;
  margin: 0;
}
#service_links li.last:after {
  display: none;
}

/* Copyright */
#copyright {
  float: right;
  line-height: 20px;
}

@media screen and (max-width: 1015px) {
  
  #service_links {
    float: none;
    margin: 0 0 10px 0;
  }
  
  #copyright {
    float: none;
  }
  
}


/* Clearing <div> ------------------------------------------------------------------------------- */

.clear {
  width: 0;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
}