@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: none !important;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--color-primary);
}
p {
  margin: 0px !important;
  padding: 0px !important;
}
a {
  text-decoration: none;
  display: block;
}
.play{
  margin-left: 70px;
  margin-bottom: 20px;
}
ul,
li {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
header {
  display: block;
  width: 100%;
}
.container {
  width: 98%;
  margin: 0 auto;
}
.menu > ul {
  display: flex;
  gap: 12px;
}
.menu > ul > li {
  display: inline-block;
}

.menu > ul > li > a {
  height: 56px;
  padding: 0px 15px 0px 10px;
  display: flex;
  align-items: center;
  color: var(--color-primary);
  font-size: var(--font-size-primary);
  font-weight: var(--font-weight-medium);
  border: 2px solid var(--border-soft);
  border-radius: var(--box-medium);
  transition: 0.5s;
}
.menu > ul > li > a:hover {
  border-color: var(--border-purple);
  transition: 0.5s;
}
.menu > ul > li > a:active {
  border-color: var(--border-purple);
}
.menu > ul > li > a i {
  width: 38px;
  height: 38px;
  background: var(--bg-purple);
  border-radius: var(--box-xxlarge);
}
.menu > ul > li > a i img{
  width: 26px;
  height: 26px;
}
.top-right {
  width: 50%;
  text-align: right;
  justify-content: flex-end;
}
.search {
  width: 50%;
  height: 56px;
  border-radius: var(--box-xlarge);
  background: var(--bg-soft);
}
.search input[type="text"] {
  width: 100%;
  height: 56px;
  border-radius: 33px;
  background: transparent;
  padding-left: 25px;
  border: none;
  color: var(--color-primary);
  font-size: var(--font-size-primary);
  font-weight: var(--font-weight-medium);
  font-family: "Barlow", sans-serif;
}
.search input[type="text"]::placeholder {
  color: var(--color-primary);
  font-size: var(--font-size-primary);
  font-weight: var(--font-weight-medium);
  font-family: "Barlow", sans-serif;
}
.search input[type="submit"] {
  width: 40px;
  background-color: none;
  border: none;
  background: url(../images/search.svg) no-repeat left center;
}
.list-group.liveresult.live {
  background: #f8f7fc;
  position: relative;
  z-index: 999;
  border-radius: 20px;
  margin-top: 7px;
  box-shadow: var(--box-shadow);
}
a.list-group-item {
  width: 100%;
  text-align: left;
  padding-left: 10px;
  padding-top: 7px;
  padding-bottom: 7px;
  display: flex;
  align-items: center;
}
a.list-group-item span {
  margin-left: 10px;
  font-size: 14px;
  color: var(--color-primary);
}
.top-games {
  width: 160px;
  height: 56px;
  background: var(--bg-soft);
  border-radius: var(--box-xlarge);
}
.top-games i {
  width: 56px;
  height: 56px;
  position: relative;
  border-radius: var(--box-xxlarge);
  background: var(--bg-purple);
  font-style: normal;
}
.top-games i .number {
  width: 22px;
  height: 22px;
  position: absolute;
  top: -5px;
  right: -2px;
  color: var(--color-white);
  font-size: var(--font-size-xxs);
  font-weight: var(--font-weight-medium);
  border-radius: var(--box-xxlarge);
  box-shadow: var(--box-shadow);
  background: var(--bg-yellow);
}
.top-games > a {
  display: block;
  height: 50px;
  color: var(--color-primary);
  font-size: var(--font-size-primary);
  font-weight: var(--font-weight-medium);
}
.category-btn {
  width: 56px;
  height: 56px;
  background: var(--bg-yellow);
  border-radius: var(--box-medium);
  border: 0px;
}
.category-dropdown {
  position: relative;
  display: inline-block;
}
.category-list-section {
  display: none;
  position: absolute;
  right: 0;
  z-index: 1;
}
.category-list {
  background-color: var(--bg-white);
  min-width: 375px;
  box-shadow: var(--box-shadow);
  border-radius: var(--box-medium);
}
.category-list > ul > li {
  padding-bottom: 8px;
  margin-bottom: 8px;
  width: 48%;
  display: inline-block;
}
.category-list > ul > li:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.category-list > ul > li > a {
  color: var(--color-primary);
  font-size: var(--font-size-primary);
  font-weight: var(--font-weight-medium);
  transition: 0.3s;
}
.category-list > ul > li > a:hover {
}
.category-list > ul > li > a i {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  font-size: var(--font-size-primary);
  font-weight: var(--font-weight-medium);
  border-radius: var(--box-xxlarge);
}
.category-list > ul > li > a i img{
  width: 30px;
  height: 30px;
}
.category-list > ul > li > a span {
  font-size: var(--font-size-xsmall);
  text-align: left;
}
.category-list > a:hover {
  background-color: #f1f1f1;
}
.category-dropdown:hover .category-list-section {
  display: block;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-container {
  display: grid;
  grid-template-columns: 85% 15%;
  width: 100%;
}
.title span {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-medium);
}
.title a {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  text-decoration: underline;
}
.title a:hover {
  text-decoration: none;
}
.best-scrool {
  width: 100%;
  overflow: auto;
}
.best-games-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  width: 100%;
  gap: 16px;
  grid-auto-rows: auto;
  grid-auto-flow: dense;
}
.best-game a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  box-shadow: var(--box-shadow);
  border-radius: var(--box-shadow);
}
.best-game a img {
  width: 100%;
  border-radius: var(--box-primary);
  box-shadow: var(--box-shadow);
}
.best-game a .overlay {
  width: 100%;
  min-height: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  background: rgb(54, 29, 43);
  background: linear-gradient(
          0deg,
          rgba(54, 29, 43, 1) 21%,
          rgba(255, 255, 255, 0) 100%
  );
  border-radius: 0px 0px var(--box-primary) var(--box-primary);
  transition: 0.3s;
}
.best-game:hover .overlay {
  padding-bottom: 20px !important;
  transition: 0.3s;
}
.best-game a .overlay span {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
}
.best-game a .overlay p {
  font-size: var(--font-size-xsmall);
  color: var(--color-white);
}
.game-hit {

  height: 25px;
  position: absolute;
  right: 6px;
  top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-white);
  border-radius: var(--box-xlarge);
  box-shadow: var(--box-shadow);
}
.game-hit img {
  width: 15px !important;
}
.game-hit p {
  font-size: var(--font-size-xxxxs);
  color: var(--color-primary);
}
.games {
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  width: 100%;
  gap: 16px;
  grid-auto-rows: auto;
  grid-auto-flow: dense;
}
.games .game  {
  box-shadow: var(--box-medium);
}
.games .game a {
  width: 178px;
  height: 140px;
  display: block;
  position: relative;
  box-shadow: var(--box-shadow);
  border-radius: var(--box-medium);
}
.games .game a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--box-primary);
  box-shadow: var(--box-shadow);
}
.games .game a .game-title {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000c2;
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-size-primary);
  font-weight: var(--font-weight-medium);
  border-radius: var(--box-medium);
  transition: all 0.5s;
  display: none;
  padding: 15px;
}
.games .game:hover .game-title {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.games.game-left, .games.game-right {
  display: block;
}
.games.game-left .game, .games.game-right .game {
  margin-bottom: 10px!important;
}
.games .game-lg:hover .game-title {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.games .game-vertical:hover .game-title {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.games .game-lg {
  width: 372px;
  height: 296px;
  grid-column: span 2;
  grid-row: span 2;
}
.games .game-lg a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.games .game-lg a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--box-primary);
  box-shadow: var(--box-shadow);
}
.games .game-lg a .game-title {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000c2;
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-size-primary);
  font-weight: var(--font-weight-medium);
  border-radius: var(--box-medium);
  transition: 0.3s;
  display: none;
}
.games .game-vertical {
  width: 178px;
  height: 296px;
  grid-column: span 1;
  grid-row: span 2;
}
.games .game-vertical a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.games .game-vertical a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--box-primary);
  box-shadow: var(--box-shadow);
}
.games .game-vertical a .game-title {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000c2;
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-size-primary);
  font-weight: var(--font-weight-medium);
  border-radius: var(--box-medium);
  transition: 0.3s;
  display: none;
  padding: 30px;
}
.horizontal-games a {
  width: 100%;
  height: 85px;
  background: var(--bg-yellow);
  border-radius: var(--box-primary);
  display: flex;
  align-items: center;
  box-shadow: var(--box-shadow);
  transition: 0.3s;
}
.horizontal-games a:hover {
  background: var(--bg-dark-yellow);
  transition: 0.3s;
}
.horizontal-games a img {
  width: 70px;
  height: 70px;
  border-radius: var(--box-primary);
  object-fit: cover;
}
.horizontal-games a span p {
  font-size: var(--font-size-small);
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
}
.horizontal-games a span .games-category {
  width: 120px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-xxxs);
  color: var(--color-primary);
  border-radius: var(--box-xlarge);
  background: var(--bg-white);
  text-align: center;
  padding: 0 10px;
}
footer {
  background: var(--bg-purple);
  border-radius: var(--box-medium);
  display: flex;
  align-items: center;
}
footer .footer-menu > ul > li,
footer .social > ul > li {
  display: inline-block;
}
footer .footer-menu > ul > li > a {
  display: block;
  font-size: var(--font-size-small);
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
  padding-left: 15px;
}
footer .info {
  font-size: var(--font-size-small);
  color: var(--bg-white);
  font-weight: var(--font-weight-medium);
}
footer .footer-menu > ul > li > a:hover {
  text-decoration: underline;
}
footer .social > ul > li > a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-small);
  background: var(--bg-white);
  font-weight: var(--font-weight-medium);
  border-radius: var(--box-xxlarge);
  transition: 0.3s;
}
footer .social > ul > li > a:hover {
  background: var(--bg-yellow);
  transition: 0.3s;
}
.breadcrumb-item {
  display: -ms-flexbox;
  display: flex;
  font-size: var(--font-size-small);
}
.breadcrumb-item a {
  display: -ms-flexbox;
  display: flex;
  font-size: var(--font-size-small);
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
}
.breadcrumb-item.active {
  color: var(--bg-purple);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
}
.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  padding: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: var(--color-primary);
  content: "/";
  font-size: 15px;
}
.transition-row {
  display: grid;
  grid-template-columns: 78% 22%;
  width: 100%;
  gap:20px;
}
.games-content p {
  font-size: var(--font-size-small);
}
.middle .horizontal-games {
  width: 280px;
  display: inline-block;
}
.play {
  width: 222px;
  height: 184px;

}
.play a {
  width: 222px;
  height: 184px;
  display: block;
  position: relative;
}
.play a img {
  width: 222px;
  height: 184px;
  object-fit: cover;
  border-radius: var(--box-medium);
}
.play a .play-overlay {
  width: 222px;
  height: 184px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--box-medium);
}
.play a .play-overlay img {
  width: 70px;
  height: 70px;
}
.play-row {
  display: grid;
  grid-template-columns: 10% 72% 18%;
  width: 100%;
}
.play-row .play-section {
  display: grid;
  grid-template-columns: 14% 72% 14%;
  width: 100%;
}
.play-box img {
  width: 100%;
}
.paging {
  margin: 0 auto;
}
.paging > ul > li {
  display: inline-block;
  margin-right: 5px;
}
.paging > ul > li:last-child {
  margin-right: 0px;
}
.paging > ul > li > a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  background: var(--bg-gray);
  border-radius: var(--box-xxlarge);
  transition: 0.5s;
}
.paging > ul > li > a:hover {
  color: var(--color-white);
  background: var(--bg-purple);
  transition: 0.5s;
}
.text-right {
  text-align: right !important;
}
.adv {
  width: 100%;
  display: block!important;
}
.adv img {
  width: 100%;
}
.border-bottom {
  border-bottom: 1px solid var(--border-category);
}
.bg-white {
  background: var(--bg-white);
}
.bg-red {
  background: red;
}
.bg-blue {
  background: blue;
}
.d-inline-block {
  display: inline-block !important;
}
.text-center {
  text-align: center !important;
}
.border-right {
  border-right: 1px solid var(--border-center-color);
}
.border-radius {
  border-radius: var(--box-large);
}
.bg-soft {
  background: var(--bg-soft);
}
.blue {
  background: var(--bg-blue);
}
.pink {
  background: var(--bg-pink);
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mr-3 {
  margin-right: 1rem !important;
}
.mr-4 {
  margin-right: 1.5rem !important;
}
.mr-5 {
  margin-right: 3rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.ml-3 {
  margin-left: 1rem !important;
}
.mb-2 {
  margin-bottom: 0.55rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.mt-1 {
  padding-top: 0.25rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pb-3 {
  padding-top: 1rem !important;
}
.pr-2 {
  padding-right: 0.5rem !important;
}
.pr-3 {
  padding-right: 1rem !important;
}
.pr-3 {
  padding-right: 1rem !important;
}
.pl-3 {
  padding-left: 1rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.left0 {
  left: 0 !important;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
#searching {
  opacity: 0;
  position: fixed;
  bottom: 100%;
  width: 0%;
  height: 0%;
  left: 50%;
  margin-left: 0%;
  z-index: 9999;
  border-radius: 100%;
  overflow: hidden;
  -webkit-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  -ms-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}
#searching.active {
  opacity: 1;
  bottom: 0%;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  border-radius: 0;
  margin-left: 0;
}
#searchThis {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 55px;
  background-color: var(--bg-purple);
  border-radius: 1px;
  z-index: 20000;
}
#searchThis input {
  width: calc(100% - 23px);
  height: 40px;
  padding-left: 10px;
  margin-top: 10px;
  border: none;
  outline: 0;
  background-color: var(--bg-purple);
  color: var(--color-white);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  font-family: "Barlow", sans-serif;
}
#searchThis input[type="text"]::placeholder {
  color: var(--color-white);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
}
#closeSearch {
  position: absolute;
  top: 0;
  right: 0;
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  cursor: pointer;
  background: var(--bg-soft);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
}
#searchResults {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  height: calc(100% - 55px);
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: scroll;
}
#searchResults a {
  display: block;
  background-color: #fff;
  padding: 6px 15px;
  text-decoration: none;
  font-size: 1.1em;
  color: #333;
}
.link {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: var(--bg-soft);
  border-radius: var(--box-xxlarge);
  display: none;
}
.nav {
  display: none;
  margin: 0;
  padding: 0;
}
.nav li {
  display: inline-block;
  list-style: none;
  border-bottom: 1px solid #99617b;
}
.nav li:last-child {
  border-bottom: 0px;
}
.nav .button-dropdown {
  position: relative;
  margin-top: 11px;
}
.nav li a {
  display: block;
  font-size: var(--font-size-small);
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  text-decoration: underline;
}
.nav li a span {
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  color: #999;
}
.nav li a:hover span,
.nav li a.dropdown-toggle.active span {
  color: var(--color-white);
}
.nav li .dropdown-menu {
  width: 150px;
  display: none;
  position: absolute;
  left: -109px;
  padding: 0;
  margin: 0;
  margin-top: 11px;
  text-align: left;
  background: var(--bg-purple);
  -webkit-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  -ms-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
  border-radius: 0 0 var(--box-primary) var(--box-primary);
  padding: 10px 0px;
  box-shadow: var(--box-shadow);
}
.nav li .dropdown-menu.active {
  display: block;
}
.nav li .dropdown-menu a {
  width: 150px;
  font-size: var(--font-size-xsmall);
  color: var(--color-white);
  padding-left: 10px;
  padding-bottom: 5px;
  padding-top: 5px;
  text-decoration: none;
}
.mt-dropdown {
  margin-top: 22px !important;
}
.like a {
  width: 38px;
  height: 38px;
  background: var(--bg-green);
  border-radius: var(--box-xxlarge);
  font-size: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.like span,
.dislike span {
  font-size: var(--font-size-medium);
}
.dislike a {
  width: 38px;
  height: 38px;
  background: var(--bg-purple);
  border-radius: var(--box-xxlarge);
  font-size: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.full-screen a {
  width: 38px;
  height: 38px;
  background: var(--bg-soft-pink);
  border-radius: var(--box-xxlarge);
}
.code a {
  width: 38px;
  height: 38px;
  background: var(--bg-yellow);
  border-radius: var(--box-xxlarge);
}
.panel-wrapper {
  position: relative;
}
.btn {
  color: #fff;
  background: #000;
  border-radius: var(--box-primary);
  right: 10px;
  bottom: 0px;
  padding: 11px 13px;
  text-decoration: none;
  font-size: var(--font-size-small);
  background: var(--bg-purple);
  box-shadow: var(--box-shadow);
}
.show, .hide {
  position: absolute;
  bottom: -1em;
  z-index: 100;
  text-align: center;
}
.hide {
  display: none;
}
.show:target {
  display: none;
}
.show:target ~ .hide {
  display: block;
}
.show:target ~ .panel {
  max-height: 3000px;
}
.show:target ~ .fade {
  margin-top: 0;
}
.panel {
  position: relative;
  margin: 2em auto;
  width: 100%;

  overflow: hidden;
}
.fade {
  height: 100px;
  margin-top: -100px;
  position: relative;
}
#game-container {
  min-width: 800px;
  position: relative;
  z-index: 10;
}
.game-embed{
  height: 450px;
  width: 800px;
}

.left-header{
  width: 75%;
  height: 40px;
  padding:15px;
  position: absolute;
  left:-75%;
  top:10vh;
  z-index: 1;
}
.left-header.opened{
  left:0;
}
.left-box{
  background-color: #2c3e50;
  display:flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
}
.left-opener{
  right: -38px;
  top:50%;
  transform:translateY(-50%);
  height: 40px;
  line-height:30px;
  text-align: center;
  width: 37px;
  position: absolute;
  background-color: var(--bg-purple);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.left-header div:first-child{
  width: 100%;
  display:flex;
  justify-content: space-between;
}
.left-header div:first-child a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  /* padding:5px 10px; */
  font-size:13px;
  color: #fff;
  text-align: center;
  background: var(--bg-soft-pink);
  font-weight: 600;
}

.left-header div:first-child a:last-child{
  background-color: var(--bg-yellow);
  color: #fff;
}
#mys-wrapper {
  display:inherit!important;
}
h2{
  padding: 10px;
}
.games1366{
  display: none;
}
.left-side {
  text-align: center;
}