body {
  color: #dedddd;
}

#menu-primary-menu .sub-menu {
  position: absolute;
  background-color: white;
  padding-left: 0px;
  padding: 1em 10px;
  top: 32px;
}
#menu-primary-menu .sub-menu li {
  margin: 1em 0;
}
#menu-primary-menu .sub-menu a {
  font-size: 1em;
}

.article_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 3em;
       column-gap: 3em;
}
@media (max-width: 1100px) {
  .article_grid {
    grid-template-columns: 1fr;
    row-gap: 2em;
  }
}

.single_article {
  text-align: center;
}

.text_center {
  text-align: center;
}

.post-thumbnail {
  padding-top: 100%;
  border-radius: 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.post-title {
  margin-top: 1em;
}

.post-title a {
  color: black;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
}

.post-title a:hover {
  text-decoration: underline;
}

.core-item .item-img {
  text-align: center;
  margin-top: 2em;
}

.articles_wrap {
  margin: 5rem 0;
}

.game_name {
  text-transform: capitalize;
}

.menu_container {
  justify-content: center;
}

/* =============== FOOTER STYLES ============== */
.footer_styles {
  margin-top: 5em;
  background-color: #2a3134;
  border-top: 5px solid #d04b59;
}

.footer_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2em 0;
}

.footer-menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  padding-left: 0;
}
@media (max-width: 1100px) {
  .footer-menu ul {
    flex-direction: column;
  }
}
.footer-menu li {
  margin: 0px 10px;
}
@media (max-width: 1100px) {
  .footer-menu li {
    text-align: center;
    margin: 10px;
  }
}
.footer-menu li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #060659;
}

@media (max-width: 1100px) {
  .rights {
    text-align: center;
  }
}

.customMenu {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #060659;
  width: 100%;
  height: 100vh;
  z-index: 99;
}

#menuClose {
  display: inline-block;
  transform: rotate(45deg);
  font-size: 2.5em;
  color: white;
  margin-left: 1em;
  margin-top: 1em;
}

.mobile_menu:hover .customMenu {
  display: block;
}

.menu-mobile-wrap ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.menu-mobile-wrap ul li {
  margin-bottom: 1em;
}
.menu-mobile-wrap ul li a {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 22px;
}
.menu-mobile-wrap ul .sub-menu {
  display: none;
}

.wide_card {
  border: 2px solid #ebac56;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 30px;
  background-color: #dedddd;
  color: #2a3134;
}
@media (max-width: 1100px) {
  .wide_card {
    padding: 10px;
  }
}
.wide_card .playBtn {
  width: 100%;
  background-color: #ebac56;
  border-radius: 10px;
  color: white;
  text-align: center;
  padding: 7px;
  margin-bottom: 20px;
}
.wide_card .actual-bonus {
  padding: 10px 0px;
  text-align: left;
  font-size: 25px;
  margin-bottom: 10px;
}
.wide_card .specs_single {
  display: flex;
  flex-direction: row;
  margin-bottom: 5px;
}
@media (max-width: 1100px) {
  .wide_card .specs_single {
    flex-direction: column;
  }
}
.wide_card .spec_title {
  width: 450px;
}

@media (max-width: 1100px) {
  .withdrawals {
    margin-bottom: 10px;
  }
}

.logoAndName {
  margin-left: 30px;
}

.logoAndNum {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.logoAndNum .num {
  font-size: 70px;
  font-style: italic;
}

.inner_wrapper {
  display: flex;
  flex-direction: row;
}
@media (max-width: 1100px) {
  .inner_wrapper {
    flex-direction: column;
  }
}
.inner_wrapper .divider {
  width: 50%;
}
@media (max-width: 1100px) {
  .inner_wrapper .divider {
    width: 100%;
  }
}
.inner_wrapper .info {
  padding-right: 5em;
}
@media (max-width: 1100px) {
  .inner_wrapper .info {
    padding-right: 0;
  }
}
.inner_wrapper .license {
  margin: 10px 0px;
}

.totalRating {
  margin-top: 20px;
}
.totalRating .rating-bar-outer {
  margin-top: 10px;
}

.game-icon {
  display: flex;
  align-items: center;
  margin: 10px;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .game-icon {
    width: 40%;
  }
}

.game-icon img {
  width: 32px; /* Adjust the size as needed */
  margin-right: 10px; /* Space between the icon and the text */
}

.game-icon:hover::after {
  content: attr(data-title);
  position: absolute;
  margin-top: 5px;
  background-color: #000;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap; /* Ensure the title doesn't wrap */
}

.wide_card_games_div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 1100px) {
  .wide_card_games_div {
    flex-wrap: wrap;
  }
}

.rankingTable {
  width: 100%;
  text-align: center;
  border-collapse: collapse; /* This makes the border appear as a single line */
}
@media (max-width: 1100px) {
  .rankingTable {
    font-size: 14px;
  }
}
.rankingTable td {
  border-top: 1px solid #dedddd; /* Adds a solid black border */
  border-bottom: 1px solid #dedddd;
  padding: 10px 5px;
}
.rankingTable .barWidth {
  min-width: 150px;
}
@media (max-width: 1100px) {
  .rankingTable .barWidth {
    min-width: 80px;
  }
}

.rating-bar-outer {
  width: 100%;
  background-color: #eee;
  height: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.rating-bar-inner {
  height: 100%;
  background-color: #d04b59;
  width: 0%; /* Initial width set to 0 */
  border-radius: 5px;
  transition: width 2s ease-out;
}

.bestByOther {
  max-width: 100%;
  overflow: auto;
}

.read_review {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-section {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-width: 400px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.author-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.author-text {
  margin: 0;
  line-height: 1.5;
}/*# sourceMappingURL=custom.css.map */