@charset "utf-8";
body {
  margin: 0;
  padding: 0;
  background: #e9d9ae url(img/bg.png);
  font-family: 'Ubuntu Sans', Verdana, Arial, sans-serif;
  font-size: 19px;
  font-weight: 375;
  color: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a:active, a:hover, a:link, a:visited {
  text-decoration: none;
  color: #000000;
}
a:hover {
  cursor: pointer;
}
a img {
  border: none;
}
h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
  border: 0;
}
ul, li {
  list-style: none;
}
/*btn*/
.button_container {
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: 0.2s;
}
.button_container:hover {
  text-decoration: none;
}
.button_text {
  padding: 0 11px 2px 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}
.button_bookmark_icon {
  padding: 6px 0 6px 11px;
  color: #e02020;
  font-size: 19px;
  line-height: 1;
}
.button_bookmark_color {
  background-color: #ffffff;
  border: none;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}
.button_bookmark_color .button_text {
  color: #000000;
  padding: 0 13px 0 8px;
  font-size: 15px;
}
.button_bookmark_color:hover {
  background-color: #fdeeec;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .28);
}
/*END SNS BTNS*/
#header {
  width: 100%;
}
.header_inner {
  width: 998px;
  margin: 0 auto;
  padding: 18px 0 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header_bookmark {
  position: absolute;
  right: 0;
  bottom: 16px;
}
.header_logo a {
  display: inline-block;
}
.header_logo img {
  display: block;
}
/* NAV */
.non_desktop {
  display: none;
}
.hamburger {
  display: none;
}
@media (max-width: 1030px) {
  .header_bookmark {
    display: none;
  }
  .non_desktop {
    width: auto;
    min-height: 0;
    margin: 0;
    border-bottom: none;
    box-shadow: none;
  }
  .header_inner {
    gap: 12px;
  }
  .header_logo img {
    width: 240px;
    height: auto;
  }
  #header {
    margin-bottom: 19px;
  }
  .br_mobile {
    display: inline;
  }
  .hamburger, .hamburger:link, .hamburger:visited, .hamburger:hover {
    display: block;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    text-align: center;
    margin: 0;
    padding: 8px 0 10px;
    background-color: #758f3e;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    border-radius: 4px;
    text-decoration: none;
  }
  .non_desktop.open {
    display: block;
    background-color: #758f3e;
    margin-bottom: 16px;
  }
  .non_desktop.open a {
    display: block;
    text-align: center;
    padding: 11px 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
  }
  .non_desktop.open a:hover {
    background-color: #758f3e;
  }
}
nav {
  z-index: 999;
  position: relative;
  min-height: 64px;
  width: 998px;
  margin: 0 auto 19px;
  background-color: #758f3e;
  border-bottom: 6px solid #4d631e;
  box-shadow: 0 3px 0 0 #c9b285;
  font-size: 17px;
  color: #fff;
}
ul.nav {
  display: flex;
  width: 100%;
}
ul.nav a:active, nav a:link, nav a:visited {
  color: #fff;
}
ul.nav a {
  display: block;
  padding: 15px 30px;
  text-align: center;
  font-family: 'Stylish', sans-serif;
  font-size: 26px;
  font-weight: 375;
  color: #ffffff;
  letter-spacing: 1px;
}
ul.nav a:hover {
  background-color: #5e7830;
  transition: 0.2s;
}
ul.nav li {
  flex: auto;
  position: relative;
}
ul.nav li + li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #637c30;
}
ul.nav ul {
  visibility: hidden;
  position: absolute;
  top: calc(100% + 3px);
  transition: all .1s ease-in-out;
  transform-origin: left top;
  transform: scaleY(0);
  width: 300px;
  right: 0;
  background-color: #82a04b;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}
@media (hover: hover) {
  nav li:hover ul {
    visibility: visible;
    transform: scaleY(1);
  }
  ul.nav li:hover > * {
    display: block;
  }
}
ul.nav li.open > * {
  display: block;
}
nav li.open ul {
  visibility: visible;
  transform: scaleY(1);
}
ul.nav ul li {
  float: none;
}
ul.nav ul li + li:before {
  display: none;
}
ul.nav ul a {
  text-align: center;
  padding: 21px 0;
  font-size: 22px;
  background-color: #82a04b;
}
ul.nav ul li {
  flex: none;
}
ul.nav ul a:hover {
  background-color: #5e7830;
}
ul.nav ul li + li {
  border-top: 2px solid rgba(0, 0, 0, .13);
}
ul.nav ul::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 5px;
}
#wrapper {
  margin: 0 auto;
  width: 998px;
  position: relative;
  flex: 1;
  padding-bottom: 40px;
}
/* LEAD: */
.box_top_row {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 18px;
}
.box_intro {
  position: relative;
  text-align: center;
  width: 630px;
  background-color: #f9f2e4;
  box-shadow: 0 2px 0 0 #c9b285;
}
.box_intro::after, .game_box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e), linear-gradient(#d2b47e, #d2b47e);
  background-size:
    7px 1px, 7px 1px, 7px 1px, 7px 1px, 1px 7px, 1px 7px, 1px 7px, 1px 7px, 1px 7px, 1px 7px, 1px 7px, 1px 7px, 1px 7px, 1px 7px, 1px 7px, 1px 7px, 12px 1px, 12px 1px, 12px 1px, 12px 1px, 1px 4px, 1px 4px, 1px 4px, 1px 4px, 7px 1px, 7px 1px, 7px 1px, 7px 1px, calc(100% - 44px) 1px, calc(100% - 44px) 1px, 1px calc(100% - 45px), 1px calc(100% - 45px);
  background-position:
    10px 10px, calc(100% - 10px) 10px, 10px calc(100% - 11px), calc(100% - 10px) calc(100% - 11px), 10px 10px, calc(100% - 10px) 10px, 10px calc(100% - 11px), calc(100% - 10px) calc(100% - 11px), 16px 10px, calc(100% - 16px) 10px, 16px calc(100% - 11px), calc(100% - 16px) calc(100% - 11px), 21px 10px, calc(100% - 21px) 10px, 21px calc(100% - 11px), calc(100% - 21px) calc(100% - 11px), 10px 16px, calc(100% - 10px) 16px, 10px calc(100% - 17px), calc(100% - 10px) calc(100% - 17px), 16px 17px, calc(100% - 16px) 17px, 16px calc(100% - 18px), calc(100% - 16px) calc(100% - 18px), 10px 21px, calc(100% - 10px) 21px, 10px calc(100% - 22px), calc(100% - 10px) calc(100% - 22px), 22px 10px, 22px calc(100% - 11px), 10px 22px, calc(100% - 10px) 22px;
}
.box_intro_text1 {
  padding-top: 20px;
  font-family: 'Stylish', sans-serif;
  font-size: 30px;
  font-weight: 375;
  color: #9e7738;
  padding-left: 24px;
  padding-right: 24px;
}
.box_intro_text2 {
  line-height: 1.6;
  text-align: justify;
  padding-top: 4px;
  padding-left: 38px;
  padding-right: 38px;
  padding-bottom: 30px;
}
.box_popular {
  width: 352px;
  display: flex;
  flex-direction: column;
  border: 1px solid #cbae81;
  border-bottom: none;
  background: #ffffff;
  box-shadow: 0 2px 0 0 #c9b285;
  overflow: hidden;
  transition: box-shadow .2s ease-in-out;
}
.box_popular:hover .box_popular_bg img {
  filter: brightness(1.09);
}
.box_popular_bg {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.box_popular_bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 2px), calc(-50% - 12px));
  max-width: none;
  transition: filter .25s ease;
}
.box_popular_footer {
  display: block;
  background: #ffffff;
  border-top: 1px solid #cbae81;
  color: #000000;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 10px;
  letter-spacing: .5px;
}
/* GAME BOXES*/
.box_thumb_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  padding: 19px;
  background-color: #f9f2e4;
  box-shadow: 0 2px 0 0 #c9b285;
  margin-bottom: 21px;
}
.box_thumb {
  width: 306px;
}
.sub_main .box_thumb_grid {
  background: none;
  box-shadow: none;
  padding: 0;
}
.sub_main .box_thumb_grid {
  justify-content: center;
}
.box_thumb_img {
  width: 100%;
  vertical-align: top;
}
.box_thumb_img {
  transition: filter .25s ease;
}
.box_thumb:hover .box_thumb_img {
  filter: brightness(1.09);
}
.box_thumb_text1 {
  font-size: 20px;
  padding-top: 12px;
  font-weight: 700;
}
.box_thumb_text1 a {
  color: #9e221b;
}
.box_thumb_text1 a:hover {
  text-decoration: underline;
}
.box_thumb_text2 {
  padding-top: 0;
  margin-top: -2px;
}
.box_thumb_text3 {
  padding: 0 0 6px;
  margin-top: -2px;
  line-height: 1.5;
}
.box_thumb_text3 p {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.box_thumb_all {
  width: 100%;
}
.box_thumb_all_btn {
  position: relative;
  padding: 15px 0;
  font-family: 'Stylish', sans-serif;
  font-size: 26px;
  font-weight: 375;
  letter-spacing: 1px;
  text-align: center;
  display: block;
  background-color: #758f3e;
  border-bottom: 6px solid #4d631e;
  color: #ffffff !important;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.box_thumb_all_btn:hover {
  background-color: #5e7830;
}
/* FOOTER */
#footer {
  clear: both;
  width: 100%;
  background-color: #453729;
  color: #cccccc;
}
.footer_inner {
  width: 998px;
  margin: 0 auto;
  padding: 22px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer_inner a {
  color: #ffffff;
  margin-right: 16px;
}
.footer_inner a:hover {
  text-decoration: underline;
}
/* SUB PAGES */
.sub_main {
  box-sizing: border-box;
  background-color: #f9f2e4;
  box-shadow: 0 2px 0 0 #c9b285;
  padding: 30px 38px 38px;
  margin-bottom: 80px;
}
.sub_main_head {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid #dad5cb;
  padding-bottom: 18px;
  margin-bottom: 20px;
}
.sub_main_head_title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}
.sub_main_title {
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.3em;
}
.sub_main_text {
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 1.2em;
}
.sub_main_text img {
  max-width: 100%;
  height: auto;
  display: block;
}
.sub_main_text a {
  color: #113de3;
}
.sub_main_text a:hover {
  text-decoration: underline;
}
/* GAME PAGE */
.game_box {
  position: relative;
  text-align: center;
  background-color: #f9f2e4;
  box-shadow: 0 2px 0 0 #c9b285;
  padding: 26px 10px 30px;
  margin-bottom: 18px;
}
.game_box_title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 18px;
}
.game_stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .35), transparent 55%), linear-gradient(160deg, #e8e6e1, #d8d5cf);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, .18);
}
.game_stage_spacer {
  display: block;
}
.game_stage::before {
  content: "Laddar spelet .";
  position: absolute;
  top: 50%;
  left: calc(50% - 58px);
  transform: translateY(-50%);
  text-align: left;
  animation: laddar 1.2s steps(1) infinite;
  color: #6b6862;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  pointer-events: none;
}
@keyframes laddar {
  0% {
    content: "Laddar spelet .";
  }
  33% {
    content: "Laddar spelet ..";
  }
  66% {
    content: "Laddar spelet ...";
  }
}
.game_stage::after {
  content: "Laddas spelet inte? Mejla helpdesk""\0040""glowmedia.com";
  position: absolute;
  top: calc(50% + 24px);
  left: 0;
  width: 100%;
  text-align: center;
  color: #6b6862;
  font-size: 13px;
  opacity: 0;
  animation: laddar_hjalp .5s ease 10s forwards;
}
@keyframes laddar_hjalp {
  to {
    opacity: 1;
  }
}
.game_stage iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}
.game_start_mobile {
  display: none;
  position: relative;
  width: 100%;
  height: 230px;
  background-color: #6f8c38;
  background-size: cover;
  background-position: center;
  border: 1px solid #4d631e;
}
.game_start_mobile:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .20);
}
.game_start_mobile_btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: #9e221b;
  border: 3px solid #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .35);
  color: #ffffff;
  font-size: 32px;
  line-height: 72px;
  text-align: center;
  padding-left: 6px;
  box-sizing: border-box;
}
@media (max-width: 599px) {
  .game_stage, .button_fullscreen_color {
    display: none;
  }
  .game_start_mobile {
    display: block;
  }
}
.game_buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.button_fullscreen_color {
  background-color: #758f3e;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}
.button_fullscreen_color:hover {
  background-color: #5e7830;
}
.button_fullscreen_icon {
  padding: 8px 0 8px 9px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
}
/* GAME INFO */
.game_info {
  background-color: #f9f2e4;
  box-shadow: 0 2px 0 0 #c9b285;
  margin-bottom: 80px;
  overflow-anchor: none;
}
.game_info_header {
  background-color: #628530;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 14px 30px;
  font-size: 19px;
  font-weight: 700;
}
.game_info_body {
  padding: 24px 30px 28px;
}
.game_info_text {
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 1.2em;
}
.game_info_player {
  color: #000000;
  margin-bottom: 1.2em;
}
.game_info_rate_title {
  font-weight: 700;
  margin-bottom: 12px;
}
.rate_stars {
  display: inline-block;
  font-size: 26px;
  letter-spacing: 1px;
}
.rate_stars_bar {
  color: #f39c12;
}
.rate_count {
  font-size: 14px;
  color: #000000;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}
div.rate_stars {
  display: flex;
  align-items: center;
  height: 34px;
}
@keyframes janpai_shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
}
.rate_stars.shake {
  animation: janpai_shake .3s;
}
div.rate_stars .rate_count {
  margin-left: 4px;
}
.rate_star_btn {
  background: none;
  border: none;
  padding: 0 6px 0 0;
  font: inherit;
  font-size: 26px;
  line-height: 1;
  color: #d8cfb8;
  cursor: pointer;
  transition: transform .08s;
}
.rate_star_btn.full {
  color: #f39c12;
}
.rate_star_btn:hover {
  transform: scale(1.15);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .rate_stars_bar, .rate_star_btn {
    background: linear-gradient(90deg, #f39c12 var(--p, 0%), #d8cfb8 var(--p, 0%));
    background-origin: content-box;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.rate_thanks {
  display: none;
  height: 30px;
  line-height: 30px;
  margin-top: 6px;
  color: #4d6b21;
  font-weight: 700;
}
.rate_thanks.warn {
  color: #9e221b;
}
/*responsive*/
@media (max-width: 1030px) {
  .box_intro::after, .game_box::after {
    display: none;
  }
  .game_box {
    padding-bottom: 23px;
  }
  .header_inner, ul.nav, #wrapper, .footer_inner {
    width: auto;
    padding-left: 14px;
    padding-right: 14px;
  }
  .footer_inner {
    justify-content: center;
    text-align: center;
  }
  .footer_inner a {
    margin: 0 8px;
  }
  .box_thumb_grid {
    justify-content: center;
  }
  nav {
    display: none;
  }
  .box_top_row {
    flex-direction: column;
  }
  .sub_main {
    padding: 24px 20px 30px;
  }
  .box_intro {
    width: 100%;
  }
  .box_popular {
    display: none;
  }
}
@media (max-width: 525px) {
  .box_intro_text2 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .sub_main_text, .box_intro_text2, .game_info_text {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .header_logo img {
    width: 200px;
  }
  .box_thumb {
    width: 100%;
  }
  .box_thumb_img {
    width: 100%;
  }
}