/*
Theme Name: HTML5gamesonline
Theme URI: 
Author: Your Name
Author URI: 
Description: A WordPress theme designed for HTML5 games.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: html5, games, responsive-layout
Text Domain: html5gamesonline

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

@-webkit-keyframes animatedown {
  from {
    -webkit-transform: translate(0px, -5px);
  }

  to {
    -webkit-transform: translate(0px, 0px);
  }
}

@-moz-keyframes animatedown {
  from {
    -moz-transform: translate(0px, -5px);
  }

  to {
    -moz-transform: translate(0px, 0px);
  }
}

@-ms-keyframes animatedown {
  from {
    -ms-transform: translate(0px, -5px);
  }

  to {
    -ms-transform: translate(0px, 0px);
  }
}

@-o-keyframes animatedown {
  from {
    -o-transform: translate(0px, -5px);
  }

  to {
    -o-transform: translate(0px, 0px);
  }
}

@keyframes animatedown {
  from {
    transform: translate(0px, -5px);
  }

  to {
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes animateup {
  from {
    -webkit-transform: translate(0px, 5px);
  }

  to {
    -webkit-transform: translate(0px, 0px);
  }
}

@-moz-keyframes animateup {
  from {
    -moz-transform: translate(0px, 5px);
  }

  to {
    -moz-transform: translate(0px, 0px);
  }
}

@-ms-keyframes animateup {
  from {
    -ms-transform: translate(0px, 5px);
  }

  to {
    -ms-transform: translate(0px, 0px);
  }
}

@-o-keyframes animateup {
  from {
    -o-transform: translate(0px, 5px);
  }

  to {
    -o-transform: translate(0px, 0px);
  }
}

@keyframes animateup {
  from {
    transform: translate(0px, 5px);
  }

  to {
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes animateleft {
  from {
    -webkit-transform: translate(0px, 0px);
  }

  to {
    -webkit-transform: translate(10px, 0px);
  }
}

@-moz-keyframes animateleft {
  from {
    -moz-transform: translate(0px, 0px);
  }

  to {
    -moz-transform: translate(10px, 0px);
  }
}

@-ms-keyframes animateleft {
  from {
    -ms-transform: translate(0px, 0px);
  }

  to {
    -ms-transform: translate(10px, 0px);
  }
}

@-o-keyframes animateleft {
  from {
    -o-transform: translate(0px, 0px);
  }

  to {
    -o-transform: translate(10px, 0px);
  }
}

@keyframes animateleft {
  from {
    transform: translate(0px, 0px);
  }

  to {
    transform: translate(10px, 0px);
  }
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Noto Sans Arabic", sans-serif !important;
}

body {
  color: #fff;
  background: #0c5a73 !important;
  background-color: #0c5a73 !important;
  background-attachment: fixed;
  font-size: 14px;
  font-family: "Noto Sans Arabic", sans-serif !important;
}

input,
textarea {
  border: 1px solid rgba(250, 250, 250, 0.1);
  outline: none;
  border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
}

.center {
  margin: 0 auto;
}

a,
a:active,
a:visited {
  text-decoration: none;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none;
  outline: none;
}

h1 {
  font-size: 22px;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

#games_wrap {
  padding-bottom: 20px;
}

#games {
  width: 100%;
  float: left;
}

.games .thumb {
  background: #50136c;
  width: 100%;
  height: 100%;
  float: left;
}

.games img {
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
  float: left;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.games:hover img {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
  -webkit-filter: blur(2px);
  transform: scale(1.05);
}

.games {
  float: left;
  border: 4px solid #6b1891;
  position: relative;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
}

.games:hover {
  border-color: #ffc809;
}

.games .gametitle {
  display: none;
  position: absolute;
  color: #fff;
  width: 100%;
  top: 0;
  text-align: center;
  font-weight: 700;
  padding: 20px 10px;
  -webkit-animation: animatedown 0.3s;
  -moz-animation: animatedown 0.3s;
  -ms-animation: animatedown 0.3s;
  -o-animation: animatedown 0.3s;
  animation: animatedown 0.3s;
}

.games:hover .playbttn,
.games:hover .gametitle {
  display: block;
}

.games .hot-badge,
.games .new-badge {
  width: 65px;
  height: 65px;
  transform: translate(-3px, -3px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.w3 .new-badge {
  width: 110px;
  height: 110px;
  transform: translate(-4px, -4px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.games:hover .hot-badge,
.games:hover .new-badge {
  display: none;
}

#footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #fff;
  padding: 15px 10px;
  float: left;
}

#footer a {
  color: #fff;
}

#footer .menu-footer ul {
  text-align: center;
}

#footer .menu-footer ul li {
  display: inline-block;
  list-style: none;
  margin-right: 10px;
  padding-right: 10px;
}

body .offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000008d;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
}

body .offcanvas .offcanvas-menu {
  position: absolute;
  top: 0;
  left: -100%;
  background: #0c5a73 !important;
  width: 560px;
  height: 100%;
  box-sizing: border-box;
  padding: 15px;
}

body .offcanvas .offcanvas-menu .live-search-attached-button svg {
  height: 28px;
  width: 28px;
}

body .offcanvas .offcanvas-menu .live-search-attached-button svg path {
  stroke-width: 3px;
}

/* body .offcanvas .RightFade::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, transparent, #82FFE6);
} */

body .offcanvas.active {
  opacity: 1;
  visibility: visible;
}

body .offcanvas.active .offcanvas-menu {
  transition-delay: 0.2s;
  right: 0;
}

body .offcanvas .for-mobile svg path {
  stroke: rgb(37, 150, 237);
}

body .offcanvas .live-search .for-mobile {
  display: none;
}

body .offcanvas .live-search .for-mobile:hover,
body .offcanvas .live-search .for-desktop:hover {
  background: #adddf542;
}

