@import url('https://fonts.googleapis.com/css?family=Lato:400,900');
html[dir="rtl"] body
{
  text-align: right;
}
body
{
  background: #161b34;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE2MWIzNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzMxNGE4MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxNTE5MmUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left, #161b34 0%, #17274a 50%, #15192e 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#161b34), color-stop(50%,#17274a), color-stop(100%,#15192e));
  background: -webkit-linear-gradient(left, #161b34 0%,#17274a 50%,#15192e 100%);
  background: -o-linear-gradient(left, #161b34 0%,#17274a 50%,#15192e 100%);
  background: -webkit-gradient(linear, left top, right top, from(#161b34),color-stop(50%, #17274a),to(#15192e));
  background: -moz-linear-gradient(left, #161b34 0%,#17274a 50%,#15192e 100%);
  background: linear-gradient(to right, #161b34 0%,#17274a 50%,#15192e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#161b34', endColorstr='#15192e',GradientType=1 );
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

.addspace_below
{
  padding-bottom: 60px !important;
}
dl, ol, ul {
    list-style: none;
}
body {
  font-family: 'Lato', sans-serif;
  color:#fff;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
}

.content-section {
}

.content-section-heading h2 {
  font-size: 3rem;
}

.content-section-heading h3 {
  font-size: 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.head_bar
{
  background:#0a0e1a;
  width: 100%;
  text-align: center;
  z-index: 999999999999;
}
.logo
{
  max-width:100px;
  margin:auto;
  width:100%;
  padding: 11px 0;
}
.logo_box
{
  text-align: left;
  float: left;
  width: 25%;
}
.menu_icon
{
  background-image:url("../img/icons/menu_icon.png");
  -moz-background-size: cover;
          -webkit-background-size: cover;
               -o-background-size: cover;
          background-size: cover;
  height: 30px;
  width: 30px;
}
.menu_icon:hover
{
  background-image:url("../img/icons/menu_hover.png");
  cursor:pointer;
}

.main_container
{
  background: #111427;
}
.games_container
{
  padding-top: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 76px;
}

/* relevant styles */
.gameImgBox
{
  position: relative;
  border: 1px solid #5f6271;
  /* overflow: hidden; */
  /* width: 23%; */
  /* margin: 1%; */
}
.gameImgBox:hover
{
  cursor:pointer;
  border: 1px solid #bbbdca;
}
.game_img
{
  width: 100%;
}
.game_description_layer
{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url('../img/games/hoverbg.png');
  background-repeat: repeat;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  display: block;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  /* transition effect. not necessary */
  -webkit-transition: opacity .2s, visibility .2s;
  -moz-transition: opacity .2s, visibility .2s;
  -o-transition: opacity .2s, visibility .2s;
  transition: opacity .2s, visibility .2s;
}

.gameImgBox:hover .game_description_layer
{
  visibility: visible;
  opacity: 1;
}

.game_description,.game_title
{
  -webkit-transition: .2s;
  -o-transition: .2s;
  -moz-transition: .2s;
  transition: .2s;
  -webkit-transform: translateY(1em);
     -moz-transform: translateY(1em);
      -ms-transform: translateY(1em);
       -o-transform: translateY(1em);
          transform: translateY(1em);
  font-size: 0.8em;
  text-align: left;
  font-weight: 400;
  color: #bbbdca;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 1.2;
  padding-bottom: 0;
  margin-bottom: 0;
}
.game_title
{
  font-weight: 900;
  margin-bottom: 0;
  padding-bottom: 15px;
}

.gameImgBox:hover .game_description
{
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

.game_rating
{
  font-size:1.25em;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}

.game_rating .fa-star,.game_rating .fa-star-o
{
  color: #dd692f;
}
.game_rating .fa-star-o
{
  color: #bbbdca;
}
.text-faded {
  color: rgba(255, 255, 255, 0.7);
}

/* Map */
.map {
  height: 30rem;
}

.map iframe {
  pointer-events: none;
}

.scroll-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: none;
  width: 50px;
  height: 50px;
  text-align: center;
  color: white;
  background: rgba(52, 58, 64, 0.5);
  line-height: 45px;
}

.scroll-to-top:focus, .scroll-to-top:hover {
  color: white;
}

.scroll-to-top:hover {
  background: #343a40;
}

.scroll-to-top i {
  font-weight: 800;
}

.masthead {
  min-height: 30rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.1))), url("../img/bg-masthead.jpg");
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url("../img/bg-masthead.jpg");
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url("../img/bg-masthead.jpg");
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url("../img/bg-masthead.jpg");
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url("../img/bg-masthead.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
          -webkit-background-size: cover;
               -o-background-size: cover;
          background-size: cover;
}

.masthead h1 {
  font-size: 4rem;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .masthead {
    height: 100vh;
  }
  .masthead h1 {
    font-size: 5.5rem;
  }
}

/* Side Menu */
.sidebar-wrapper {
  display: none;
  position: absolute;
  z-index: 2;
  width: 251px;
  top: 0;
  height: 100%;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-transform: translateX(250px);
     -moz-transform: translateX(250px);
      -ms-transform: translateX(250px);
       -o-transform: translateX(250px);
          transform: translateX(250px);
  margin-left: -249px;
}

.sidebar-nav {
  position: absolute;
  top: 0;
  width: 200px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav a li.sidebar-nav-item {
  text-decoration: none;
  color: #bfdbdb;
  font-size: 13px;
  font-family: 'Lato',sans-serif;
  text-transform: uppercase;
  line-height: 20px;
  padding: 12px 0;
  font-weight: normal;
  border-left:2px solid #0e1121;
  padding-left: 43px;
  text-align: left;
}

.sidebar-nav a:hover li.sidebar-nav-item
{
  text-decoration: none;
  color: #bfdbdb;
  background-color: #030415;
  border-left:2px solid #b9d4d5;
}
.sidebar-nav a:active li.sidebar-nav-item,
.sidebar-nav a:focus li.sidebar-nav-item,
.sidebar-nav a li.active_menu
{
  text-decoration: none;
  color: #dd692f;
  background-color: #030415;
  border-left:2px solid #dd692f;

}
.sidebar-nav a:active li.home_icon,
.sidebar-nav a:focus li.home_icon,
.sidebar-nav a li.home_icon.active_menu

{
  background-image:url(../img/icons/home_active.png);
}
.sidebar-nav a:active li.arcade_icon,
.sidebar-nav a:focus li.arcade_icon,
.sidebar-nav a li.arcade_icon.active_menu

{
  background-image:url(../img/icons/arcade_active.png);
}
.sidebar-nav a:active li.puzzle_icon,
.sidebar-nav a:focus li.puzzle_icon,
.sidebar-nav a li.puzzle_icon.active_menu

{
  background-image:url(../img/icons/puzzle_active.png);
}
.sidebar-nav a:active li.sport_icon,
.sidebar-nav a:focus li.sport_icon,
.sidebar-nav a li.sport_icon.active_menu

{
  background-image:url(../img/icons/sport_active.png);
}
.sidebar-nav a:active li.cards_icon,
.sidebar-nav a:focus li.cards_icon,
.sidebar-nav a li.cards_icon.active_menu

{
  background-image:url(../img/icons/cards_active.png);
}
.sidebar-nav a:active li.memory_icon,
.sidebar-nav a:focus li.memory_icon,
.sidebar-nav a li.memory_icon.active_menu

{
  background-image:url(../img/icons/memory_active.png);
}
.sidebar-nav a:active li.tips_icon,
.sidebar-nav a:focus li.tips_icon,
.sidebar-nav a li.tips_icon.active_menu

{
  background-image:url(../img/icons/ebook_active.png);
}
.sidebar-nav a:active li.premium_icon,
.sidebar-nav a:focus li.premium_icon,
.sidebar-nav a li.premium_icon.active_menu

{
  background-image:url(../img/icons/premium_active.png);
}
.menu_icon_wap.login_icon.active_wap_menu
{
  background-image:url(../img/icons/login_active.png);
}
.menu_icon_wap.tips_icon.active_wap_menu
{
  background-image:url(../img/icons/ebook_active.png);
}
.menu_icon_wap.premium_icon.active_wap_menu
{
  background-image:url(../img/icons/premium_active.png);
}
.sidebar-nav > .sidebar-brand {
  font-size: 1.2rem;
  background: rgba(52, 58, 64, 0.1);
  height: 80px;
  line-height: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;

}

.sidebar-nav > .sidebar-brand a {
  color: #fff;
}

.sidebar-nav > .sidebar-brand a:hover {
  color: #fff;
  background: none;
}

.sidebar-wrapper.active {
/*  left: -251px;
  width: 251px;*/
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.dropdown, .dropup {
    position: relative;
    z-index: 3;
}
/*menu web*/
.menu_box
{
  width: 75%;
  height: 63px;
  display: block;
  line-height: 60px;
}
.menu_box>ul
{
  float:right;
  margin: auto;
}
.menu_box>ul>a
{
  width: 7rem;
  padding: 23px 0;
  margin: auto !important;
}
.menu_box>ul>a:hover
{
  border-bottom: 2px solid #bfdbdb;
  cursor: pointer;
}
.menu_box>ul>a:active,.menu_box>ul>a:focus
{
  color:#dd692f !important;
  border-bottom: 2px solid #dd692f;
  background-color: #030415;
  cursor: pointer;
}
.menu_box>ul>a.loginButton:hover,
.menu_box>ul>a.loginButton:focus,
#container-holder button.btn
{
  color: #dd692f !important;
  border: 2px solid #dd692f;
  cursor: pointer;

}
.activeColor
{
  color:#dd692f !important;
}

.menu_box>ul>a>li
{
    color: #bfdbdb;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1;
    padding: 0;
}
.menu_box>ul>a.loginButton
{
  width: 140px;
  padding: 11px 0;
}
.menu_box>ul>a.lastButton
{
  margin-right: 2rem !important;
}
.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .1em;
    content: "";
    border-top: .5em solid;
    border-right: .5em solid transparent;
    border-bottom: 0;
    border-left: .5em solid transparent;
}
/*menu icons*/
.menu_icons
{
    background-color: #0d1222;
    background-repeat: no-repeat;
    -moz-background-size: 20px;
            -webkit-background-size: 20px 20px;
                 -o-background-size: 20px;
            background-size: 20px;
    background-position: 15px center;
}
.home_icon
{
  background-image: url(../img/icons/home_icon.png);
}
.arcade_icon
{
  background-image: url(../img/icons/arcade_icon.png);
}
.puzzle_icon
{
  background-image: url(../img/icons/puzzle_icon.png);
}
.sport_icon
{
  background-image: url(../img/icons/sport_icon.png);
}
.cards_icon
{
  background-image: url(../img/icons/cards_icon.png);
}
.memory_icon
{
  background-image: url(../img/icons/memory_icon.png);
}
.tips_icon
{
  background-image: url(../img/icons/ebook.png);
}
.premium_icon
{
  background-image: url(../img/icons/premium.png);
}
.login_icon
{
  background-image: url(../img/icons/login.png);
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 16px;
    height: 30px;
    background: transparent no-repeat center center;
    -moz-background-size: 100% 100%;
            -webkit-background-size: 100% 100%;
                 -o-background-size: 100% 100%;
            background-size: 100% 100%;
}
.carousel-control-next-icon {
  background-image: url(../img/icons/arrow_right.png);
}
.carousel-control-prev-icon {
  background-image: url(../img/icons/arrow_left.png);
}

.carousel-indicators button[type="button"] {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
       -moz-box-flex: 0;
            flex: 0 1 auto;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    -webkit-border-radius: 100px !important;
    -moz-border-radius: 100px !important;
    border-radius: 100px !important;
    background-color: #899e9e;
    border:none;
}
.carousel-indicators
{
  margin-bottom: 10px;
}
.carousel-indicators .active {
    background-color: #bfdbdb;
}
.carousel-item {
  -webkit-transition: -webkit-transform 1.3s ease-in-out;
  transition: -webkit-transform 1.3s ease-in-out;
  -o-transition: -o-transform 1.3s ease-in-out;
  -moz-transition: transform 1.3s ease-in-out, -moz-transform 1.3s ease-in-out;
  transition: transform 1.3s ease-in-out;
  transition: transform 1.3s ease-in-out, -webkit-transform 1.3s ease-in-out, -moz-transform 1.3s ease-in-out, -o-transform 1.3s ease-in-out;
}
.menu-toggle {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  color: #fff;
  background: none;
  left: 15px;
  top: 7px;
  z-index: 999;
  width: 30px;
}

.menu-toggle:focus, .menu-toggle:hover {
  color: #fff;
}

.menu-toggle:hover {
}


footer
{
  background:#0a0f1b;
  padding:10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
}

footer.footer .social-link {
  display: block;
  height: 4rem;
  width: 4rem;
  line-height: 4.3rem;
  font-size: 1.5rem;
  background-color: #1D809F;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  -moz-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
}

footer.footer .social-link:hover {
  background-color: #155d74;
  text-decoration: none;
}

a {
  color: #fff;
  text-decoration: none !important;
}

a:hover, a:focus, a:active {
  color: #fff;
}

.btn-primary {
  background-color: #1D809F !important;
  border-color: #1D809F !important;
  color: #fff !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #155d74 !important;
  border-color: #155d74 !important;
}

.btn-secondary {
  background-color: #ecb807 !important;
  border-color: #ecb807 !important;
  color: #fff !important;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  background-color: #ba9106 !important;
  border-color: #ba9106 !important;
}

.btn-dark {
  color: #fff !important;
}

.btn {
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

.bg-primary {
  background-color: #1D809F !important;
}

.text-primary {
  color: #1D809F !important;
}

.text-secondary {
  color: #ecb807 !important;
}
.list-inline-item, .nav-link
{
  cursor: pointer !important;
}
.web
{
  display: block;
}
.webROW
{
/*   display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; */
}
.wapROW
{
  display: none;
}
.wap
{
  display: none;
}

/*login screen  */
.loginButton
{
  color: #bfdbdb;
  text-transform: uppercase;
  font-size: 13px;
  border: 2px solid #bfdbdb;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  line-height: 1;
  padding: 11px 0;
  margin-top: 0;
  width: 140px;
}
.loginbox
{
  max-width: 500px;
  width: 100%;
  margin: auto;
  background: #0a0f1b;
  margin-top: 40px;
  margin-bottom: 100px;
  padding-bottom: 30px;
  border: none;
  border-top: 2px solid #bfdbdb;
  border-bottom: 2px solid #bfdbdb;
}
.clue
{
  padding: 20px 0;
  color:#bfdbdb;
  background: #161b34;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
#msisdn_lead
{
  background: #fff;
  width: 25%;
  margin-right: 2%;
  padding-right: 0;
}
.input_login
{
  width: 63%;
  height: 50px;
  text-align: left;
  margin: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  padding-left: 10px;
  color: #161b35;
  font-size: 15px;
}
.loginbox label
{
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  display: block;
  width: 90%;
  margin: auto;
  margin-top: 25px;
  color: #bfdbdb;
  text-transform: uppercase;
}
input[type="submit"].submit_button
{
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  display:block;
  margin:auto;
  margin-top: 25px;
  max-width: 90%;
  height: 50px;
  font-size: 15px;
}
/*IF LANGUAGE IS ARABIC THEN PRE INPUT LEFT AND INPUT BOX RIGHT*/
html[dir="rtl"] input#msisdn, #msisdn_lead
{
  margin-top: 0 !important;
  text-align: left !important;
  direction: ltr !important;
}
html[dir="rtl"] input#msisdn_lead
{
   float: left !important;
   margin-right: 0;
   margin-left: 2%;
}

/*----END ----- IF LANGUAGE IS ARABIC THEN PRE INPUT LEFT AND INPUT BOX RIGHT*/

/*Game page */
.main_game_header_img
{
  background-image: url(../img/games/pacman_pop/main_header.png);
  background-repeat: no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
       -o-background-size: contain;
          background-size: contain;
  height: 300px;
  height: 100vh;
}
.main_game_title
{
  font-weight: 900;
  font-size: 25px;
  text-align: left;
  text-transform: uppercase;
  color: #bfdbdb;
  padding-top: 1em;
  line-height: 1;
}
.main_game_description {
    line-height: 1;
    font-size: 11px;
    text-align: justify;
    color: #bfdbdb;
    width: 90%;
}
.main_game_button
{
  text-align: left;
}
a.playbutton, input.submit_button, a.playbutton:focus,input.submit_button:focus
{
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-border-radius: .25rem;
     -moz-border-radius: .25rem;
          border-radius: .25rem;
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  -o-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -moz-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-moz-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out,-moz-box-shadow .15s ease-in-out;
  background: #dd692f;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkNjkyZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZDY5MmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left, #dd692f 0%, #dd692f 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#dd692f), color-stop(100%,#dd692f));
  background: -webkit-linear-gradient(left, #dd692f 0%,#dd692f 100%);
  background: -o-linear-gradient(left, #dd692f 0%,#dd692f 100%);
  background: -webkit-gradient(linear, left top, right top, from(#dd692f),to(#dd692f));
  background: -moz-linear-gradient(left, #dd692f 0%,#dd692f 100%);
  background: linear-gradient(to right, #dd692f 0%,#dd692f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd692f', endColorstr='#dd692f',GradientType=1 );
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  border: none;
  color: #fff;
  border-bottom: 3px solid #b44e21;
  width: 100%;
  max-width: 150px;
  height: 40px;
  margin-top: 12px;
  line-height: 25px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
a.playbutton:hover, input.submit_button:hover, a.playbutton:hover
{
  cursor: pointer;
}
a.playbutton:focus,input.submit_button:focus,a.playbutton:focus
{
  margin-top: 15px;
  border:none;
  outline:0;
}
input.submit_button:focus
{
  margin-top:28px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  display: block;
  margin: auto;
  margin-top: 25px;
  max-width: 90%;
  height: 50px;
  font-size: 15px;
}


.main_game_header_img {
    max-height: 414px;
}

.main_game_header_img {
    max-height: 414px;
}
.main_ebook_header_img
{
  padding-top: 60px;
  padding-bottom: 60px;
  background-repeat: no-repeat;
  -moz-background-size: contain;
          -webkit-background-size: contain;
               -o-background-size: contain;
          background-size: contain;
  max-height: 300px;
  height: 100%;
}
.main_ebook_title
{
  font-size: 3rem;
  text-align: center;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  color: #bfdbdb;
  padding-top: 1em;
  text-align: left;
}
.main_ebook_basic_text, ol li
{
  font-size: 14px;
  line-height: 1.1;
  text-align: justify;
  margin: auto;
  width: 100%;
  margin-bottom: 0;
  color: #bfdbdb;
}
.image_box_ebooks
{
  width: 100%;
  max-height: 320px;
  display: block;
  overflow: hidden;
  margin: auto;
  height: 100%;
}
.active_ebook_image
{
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: #000;
  overflow: visible;
  margin: auto;
  z-index: 9999;
  max-height: 100%;
}
.active_ebook_image img
{
  width: 90%;
  margin-top: 100px;
  max-width: 900px;
}
.main_ebook_button {
    text-align: right;

}
.active_link_border
{
  border-bottom: 2px solid #dd692f !important;
}
.active_link_font
{
  color:#dd692f !important;
}
.active_link_button
{
  border:2px solid #dd692f !important;
}
.part_ebook
{margin-bottom: 25px;}
.site-legal-content
{
  padding-bottom: 50px;
}
.contactbg
{
  background: #2D3358;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
#contact textarea#message.form-control
{
-webkit-border-radius: 15px;
   -moz-border-radius: 15px;
        border-radius: 15px;
}
#contact .subtitle
{
  font-family: var(--main-font-family);
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
}
#contact .submit_button
{
  width: auto;
  margin: inherit;
  min-width: 200px;
}
#info-adress-show h3
{
  font-size: 20px;
  color:#bfdbdb;
  display: block;
}
#info-adress-show p>span
{
  font-weight: bold;
}

#info-adress-show .main_game_description
{
  -moz-text-align-last: left;
       text-align-last: left;
       text-align: left;
       margin: inherit;

}
#info-adress-show
{
    background: #0a0e1a;
}
.regular_title
{
  letter-spacing: -.03em;
  font-weight: 700;
  line-height: 110%;
  width: 100%;
  margin: auto;
  display: block;
  color: #fff;
  font-size: 40px;
  text-transform: capitalize;
}
.regular_info_part:nth-child(even){
  background:#111427;
}
.regular_info_part {
    padding: 5rem 3rem;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.check
{
}
.check-text
{
  width:80%
}
@media screen and (max-width:1200px)
{
  .main_game_title
  {
    font-size: 30px;
  }
  .main_game_header_img {
      max-height: 348px;
  }
  .main_ebook_header_img
  {
    max-height: 253px;
  }
}
@media screen and (max-width:991px)
{
  .game_description, .game_title
  {
    font-size: 1vw;
  }
  .game_rating
  {
    font-size: 2vw;
  }
  .main_game_header_img {
      max-height: 300px;
      margin-bottom: 10px;
  }
  .main_ebook_title
  {
      font-size: 8vw;
      padding-top: 0;
  }
  .main_ebook_header_img
  {
    max-height: 190px;
  }
}
@media screen and (max-width:767px)
{
  .regular_info_part {
    padding: 3rem 1.5rem;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
  }
  .regular_title
  {
      font-size: 28px;
      margin: 3rem auto;
  }
  .main_ebook_basic_text
  {
    margin-bottom: 15px;
  }
  /* Side Menu */
  .sidebar-wrapper {
    position: fixed;
    z-index: 9999999;
    left: -501px;
    width: 251px;
    top: 0;
    height: 100%;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform: translateX(250px);
       -moz-transform: translateX(250px);
        -ms-transform: translateX(250px);
         -o-transform: translateX(250px);
            transform: translateX(250px);
    /* background: #0e1121; */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sidebar-nav {
    position: absolute;
    top: 0;
    width: 234px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .sidebar-nav a li.sidebar-nav-item {
    text-decoration: none;
    color: #bfdbdb;
    font-size: 13px;
    font-family: 'Lato',sans-serif;
    text-transform: uppercase;
    line-height: 20px;
    padding: 12px 0;
    font-weight: normal;
    border-left:2px solid #0e1121;
    padding-left: 43px;
    text-align: left;
  }

  .sidebar-nav a:hover li.sidebar-nav-item
  {
    text-decoration: none;
    color: #bfdbdb;
    background-color: #030415;
    border-left:2px solid #b9d4d5;
  }
  .sidebar-nav a:active li.sidebar-nav-item,
  .sidebar-nav a:focus li.sidebar-nav-item,
  .sidebar-nav a li.active_menu
  {
    text-decoration: none;
    color: #dd692f;
    background-color: #030415;
    border-left:2px solid #dd692f;

  }
  .sidebar-nav a:active li.home_icon,
  .sidebar-nav a:focus li.home_icon,
  .sidebar-nav a li.home_icon.active_menu
  {
    background-image:url(../img/icons/home_active.png);
  }
  .sidebar-nav a:active li.arcade_icon,
  .sidebar-nav a:focus li.arcade_icon,
  .sidebar-nav a li.arcade_icon.active_menu

  {
    background-image:url(../img/icons/arcade_active.png);
  }
  .sidebar-nav a:active li.puzzle_icon,
  .sidebar-nav a:focus li.puzzle_icon,
  .sidebar-nav a li.puzzle_icon.active_menu

  {
    background-image:url(../img/icons/puzzle_active.png);
  }
  .sidebar-nav a:active li.sport_icon,
  .sidebar-nav a:focus li.sport_icon,
  .sidebar-nav a li.sport_icon.active_menu

  {
    background-image:url(../img/icons/sport_active.png);
  }
  .sidebar-nav a:active li.cards_icon,
  .sidebar-nav a:focus li.cards_icon,
  .sidebar-nav a li.cards_icon.active_menu

  {
    background-image:url(../img/icons/cards_active.png);
  }
  .sidebar-nav a:active li.memory_icon,
  .sidebar-nav a:focus li.memory_icon,
  .sidebar-nav a li.memory_icon.active_menu

  {
    background-image:url(../img/icons/memory_active.png);
  }
  .sidebar-nav a:active li.tips_icon,
  .sidebar-nav a:focus li.tips_icon,
  .sidebar-nav a li.tips_icon.active_menu

  {
    background-image:url(../img/icons/ebook_active.png);
  }
  .sidebar-nav a:active li.premium,
  .sidebar-nav a:focus li.premium,
  .sidebar-nav a li.premium.active_menu

  {
    background-image:url(../img/icons/premium_active.png);
  }
  .sidebar-nav > .sidebar-brand {
    font-size: 1.2rem;
    background: rgba(52, 58, 64, 0.1);
    height: 80px;
    line-height: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;

  }

  .sidebar-nav > .sidebar-brand a {
    color: #fff;
  }

  .sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
  }

  .sidebar-wrapper.active {
    left: -2px;
    width: 245px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .logo_box
  {
    padding-left: 5px;
    margin-top: 5px;
  }

  .head_bar
  {
    height: 75px;
  }
  .menu_box
  {
    height: 75px;
    line-height: 75px;
  }
  .menu_box>ul>a {
    width: 5rem;
    margin: auto !important;
    padding-top: 10px;
    padding-bottom: 5px;
  }
  .menu_box>ul>a>li
  {
    font-size: 12px;
  }
  .menu_icon_wap
  {
    height: 39px;
    width: 39px;
    display: block;
    -moz-background-size: cover;
            -webkit-background-size: cover;
                 -o-background-size: cover;
            background-size: cover;
    margin: auto;
    margin-bottom: 8px;
  }
  .gameImgBox
  {
    /* width: 100%; */
  }
  .web
  {
    display: none;
  }
  .wap
  {
    display: block;
  }
  .webROW
  {
    display: none;
  }
  .wapROW
  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .game_rating
  {
    font-size: 5vw;
  }
  .game_description, .game_title
  {
    font-size: 3vw;
  }
  .games_container
  {
  padding-bottom:  76px;
  }
  a.playbutton
  {
    max-width: initial;
    width: 100%;
  }
  a.playbutton:focus,input.submit_button:focus,a.playbutton:focus
  {
    max-width: initial;
  }
  .main_game_title {
  }
  .main_game_header_img
  {
    margin-bottom: 4em;
  }
  .main_game_header_img {
      margin: auto;
      height: 100%;
      bottom: 50px;
      margin-bottom: 10px;
      -moz-background-size: cover;
              -webkit-background-size: cover;
                   -o-background-size: cover;
              background-size: cover;
      max-height: 373px;
      background-position: center;
      background-color: #0a0f1b;
  }
  .main_ebook_header_img {
    max-height: 143px;
    -moz-background-size: cover;
            -webkit-background-size: cover;
                 -o-background-size: cover;
            background-size: cover;
  }
  .main_ebook_button {
    margin-bottom: 20px;
  }
  footer {
    padding: 10px 0;
    height: 60px;
    font-size: 13px;
  }
}

@media screen and (max-width:350px)
{
  .menu_box>ul>a {
    width: 4rem;
  }
}
