html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, address, big, blockquote, cite, code,
del, dfn, em, img, ins, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li, form, label, input, fieldset, legend, caption,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, main, nav, output, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: none;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

ol, ul, nav, menu {
  list-style: none;
}

img, video, canvas {
  max-width: 100%;
  height: auto;
}

img {
  vertical-align: bottom;
}

a, button {
  cursor: pointer;
  margin: 0;
  padding: 0;
}

a:hover, button:hover {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
  vertical-align: middle;
}

iframe {
  width: 100%;
}

/* =========================== all */
:root {
  --main-color:#FF0000;
  --btn-visit-hover: #D70000;
  --link-hover:#B70101;
  --breadcrumbs-link: rgba(51, 51, 51,.5);
  --breadcrumbs-link-hover: #333333;
  --border-card-first:#D70304;
  --bonus:#171616;
}

body {
  font-family: "Inter Variable", sans-serif;
  color: #333333;
  background: #fff;
  line-height: 1.5;
}

.body_scroll {
  overflow: hidden;
}

/* heading */
.h1, .h2, .h3, .h4 {
  font-weight: 700;
  color: #171616;
}
.h1 a, .h2 a, .h3 a, .h4 a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1 {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .h1 {
    font-size: 30px;
    line-height: 38px;
  }
}

.h2 {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 20px;
}

.h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}

.h4 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 15px;
}

.h5 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 15px;
}

.section {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .section {
    margin-bottom: 40px;
  }
}

/* content */
a, p, ol:not([class]) li, ul:not([class]) li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

p {
  margin-bottom: 20px;
}

.text p:last-child {
  margin-bottom: 0;
}

a:not([class]) {
  text-decoration: underline;
  color: var(--main-color);
}
a:not([class]):hover {
  color: var(--link-hover);
}

b, strong {
  font-weight: bold;
}

i, em {
  font-style: italic;
}

/* flexbox */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* gridbox */
.gridbox {
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* list */
ol:not([class]), ul:not([class]), .list-number {
  margin-bottom: 20px;
}
ol:not([class]) li, ul:not([class]) li, .list-number li {
  display: table;
  position: relative;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  padding-left: 45px;
}
ol:not([class]) li a, ul:not([class]) li a, .list-number li a {
  font-weight: 600;
  font-size: inherit;
  line-height: inherit;
}
ol:not([class]) li b, ul:not([class]) li b, .list-number li b {
  font-weight: 600;
}
ol:not([class]) li::before, ul:not([class]) li::before, .list-number li::before {
  left: 0;
  top: 2px;
}
ol:not([class]) li:not(:last-child), ul:not([class]) li:not(:last-child), .list-number li:not(:last-child) {
  margin-bottom: 12px;
}

table ol:not([class]) li, table ul:not([class]) li, .table ol:not([class]) li, .table ul:not([class]) li {
  display: block;
}

ol:not([class]), .list-number {
  counter-reset: number;
}
ol:not([class]) li::before, .list-number li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
}

.list-number {
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
  padding: 15px 0;
}

ul:not([class]) li::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--check-red-icon");
}

.list-minus li {
  position: relative;
  font-weight: 500;
  padding-left: 22px;
}
.list-minus li:not(:last-child) {
  margin-bottom: 10px;
}
.list-minus li::before {
  position: absolute;
  content: "-";
  left: 0;
  top: calc(50% - 8px);
  font-size: 22px;
  font-weight: 700;
  line-height: 16px;
  color: #D70304;
}

.check-list li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 23px;
}
.check-list li:not(:last-child) {
  margin-bottom: 12px;
}
.check-list li::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--check-icon");
  left: 0;
  top: 5px;
}

.not-list li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 23px;
}
.not-list li:not(:last-child) {
  margin-bottom: 12px;
}
.not-list li::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--close-icon");
  left: 0;
  top: 5px;
}

summary {
  list-style: none;
}
summary::marker {
  display: none;
}
summary::-webkit-details-marker {
  display: none;
  color: transparent;
}

/* img */
img {
  display: block;
  margin: 0 auto;
}

figure {
  margin-bottom: 20px;
}

/* transition: paint/composited props only. transition:all on * animated layout
   props of every element (hundreds of non-composited animations -> INP/SI hit) */