@media screen and (max-width: 625px) {
  .offcanvas-menu {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .offcanvas-menu .close-button {
    display: none;
  }

  .offcanvas-menu .live-search {
    margin-right: 0;
  }

  body .offcanvas .live-search .for-desktop {
    display: none;
  }

  body .offcanvas .live-search .for-mobile {
    display: flex;
  }

  body .offcanvas .offcanvas-menu {
    overflow-y: scroll;
  }
}

@media screen and (max-width: 380px) {
  body .offcanvas .live-search .for-mobile img {
    display: none;
  }

  body .offcanvas .live-search .for-mobile svg {
    width: 28px;
    height: 28px;
  }
}

.description {
  padding: 10px auto;
  width: 100%;
}

.comments-block {
  padding: 10px auto;
  width: 100%;
}

* {
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Noto Sans Arabic", sans-serif !important;
}

.games:hover {
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.15);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.15);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.15);
  transition: all 200ms ease-in;
  transform: scale(1.15);
}

.w3:hover {
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.08);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.08);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.08);
  transition: all 200ms ease-in;
  transform: scale(1.08);
}

.games {
  border: unset !important;
  -webkit-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

.games:hover img {
  -moz-opacity: 1 !important;
  -khtml-opacity: 1 !important;
  opacity: 1 !important;
  -webkit-filter: unset !important;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.1);
  transition: all 200ms ease-in;
  transform: scale(1.1);
}

.games:hover .gametitle {
  -moz-opacity: 1 !important;
  -khtml-opacity: 1 !important;
  opacity: 1 !important;
  -webkit-filter: unset !important;
  height: 105% !important;
  transition: height 0.1s !important;
}

.games .gametitle {
  display: flex !important;
  position: absolute;
  align-content: center;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
  height: 125% !important;
  color: #fff;
  opacity: 0;
  font-size: 12px !important;
  flex-direction: column;
  z-index: 1;
}

.thumbcover {
  position: absolute;
  width: 100%;
  height: 101%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.1) 50%
  );
  opacity: 0;
}

.games:hover .thumbcover {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.2s;
}

.w3:hover .gametitle {
  -moz-opacity: 1 !important;
  -khtml-opacity: 1 !important;
  opacity: 1 !important;
  -webkit-filter: unset !important;
  height: 90% !important;
  transition: height 0.1s !important;
}

.w3 .gametitle {
  font-size: 18px !important;
  padding: unset !important;
  height: 100% !important;
}

.games {
  box-shadow: 0 0 10px #000;
}

.empty-thumb::before {
  height: 130px;
  content: "";
  display: block;
  grid-column-start: span 2;
}

.logo-container {
  display: flex;
  width: 100%;
  position: absolute;
  justify-content: space-around;
}

.logo-flex {
  display: flex;
  position: relative;
}

:root {
  --main: #29053a;
  --white: #fff;
  --yellow: #ffbf09;
  --inputcolor: #f4f5fc;
  --fontcolor: #a8b6d2;
  --fontcolor2: #5580d5;
  --fontcolor3: #4b49b9;
  --fontgray: #444;
  --label: #a8b6d2;
  --black: rgba(0, 0, 0, 0.3);
  --darkblack: rgba(0, 0, 0, 1);
  --purpletext: #4b49b9;
}

.logo-thumb {
  margin-top: 17px;
  display: flex;
  position: absolute;
  width: 280px;
  height: 130px;
  border-radius: 10px;
  background-color: var(--white);
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
}

.logo-btns {
  display: flex;
  flex-direction: column;
}

.logo {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
}

.logo-btns {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 100%;
}

.logo-down {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 50px;
  width: 50px;
  margin-top: 10px;
  margin-left: 10px;
  border-radius: 0 0 10px 0;
}

@-webkit-keyframes down_animation {
  0% {
    -webkit-transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(5px);
  }

  to {
    -webkit-transform: translateY(0);
  }
}

@keyframes down_animation {
  0% {
    -webkit-transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(5px);
  }

  to {
    -webkit-transform: translateY(0);
  }
}

.menu.fade,
.menu.out {
  transition: height 0.3s ease;
}

@media only screen and (max-width: 800px) {
  .list .items {
    font-size: 20px;
    height: 70px;
  }
}

@media only screen and (max-width: 425px) {
  .list .items {
    font-size: 25px;
    height: 70px;
  }
}

.list {
  display: flex;
  flex-direction: column;
}

.items {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  color: var(--darkblack) !important;
  font-size: 19px;
  font-weight: 900;
  width: 280 x;
  height: 61px;
  padding-left: 40px;
  border-radius: 10px;
  text-align: center;
  border-bottom-width: 1px;
  align-items: center;
  text-decoration: none;
}

.menutext {
  padding-left: 10px;
}

@media only screen and (min-height: 540px) and (min-width: 700px) {
  .items {
    height: 61px;
  }
}

.items:hover {
  background-color: #ffdbea;
}

.menu.out {
  height: 0;
}

.menu.fade,
.menu.out {
  transition: height 0.3s ease;
}

@-webkit-keyframes up_animation {
  0% {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(180deg);
  }
}

@keyframes up_animation {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(180deg);
  }
}

.Search_div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  background-color: #0d5a74;
  width: 900px;
  height: 100%;
  z-index: 9999999;
  transform: translateX(-100%);
}

.Search_div .newgamelist {
  font-size: 26px;
  color: #fff;
  margin-top: 20px;
  width: 100%;
}

.searchgamelist {
  font-size: 26px;
  color: #fff;
  margin-top: 20px;
  width: 100%;
}

.searchgamelist h2 {
  font-size: 26px;
}

