/*General*/
:root {
    --max-width: 1000px;
}

body {
    padding-top: 60px;
}

section .inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

body.theme-style {
    background-color: var(--body-m-bg);
}

/* 
section.announcement,
section.banner,
section.jackpot,
section.link-banner,
section.game,
section.contacts {
  background-color: #151100;
} */

/* Header */
section.header {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: var(--header-m-bg-color);
    background: var(--header-m-bg-linear);
}

section.header .buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
}

/* Header - Logo */
section.header .content {
    display: flex;
    justify-content: center;
}

section.header .logo-container > a > img {
    max-height: 60px;
}

section.header .logo-container {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: center;
}

/* Header - Buttons */
section.header button.btn {
    background-color: transparent;
    width: 112px;
    height: 32px;
    line-height: 32px;
    font-weight: bold;
    font-size: 18px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    border: none;
    outline: none;
    padding: 0;
    margin: 0 5px;
}

section.header button.login-button {
    background: var(--login-btn-d-bg);
    color: var(--login-btn-d-font-color);
}

section.header button.register-button {
    background: var(--register-btn-d-bg);
    color: var(--register-btn-d-font-color);
}

section.header button.login-button:hover {
    color: var(--login-btn-d-font-color-hover);
    text-decoration: none;
    outline: none;
}

section.header button.register-button:hover {
    color: var(--register-btn-d-font-color-hover);
    text-decoration: none;
    outline: none;
}

/* Menu */
section.menu {
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
}

section.menu .navbar {
    border: none;
}

section.menu .navbar-nav > li > a {
    font-size: 14px;
    color: var(--side-navbar-m-text-color);
}

section.menu .navbar-nav > li:hover > a {
    color: var(--side-navbar-m-text-color-hover);
    transition: color 0.15s ease-in-out;
}

section.menu .navbar-nav > li {
    border-top: 3px solid transparent;
    cursor: pointer;
}

section.menu .navbar-nav > li:hover,
section.menu .navbar-nav > li:focus {
    border-top: var(--side-navbar-m-border-top-hover);
    background-color: transparent;
}

section.menu .navbar-nav > li svg {
    fill: var(--side-navbar-m-svg-fill);
    transition: fill 0.15s ease-in-out;
}

section.menu .navbar-nav > li:hover svg {
    fill: var(--side-navbar-m-svg-fill-hover);
}

/* Menu - Offcanvas (Sidebar) */

section.menu .navbar-toggler-icon {
    background: var(--navbar-toggler-svg-url);
    background-size: 110%;
}

#navbarOffcanvasMd.offcanvas {
    background-color: var(--side-navbar-m-bg-color);
}

section.menu .navbar-toggler,
section.menu .navbar-toggler:focus {
    border: 0;
    box-shadow: none;
}

.gamemenu > a > i > svg {
    width: 20px;
    height: 20px;
}

/* Buttons - Login - Register */

section.buttons .btn {
    border-radius: 0;
    border: none;
}

section.buttons .login-button {
    color: var(--login-btn-m-font-color);
    text-shadow: var(--login-btn-m-text-shadow);
    background: var(--login-btn-m-bg-color);
    background: var(--login-btn-m-bg-linear);
}

section.buttons .register-button {
    color: var(--register-btn-m-font-color);
    text-shadow: var(--register-btn-m-text-shadow);
    background: var(--register-btn-m-bg-color);
    background: var(--register-btn-m-bg-linear);
}

section.buttons .login-button:hover {
    color: var(--login-btn-m-font-color-hover);
    background: var(--login-btn-m-bg-color-hover);
    background: var(--login-btn-m-bg-linear-hover);
    text-shadow: none;
}

section.buttons .register-button:hover {
    color: var(--register-btn-m-font-color-hover);
    background: var(--register-btn-m-bg-color-hover);
    background: var(--register-btn-m-bg-linear-hover);
    text-shadow: none;
}

/* Announcement */

section.announcement {
    padding: 0;
    background: var(--announcement-m-bg-linear);
}

section.announcement .annoucementContainer {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    color: var(--announcement-m-font-color);
}

section.announcement .icon-volume svg {
    width: 14px;
    height: 14px;
    fill: var(--announcement-m-svg-fill);
}

.annoucementContainer .marquee {
    --gap: 1rem;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    width: 100%;
}

.annoucementContainer .marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 10s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* Banner */

section.banner .content {
    padding-bottom: 5px;
}

section.banner .carousel-indicators {
    margin-bottom: 0;
}

section.banner .carousel-indicators .indicator-container {
    padding: 10px;
}

section.banner .carousel-indicators button {
    margin: 10px;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    border-top: none;
    border-bottom: none;
}

section.banner .carousel-indicators .active {
    opacity: 0.8;
}

/* Jackpot */

section.jackpot .content {
    padding-bottom: 5px;
}

section.jackpot .progressiveJackpotBg {
    background: var(--jackpot-m-bg);
    height: 110px;
    background-size: cover;
    padding: 0px;
}

.progressiveJackpotAmount {
    position: relative;
    width: 220px;
    top: 58px;
    font-size: 28px;
    color: var(--jackpot-m-font-color);
    direction: rtl;
    margin: auto;
}

/* .progressiveJackpotCurrency {
  position: relative;
  margin: auto;
  width: 210px;
  top: 53px;
  font-size: 13px;
  color: #fff5a0;
  text-align: center;
} */

/* Game - Menu */
section.game-2 .navbar-nav {
    flex-direction: row;
    justify-content: center;
}

section.game-2 .gamenavbar > li[data-title="Home"],
section.game-2 .gamenavbar > li[data-title="Download"] {
    display: none;
}