* {
  -webkit-transition: color 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s, fill 0.3s, -webkit-transform 0.3s;
  -o-transition: color 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s, fill 0.3s, transform 0.3s;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s, fill 0.3s, transform 0.3s;
}

/* btn */
.btn {
  display: inline-block;
  border-radius: 5px;
  cursor: poInter Variable;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-visit {
  background: var(--main-color);
  width: 250px;
  height: 44px;
  line-height: 44px;
}
.btn-visit span {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-right: 18px;
}
.btn-visit span::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 15px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--arrow-white");
  right: 0;
  top: calc(50% - 7.5px);
}
.btn-visit_long {
  display: block;
  width: 269px;
  margin: 0 auto;
}
.btn-visit:hover {
  background: var(--btn-visit-hover);
}
.btn-visit:hover span {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .btn-visit_long {
    width: 100%;
  }
}

.btn_dark {
  width: 300px;
  height: 44px;
  line-height: 44px;
  color: #fff;
  background: #100E0E;
}
.btn_dark:hover {
  background: #333333;
}

/* breadcrumbs */
.breadcrumbs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: center;
  align-content: center;
  margin-bottom: 15px;
}
.breadcrumbs__item, .breadcrumbs-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.breadcrumbs__item {
  color: var(--breadcrumbs-link-hover);
}
.breadcrumbs__item:not(:last-child) {
  margin-right: 20px;
}
.breadcrumbs-link {
  position: relative;
  text-decoration: none;
  color: var(--breadcrumbs-link);
}
.breadcrumbs-link:hover {
  color: var(--breadcrumbs-link-hover);
  text-decoration: underline;
}
.breadcrumbs-link::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 8px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--breadcrumbs");
  top: 4px;
  right: -12px;
}

/* soc */
.soc {
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.soc-link {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #EDEDED;
}
.soc-link svg {
  fill: #100E0E;
}
.soc-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.soc-link:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}
.soc-link:hover svg {
  fill: #fff;
}

/* rating */
.rating {
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.rating-list {
  margin: 0 auto;
  width: 83px;
  height: 14px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--stars");
}
.rating-total {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: #171616;
  margin-bottom: 8px;
}
.rating-total-span {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}

/* block */
.overly {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.blockquote {
  position: relative;
  background: #F5F6F8;
  border-radius: 10px;
  padding: 30px 35px;
  padding-top: 76px;
  margin-bottom: 25px;
}
.blockquote p {
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #171616;
}
.blockquote p:last-child {
  margin-bottom: 0;
}
.blockquote::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--quote-icon");
  top: 30px;
  left: 35px;
}

.side {
  margin-bottom: 20px;
}
.side-block {
  gap: 20px;
  margin-bottom: 25px;
}
.side__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 5px;
  padding: 20px;
}
.side .pros {
  background: #E7FAEE;
}
.side .cons {
  background: #FFE6E6;
}
.side-header {
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.side-header p {
  margin-bottom: 0;
}
.side-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #171616;
  margin-bottom: 10px;
}
.side .check-list li, .side .not-list li {
  font-weight: 500;
}
.side .btn {
  display: block;
  width: 420px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .side__item {
    min-width: 100%;
  }
  .side .btn {
    width: 100%;
  }
}

/* scroll */
.scroll {
  overflow: auto;
  -ms-scroll-chaining: none;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin;
  scrollbar-color: #DCDFE9 transparent;
}

.scroll::-webkit-scrollbar {
  width: 4px;
  height: 50%;
}

.scroll::-webkit-scrollbar-track {
  background-color: transparent;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #DCDFE9;
  border-radius: 5px;
}

.scroll::-webkit-scrollbar-thumb:hover {
  background-color: #DCDFE9;
}

.scroll::-webkit-scrollbar-thumb:active {
  background-color: #DCDFE9;
}

.scroll::-webkit-scrollbar-thumb:vertical {
  min-height: 50%;
}

.scroll::-webkit-scrollbar-thumb:horizontal {
  min-width: 4px;
}

/* table */
.table_scroll {
  margin-bottom: 20px;
}
.table_scroll table {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .table_scroll {
    width: calc(100% + 20px);
    margin-right: -20px;
  }
  .table_scroll table {
    width: auto;
  }
}