.Search_div.Sout {
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.Search_container {
  height: 65px;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
}

.Search_input_div {
  display: flex;
  justify-content: space-between;
  margin-left: 20px;
  border-radius: 60px;
  flex-direction: row;
  height: 100%;
  background-color: #fff;
  width: 80%;
  overflow: hidden;
}

.Search_input {
  width: 90%;
  height: 100%;
}

.Search_Feild {
  outline: 0;
  width: 100%;
  height: 100%;
  margin: 0 0 0 20px;
  border: none;
  font-family: "Nunito", sans-serif;
  font-size: 25px;
  font-weight: 800;
}

input::placeholder {
  color: #b2a9b6;
}

::-webkit-search-decoration,
::-webkit-search-cancel-button,
::-webkit-search-results-button,
::-webkit-search-results-decoration {
  display: none;
}

.Search_icon {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0 20px;
  width: 10%;
  height: 100%;
}

.s_icon {
  width: 40px;
  height: 40px;
}

.c_icon {
  width: 40px;
  height: 40px;
}

.Search_close {
  display: flex;
  margin: 0 10px;
  height: 100%;
  width: 65px;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 300px) {
  .Search_input_div {
    width: 70%;
  }

  .Search_container,
  .Search_close {
    height: 45px;
  }

  .Search_close {
    width: 45px;
  }

  .s_icon {
    width: 30px;
    height: 30px;
  }

  .c_icon {
    width: 30px;
    height: 30px;
  }

  .Search_Feild {
    font-size: 20px;
  }

  .newgamelist h2 {
    font-size: 20px;
  }

  .Recent_games,
  .Search_game_container {
    grid-template-columns: repeat(auto-fill, 100px);
  }

  .Search_div {
    width: 100%;
  }
}

@media only screen and (min-width: 730px) {
  .Search_input_div {
    width: 80%;
  }

  .Search_container,
  .Search_close {
    height: 65px;
  }

  .Search_close {
    width: 65px;
  }

  .s_icon {
    width: 40px;
    height: 40px;
  }

  .c_icon {
    width: 40px;
    height: 40px;
  }

  .Search_Feild {
    font-size: 25px;
  }

  .newgamelist h2 {
    font-size: 26px;
  }

  .Recent_games,
  .Search_game_container {
    grid-template-columns: repeat(auto-fill, 130px);
  }

  .thumb-canvas {
    height: 430px !important;
    grid-column: auto/span 4 !important;
    grid-row: auto/span 3 !important;
  }

  .thumb {
    min-height: 130px;
    border-radius: 10px;
  }
}

@media only screen and (min-width: 1030px) {
  .Search_div {
    width: 900px;
  }
}

.thumb {
  grid-column: auto/span 1;
  grid-row: auto/span 1;
  min-height: 150px;
  display: block;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  transition: all 0.2s;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

@media only screen and (min-width: 300px) {
  .thumb {
    min-height: 80px;
  }
}

@media only screen and (max-width: 730px) {
  .logo-thumb {
    transform-origin: top left;
    position: absolute;
  }
}

@media only screen and (min-width: 360px) {
  .thumb {
    min-height: 100px;
  }
}

@media only screen and (min-width: 730px) {
  .thumb {
    min-height: 130px;
    border-radius: 10px;
  }
}

@media only screen and (min-width: 880px) {
  .thumb-canvas {
    height: 580px !important;
    grid-column: auto/span 5 !important;
    grid-row: auto/span 4 !important;
  }
}

@media only screen and (min-width: 1030px) {
  .thumb-canvas {
    height: 580px !important;
    grid-column: auto/span 6 !important;
    grid-row: auto/span 4 !important;
  }
}

@media only screen and (min-width: 1180px) {
  .thumb-canvas {
    grid-column: 3/9 !important;
    grid-row: auto/span 4 !important;
  }
}

@media only screen and (min-width: 1330px) {
  .thumb-canvas {
    grid-column: auto/span 6 !important;
    grid-row: auto/span 4 !important;
  }
}

@media only screen and (min-width: 1480px) {
  .thumb-canvas {
    height: 730px !important;
    grid-column: auto/span 8 !important;
    grid-row: auto/span 5 !important;
  }
}

@media only screen and (min-width: 1630px) {
  .logo-flex {
    position: fixed;
    width: 1630px;
  }
}

@media only screen and (min-width: 1780px) {
  .logo-flex {
    position: fixed;
    width: 1780px;
  }
}

@media only screen and (min-width: 1930px) {
  .logo-flex {
    position: fixed;
    width: 1930px;
  }
}

@media only screen and (min-width: 2080px) {
  .logo-flex {
    position: fixed;
    width: 2080px;
  }
}

@media only screen and (min-width: 2230px) {
  .logo-flex {
    position: fixed;
    width: 2230px;
  }
}

@media only screen and (min-width: 2380px) {
  .logo-flex {
    position: fixed;
    width: 2380px;
  }
}

@media only screen and (min-width: 2530px) {
  .logo-flex {
    position: fixed;
    width: 2530px;
  }
}

.description {
  margin-top: 17px;
  display: block;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.comments-block {
  margin-top: 17px;
  display: block;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

#searchgamelist .searchsection {
  overflow-y: auto;
}

#searchgamelist {
  display: none;
  flex-direction: column;
  overflow: hidden;
}

body {
  overflow-x: hidden;
}

@media only screen and (max-width: 350px) {
  .socialicons {
    transform: scale(0.8);
  }
}

#footer {
  position: absolute;
  right: 0;
  bottom: auto;
  left: 0;
  padding: 1rem;
  clear: both;
  overflow: hidden;
  z-index: 99999;
}

@media only screen and (max-width: 430px) {
  .description {
    padding-top: 0;
  }
  .comments-block {
    padding-top: 0;
  }
}

@media only screen and (max-width: 600px) {
  .container,
  .container-1400 {
    width: 100%;
  }

  #footer .menu-footer {
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding-right: unset;
    padding-top: 4%;
  }
}

.thumb-canvas {
  grid-column: auto/span 6;
  grid-row: auto/span 4;
  z-index: 1;
  background-image: none !important;
  background-color: var(--white);
  overflow: hidden;
  border-radius: 10px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 150px);
  grid-auto-flow: row dense;
  justify-content: center;
  grid-gap: 20px;
  margin: 17px 0;
  grid-column-start: span 2;
}

.canvas-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.canvas-container:fullscreen .game-info {
  height: 6%;
}

.game-info {
  height: 50px;
  display: flex;
  flex-direction: row;
  background-color: var(--white);
  align-items: center;
  align-content: center;
  justify-content: space-between;
}

.canvas-container:fullscreen .game-info {
  height: 6%;
}

.game-fullscreen {
  margin-right: 13px;
  display: flex;
  width: 30px;
  height: 30px;
}

.games {
  border: 5px solid #fff;
  border-radius: 10px;
}

.games .thumb {
  border-radius: 10px;
}

::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}

#games {
  margin-bottom: 3%;
}

.bottomfooter {
  background-color: #fff;
  color: #000;
  margin: 30px auto !important;
  border-radius: 10px;
  width: 340px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}

a {
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 500px) {
  .bottomfooter {
    align-content: baseline;
    flex-direction: column;
  }
}