.gamemenu-icon > svg {
    width: 30px;
    height: 30px;
}

section.menu .gamemenu-item {
    gap: 0.4rem;
}

.gamenavbar > li > a {
    text-decoration: none;
}

/* Game - Menu - Middle */

section.game-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.2rem;
}

section.game-3 .gamemenu-items {
    width: 24%;
    border: var(--gamemenu-mid-m-border);
    padding: 1px;
}

section.game-3 .gamemenu-items a {
    font-size: 14px;
    color: var(--gamemenu-mid-m-font-color);
    background: var(--gamemenu-mid-m-bg-linear);
}

section.game-3 .gamemenu-items:hover a {
    color: var(--gamemenu-mid-m-font-color-hover);
    background: var(--gamemenu-mid-m-bg-linear-hover);
}

section.game-3 .gamemenu-items:hover svg {
    filter: brightness(1.5);
}

/* Game - Banner */
section.game.game-1 .content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    overflow: hidden;
    align-items: center;
    position: absolute;
}

section.game.game-1 .content > div > img {
    padding: 0px 5px;
}

section.game .subBannerMask {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    padding-top: 5px;
    padding-bottom: 15px;
}

/* Link Banner */
section.link-banner .subbaner-img {
    height: 100%;
    max-width: 100%;
    display: block;
    margin: auto;
}

/* Contact */
section.contacts {
    /* background: linear-gradient(180deg, #f3ca28 0%, #db9d1f 100%); */
    background: var(--contacts-m-bg);
}

section.contacts .content {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

section.contacts .contact-icon {
    width: 32px;
    height: 32px;
}

section.contacts .contact-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 10px;
    padding: 1rem 1rem;
    text-decoration: none;
    cursor: pointer;
}

section.contacts .contact-item svg {
    fill: var(--contacts-icon-m-svg-fill);
    transition: fill 0.3s ease;
}

section.contacts .contact-title {
    color: var(--contacts-icon-m-font-color);
    text-shadow: var(--contacts-icon-m-text-shadow);
    transition: color 0.3s ease;
}

section.contacts .contact-item:hover svg {
    fill: var(--contacts-icon-m-svg-fill-hover);
}

section.contacts .contact-item:hover .contact-title {
    color: var(--contacts-icon-m-font-color-hover);
    text-shadow: var(--contacts-icon-m-text-shadow-hover);
}

/* Footer */
section.footer {
    padding: 25px;
    background: var(--footer-bg);
}

section.footer .content {
    color: var(--footer-font-color);
    border-top: none;
    height: auto;
    text-align: center;
    margin-bottom: 60px;
    padding: 10px 15px;
}

section.footer a {
    color: var(--footer-link-color);
    text-decoration: none;
}

section.footer a:hover {
    text-decoration: underline;
}

/* Bottom */
section.bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--bottom-bg-linear);
}

section.bottom .bottom-item {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 80px;
    padding: 6px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    background: inherit;
    border-radius: 0;
}

section.bottom .bottom-item:hover {
    background: var(--bottom-item-bg-color-hover);
}

section.bottom .bottom-item .bottom-icon {
    width: 25px;
    height: 25px;
}

section.bottom .bottom-item .bottom-icon svg {
    width: 25px;
    height: 25px;
    fill: var(--bottom-icon-svg-fill);
}

section .bottom-item .bottom-title {
    margin-top: 2px;
    color: #ffffff;
    font-size: 14px;
}

section.bottom .bottom-icon svg:hover,
section.bottom .bottom-item:hover svg,
section.bottom .bottom-item:hover .bottom-title {
    fill: var(--bottom-icon-svg-fill-hover);
    color: var(--bottom-icon-font-color-hover);
}

@media (min-width: 768px) {
    /*Body*/
    body {
        padding-top: unset;
    }

    /* Header */
    section.header {
        position: initial;
    }

    /* Header - Logo */
    section.header .logo-container {
        display: flex;
        justify-content: flex-start;
    }

    section.header .logo-container > a > img {
        max-height: 90px;
    }

    /*Announcement*/
    section.announcement {
        padding: 5px 0px;
        background: var(--announcement-d-bg-linear);
    }

    section.announcement .annoucementContainer {
        color: var(--announcement-d-font-color);
    }

    section.announcement .icon-volume {
        width: 40px;
        height: 20px;
        min-width: 20px;
        max-height: 20px;
        background: var(--announcement-icon-d-bg-linear);
        border-radius: 15px;
        font-size: 12px;
        display: flex;
        align-items: center;
        padding: 0 10px;
    }

    section.announcement .icon-volume svg {
        width: 15px;
        height: 15px;
        fill: var(--announcement-d-svg-fill);
    }

    /*Game Menu Bar*/

    section.menu {
        height: auto;
        position: relative;
        z-index: 1000;
        background: var(--menu-d-bg);
    }

    section.menu .navbar {
        padding: 0;
    }

    /* Jackpot */
    section.jackpot .progressiveJackpotBg {
        background: var(--jackpot-d-bg);
        height: 150px;
    }

    .progressiveJackpotAmount {
        position: relative;
        width: 300px;
        top: 80px;
        font-size: 40px;
        color: #fff000;
        direction: rtl;
        margin: auto;
    }

    /* .progressiveJackpotCurrency {
    position: relative;
    margin: auto;
    width: 300px;
    top: 170px;
    font-size: 20px;
    color: #fff5a0;
    text-align: center;
  } */

    /* Footer */
    section.footer .content {
        border-top: var(--footer-border-top);
        border-bottom: 1px dotted #cccccc;
        padding: 25px 60px;
    }
}