table {
  border-radius: 5px;
  border: 1px solid #EDEDED;
  border-collapse: separate;
  background: #fff;
  overflow: hidden;
  margin-bottom: 20px;
}
table tr:not(:last-child) td {
  border-bottom: 1px solid #EDEDED;
}
table th, table td {
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  font-size: 15px;
  line-height: 23px;
  padding: 15px;
}
table th {
  background: #F5F6F8;
  font-weight: 600;
  color: #100E0E;
}
table td {
  font-weight: 500;
  color: #333333;
}
table a {
  font-weight: 500;
  font-size: 15px;
  color: var(--link);
  white-space: nowrap;
}
table a:hover {
  color: var(--link-hover);
}
table b {
  font-weight: 500;
  color: #171616;
}
table .img {
  display: block;
  width: 155px;
  height: 54px;
}
table .img img {
  width: 155px;
  height: 54px;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
}
table .td-bonus {
  min-width: 240px;
}
table .btn {
  width: 167px;
  color: #fff;
}
table .btn:hover {
  color: #fff;
}

/* form */
.form-sbscrb {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px 30px;
}
.form-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--bonus);
  margin-bottom: 10px;
}
.form-group {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.form-input {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 44px;
}
.form-input::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--mail-icon-dark");
  left: 12px;
  top: calc(50% - 7px);
}
.form input {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 44px;
  line-height: 42px;
  border: none;
  background: #F8F8F8;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  color: #151414;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 34px;
}
@media screen and (max-width: 1100px) {
  .form-title, .form-group {
    min-width: 100%;
    max-width: 100%;
  }
  .form-title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 570px) {
  .form-input {
    min-width: 100%;
    max-width: 100%;
  }
  .form .btn {
    width: 100%;
  }
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #333333;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #333333;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #333333;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #333333;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}

input::placeholder, textarea::placeholder {
  color: #333333;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #333333;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #333333;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #333333;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #333333;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}
input:valid, textarea:valid {
  border-color: #94CF00;
}

button {
  display: inline-block;
  cursor: poInter Variable;
  font-family: "Inter Variable";
}

input::-webkit-input-placeholder {
  color: #5C5C5C;
  opacity: 1;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}

input::-moz-placeholder {
  color: #5C5C5C;
  opacity: 1;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}

input:-ms-input-placeholder {
  color: #5C5C5C;
  opacity: 1;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}

input::-ms-input-placeholder {
  color: #5C5C5C;
  opacity: 1;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}

input::placeholder {
  color: #5C5C5C;
  opacity: 1;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}
input::-webkit-input-placeholder {
  color: #5C5C5C;
  opacity: 1;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}
input:-moz-placeholder {
  color: #5C5C5C;
  opacity: 1;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}
input::-moz-placeholder {
  color: #5C5C5C;
  opacity: 1;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}
input:-ms-input-placeholder {
  color: #5C5C5C;
  opacity: 1;
  font-family: "Inter Variable";
  font-size: 14px;
  font-weight: 400;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}

/* container */
.container {
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}

main {
  padding: 95px 0 60px;
}
@media screen and (max-width: 768px) {
  main {
    padding: 95px 0 40px;
  }
}

/*content */
.main {
  width: 100%;
  margin-bottom: 40px;
}
.main .section:last-child {
  margin-bottom: 0;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 101;
  border-bottom: 1px solid #EDEDED;
  background: #fff;
  padding: 13px 0;
}
.header .container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.header-bonus {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 5px;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid var(--main-color);
  padding: 8px;
  margin-left: auto;
}
.header-bonus::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--bonus-icon");
  top: -5px;
  left: -5px;
}
.header-bonus img {
  width: 54px;
  height: 36px;
  border-radius: 3px;
}
.header-bonus-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 120px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  line-height: 17px;
  color: var(--bonus);
  text-transform: uppercase;
}
@media screen and (min-width: 1100px) {
  .header .soc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1100px) {
  .header {
    padding: 16px 0;
  }
  .header .soc {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .header .container {
    gap: 20px;
  }
  .header-bonus::before {
    top: -5px;
    left: auto;
    right: -5px;
  }
  .header-bonus img, .header-bonus picture {
    display: none;
  }
  .header-bonus-text {
    text-align: center;
    max-width: 72px;
  }
  .header-bonus-text_hidden {
    display: none;
  }
}

/* menu */
@media screen and (min-width: 1100px) {
  .navigation {
    overflow: visible;
  }
}
@media screen and (max-width: 1100px) {
  .navigation {
    position: fixed;
    top: 86px;
    bottom: 0;
    right: 0;
    background: #fff;
    width: 0;
    padding: 25px 0;
  }
  .navigation.open {
    width: 360px;
    padding: 25px 20px;
  }
}

.menu {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 25px;
}
.menu-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #171616;
}
@media screen and (min-width: 1100px) {
  .menu-btn {
    display: none;
  }
  .menu-arr {
    position: relative;
  }
  .menu-arr .menu-link {
    position: relative;
    padding-right: 17px;
  }
  .menu-arr .menu-link::before {
    position: absolute;
    content: "";
    width: 13px;
    height: 8px;
    background: center center/cover no-repeat;
    background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--arrow-dark");
    right: 0;
    top: calc(50% - 4px);
    -webkit-transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
  }
  .menu-arr:hover .menu-link::before {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .menu-arr:hover .downmenu {
    max-height: 1000px;
    overflow: visible;
  }
}
@media screen and (max-width: 1100px) {
  .menu {
    display: block;
    margin-bottom: 30px;
  }
  .menu-btn {
    display: block;
    position: relative;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-left: auto;
  }
  .menu-btn::before {
    position: absolute;
    content: "";
    width: 13px;
    height: 8px;
    background: center center/cover no-repeat;
    background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--arrow-dark");
    left: calc(50% - 6.5px);
    top: calc(50% - 4px);
    -webkit-transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
  }
  .menu-arr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu-arr.open .downmenu {
    max-height: 1000px;
    overflow: visible;
    padding-top: 20px;
  }
  .menu-arr.open .menu-btn::before {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .menu__item:not(:last-child) {
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.downmenu {
  max-height: 0;
  overflow: hidden;
  /* slide-open effect previously provided by global transition:all */
  -webkit-transition: max-height 0.3s, padding-top 0.3s;
  -o-transition: max-height 0.3s, padding-top 0.3s;
  transition: max-height 0.3s, padding-top 0.3s;
}
@media screen and (min-width: 1100px) {
  .downmenu {
    position: absolute;
    left: calc(50% - 100px);
    z-index: 1;
    top: 34px;
  }
}
@media screen and (max-width: 1100px) {
  .downmenu {
    min-width: 100%;
  }
}

.submenu {
  margin-bottom: 0;
  margin-left: 0;
}
.submenu__item:not(:last-child) {
  margin-bottom: 0;
}
.submenu-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
@media screen and (min-width: 1100px) {
  .submenu {
    width: 200px;
    background: #F5F6F8;
    border-radius: 5px;
    padding: 10px;
  }
  .submenu-link {
    display: block;
    position: relative;
    border-radius: 4px;
    color: #171616;
    padding: 8px 10px;
  }
  .submenu-link:hover {
    background: #E6E7EA;
  }
}
@media screen and (max-width: 1100px) {
  .submenu__item:not(:last-child) {
    margin-bottom: 15px;
  }
  .submenu-link {
    color: #333333;
  }
}

/* hamburger */
.hamburger {
  width: 24px;
  height: 20px;
  text-align: center;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
@media screen and (min-width: 1100px) {
  .hamburger {
    display: none;
  }
}

.hamburger:hover, .hamburger.is_active:hover {
  opacity: 0.7;
}

.hamburger.is_active .hamburger-box {
  width: 24px;
}

.hamburger.is_active .hamburger-inner {
  background-color: #333333;
}

.hamburger.is_active .hamburger-inner::before,
.hamburger.is_active .hamburger-inner::after {
  background-color: #333333;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 20px;
}

.hamburger-inner {
  display: block;
  top: calc(50% - 1px);
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1.5px;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.hamburger-inner {
  background-color: #333333;
}

.hamburger-inner::before, .hamburger-inner::after {
  background-color: #333333;
  right: 0;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  width: 24px;
  top: 6px;
}

.hamburger-inner::after {
  width: 24px;
  bottom: 6px;
}

.hamburger.is_active .hamburger-inner {
  width: 24px;
  height: 2px;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.is_active .hamburger-inner::before {
  height: 2px;
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger.is_active .hamburger-inner::after {
  height: 2px;
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* promo */
.promo-info {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-bottom: 15px;
}
.promo-last {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px 20px;
}
.promo-last__item {
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.promo-author {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.promo-author-img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
}
.promo-author-name:hover {
  color: var(--link-hover);
}
.promo-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  color: #333333;
}
.promo-descr {
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  color: #100E0E;
}
@media screen and (max-width: 992px) {
  .promo .soc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .promo-last {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .promo-author {
    padding-right: 0;
  }
  .promo-time {
    padding-left: 0;
  }
}

/* card */
.card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 20px 20px 15px;
}
.card:not(:last-child) {
  margin-bottom: 15px;
}
.card.flexbox {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 25px;
}
.card-table {
  display: block;
  border: none;
  margin-bottom: 0;
}
.card-table thead tr.flexbox {
  background: #F5F6F8;
  gap: 20px 15px;
  border-radius: 7px;
  padding: 20px 20px 15px;
  margin-bottom: 15px;
}
.card-table th {
  color: #100E0E;
  background: transparent;
  padding: 0;
}
.card-table th.card-table-rating, .card-table th.card-table-play {
  text-align: center;
}
.card-table tbody {
  counter-reset: number;
}
.card-table tbody .card-table-logo::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  top: -10px;
  left: -10px;
  width: 30px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}
.card--enhanced .card-table-logo::before {
  display: none;
}
.card-table tr:not(:last-child) td {
  border: none;
}
.card-table td {
  padding: 0;
}
.card-table-logo {
  position: relative;
  text-align: center;
  width: 200px;
  max-width: 200px;
  min-width: 200px;
  -ms-flex-item-align: start;
  align-self: start;
}
.card-table-logo img {
  width: 200px;
  height: 90px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 8px;
}
.card-table-bonus {
  max-width: 250px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.card-table-bonus-text {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #171616;
  padding-left: 30px;
  margin-bottom: 0;
}
.card-table-bonus-text::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--diamnod-icon");
  left: 0;
  top: 4px;
}
.card-table-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.card-table-text .check-list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.card-table-text .check-list li:not(:last-child) {
  margin-bottom: 8px;
}
.card-table-text .check-list li::before {
  top: 3px;
}
.card-table-rating {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  text-align: center;
}
.card-table-play {
  max-width: 250px;
  min-width: 250px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.card-table-play .card-link {
  display: inline-block;
  margin-top: 10px;
}
.card-table_bottom {
  min-width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 15px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.card-link {
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  color: #100E0E;
  margin-bottom: 0;
}
.card-link:hover {
  color: var(--link-hover);
}
.card-info {
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  color: #333333;
}
.card-time {
  display: inline-block;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  color: #333333;
  padding-left: 18px;
}
.card-time::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--time-icon");
  left: 0;
  top: calc(50% - 6.5px);
}
.card .btn-visit {
  width: 100%;
  margin-bottom: 10px;
}
.card-list {
  padding: 15px;
}
.card-list__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 12px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 15px;
}
.card-list__item:not(:last-child) {
  margin-bottom: 15px;
}
.card-list img {
  width: 70px;
  min-width: 70px;
  height: 60px;
  border-radius: 5px;
}
.card-list-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
}
.card-list-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  color: #171616;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 5px;
}
.card-list-bonus {
  display: block;
  width: 150px;
  text-align: left;
  margin-bottom: 9px;
}
.card-list-bonus-text {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
  color: #5C5C5C;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 0;
}
.card-list-bonus:hover .card-list-name {
  color: #EC0039;
}
.card-list .rating {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.card-list .rating-list {
  margin: 0;
}
@media screen and (max-width: 992px) {
  .card {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .card-table-play, .card-table-bonus {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .card-table thead {
    display: none;
  }
  .card-table-bonus-text {
    display: inline-block;
    text-align: left;
  }
  .card-table-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
  }
  .card-table-rating .rating-total {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0;
  }
  .card-table-rating .rating-list {
    width: 83px;
    min-width: 83px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .card-table-text {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .card-table-text .check-list {
    display: inline-block;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .card {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 20px;
  }
  .card-table-name-bonus {
    min-width: 100%;
  }
  .card-table-bonus-text {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 450px) {
  .card-table-logo {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .card-table-logo img {
    width: 100%;
  }
  .card-table_bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

.mark {
  position: absolute;
  top: -10px;
  right: -14px;
  display: inline-block;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 11px;
  color: #fff;
  text-transform: uppercase;
  vertical-align: middle;
  padding: 9px 6px;
}
.mark-exc {
  background: var(--main-color);
}
.mark-hot {
  background: #FF8A00;
}

/* faq */
.faq__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
}
.faq {
  counter-reset: number;
  margin-bottom: 20px;
}
.faq__item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.faq__item[open] .text {
  padding-top: 15px;
}
.faq__item[open] .faq-btn::before {
  color: var(--main-color);
}
.faq__item[open] .faq-btn .faq-heading {
  color: var(--main-color);
}
.faq__item[open] .faq-btn svg {
  fill: var(--main-color);
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.faq-btn {
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 4px;
  cursor: pointer;
  padding-left: 38px;
}
.faq-btn::before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: number;
  content: counter(number) ". ";
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #171616;
}
.faq-btn svg {
  width: 14px;
  min-width: 14px;
  margin-left: auto;
}
.faq-heading {
  display: block;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #171616;
}
.faq .text {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

/* footer */
.footer_top {
  background: #252525;
  padding: 40px 0;
}
.footer_top .container {
  gap: 35px 30px;
}
.footer_bottom {
  background: #333333;
  padding: 30px 0 20px;
}
.footer-info {
  width: 380px;
}
.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}
.footer-contact__item {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 26px;
}
.footer-contact__item::before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 8px);
}
.footer-contact__item:not(:last-child) {
  margin-bottom: 10px;
}
.footer-contact-address::before {
  width: 16px;
  height: 16px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--map-icon");
}
.footer-contact-tel::before {
  width: 16px;
  height: 16px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--phone-icon");
}
.footer-contact-mail::before {
  width: 16px;
  height: 16px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--mail-icon");
}
.footer .logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-navigation {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 30px;
}
.footer-navigation__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.footer-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 15px;
}
.footer-list__item:not(:last-child) {
  margin-bottom: 8px;
}
.footer-list-link {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.8);
}
.footer-list-link:hover {
  color: #fff;
}
.footer-copy {
  margin-bottom: 30px;
}
.footer-copy__item {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
}
.footer-copy__item:not(:last-child) {
  margin-bottom: 9px;
}
.footer-copy a:not([class]) {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media screen and (max-width: 768px) {
  .footer-info {
    width: 100%;
    min-width: 100%;
  }
}

.reliable {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .reliable {
    gap: 15px;
  }
  .reliable__item {
    max-width: 86px;
    max-height: 35px;
  }
}

.playment {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3px;
}
.playment__item {
  width: 33px;
  height: 32px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #D7DDE8;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  padding: 3px;
}
.playment__item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* bonus */
.bonus {
  position: fixed;
  z-index: -100;
  inset: 0;
  width: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.bonus-body {
  position: absolute;
  z-index: 101;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: 10px;
  width: 1200px;
  padding: 45px 0;
  padding-right: 5px;
}
.bonus-wrapper {
  padding: 0 50px;
  padding-right: 45px;
}
.bonus-bg {
  position: absolute;
  z-index: 100;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 37, 37, 0.5);
}
.bonus.open {
  z-index: 102;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.bonus .close {
  position: absolute;
  z-index: 10;
  width: 20px;
  height: 20px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--close-icon-black");
  top: 20px;
  right: 20px;
}
.bonus-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  color: var(--bonus);
  margin-bottom: 30px;
}
.bonus-heading img {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin: 0;
}
.bonus .offer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 15px 30px;
  margin-bottom: 30px;
}
.bonus .offer-list .img {
  width: 100%;
  margin-bottom: 8px;
}
.bonus .offer-list .btn {
  width: 100%;
}
.bonus .offer-card {
  display: grid;
  grid-template-columns: subgrid;
  grid-row: span 3;
  grid-gap: 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px;
}
.bonus .offer-name {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  color: #100E0E;
  margin-bottom: 0;
}
.bonus .offer-bonus {
  position: relative;
  max-width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--bonus);
  padding-left: 25px;
}
.bonus .offer-bonus::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--diamnod-icon");
  top: 4px;
  left: 0;
}
@media screen and (max-width: 1240px) {
  .bonus-body {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 1050px) {
  .bonus-body {
    height: 90%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 5%;
    bottom: 5%;
    left: 20px;
  }
  .bonus-wrapper {
    height: 100%;
  }
  .bonus .offer-list {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .bonus-body {
    padding: 20px 0;
    padding-right: 5px;
  }
  .bonus-body .close {
    width: 20px;
    height: 20px;
    background: center center/cover no-repeat;
    background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--close-icon-white");
    right: -10px;
    top: -34px;
  }
  .bonus-wrapper {
    padding: 0 20px;
    padding-right: 15px;
  }
  .bonus-heading {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .bonus .offer-list {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .bonus .form-sbscrb .btn {
    width: 100%;
  }
}

/* banner */
.banner {
  display: none;
  position: fixed;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 91;
  bottom: 20px;
  width: 1200px;
  left: calc(50% - 600px);
  border-radius: 10px;
  background: #100E0E;
  padding: 20px;
}
.banner.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner .close {
  position: absolute;
  width: 14px;
  height: 14px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--close-icon-white");
  top: 14px;
  right: 14px;
}
.banner-logo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 40px;
}
.banner-logo img {
  width: 200px;
  height: 90px;
  border-radius: 7px;
  margin: 0;
}
.banner-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px 40px;
}
.banner-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  color: #fff;
  margin-bottom: 0;
}
.banner-name:hover {
  color: #FF0000;
}
.banner-bonus {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 500px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
  padding-left: 30px;
}
.banner-bonus::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: center center/cover no-repeat;
  background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--diamnod-icon");
  top: 4px;
  left: 0;
}
.banner .btn {
  width: 250px;
}
@media screen and (max-width: 1240px) {
  .banner {
    width: calc(100% - 40px);
    left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .banner-logo {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .banner-logo .img {
    width: 100px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    gap: 15px;
    padding: 12px 10px;
  }
  .banner .close {
    background-image: url("https://www.ghanaweb.com/casino/sg/wp-content/themes/casinosguide/img/sprite.svg#sprite--close-icon-black");
    top: -20px;
    right: 0;
  }
  .banner-logo {
    width: 120px;
    min-width: 120px;
    border-right: none;
    padding-right: 0;
  }
  .banner-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .banner-body .btn {
    width: 100%;
    height: 38px;
    line-height: 38px;
    font-size: 12px;
  }
  .banner-bonus {
    font-size: 16px;
    line-height: 22px;
    padding-left: 0;
  }
  .banner-bonus::before {
    display: none;
  }
}

.btn_full {
  width         : 100%;
  margin-bottom : 20px;
}

.btn_content {
  display   : block;
  width     : 420px;
  max-width : 100%;
  margin    : 0 auto 20px;
}

.card-table-logo img {
  object-fit : contain;
}

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

.cover-table .table_scroll {
  width        : 100%;
  margin-right : 0;
}

.pg tr:nth-child(odd) td {
  background-color : transparent;
}

table.card-table a:hover {
  text-decoration : none;
}

.table.card-table th:first-child {
  padding-left : 0;
}

table.card-table tr {
  border-bottom : 0;
}

table.card-table tr th {
  border-bottom : 0;
  border-top    : 0;
}

.header .container {
  min-height : 56px;
}

.header .container:has(.header-bonus) .menu {
  grid-row-gap : 15px;
}

.header .container:has(.header-bonus) {
  flex-wrap : nowrap;
}

.header-bonus picture img {
  height     : 36px;
  width      : 80px;
  object-fit : contain;
}

main {
  padding-top : calc(var(--header-height, 83px) + 12px);
}

.form-group__success_text {
  display         : none;
  align-items     : center;
  justify-content : start;
  height          : 44px;
  font-size       : 16px;
  font-weight     : 400;
  line-height     : 24px;
  color           : var(--bonus);
}

.form-sbscrb.success .form-group {
  display : none;
}

.form-sbscrb.success .form-group__success_text {
  display : flex;
}

body[class*='amp-'] .sp {
  margin-top : 90px;
}

@media screen and (max-width: 1100px) {
  body[class*='amp-'] .sp {
    margin-top : 98px;
  }
}

@media screen and (max-width: 992px) {
  .note__item img {
    width         : 100%;
    height        : auto;
    margin-bottom : 10px;
  }
}