li img {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

.menu-footer ul li a {
  cursor: pointer;
}

.socialicons {
  margin-top: 1%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1px;
}

.socialicons ul {
  text-align: center;
  margin-bottom: 5px;
  display: flex;
  align-content: flex-start;
  justify-content: center;
  align-items: center;
}

.socialicons ul h3 {
  margin-bottom: 5px;
}

.socialicons ul li {
  float: left;
  list-style-type: none;
  margin: 4px;
}

.bottomfooter span a {
  color: #4b49b9;
}

.description a:hover {
  color: #fa0;
}

.description a {
  color: #4b49b9;
}

.comments-block a:hover {
  color: #fa0;
}

.comments-block a {
  color: #4b49b9;
}

.description h1,
.description h2 {
  color: #5d6b84;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  margin-top: 10px;
  text-underline-position: under;
  -webkit-text-underline-position: under;
  -ms-text-underline-position: below;
}

.comments-block h1,
.comments-block h2 {
  color: #5d6b84;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  margin-top: 10px;
  text-underline-position: under;
  -webkit-text-underline-position: under;
  -ms-text-underline-position: below;
}

.description {
  display: block;
  align-items: flex-start;
  border-radius: 6px;
  margin-top: 10px;
  margin-top: 50px;
  color: #000;
  font-size: 18px;
}

.comments-block {
  display: block;
  align-items: flex-start;
  border-radius: 6px;
  margin-top: 10px;
  margin-top: 50px;
  color: #000;
  font-size: 18px;
}

#games {
  display: grid;
  grid-template-columns: repeat(auto-fill, 130px);
  grid-auto-flow: row dense;
  justify-content: center;
  grid-gap: 20px;
  margin: 17px 0;
}

.games {
  grid-column: auto/span 1;
  grid-row: auto/span 1;
  margin: unset !important;
  min-height: 130px;
}

.games:hover .gametitle {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
  text-shadow: 0 1px 1px #000;
}

.w3 {
  grid-column: auto/span 2 !important;
  grid-row: auto/span 2 !important;
}

.w3 .gametitle {
  font-size: 18px !important;
}

@media only screen and (max-width: 425px) {
  #games {
    grid-template-columns: repeat(auto-fill, 100px);
  }

  .empty-thumb::before {
    min-height: 100px !important;
    height: 100px;
  }

  .games {
    min-height: 100px !important;
    height: 100px;
  }

  #games .w3 {
    min-height: 100px !important;
    height: unset !important;
  }

  .w3 .gametitle {
    font-size: 16px !important;
  }
}

@keyframes moveToLeft {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(8px);
  }
}

@media only screen and (max-width: 1630px) {
  .logo-flex {
    width: 1480px !important;
  }

  .bottomfooter {
    width: 1480px !important;
    padding: 20px !important;
  }
}

@media only screen and (max-width: 1480px) {
  .logo-flex {
    width: 1330px !important;
  }

  .bottomfooter {
    width: 1330px !important;
    padding: 20px !important;
  }
}

@media only screen and (max-width: 1330px) {
  .logo-flex {
    width: 1180px !important;
  }

  .bottomfooter {
    width: 1180px !important;
    padding: 20px !important;
  }
}

@media only screen and (max-width: 1179px) {
  .logo-flex {
    width: 1030px !important;
  }

  .bottomfooter {
    width: 1030px !important;
    padding: 20px !important;
  }
}

@media only screen and (max-width: 1029px) {
  .logo-flex {
    width: 880px !important;
  }

  .bottomfooter {
    width: 880px !important;
    padding: 20px !important;
  }
}

@media only screen and (max-width: 879px) {
  .logo-flex {
    width: 730px !important;
  }

  .bottomfooter {
    width: 730px !important;
    padding: 20px !important;
  }

  .thumb-canvas {
    height: 340px !important;
    grid-column: auto/span 4 !important;
    grid-row: auto/span 3 !important;
    border-radius: 10px !important;
  }
}

@media only screen and (max-width: 729px) {
  .logo-flex {
    width: 580px !important;
  }

  .maincategory {
    grid-template-columns: repeat(auto-fill, 280px) !important;
  }

  .mainthumb {
    height: 80px !important;
  }

  .bottomfooter {
    width: 580px !important;
    padding: 20px !important;
  }
}

@media only screen and (max-width: 580px) {
  .logo-flex {
    width: 426px !important;
  }

  .maincategory {
    grid-template-columns: repeat(auto-fill, 205px) !important;
  }

  .mainthumb {
    height: 80px !important;
  }

  .bottomfooter {
    width: 430px !important;
    padding: 20px !important;
  }

  .thumb-canvas {
    height: 340px !important;
    grid-column: auto/span 3 !important;
    grid-row: auto/span 3 !important;
    border-radius: 10px;
  }
}

@media only screen and (max-width: 425px) {
  .logo-flex {
    width: 340px !important;
  }

  .logo-thumb {
    transform-origin: top right;
    transform: scale(0.65);
    position: absolute;
    width: 334px;
    height: 150px;
  }

  .menu {
    margin-top: 140px;
    width: 332px;
  }

  .thumb-canvas {
    height: 270px !important;
    grid-column: auto/span 3 !important;
    grid-row: auto/span 3 !important;
    border-radius: 10px;
  }
}

@media only screen and (max-width: 340px) {
  .logo-flex {
    width: 340px;
  }

  .logo-thumb {
    transform-origin: top right;
    transform: scale(0.55);
    position: absolute;
  }

  .games:hover .gametitle {
    height: 120% !important;
  }

  .games .gametitle {
    font-size: 12px !important;
  }

  #games {
    grid-template-columns: repeat(auto-fill, 80px);
  }

  .empty-thumb::before {
    min-height: 80px !important;
    height: 80px;
  }

  .logo-flex {
    width: 285px;
  }

  .games {
    min-height: 80px !important;
    height: 80px;
  }

  .thumb-canvas {
    height: 247px !important;
    grid-column: auto/span 3 !important;
    grid-row: auto/span 3 !important;
    border-radius: 10px;
  }
}

.black_screen {
  top: 0;
  position: fixed;
  width: 100%;
  height: 130%;
  background-color: #000;
  z-index: 9;
  opacity: 0.5;
}

.fillout {
  display: none;
}

@keyframes play_btn {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.maincategory {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, 250px);
  grid-auto-flow: row dense;
  justify-content: center;
  grid-gap: 20px;
  grid-column-start: span 2;
  padding-top: 15px;
}

