/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
Ensure the default browser behavior of the `hidden` attribute.
*/

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.invisible {
  visibility: hidden;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.right-6 {
  right: 1.5rem;
}
.top-2 {
  top: 0.5rem;
}
.top-\[-136px\] {
  top: -136px;
}
.z-10 {
  z-index: 10;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.h-20 {
  height: 5rem;
}
.h-full {
  height: 100%;
}
.w-full {
  width: 100%;
}
.w-1\/2 {
  width: 50%;
}
.w-60 {
  width: 15rem;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-64 {
  width: 16rem;
}
.w-3\/4 {
  width: 75%;
}
.max-w-screen-lg {
  max-width: 1024px;
}
.max-w-\[400px\] {
  max-width: 400px;
}
.max-w-max {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.scale-\[-1\] {
  --tw-scale-x: -1;
  --tw-scale-y: -1;
  -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
          transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-5 {
  gap: 1.25rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.overflow-hidden {
  overflow: hidden;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.border {
  border-width: 1px;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.bg-secondary {
  --tw-bg-opacity: 1;
  background-color: rgb(255 213 0 / var(--tw-bg-opacity));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-\[\#29aaec\] {
  --tw-bg-opacity: 1;
  background-color: rgb(41 170 236 / var(--tw-bg-opacity));
}
.bg-rhbg {
  --tw-bg-opacity: 1;
  background-color: rgb(27 24 26 / var(--tw-bg-opacity));
}
.bg-\[\#343133\] {
  --tw-bg-opacity: 1;
  background-color: rgb(52 49 51 / var(--tw-bg-opacity));
}
.bg-\[\#000\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-3 {
  padding: 0.75rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-1 {
  padding: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pr-5 {
  padding-right: 1.25rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-20 {
  padding-top: 5rem;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.font-bold {
  font-weight: 700;
}
.font-normal {
  font-weight: 400;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.leading-10 {
  line-height: 2.5rem;
}
.leading-3 {
  line-height: .75rem;
}
.text-secondary {
  --tw-text-opacity: 1;
  color: rgb(255 213 0 / var(--tw-text-opacity));
}
.text-grey1 {
  --tw-text-opacity: 1;
  color: rgb(92 92 92 / var(--tw-text-opacity));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-primary {
  --tw-text-opacity: 1;
  color: rgb(120 216 110 / var(--tw-text-opacity));
}
.text-\[\#eab6fa\] {
  --tw-text-opacity: 1;
  color: rgb(234 182 250 / var(--tw-text-opacity));
}
.text-greentitle {
  --tw-text-opacity: 1;
  color: rgb(40 195 23 / var(--tw-text-opacity));
}
.underline {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-75 {
  opacity: 0.75;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
          box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.filter {
  -webkit-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
          filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

html,
body {
  color: #d8d8d8;
  font-family: "Bai Jamjuree", sans-serif;
  background: #1b181a;
  height: 100%;
  /* overflow-x: hidden; */
}

body {
  padding-top: 55px;
}

#footer {
  width: 100%;
  background: black;
  padding-bottom: 160px;
  background-image: url("/img/bg_top_left.svg");
  background-repeat: no-repeat;
  background-position: 105% 105%;
}
#footer .footer-text {
  line-height: 160%;
}

#footer .social-icon-link img {
  height: 20px;
}

@media screen and (min-width: 992px) {
  #footer {
    background-position: 100% 150%;
  }
}

.text-block {
  font-size: 1rem;
  line-height: 125%;
}
.text-block p {
  margin-bottom: 1em;
}
.text-block .short-toplist {
  width: 45%;
  float: right;
  padding: 10px;
}
.text-block .short-toplist ol {
  line-height: 140%;
}
.text-block .short-toplist .wrapper {
  border: 1px solid #6db135;
}
.text-block .short-toplist .header {
  background-color: #6db135;
  font-weight: 700;
  padding: 0.8em;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}
.text-block .short-toplist .header .tri {
  position: absolute;
  bottom: -14px;
  left: calc(50% - 8px);
}
.text-block .short-toplist .shortlist a {
  color: #6db135;
}
@media screen and (max-width: 768px) {
  .text-block .short-toplist {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0;
  }
}

.rh-form-select {
  background-image: url("/img/chevron-down.svg");
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 8px 40px 8px 12px;
  border-radius: 4px;
  border: none;
  background-color: #0a0a0a;
  font-size: 0.8em;
  font-weight: 700;
  background-repeat: no-repeat;
  background-position: top 50% right 12px;
  background-size: 16px 16px;
  border: 2px solid #79670f;
  -webkit-box-shadow: 0 0 5px 1px rgba(173, 171, 8, 0.4);
          box-shadow: 0 0 5px 1px rgba(173, 171, 8, 0.4);
  overflow: hidden;
}

.rh-form-select:focus {
  border: 2px solid #c9aa0e;
}

@media screen and (max-width: 576px) {
  .rh-form-select {
    max-width: 140px;
  }
}
@media screen and (min-width: 768px) {
  .rh-form-select {
    max-width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .rh-form-select {
    max-width: 300px;
  }
}
input[type="submit"],
.btn-prediksi,
.btn-primary,
.btn-yellow,
.btn-grey,
.btn-green {
  padding: 0.8em 1.2em;
  text-transform: uppercase;
  border-radius: 100px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-green {
  background: rgba(0, 255, 120, 0.2);
  color: #7eff9c;
}

.btn-grey {
  background: rgba(94, 94, 94, 0.2);
  color: #747474;
}

.btn-yellow {
  background: rgba(253, 255, 0, 0.2);
  color: #c3d86e;
}

.btn-primary {
  background: #ffd500;
  color: #000000;
}

.btn-prediksi {
  position: relative;
  color: #eab6fa;
  background: rgba(170, 0, 255, 0.4);
  border-radius: 4px;
}

.auth-wrapper {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #2f2c2e), to(#3a3a3a));
  background: linear-gradient(0deg, #2f2c2e 0, #3a3a3a 100%);
  padding: 15px 10px;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.auth-wrapper span.validation-invalid {
  border: 1px solid #e03c3c;
  border-radius: 3px;
  display: block;
  text-align: center;
  padding: 0.5em 0;
  color: #e03c3c;
  font-size: 1em;
  font-weight: bold;
}

input[type="text"],
textarea,
input[type="password"],
input[type="number"] {
  border-width: 1px;
  border-radius: 3px;
  border-color: #8d7b17;
  border-style: solid;
  background-color: rgba(65, 68, 76, 0.322);
  -webkit-box-shadow: inset 0px 4px 13px 0px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0px 4px 13px 0px rgba(0, 0, 0, 0.5);
  padding: 8px;
  color: #fff;
  outline: 0;
  width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
input[type="number"]:focus {
  border-color: #ffd900;
}

input[type="text"].invalid,
textarea.invalid,
input[type="password"].invalid,
input[type="number"].invalid {
  border-radius: 3px;
  border-width: 1px;
  border-color: #e03c3c;
}

input[type="text"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder {
  color: #8d8d8d;
}

input[type="text"]::-moz-placeholder, textarea::-moz-placeholder, input[type="number"]::-moz-placeholder {
  color: #8d8d8d;
}

input[type="text"]:-ms-input-placeholder, textarea:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder {
  color: #8d8d8d;
}

input[type="text"]::-ms-input-placeholder, textarea::-ms-input-placeholder, input[type="number"]::-ms-input-placeholder {
  color: #8d8d8d;
}

input[type="text"]::placeholder,
textarea::placeholder,
input[type="password"],
input[type="number"]::placeholder {
  color: #8d8d8d;
}

input[type="submit"] {
  background: rgba(0, 255, 120, 0.2);
  color: #7eff9c;
  cursor: pointer;
}

input[type="submit"]:disabled {
  background: rgba(94, 94, 94, 0.2);
  color: #747474;
  cursor: not-allowed;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.newest-result-card {
  background: transparent;
  border: 1px solid #1b5015;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  padding: 12px 6px;
}

.market-logo {
  max-width: 140px;
  max-height: 70px;
}

.market-title {
  text-transform: uppercase;
  color: #858585;
  font-size: 1.3em;
  font-weight: 700;
  text-align: center;
}

.newest-number {
  background-image: url("/img/green_fade.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 1em;
  padding: 10px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newest-number .number {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  color: #fff;
  font-size: 2.1em;
  letter-spacing: 0.1em;
}

.newest-result-card-single {
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  width: 100%;
}

.newest-number-single {
  background-image: url("/img/green_fade.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 1.1em;
  padding: 1em 0 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* animation: shownewnumber 1s ease-out forwards; */
}
.newest-number-single .number-single {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  color: #fff;
  font-size: 3em;
  letter-spacing: 0.1em;
}

@-webkit-keyframes shownewnumber {
  from {
    -webkit-filter: blur(1.3rem);
            filter: blur(1.3rem);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes shownewnumber {
  from {
    -webkit-filter: blur(1.3rem);
            filter: blur(1.3rem);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

.market-info-button {
  background: rgba(35, 74, 30, 0.4);
  border-radius: 4px;
  padding: 0.5em;
}
.market-info-button.active {
  background: rgba(58, 119, 50, 0.7);
}

.single-info .content h1,
.single-info .content h2,
.single-info .content h3,
.single-info .content h4,
.single-info .content h5,
.single-info .content h6 {
  color: #ffd500;
  padding: 5px 0;
}
.single-info .content h1 {
  font-size: 1.5em;
  padding: 5px 0 10px 0;
}
.single-info .content h2 {
  font-size: 1.4em;
}
.single-info .content h3 {
  font-size: 1.3em;
}
.single-info .content h4 {
  font-size: 1.2em;
}
.single-info .content h5 {
  font-size: 1.1em;
}
.single-info .content h6 {
  font-size: 1em;
}
.single-info .content p {
  padding: 5px 0 10px 0;
  line-height: 150%;
}
.single-info .content ul {
  list-style: circle;
  padding-left: 30px;
  padding-bottom: 0.5em;
  line-height: 150%;
}
.single-info .content ul li {
  margin-bottom: 8px;
}
.single-info .content ol {
  list-style-type: decimal;
  margin: 10px 0 10px 20px;
}
.single-info .content a {
  color: #ffd500;
  text-decoration: underline;
}

.prediksi-hero-bg {
  background-image: url("/img/prediction_hoodie.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 40vh;
}

.newest-prediction {
  background-image: url("/img/purple_fade.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 1.1em;
  padding: 10px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newest-prediction .number-predicted {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 4.2em;
  letter-spacing: 0.1em;
  line-height: 125%;
}

.border-right-prediction {
  border-right: 2px solid #520d70;
}

.prediction-table {
  font-size: 0.8em;
}
.prediction-table div {
  padding: 5px;
  text-align: center;
}
.prediction-table .header {
  border-bottom: 1px solid #707070;
  font-weight: bold;
  text-transform: uppercase;
}
.prediction-table .border-right {
  border-right: 1px solid #707070;
}

.prediksi-today {
  border: 2px solid #133110;
}

.prediksi-list-today {
  background: linear-gradient(45deg, #822abb 0%, #ba7cc5 100%);
  margin-bottom: 8px;
  font-weight: 700;
  color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 25px rgba(103, 20, 109, 0.9);
          box-shadow: 0 4px 25px rgba(103, 20, 109, 0.9);
}
.prediksi-list-today .lihat-pred {
  background: #a31ce3;
  padding: 6px 10px;
  color: #fff;
  text-transform: uppercase;
}
.prediksi-list-today .country-logo {
  width: 200px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.prediksi-list-today .day-of-week {
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.pred-bg {
  background-image: url("/img/pred_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.pred-lama div {
  padding: 3px 5px;
}

.pred-lama > div:nth-of-type(odd) {
  background: #1d1d1d;
}

.pred-lama > div:nth-of-type(even) {
  background: #2b2b2b;
}

.prediction-post .content h1,
.prediction-post .content h2,
.prediction-post .content h3,
.prediction-post .content h4,
.prediction-post .content h5,
.prediction-post .content h6 {
  color: #cb5eff;
  padding: 5px 0;
}
.prediction-post .content h1 {
  font-size: 1.5em;
  font-weight: bold;
  padding: 5px 0 10px 0;
}
.prediction-post .content h2 {
  font-size: 1.4em;
}
.prediction-post .content h3 {
  font-size: 1.3em;
}
.prediction-post .content h4 {
  font-size: 1.2em;
}
.prediction-post .content h5 {
  font-size: 1.1em;
}
.prediction-post .content h6 {
  font-size: 1em;
}
.prediction-post .content p {
  padding: 5px 0 10px 0;
  line-height: 150%;
}
.prediction-post .content ul {
  list-style: circle;
  padding-left: 30px;
  padding-bottom: 0.5em;
  line-height: 150%;
}
.prediction-post .content ul li {
  margin-bottom: 8px;
}
.prediction-post .content ol {
  list-style-type: decimal;
  margin: 10px 0 10px 20px;
}
.prediction-post .content a {
  color: #ffd500;
  text-decoration: underline;
}
.prediction-post .content table {
  margin-bottom: 15px;
}
.prediction-post .content table tr:first-child {
  border-bottom: 1px solid #ddd;
}
.prediction-post .content table tr td:first-child {
  color: #ffd500;
}
.prediction-post .content table td {
  border-right: 1px solid #ddd;
  padding: 0.3em;
}
.prediction-post .content table td:last-child {
  border-right: 0px;
}
.prediction-post .content table th {
  border-right: 1px solid #ddd;
  padding: 0.3em;
}
.prediction-post .content table th:last-child {
  border-right: 0px;
}

.recom-articles-sidebar ~ .panduan-list-container {
  margin-bottom: 0.6em;
}

.panduan-list-container {
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 5px;
}

.panduan-list-container .title {
  padding: 10px 10px 0 10px;
}
.panduan-list-container .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #a6a6a6;
  font-weight: bold;
  padding: 4px 10px 0 10px;
  font-size: 80%;
}
.panduan-list-container .title a {
  text-transform: uppercase;
  font-weight: 700;
  color: #ffd500;
}
.panduan-list-container .snippet {
  padding: 10px;
  font-size: 0.9em;
}
.panduan-list-container .readmore {
  padding: 10px;
  margin-top: auto;
  font-size: 0.9em;
  background: #ffd500;
  text-align: center;
}
.panduan-list-container .readmore a {
  color: #000;
  font-weight: 700;
  display: block;
}

.panduan-post .content {
  padding: 10px;
  background: #000;
}
.panduan-post .content p {
  padding: 0.3em 0 1em 0px;
  font-size: 1.2rem;
}
.panduan-post .content h1,
.panduan-post .content h2,
.panduan-post .content h3,
.panduan-post .content h4,
.panduan-post .content h5,
.panduan-post .content h6 {
  font-weight: bold;
  padding: 5px 0;
}
.panduan-post .content h1 {
  font-size: 1.5rem;
  padding: 5px 0 10px 0;
}
.panduan-post .content h2 {
  font-size: 1.3rem;
}
.panduan-post .content h3 {
  font-size: 1.2rem;
}
.panduan-post .content h4 {
  font-size: 1.1rem;
}
.panduan-post .content h5 {
  font-size: 1rem;
}
.panduan-post .content h6 {
  font-size: 0.8rem;
}
.panduan-post .content ul {
  list-style-type: disc;
  margin: 10px 0 10px 20px;
}
.panduan-post .content ol {
  list-style-type: decimal;
  margin: 10px 0 10px 20px;
}
.panduan-post .content a {
  color: #ffd500;
  text-decoration: underline;
}

.modal-wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(4, 32, 10, 0.9);
  z-index: 150;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: scroll;
}

.players-location-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  max-width: 300px;
}

.location-modal-cta {
  background-color: #ffd500;
  border-radius: 10px;
  padding: 10px 5px;
}

.close-location-modal {
  position: absolute;
  right: 10px;
  top: 0px;
}

.faq-container {
  border: 1px solid #15630e;
  border-radius: 10px;
  padding: 10px 10px 0 10px;
  margin-bottom: 20px;
}
.faq-container .faq-answer {
  background: rgba(48, 48, 48, 0.5);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 16px;
}

.logo-top {
  width: 200px;
}

.fade-gradient {
  background: black;
  background: -webkit-gradient(linear, left top, left bottom, from(black), to(#1b181a));
  background: linear-gradient(180deg, black 0%, #1b181a 100%);
  background-size: 100% 100%;
}

.fade-gradient-container {
  background: linear-gradient(180deg, black 0%, #1b181a 300px);
  border-top: 1px solid #292929;
}

.pages-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0;
}
.pages-wrapper .pg {
  border-radius: 5px;
  margin: 0 2px;
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #8d7b17;
  background: #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pages-wrapper .pg.current {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fdd600;
  border: 1px solid #fdd600;
  color: #000;
}
.pages-wrapper .prev {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5px;
  font-weight: bold;
  color: #ffd500;
}
.pages-wrapper .next {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5px;
  font-weight: bold;
  color: #ffd500;
}
.pages-wrapper .pg-break {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4px;
}

.review-container .review-meta .star,
.review-summary .star,
.top-bandar-container .title .rating .star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-mask: url("/img/star_clip.svg");
  mask: url("/img/star_clip.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-image: url("/img/star_clip.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}
.review-container .review-meta .star .bar,
.review-summary .star .bar,
.top-bandar-container .title .rating .star .bar {
  background-color: #ffd500;
}

.sidebar-jointg {
  background-color: #fed500;
  padding: 14px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bandar-active-media {
  background: #000;
  max-height: 300px;
}
.bandar-active-media a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bandar-active-media a img {
  opacity: 0;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.bandar-active-media a img.active-img-ss {
  -webkit-animation: fadein 0.4s ease-in forwards;
          animation: fadein 0.4s ease-in forwards;
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.bandar-screenshots {
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
}

.top-bandar-container {
  position: relative;
  border: 1px solid #ffd500;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.top-bandar-container .header {
  border-bottom: #3b3b3b 1px solid;
}
.top-bandar-container .position {
  background: url("/img/pos_bg.png");
  background-size: 70% 50%;
  width: 50px;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
  background-position: center 80%;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -5px;
  font-style: italic;
  font-size: 2.3em;
  color: white;
  padding: 0 0.4em 0 0.2em;
  font-weight: 700;
}
.top-bandar-container .ss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.top-bandar-container .ss img {
  width: 120px;
}
.top-bandar-container .title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  padding-left: 5px;
}
.top-bandar-container .title .name {
  font-size: 1.2em;
}
.top-bandar-container .title .rating .star {
  width: 100px;
  height: 20px;
}
.top-bandar-container .title .rating .rating-count {
  padding-top: 3px;
  font-weight: normal;
}
.top-bandar-container .title .rating .open {
  padding: 3px;
  margin-left: auto;
  margin-right: 5px;
}
.top-bandar-container .cta {
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  background: #ffd500;
  border: 1px solid #ffd500;
  padding: 8px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.top-bandar-container .cta-small {
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  width: auto;
  background: #ffd500;
  border: 1px solid #ffd500;
  padding: 0px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  margin-left: auto;
  margin-right: 5px;
}
.top-bandar-container .snippet {
  font-size: 0.9em;
}

.shine-golden {
  color: #000;
  border: 1px solid #ffd500;
  background: linear-gradient(
    45deg,
    #f9ff00 0%,
    #ffd500 15%,
    #dbbd24 30%,
    #fffaa3 50%,
    #dbbd24 70%,
    #e4c10f 87%,
    #f9ff00 100%
  );
  background-size: 600% 600%;
  -webkit-animation: ribbonshine 3s ease-in-out infinite;
          animation: ribbonshine 3s ease-in-out infinite;
}

.ribbon {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 55px;
  height: 55px;
  background-size: contain;
  pointer-events: none;
}

.ribbon.red {
  background-image: url("/img/red_ribbon.png");
}

.ribbon.green {
  background-image: url("/img/green_ribbon.png");
}

.ribbon.yellow {
  background-image: url("/img/yellow_ribbon.png");
}

@-webkit-keyframes ribbonshine {
  0% {
    background-position: 84% 0%;
  }
  50% {
    background-position: 17% 100%;
  }
  100% {
    background-position: 84% 0%;
  }
}

@keyframes ribbonshine {
  0% {
    background-position: 84% 0%;
  }
  50% {
    background-position: 17% 100%;
  }
  100% {
    background-position: 84% 0%;
  }
}
.frequency-cointainer::-webkit-scrollbar {
  display: none;
}

.frequency-cointainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 10px 0;
  padding: 10px 0px;
  overflow-x: scroll;
}

@media screen and (min-width: 992px) {
  .frequency-cointainer {
    overflow-x: hidden;
  }
}
.frequency-card {
  border: 1px solid #1b5015;
  background: #0c0c0c;
  border-radius: 10px;
  height: auto;
  padding: 10px;
  margin: 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 18%;
          flex: 1 0 18%;
}

@media screen and (max-width: 992px) {
  .frequency-card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
  }
}
@media screen and (max-width: 768px) {
  .frequency-card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 42%;
            flex: 1 0 42%;
  }
}
@media screen and (max-width: 576px) {
  .frequency-card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 80%;
            flex: 1 0 80%;
  }
}
.frequency-graph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 8px;
  height: 150px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.frequency-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  font-size: 0.7em;
  height: 140px;
}

.frequency-bar .bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: center;
  background: -webkit-linear-gradient(
    270deg,
    #51de00 0%,
    #31690e 50%,
    rgba(12, 12, 12, 0) 90%
  );
  width: 10px;
  margin: 0;
  height: 0;
  position: relative;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}

.frequency-bar .bar div:before {
  position: absolute;
  left: 3px;
  content: "x";
  font-size: 0.8em;
}

.frequency-bar .bar div {
  color: #fff;
  font-size: 1em;
  border: 1px solid #51de00;
  padding: 4px;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -18px;
  background: #000;
}

.frequency-bar .number {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.frequency-card .position {
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  padding-bottom: 4px;
  color: #10a200;
  border-bottom: 1px solid #4ccb01;
}

.result-table-responsive {
  max-height: 600px;
  overflow-y: scroll;
  border: 1px solid #4ccb01;
}

.table-keluaran td {
  border-bottom: 1px solid #1b5015;
  padding: 3px;
}
table.table-keluaran,
table.table-keluaran th,
table.table-keluaran td {
  border-collapse: collapse;
}

.result-number-ball {
  position: relative;
  background: #1b5015;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #78d86e;
  font-size: 12px;
  width: 25px;
  height: 25px;
  font-weight: bold;
}

.shio-table-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0 20px 0;
}
.shio-table-container .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.shio-table-container .row .animal {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shio-table-container .row .name {
  width: 100px;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 1.2em;
}
.shio-table-container .row .barholder {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shio-table-container .row .barholder .bar {
  position: relative;
  background: -webkit-linear-gradient(
    180deg,
    #51de00 0%,
    #31690e 50%,
    #1b181a 95%
  );
  height: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shio-table-container .row .barholder .bar .value {
  color: #fff;
  font-size: 0.8em;
  border: 1px solid #fff;
  padding: 5px;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: -15px;
  background: #000;
}

.read-reviews {
  background: #262626;
  border-radius: 5px;
}

.review-body h2 {
  font-size: 1.3em;
  font-weight: 700;
  padding-bottom: 0.5em;
  padding-top: 0.8em;
}
.review-body h3 {
  font-size: 1.2em;
  font-weight: 700;
  padding-bottom: 0.5em;
  padding-top: 0.8em;
}
.review-body h4 {
  font-size: 1.1em;
  font-weight: 700;
  padding-bottom: 0.5em;
  padding-top: 0.8em;
}
.review-body p {
  margin-bottom: 1em;
}
.review-body a {
  color: #ffd500;
  text-decoration: underline;
}
.review-body ul {
  list-style: circle;
  padding-left: 30px;
  padding-bottom: 0.5em;
  line-height: 150%;
}
.review-body ol {
  list-style: decimal;
  padding-left: 30px;
  padding-bottom: 0.5em;
  line-height: 150%;
}
.review-body .alt-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #4e991d;
  font-weight: bold;
  margin: 0.6em 0;
}
.review-body .alt-link img {
  margin-right: 6px;
}

.review-wrapper .review-count {
  padding-left: 10px;
}

.review-summary .star {
  width: 75px;
  height: 15px;
}
.review-summary .star .bar {
  height: 15px;
}
.review-summary .category {
  min-width: 110px;
}
.review-summary .star.sm {
  width: 50px;
  height: 10px;
}
.review-summary .star.sm .bar {
  height: 10px;
}

@media screen and (min-width: 768px) {
  .review-summary .category {
    min-width: 130px;
  }
}
.review-container {
  background: #0c0c0c;
  padding: 10px;
  margin-bottom: 16px;
  border-radius: 5px;
}
.review-container .review-heading {
  padding: 0.8em 0 0.3em 0;
  font-weight: bold;
}
.review-container .review-content {
  font-size: 0.9em;
  line-height: 150%;
}
.review-container .review-content .readmore {
  color: #ffd500;
  font-weight: 700;
}
.review-container .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.review-container .review-meta {
  font-size: 0.8em;
  font-weight: bold;
  color: #646464;
}
.review-container .review-meta .star {
  width: 75px;
  height: 15px;
}
.review-container .review-meta .star .bar {
  height: 15px;
}

.write-review-wrapper {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #2f2c2e), to(#3a3a3a));
  background: linear-gradient(0deg, #2f2c2e 0, #3a3a3a 100%);
  border: 1px solid #4e4e4e;
  padding: 10px;
  border-radius: 5px;
}
.write-review-wrapper .write-review-stars .category {
  font-weight: bold;
  width: 150px;
}
.write-review-wrapper .write-review-stars .stars {
  color: #ffd500;
  font-size: 1.1em;
  cursor: pointer;
}
.write-review-wrapper .write-review-stars .stars > span {
  margin: 0 2px;
  display: inline-block;
  position: relative;
}

.recommended-bandar-shadow {
  position: relative;
  width: 100%;
}
.recommended-bandar-shadow .shadow {
  z-index: 10;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 80px;
  background: black;
  background: -webkit-gradient(linear, left top, right top, from(rgba(27, 24, 26, 0)), to(#1b181a));
  background: linear-gradient(90deg, rgba(27, 24, 26, 0) 0%, #1b181a 100%);
  pointer-events: none;
}

.recommended-bandar-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 10px 0;
  overflow-x: scroll;
}

.recommended-bandar-container {
  border-radius: 10px;
  height: auto;
  margin-right: 1em;
  margin-bottom: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
  border: 1px solid #00c527;
}
.recommended-bandar-container .cta-recom {
  color: #000;
  font-weight: 700;
  background: #00c527;
  text-transform: uppercase;
  width: 100%;
  padding: 5px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media screen and (max-width: 992px) {
  .recommended-bandar-container {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
  }

  .recommended-bandar-wrapper::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .recommended-bandar-container {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
  }
}
@media screen and (max-width: 576px) {
  .recommended-bandar-container {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 75%;
            flex: 1 0 75%;
  }
}
.howto-shadow {
  position: relative;
  width: 100%;
}
.howto-shadow .shadow {
  z-index: 10;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 80px;
  background: black;
  background: -webkit-gradient(linear, left top, right top, from(rgba(27, 24, 26, 0)), to(#1b181a));
  background: linear-gradient(90deg, rgba(27, 24, 26, 0) 0%, #1b181a 100%);
  pointer-events: none;
}

.howto-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 10px 0;
  overflow-x: scroll;
}

.how-to-step {
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30%;
          flex: 1 0 30%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #363636), to(#333333));
  background: linear-gradient(90deg, #363636 0, #333333 100%);
  border-radius: 5px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.how-to-step img {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .how-to-step {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
  }

  .how-to-step::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .how-to-step {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
  }
}
@media screen and (max-width: 576px) {
  .how-to-step {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 60%;
            flex: 1 0 60%;
  }
}
.number-check {
  background-image: linear-gradient(
    -107deg,
    #f87148 0%,
    #f05221 16%,
    #b72226 79%,
    #7c0e0f 100%
  );
  border: 2px solid #fdd500;
  position: relative;
}
.number-check .rg3 {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 40%;
  max-width: 110px;
}
.number-check input[type="number"]::-webkit-input-placeholder {
  color: #7c0e0f;
}
.number-check input[type="number"]::-moz-placeholder {
  color: #7c0e0f;
}
.number-check input[type="number"]:-ms-input-placeholder {
  color: #7c0e0f;
}
.number-check input[type="number"]::-ms-input-placeholder {
  color: #7c0e0f;
}
.number-check input[type="number"]::placeholder {
  color: #7c0e0f;
}
.number-check input[type="number"] {
  letter-spacing: 0.1em;
  border-width: 1px;
  border-color: #fdd500;
  border-style: solid;
  background-color: rgba(65, 68, 76, 0.322);
  -webkit-box-shadow: inset 0px 4px 13px 0px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0px 4px 13px 0px rgba(0, 0, 0, 0.5);
  font-size: 1.5em;
  padding: 8px;
  color: #fff;
  text-align: center;
  outline: 0;
  width: 50%;
  margin-bottom: 8px;
}
.number-check input[type="submit"] {
  border-radius: 5px;
  background-color: #fdd600;
  -webkit-box-shadow: 1.69px 3.625px 9.5px 0.5px rgba(71, 17, 10, 0.5);
          box-shadow: 1.69px 3.625px 9.5px 0.5px rgba(71, 17, 10, 0.5);
  text-transform: uppercase;
  font-size: 0.8em;
  color: #000;
  padding: 15px 25px;
  text-align: center;
  border: 0;
  outline: 0;
  font-weight: bold;
  width: 50%;
  cursor: pointer;
}

.pop-under-overlay {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
}

.pop-under-overlay.on {
  -webkit-animation: popunderoverlayfadein 0.8s forwards;
          animation: popunderoverlayfadein 0.8s forwards;
}

.pop-under-overlay.off {
  -webkit-animation: popunderoverlayfadeout 1.8s forwards;
          animation: popunderoverlayfadeout 1.8s forwards;
}

.pop-under-overlay.on .pop-under-wrapper {
  -webkit-animation: popunderappear 1s forwards;
          animation: popunderappear 1s forwards;
}

.pop-under-overlay.off .pop-under-wrapper {
  -webkit-animation: popunderdisappear 1s forwards;
          animation: popunderdisappear 1s forwards;
}

.pop-under-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: fixed;
  bottom: -100%;
  max-height: 350px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pop-under-wrapper .pop-under-container {
  width: 100%;
  max-width: 450px;
  background: #2c2f36;
  position: relative;
}
.pop-under-wrapper .pop-under-container .header {
  background: #212429;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  padding: 14px 1rem;
}
.pop-under-wrapper .pop-under-container .header .close {
  margin-left: auto;
}
.pop-under-wrapper .pop-under-container .pop-under-alert-box {
  border-radius: 10px;
  border: 1px solid #3b3e45;
  padding: 10px;
}
@-webkit-keyframes popunderappear {
  from {
    bottom: -100%;
  }
  to {
    bottom: 0;
  }
}
@keyframes popunderappear {
  from {
    bottom: -100%;
  }
  to {
    bottom: 0;
  }
}
@-webkit-keyframes popunderdisappear {
  from {
    bottom: 0;
  }
  to {
    bottom: -100%;
  }
}
@keyframes popunderdisappear {
  from {
    bottom: 0;
  }
  to {
    bottom: -100%;
  }
}

@-webkit-keyframes popunderoverlayfadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    pointer-events: initial;
  }
}

@keyframes popunderoverlayfadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    pointer-events: initial;
  }
}
@-webkit-keyframes popunderoverlayfadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    pointer-events: none;
    display: none;
  }
}
@keyframes popunderoverlayfadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    pointer-events: none;
    display: none;
  }
}
.how-lucky-wrapper input[type="text"] {
  border-bottom: 2px solid #ffd500;
  text-align: center;
  padding: 10px;
  letter-spacing: 0.2em;
}

.lucky-winnings {
  background-image: url("/img/green_fade.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 1em 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  color: #fff;
  font-size: 2em;
  letter-spacing: 0.1em;
}
.lucky-winnings span {
  font-size: 0.5em;
}

.lucky-results-container::-webkit-scrollbar {
  display: none;
}

.lucky-results-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 300px;
  width: 100%;
  overflow-y: scroll;
  position: relative;
  border-radius: 10px;
  padding: 10px 10px 40px 10px;
}

.lucky-shadow {
  z-index: 1;
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(rgba(0, 0, 0, 0)),
    color-stop(75%, rgba(0, 0, 0, 0)),
    color-stop(95%, black)
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 75%,
    black 95%
  );
  pointer-events: none;
}

.lucky-results-container > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.lucky-results-container > div:nth-of-type(odd) {
  background: #1d1d1d;
}

.lucky-results-container > div:nth-of-type(even) {
  background: #2b2b2b;
}

.lucky-cta-sticky {
  z-index: 2;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.lucky-cta-sticky .bubble {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}
.lucky-cta-sticky .callout {
  cursor: pointer;
}
.lucky-cta-sticky .callout img {
  min-width: 140px;
}

.paito-wrapper {
  margin: 0px;
  width: 100%;
  height: 1000px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.paito-table-full {
  width: 100%;
  background: #1b181a;
  text-align: center;
  font-weight: bold;
  border-collapse: collapse;
  color: #fff;
}
.paito-table-full thead tr td {
  border-left: 1px solid #888888;
  border-right: 2px solid #888888;
  border-bottom: 1px solid #888888;
  border-top: 1px solid #888888;
}
.paito-table-full tr td:nth-child(1) {
  border-left: 1px solid #888888;
}
.paito-table-full tbody tr td:nth-child(5n) {
  border-right: 2px solid #888888;
  opacity: 0.4;
  color: #ffd500;
}
.paito-table-full tbody td {
  border-bottom: 1px solid #4b4b4b;
}
.paito-table-full thead tr :nth-of-type(odd) {
  color: #fff;
  background: #4e4e4e;
}
.paito-table-full td {
  text-align: center;
  padding: 0.2em;
}

.paito-controls {
  position: sticky;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40px;
  top: 58px;
  height: calc(25px * 9 + 25px);
  color: #000;
}
.paito-controls button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  min-height: 25px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  border-radius: 100px;
  margin-bottom: 2px;
  font-weight: bold;
  font-size: 1.3em;
}

.grey {
  background-color: #6d6d6d;
  color: #000;
}

.pink {
  background-color: #ff6680;
  color: #000;
}

.aqua {
  background-color: #00e1ff;
  color: #000;
}

.red {
  background-color: #bd1b1b;
  color: #000;
}

.blue {
  background-color: #4042e2;
  color: #000;
}

.orange {
  background-color: #f08136;
  color: #000;
}

.purple {
  background-color: #8756e2;
  color: #000;
}

.paito-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: scroll;
  margin: 0px;
  width: calc(100% - 40px);
  height: 100%;
  position: relative;
}

@-webkit-keyframes pulse_animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse_animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.sticky-footer-cta {
  z-index: 99;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 55px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  background: #40e0d0;
  color: #000;
  cursor: pointer;
}

.has-sticky-footer {
  padding-bottom: 75px;
}

.sticky-ad-footer {
  z-index: 99;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.topnav li {
  margin: 0 1em;
  font-weight: bold;
  text-align: center;
}
.topnav li a.register {
  color: #ffd500;
  cursor: pointer;
}

.overlaynav li a.register {
  color: #ffd500;
  cursor: pointer;
}

.navcontainer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-top: 1px solid #3d3d3d;
  background: -webkit-gradient(linear, left top, left bottom, from(#242424), to(#1b181a));
  background: linear-gradient(to bottom, #242424 0%, #1b181a 100%);
}

.nav-logo {
  background: -webkit-gradient(linear, left top, left bottom, from(#262626), to(#212021));
  background: linear-gradient(to bottom, #262626 0%, #212021 100%);
  position: absolute;
  top: -30px;
  border-top: 1px solid #3d3d3d;
  border-radius: 100%;
  padding: 4px;
}

.navbar {
  height: 60px;
  width: 100%;
  max-width: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .home {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.navbar .navitem {
  font-size: 0.7em;
  color: #78d86e;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.navbar .navitem span {
  padding-top: 4px;
  display: block;
}

.topbarnav {
  background-color: #0a0a01;
  padding: 6px 4px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  z-index: 100;
  border-bottom: 1px solid #353535;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.topleftlogo {
  width: 100%;
  max-width: 100px;
  min-width: 80px;
  display: block;
}

.hamnav {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.sliding-countrynav {
  position: fixed;
  width: 100%;
  z-index: 99;
  background-color: #2c2c2c;
  top: 55px;
  left: 0;
  height: 75px;
  border-bottom: 1px solid #353535;
}

/*MAIN NAV OVERLAY*/
#menu-toggle {
  display: none;
}

#menu-toggle:checked ~ .navoverlay {
  left: 0;
  top: 0;
  opacity: 1;
}

.navbar .btn {
  padding: 0.8em 1.3em;
}

.navoverlay::-webkit-scrollbar {
  display: none;
}

.navoverlay {
  position: fixed;
  overflow: hidden;
  width: 100%;
  opacity: 0;
  height: 100%;
  left: 0;
  top: -100%;
  z-index: 1000;
  -webkit-transition: all 0.3s cubic-bezier(0.41, 0.5, 0, 1);
  transition: all 0.3s cubic-bezier(0.41, 0.5, 0, 1);
  background: #080808;
}
.navoverlay .loggedin-username {
  position: absolute;
  top: 90px;
  height: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("/img/green_fade.svg");
  background-repeat: no-repeat;
  background-size: 120% 100%;
  background-position: center center;
}
.navoverlay .overlaylogo {
  width: 150px;
  position: absolute;
  top: 20px;
  left: calc(50% - 75px);
}

.navoverlay .contact-us-overlay {
  position: absolute;
  bottom: 30px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .navoverlay .contact-us-overlay {
    left: 10vw;
  }
}
.navoverlay ul {
  padding-top: 25vh;
  padding-left: 0;
}
.navoverlay ul li {
  font-size: 1.7em;
  padding: 1.6vh 0;
  font-weight: 700;
}
.navoverlay ul li.userfunction {
  background: rgba(181, 200, 228, 0.7);
}
.navoverlay ul li.userfunction span {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .navoverlay ul li {
    font-size: 1.2em;
    padding-left: 10vw;
  }
}

.close-overlay {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* a,
a:link,
a:visited,
a:focus,
a:hover,
a:active {
  color: white;
  text-decoration: none;
  cursor: crosshair;
} */

.appear-join-modal {
  -webkit-animation: appearmodaljoin 1s ease-in forwards;
          animation: appearmodaljoin 1s ease-in forwards;
  opacity: 0;
  /* pointer-events: none; */
}

@-webkit-keyframes appearmodaljoin {
  0% {
    opacity: 0;
    pointer-events: none;
  }
  99% {
    pointer-events: all;
  }
  100% {
    opacity: 1;
  }
}

@keyframes appearmodaljoin {
  0% {
    opacity: 0;
    pointer-events: none;
  }
  99% {
    pointer-events: all;
  }
  100% {
    opacity: 1;
  }
}

@media (min-width: 640px) {

  .sm\:w-3\/4 {
    width: 75%;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:ml-3 {
    margin-left: 0.75rem;
  }

  .md\:mr-6 {
    margin-right: 1.5rem;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mt-3 {
    margin-top: 0.75rem;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-1\/3 {
    width: 33.333333%;
  }

  .md\:w-2\/3 {
    width: 66.666667%;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-3\/4 {
    width: 75%;
  }

  .md\:w-1\/4 {
    width: 25%;
  }

  .md\:w-2\/5 {
    width: 40%;
  }

  .md\:w-1\/5 {
    width: 20%;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .md\:items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .md\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .md\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .md\:p-0 {
    padding: 0px;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1024px) {

  .lg\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:max-w-screen-lg {
    max-width: 1024px;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:pb-6 {
    padding-bottom: 1.5rem;
  }
}