.mainthumb {
  grid-column: auto/span 1;
  grid-row: auto/span 1;
  height: 90px;
  display: block;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 7px #000;
  transition: all 0.1s;
  background-repeat: no-repeat;
  background-size: cover;
}

.thumbcategory {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 7px #000;
}

.catthumbbtn {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 10px;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  background-color: #fff;
}

.catthumbbtn img {
  width: 40% !important;
}

.catslidetext {
  width: 60%;
  color: #000;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  text-align: center;
  font-weight: 800;
  padding: 0 10px;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 379px) {
  .logo-flex {
    width: 350px;
  }

  .maincategory {
    grid-template-columns: repeat(auto-fill, 160px);
  }

  .mainthumb {
    height: 80px;
  }

  .bottomfooter {
    width: 340px;
    padding: 20px;
  }
}

@media screen and (max-width: 350px) {
  .logo-flex {
    width: 340px;
  }

  .maincategory {
    grid-template-columns: repeat(auto-fill, 160px);
  }

  .mainthumb {
    height: 70px;
  }

  .bottomfooter {
    width: 340px;
    padding: 10px;
  }
}

.searchover {
  cursor: pointer;
  cursor: pointer;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  margin-top: 5px;
  margin-left: 10px;
  margin-bottom: 10px;
}

body {
  direction: rtl !important;
}

.Search_div.Sout {
  transform: translateX(100%) !important;
}

@media only screen and (max-width: 425px) {
  .logo-thumb {
    transform-origin: top right !important;
  }

  .maincategory {
    grid-template-columns: repeat(auto-fill, 160px) !important;
  }

  .mainthumb {
    height: 80px !important;
  }

  .bottomfooter {
    width: 340px !important;
    padding: 20px;
  }
}

@media only screen and (max-width: 730px) {
  .logo-thumb {
    transform-origin: top right !important;
  }
}

@media screen and (max-width: 572px) {
  .gameplay-container {
    grid-column-start: span 3 !important;
    grid-row-end: span 2 !important;
  }
}

.m-grid-start .gameplay-container {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 600px;
}

.m-grid-start .gameplay-container iframe {
  /* height: calc(100% - 85px); */
  height: 100%;
  width: 100%;
}

.m-grid-start .gameplay-container.full {
  position: fixed;
  top: 0;
  left: -5px;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.m-grid-start .gameplay-container.full .left,
.m-grid-start .gameplay-container.full .right {
  display: none;
}

.m-grid-start .gameplay-container .game-basic-info,
.m-grid-start .gameplay-container .logo,
.m-grid-start .gameplay-container .minimize {
  display: none;
}

.m-grid-start .gameplay-container.full .game-basic-info,
.m-grid-start .gameplay-container.full .logo,
.m-grid-start .gameplay-container.full .minimize {
  display: block;
}

.m-grid-start .gameplay-container.full .game-details .minimize {
  padding: 0 20px;
}

.icon-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.icon-group button {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  position: relative;
}

.icon-group button:hover {
  background: #3333332b;
}

.icon-group label {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  font-weight: bolder;
}

.icon-group button svg path {
  stroke-width: 3px;
  stroke: #0c5a73;
}

.icon-group button.fill svg path,
.icon-group button.fill svg {
  fill: #0c5a73;
}

.icon-group button.active {
  background: #0c5a73;
}

.icon-group button.active svg path {
  stroke: #fff;
}

.icon-group button[tooltip]::before {
  content: attr(tooltip);
  position: absolute;
  bottom: -29px;
  left: 50%;
  transform: translateX(-50%);
  background: #0c5a73;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  white-space: nowrap;
}

.icon-group button[tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
}

.report-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  height: auto;
  width: 400px;
  background: #fff;
  z-index: 999;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 20px;
  overflow: hidden;
}

.report-popup.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.report-popup .body textarea {
  background: #f0f5fc;
  height: 90px;
  width: 100%;
  outline: none;
  border: 1px solid #dcdcdc;
  padding: 10px;
  border-radius: 12px;
  margin-top: 20px;
  resize: none;
}

.report-popup .body textarea::placeholder {
  color: #666;
}

.report-popup .body textarea:focus {
  border-color: rgb(37, 150, 237);
}

.thank-you-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 20px;
  min-width: 260px;
  height: 90px;
  background: rgb(37, 150, 237);
  color: #fff;
  z-index: 999;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  font-weight: bolder;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
}

.thank-you-popup.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.gameplay-container.on-frame .game_desc,
.gameplay-container.on-frame hr {
  display: none;
}

@media screen and (max-width: 600px) {
  .gameplay-container.on-mobile {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
  }

  .gameplay-container.on-mobile .play-frame {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    background: #00000015;
  }

  .gameplay-container.on-mobile iframe {
    display: none;
  }

  .gameplay-container.on-mobile .game-details {
    display: none;
  }

  .gameplay-container.on-mobile .play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .gameplay-container.on-mobile .play-button button {
    height: 70px;
    width: 70px;
    border-radius: 99px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gameplay-container.on-mobile .play-button button svg path {
    stroke: rgb(37, 150, 237);
    stroke-width: 3px;
  }

  .gameplay-container.on-mobile .play-button button:hover {
    background: rgb(37, 150, 237);
  }

  .gameplay-container.on-mobile .play-button button:hover svg path {
    stroke: #fff;
  }

  .gameplay-container.on-mobile .play-button .game-name {
    color: #fff;
    font-weight: bolder;
  }

  .gameplay-container.on-frame {
    border-radius: 0;
    background-color: #fff !important;
    background-image: none !important;
  }

  .gameplay-container.on-frame .play-frame {
    display: none;
  }

  .gameplay-container.on-frame iframe {
    display: block;
  }

  .gameplay-container.on-frame .game-details {
    display: block;
  }

  .gameplay-container.on-frame .game-details .logo {
    display: none;
  }

  .gameplay-container.on-frame .game-details .logo {
    display: none;
  }

  .gameplay-container.on-frame .game-details .minimize {
    display: none;
  }

  .gameplay-container.on-frame .back-button {
    position: absolute;
    top: 20px;
    left: 0;
    background: #0e3d71;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top-right-radius: 99px;
    border-bottom-right-radius: 99px;
    overflow: hidden;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
  }

  .more-option {
    display: flex;
    width: 150px;
    position: absolute;
    right: 20px;
    background: #fff;
    transform: translateY(40px);
    flex-direction: column;
    grid-gap: 0 !important;
    z-index: 999;
    padding: 10px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
  }

  .more-option.active {
    opacity: 1;
    visibility: visible;
  }

  .more-option .icon-group {
    justify-content: flex-start;
    flex-direction: unset;
    width: 100%;
    cursor: pointer;
  }

  .more-option .icon-group label {
    opacity: 1;
    pointer-events: none;
  }
}

@media screen and (max-width: 900px) and (orientation: landscape) {
  .gameplay-container.on-frame .game-details {
    display: none !important;
  }

  .gameplay-container.on-frame .back-button {
    position: absolute;
    top: 20px;
    left: 0;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top-right-radius: 99px;
    border-bottom-right-radius: 99px;
    overflow: hidden;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
  }
}

@media screen and (max-width: 767px) {
  .page-content-container .navbar {
    min-width: max-content;
  }

  .page-content-container .page-content {
    width: 100%;
  }
}

/* @media screen and (max-width: 767px) { */

@media screen and (max-width: 645px) {
  .page-content-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 378px) {
  .gameplay-container {
    grid-column-start: span 3 !important;
    grid-row-end: span 2 !important;
  }
}

.breadcrumb {
  color: #5d6b84;
}
.breadcrumb li + li:before {
  color: #5d6b84;
  content: "›";
  font-size: 23px;
  margin: 0 4px;
}
.breadcrumb li {
  display: inline !important;
}
.breadcrumb ul {
  list-style: none;
  color: #5d6b84;
}

.wY7sRBuJJVct_A0DPHDr {
  margin: 4px 0 10px 0;
}
.ykSfXRX6hSsz0ISpeaWm {
  color: #5d6b84;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  margin-right: 4px;
}
.vd1aWiYRdRn48fpbDJ0_ {
  color: #5d6b84;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-right: 4px;
  margin-bottom: 5px;
}
.vd1aWiYRdRn48fpbDJ0_ {
  background: #f0f5fc;
  border-radius: 10px;
  height: 38px;
  line-height: 22px;
  padding: 8px 8px;
}
.fcfViJboVjIxhb1F278U {
  display: inline-block;
  height: 10px;
  margin-right: 2px;
  position: relative;
  top: 1px;
  width: 10px;
  fill: #5d6b84;
}

.wIGewHYOM_yiDgJbC_XN {
  float: right;
  margin: 10px 0 0 16px;
  max-width: 100%;
  width: 350px;
}

@media (min-width: 111px) and (max-width: 550.9px) {
  .wIGewHYOM_yiDgJbC_XN {
    float: none;
    margin: 16px 0;
  }
}

.bfq4PKbgNwePswLuaSwZ {
  border-radius: 16px;
}

ol {
  list-style: none;
  counter-reset: num;
}

ol li {
  counter-increment: num;
}

ol li::before {
  content: counter(num) ". ";
  color: #0c5a73;
}

.screenshots * {
  box-sizing: border-box;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
}
  
.screenshotimg {
  float: right;
  width: 25%;
  padding: 5px!important;
}

/* Clearfix (clear floats) */
.screenshots::after {
  content: "";
  clear: both;
  display: table;
}

.screenshotimg img {
  border: 1px solid #ddd; /* Gray border */
  border-radius: 4px;  /* Rounded border */
  padding: 5px; /* Some padding */
  width: 150px; /* Set a small width */
}

  @media (max-width: 1024px) {
    .screenshots {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .screenshots {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .screenshots {
      grid-template-columns: repeat(1, 1fr);
    }
  }

.containerr {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 60% 0 0 0; /* 34.37% = 100 / (w / h) = 100 / (640 / 220) */
}

.containerr img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

ul {
  list-style: circle !important;
  margin: 0;
  padding-right: 25px !important;
}

.breadcrumb ul {
  padding: 0 !important;
}

ul li::marker {
  color: #5d6b84;
}

h2.Image:before{content:"";width:1.4em;height:1.4em;display:inline-block;vertical-align:middle;background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJz48cGF0aCBmaWxsPScjNWQ2Yjg0JyBkPSdNNDY0IDY0SDQ4QzIxLjQ5IDY0IDAgODUuNDkgMCAxMTJ2Mjg4YzAgMjYuNTEgMjEuNDkgNDggNDggNDhoNDE2YzI2LjUxIDAgNDgtMjEuNDkgNDgtNDhWMTEyYzAtMjYuNTEtMjEuNDktNDgtNDgtNDh6bS02IDMzNkg1NGE2IDYgMCAwIDEtNi02VjExOGE2IDYgMCAwIDEgNi02aDQwNGE2IDYgMCAwIDEgNiA2djI3NmE2IDYgMCAwIDEtNiA2ek0xMjggMTUyYy0yMi4wOTEgMC00MCAxNy45MDktNDAgNDBzMTcuOTA5IDQwIDQwIDQwIDQwLTE3LjkwOSA0MC00MC0xNy45MDktNDAtNDAtNDB6TTk2IDM1MmgzMjB2LTgwbC04Ny41MTUtODcuNTE1Yy00LjY4Ni00LjY4Ni0xMi4yODQtNC42ODYtMTYuOTcxIDBMMTkyIDMwNGwtMzkuNTE1LTM5LjUxNWMtNC42ODYtNC42ODYtMTIuMjg0LTQuNjg2LTE2Ljk3MSAwTDk2IDMwNHY0OHonPjwvcGF0aD48L3N2Zz4=") no-repeat}
/* Additional styles for better readability or design can be added here */
.likes {
  display:flex
}
.likes>a:not(:first-child) {
  margin-right: .8rem;
}
.likes>a {
  flex-basis:0;
  flex-grow:1;
  max-width:100%;
  font-size:1.3rem;
  font-weight: 700;
  text-align: center;
  border-radius:.75rem
}
.likes>a>span {
  display:block;
  padding:.5rem;
  transition:opacity .2s
}
.likes>a svg {
  display:block;
  width:2rem;
  height:1.3rem;
  margin:0 auto .25rem
}
.view-app-rate>:not(:first-child) {
  margin-top:.75rem
}
.view-app-rate .likes>a {
  color:inherit!important;
  background-color:#142636
}
.likes>a>.like-minus {
  color: #0c5a73 !important;
  font-size: 14px;
}
.likes>a>.like-plus {
  color: #0c5a73 !important;
  font-size: 14px;
}
.rate-nums {
  font-size:1rem
}

.socialicons ul,
#footer ul {
    padding-right: 0 !important;
}
/*--------------------------------------------------------------
15.0 Comment styles
--------------------------------------------------------------*/
.comment-form,
.comments-main {
	width: 100%;
	clear: both;
}

.comment-form {
	padding: 20px;
}

.comment-form-author {
    float: right;
	width: 33.33%;
}

.comment-form-email,
.comment-form-url {
	float: right;
	width: 33.33%;
	padding: 0 15px 0 0;
}

.comment-form-comment {
	margin-bottom: 20px;
}

.comment-notes {
	font-style: italic;
	font-size: 14px;
}

.form-submit {
	margin-bottom: 0;
}

.comment-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.comment {
	list-style: none;
	width: 100%;
}

.comment .avatar {
	border-radius: 50%;
	-moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
	border: 5px solid #FFF;
	float: right;
	margin: 0 0 0 20px;
}

.fn,
.fn a,
.says,
.comment-metadata a {
	font-size: 14px;
}

.vce-lay-d .fn,
.vce-lay-d .fn a,
.vce-lay-d .says,
.vce-lay-d .comment-metadata a {
	font-size: 13px;
}

ul.comment-list>li.comment,
ul.comment-list>li.pingback {
	padding: 20px;
	margin-bottom: 20px;
	position: relative;
}

ul.comment-list>li.comment:last-child,
ul.comment-list>li.pingback:last-child {
	margin-bottom: 0;
}

ul.comment-list .pingback {
	float: right;
	width: 100%;
}

.pingback .comment-reply-link {
	margin: 0;
}

li.comment .comment-body {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

li.comment .comment-body:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border: none;
}

ul.comment-list .fn,
ul.comment-list .fn a,
ul.comment-list .says {
	font-size: 16px;
	display: inline-block;
	margin: 6px 0 0 0;
	line-height: 24px;
}

.comment-metadata a {
	font-size: 14px;
}

.comment-list .comment-edit-link:hover {
	text-decoration: underline;
}

.comment-list .comment-content {
	display: block;
	clear: both;
	margin: 0 0 20px 95px;
	position: relative;
}

.comment-list .pingback .comment-content {
	margin: 0 0 20px 0;
}

.comment-body .edit-link {
	position: absolute;
	top: 0;
	right: 0;
}

.comment-body .edit-link a {
	color: #333;
	background: #ddd;
	text-decoration: none;
	padding: 2px 13px;
	font-size: 11px;
	text-transform: uppercase;
	box-shadow: 1px -1px 2px 0 rgba(0, 0, 0, 0.10) inset;
	line-height: 20px;
	float: right;
}

.comment-respond {
	z-index: 1000;
	position: relative;
}

.comment-content a:hover {
	text-decoration: underline;
}

.comment-content p {
	margin-bottom: 15px;
}

.comment-list .comment-content p:last-child {
	margin-bottom: 0;
}

.comment-reply-link {
	padding: 2px 10px;
	line-height: 18px;
	font-size: 12px;
	border-radius: 4px;
	text-decoration: none;
	margin: 0 0 0 95px;
	transition: all 0.1s ease-in-out;
}

.comment-reply-link:hover {
	color: #fff;
	text-decoration: none;
}

#respond h3 .cancel-comment-reply,
#respond #cancel-comment-reply-link {
	display: inline-block;
	margin-left: 10px;
	padding-left: 10px;
	position: relative;
	border-left: 1px solid #dddddd;
	float: right;
	text-decoration: none;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label,
.comment-form-comment label {
	width: 100%;
	float: left;
	margin: 0 0 2px 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
select,
#comment,
textarea {
	line-height: normal;
	width: 100%;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(0, 0, 0, 0.1);
	height: 42px;
	padding: 0 20px 0 10px;

}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
select:focus,
#comment:focus,
textarea:focus {
	border: 1px solid rgba(0, 0, 0, 0.2);
	outline: none;
	box-shadow: none;
}

textarea {
	height: 150px;
	padding: 10px;
}

input[type="range"] {
	width: 100%;
}

#comment {
	padding: 10px;
	height: 150px;
	resize: vertical;
}

ul.comment-list .says {
	display: none;
}

.comment-subscription-form {
	margin-bottom: 0;
	margin-top: 10px;
}

.must-log-in {
	padding: 30px 20px 0;
}

#wp-comment-cookies-consent {
	margin-right: 7px;
	position: relative;
	top: 2px;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.vce-button,
.mks_author_link,
.mks_themeforest_widget .more,
.pagination-wapper a,
#vce-pagination .next.page-numbers,
#vce-pagination .prev.page-numbers,
#vce-pagination .page-numbers,
#vce-pagination .page-numbers.current,
.vce-link-pages a,
#vce-pagination a,
.vce-load-more a,
.vce-slider-pagination .owl-nav>div,
.vce-mega-menu-posts-wrap .owl-nav>div,
.vce-404-menu a,
.sidebar .bbp_widget_login .button,
.bbp-pagination-links a,
.bbp-pagination-links span.current,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce ul.products li.product .added_to_cart,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body div.wpforms-container-full .wpforms-form input[type=submit],
body div.wpforms-container-full .wpforms-form button[type=submit],
body div.wpforms-container-full .wpforms-form .wpforms-page-button {
	border-radius: 4px;
	font-size: 14px;
	line-height: 22px;
	color: #FFFFFF;
	text-align: center;
	display: inline-block;
	padding: 5px 10px;
	text-decoration: none;
	border: none;
	background-position: center center;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-appearance: none;
}

.vce-custom-cart .fa-shopping-cart {
	font-size: 18px;
}

.vce-custom-cart .vce-cart-count {
	font-size: 13px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.vce-button:hover,
.mks_author_link:hover,
.mks_themeforest_widget .more:hover,
.pagination-wapper a:hover,
#vce-pagination .next.page-numbers:hover,
#vce-pagination .prev.page-numbers:hover,
#vce-pagination .page-numbers:hover,
.vce-link-pages a:hover,
#vce-pagination a:hover,
.vce-load-more a:hover,
body .vce-share-items .meks_ess a:hover,
a.mks_button:hover,
.vce-slider-pagination .owl-nav>div:hover,
.vce-mega-menu-posts-wrap .owl-nav>div:hover,
.vce-featured-section a:hover,
.vce-404-menu a:hover,
.vce-lay-g .vce-featured-info .meta-category a:hover,
.sidebar .bbp_widget_login .button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce ul.products li.product .added_to_cart:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.vce-lay-h .meta-category a:hover,
.vce-post-big .meta-category a:hover,
.vce-post-slider .meta-category a:hover,
body div.wpforms-container-full .wpforms-form input[type=submit]:hover,
body div.wpforms-container-full .wpforms-form button[type=submit]:hover,
body div.wpforms-container-full .wpforms-form .wpforms-page-button:hover {
	cursor: pointer;
	text-decoration: none;
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
	/* FF3.6+ */
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
	/* Chrome,Safari4+ */
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
	/* Chrome10+,Safari5.1+ */
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
	/* Opera 11.10+ */
	background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
	/* IE10+ */
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
	/* W3C */
}

.vce-share-items .meks_ess a {
	-moz-background-size: 400% 400%;
	background-size: 400% 400%;

	background-position: center center;
	-webkit-transition: background-size 0.3s ease-in-out;
	-moz-transition: background-size 0.3s ease-in-out;
	-o-transition: background-size 0.3s ease-in-out;
	transition: background-size 0.3s ease-in-out;
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

#vce-pagination.vce-load-more a,
#vce-pagination .vce-action-link {
	margin: 0 auto;
	min-width: 130px;
}

input[type="submit"],
body div.wpforms-container-full .wpforms-form input[type=submit],
body div.wpforms-container-full .wpforms-form button[type=submit],
body div.wpforms-container-full .wpforms-form .wpforms-page-button {
	min-width: 140px;
	background-color: #0c5a73 !important;
}

body div.wpforms-container-full .wpforms-form input[type=submit]:hover,
body div.wpforms-container-full .wpforms-form button[type=submit]:hover,
body div.wpforms-container-full .wpforms-form .wpforms-page-button:hover {
	border: none;
}

body div.wpforms-container-full .wpforms-form .wpforms-field-label {
	font-weight: normal;
	font-size: inherit;
	margin: 0 0 2px 0;
}

body div.wpforms-container-full .wpforms-form .wpforms-field {
	margin-bottom: 10px;
}

body div.wpforms-container-full .wpforms-form input,
body div.wpforms-container-full .wpforms-form select {
	height: 42px !important;
}

#vce-pagination .page-numbers.current {
	min-width: 34px;
	display: inline-block;
}

.mks_author_link,
.mks_themeforest_widget .more {
	display: inline-block;
	min-width: 130px;
}

#vce-pagination.vce-infinite-scroll a,
#vce-pagination.vce-infinite-scroll-single a,
#vce-pagination a.vce-loader {
	background: transparent url('../img/loader.gif') no-repeat center center;
	background-size: initial;
	box-shadow: none;
	margin: 0 auto;
	color: #333;
	text-indent: -9999px;
	display: inline-block;
}

#vce-pagination.vce-infinite-scroll-single {
	border: none;
	background: transparent;
}

.vce-mega-menu-wrapper.vce-loader {
	background-image: url('../img/loader.gif');
	background-repeat: no-repeat;
	background-position: center center;
}

#vce-pagination.vce-infinite-scroll,
#vce-pagination.vce-infinite-scroll-single {
	opacity: 0;
	height: 0;
	padding: 0;
}

.vce-action-link {
	margin: 0 auto;
}

a.mks_button {
	font-size: 16px;
	line-height: 22px;
}

.mks_button:hover,
.mks_ico:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}

.sidebar .mks_author_widget .mks_autor_link_wrap,
.sidebar .mks_themeforest_widget .mks_read_more {
	position: relative;
	text-align: center;
	display: block;
	width: 100%;
	padding: 10px;
	background: #f3f3f3;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

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

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

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 4px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	overflow: auto;
	padding-left: 3px;
	vertical-align: top;
	width: 100%;
}

a:hover {
	text-decoration: underline;
}

a:focus,
a:active {
	text-decoration: none;
}

@media only screen and (min-width: 200px) and (max-width: 670px) {
    .comment-list {
        width: 100%;
        margin-bottom: 10px;
    }

    .comment-respond {
        margin-bottom: 10px;
    }
    
    .comment-form-author,
    .comment-form-email,
    .comment-form-url,
    .main-box-subtitle {
        width: 100%;
        padding: 0 !important;
    }

    .comment-reply-title {
        font-size: 16px;
        line-height: 22px;
        text-align: center;
        margin-bottom: 0;
        padding: 10px 10px 12px 10px;
    }
    
    .comment-reply-link {
        margin: 0;
    }
    
    .comment-list .comment-content {
        margin: 0 0 10px;
    }
}

/* Search Icon Button */
.search-icon-button {
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 50px;
    width: 50px;
    margin-top: 10px;
    margin-left: 10px;
}

/* Fullscreen Search */
#fullscreen-search.hidden {
    display: none;
}

#fullscreen-search {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.search-inner {
    max-width: 600px;
    width: 100%;
    position: relative;
}

#fullscreen-search input#live-search {
    width: 100%;
    padding: 20px;
    font-size: 24px;
    border: 2px solid #ccc;
    border-radius: 8px;
}

#search-results {
    margin-top: 20px;
}

/* Close button (X) */
#close-search {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    font-size: 40px;
    line-height: 1;
    color: #333;
    cursor: pointer;
}

.search-results-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.search-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.search-info {
    flex: 1;
}

.search-title {
    display: block;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-bottom: 5px;
}

.search-title:hover {
    text-decoration: underline;
}

.search-excerpt {
    font-size: 14px;
    color: #666;
}

/* start */

.video-container {
  position: relative;
  overflow: hidden;
}

.video-container img,
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  z-index: 1;
}

.video-container .gametitle {
  position: absolute;
  color: #fff;
  z-index: 3; /* Higher than video */
  font-size: 14px;
  pointer-events: none;
  transition: opacity 0.2s;
}

.video-container:hover .gametitle {
  opacity: 1;
}
