@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600&display=swap");
@import url("https://use.typekit.net/cgt3bny.css");
@import url("./responsive.css?v=1");

/* tk-termina */
body {
    font-family: "Work Sans", sans-serif;
}

/*-----------------
1. Global variable css
-----------------------*/
:root {
    --gradient-btn: -webkit-linear-gradient(0deg, #394263 0%, #6373b1 100%);
    --primary-clr: #000;
    --secondary-clr: #03A9A2;
    --text-clr: #333333;
    --accent-clr: #8f8d8d;
    --lightgrey-clr: #ededed;
    --ff-heading: "Roboto", sans-serif;
    --ff-para: "Merriweather", serif;
    --color-white: #ffffff;
}

/*-----------------
2. Color and Fonts 
-----------------------*/
.primary-clr {
    color: var(--primary-clr);
}

.secondary-clr {
    color: var(--secondary-clr);
}

.text-clr {
    color: var(--text-clr) !important;
}

.text-clr2 {
    color: #666666 !important;
}

.white {
    color: #fff !important;
}

.black {
    color: #000 !important;
}

.black-clr2 {
    color: #373737 !important;
}

.lightgrey-clr {
    color: var(--lightgrey-clr);
}

.yellow-clr {
    color: var(--yellow-clr);
}

.green {
    color: #38bc68;
}

.blue {
    color: #1976d2;
}

.f-headind {
    font-family: var(--ff-heading);
}

.f-para {
    font-family: var(--ff-para);
}

.bg-black {
    background: #000;
}

section {
    position: relative;
}

.hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.visible {
    display: block;
    visibility: visible;
    opacity: 1;
}

/*-----------------
Position
-----------------------*/
.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

.top-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.bottom-center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
}

.p-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.v-center {
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    margin: 0 auto;
}

/* --------------
Common CSS 
------------------ */
h1,
h2,
h3,
h4,
h5 {
    font-family: termina, sans-serif;
}

.blend-mode-luminosity {
    mix-blend-mode: luminosity;
}

.bg-video-wrap video {
    width: 100%;
    max-width: 100%;
    height: auto;
    z-index: 1;
}

.bg-video-wrap .image {
    display: none;
}

.SliderTitleSec {
    padding: 6rem 0px;
    text-align: center;
}

.heading1 {
    font-family: "termina", sans-serif;
    font-size: 4rem;
    font-weight: 200;
    text-transform: lowercase;
}

.heading2 {
    font-family: "termina", sans-serif;
    font-size: 2rem;
    font-weight: 200;
    text-transform: lowercase;
}

.component--tile-slider {
    font-family: "termina", sans-serif;
    font-size: 4rem;
    font-weight: 200;
    text-transform: lowercase;
    color: #fff !important;
}

.component--full-title {
    font-family: "termina", sans-serif;
    font-size: 4rem;
    font-weight: 200;
    text-transform: lowercase;
}

.img-zoom {
    transition: all 0.3s;
}

.img-zoom:hover {
    transform: scale(1.04);
}

.f-20 {
    font-size: 20px;
}

.f-22 {
    font-size: 22px;
}

.f-24 {
    font-size: 24px;
}

.bg-t {
    background: transparent !important;
}

.grids-3 {
    display: grid;
    grid-gap: 14px;
    grid-template-columns: auto auto auto;
}

.border-right-black {
    border-right: 1px solid #000 !important;
}

/* for calender */
.ui-widget.ui-widget-content {
    z-index: 9999999999 !important;
}

.ui-datepicker .ui-datepicker-header {
    background: transparent;
    border: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 0px solid #c5c5c5;
    background: transparent;
    font-weight: normal;
    color: #03a9a2;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 0px solid #dad55e;
    background: transparent;
    color: #03a9a2;
}

.ui-datepicker .ui-datepicker-prev:before,
.ui-datepicker .ui-datepicker-next:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f104";
}

.ui-datepicker .ui-datepicker-prev:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    background-image: url(../image/icons/chevron_right_black.svg);
    background-size: contain;
    transform: rotate(180deg);
}

.ui-datepicker .ui-datepicker-next:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 20px;
    width: 20px;
    background-image: url(../image/icons/chevron_right_black.svg);
    background-size: contain;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    border: 0px solid #cccccc;
    background: transparent;
    font-weight: normal;
}

/* ######## HEADER ########## */
#global-alert {
	background-color: #333;
	color:#fff;
	padding:2px 6px;
}
#global-alert p {
	margin-bottom: 0;
    padding: 10px 0;
}
#global-alert .btn {
	border-radius:0px;
	margin:2px 0 5px 6px;
}

.Mainmenu {
    background-color: #000;
    padding: 8px 0;
    margin-bottom: 0px;
}

.Mainmenu.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

#sticky-nav .logo {
    padding: 1rem;
}

.Mainmenu.is-fixed .logo img:first-child {
    height: 56px;
}

.bodyMenuFixed {
    padding-top: 85px;
}

.topmenu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 200;
}

.topmenu li {
    display: inline-block;
    padding: 0 8px;
}

.topmenu li:last-child {
    margin-right: 0;
}

.topmenu li a {
    font-size: 14px;
    color: var(--color-white);
}

.topmenu li a img.icon {
    height: 22px;
    width: 16px;
}

.topmenu li a:hover {
    text-decoration: none;
}

.topmenu li a:hover svg {
    color: white;
    fill: white;
}

/* menu .dropdown */
.topmenu li .dropdown-menu {
    padding: 1rem 3rem;
    width: 364px;
    left: -200%;
    border: 1px solid #333;
    border-radius: 0;
}

.topmenu li .dropdown-menu h6 {
    font-size: 24px;
    line-height: 32px;
    font-weight: lighter;
}

.topmenu li .dropdown-menu p {
    line-height: 26px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.navbar-nav .nav-link {
    color: #fff;
    min-width: 86px;
    text-transform: uppercase;
}

.topsearch {
    max-width: 245px;
}

.topsearch>input:focus {
    outline: none;
    box-shadow: none;
}

.topsearch .input-group-prepend {
    margin-right: -1px;
    width: 50px;
    background: #fff;
    border-radius: 0px 6px 6px 0;
}

.topsearch .input-group-prepend img {
    height: 16px;
    display: block;
    margin: auto;
}

.hamburger .line {
    width: 36px;
    height: 2px;
    background-color: #ecf0f1;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger .line:last-child {
    width: 24px;
    left: 0;
    text-align: left;
    margin-left: 0;
}

.hamburger:hover {
    cursor: pointer;
}

.MobHamburger {
    position: absolute;
    right: 0;
    left: auto;
}

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    -o-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    width: 36px;
    margin-left: auto;
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
}

/* 18-may-2022 */
.dropdown-toggle::after {
    display: none;
}

@media screen and (min-width: 991px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
        background: #000;
        border-radius: 0;
    }

    .dropdown-item:focus,
    .dropdown-item:hover {
        color: rgb(226, 226, 226);
        text-decoration: none;
        background-color: #000;
    }

    .dropdown-item {
        color: #fff;
    }

    .dropdown>.dropdown-toggle:active {
        pointer-events: none;
    }

    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        border-top: 1px solid #333;
        padding: 0 0;
    }

    .navbar-nav .nav-link {
        color: #fff;
        padding: 0 !important;
        height: 40px;
        line-height: 40px;
        transition: none;
        display: inline;
    }

    /* .navbar-nav .dropdown:hover .nav-link {
  background: #fff;
  color: #000;
  padding: 0 10px !important;
} */
    .topmenu li:last-child {
        margin-right: 0;
        padding-right: 0;
    }

    .topmenu li {
        position: relative;
        display: inline-block;
        padding: 0;
        margin-right: 30px;
    }

    .topmenu li:after {
        content: "";
        position: absolute;
        right: -1rem;
        top: 3px;
        /* height: 20px; */
        /* width: 1px; */
        /* background: #333; */
    }

    .topmenu li:last-child::after,
    .topmenu li:nth-child(3)::after {
        display: none;
    }

    .nav-item.dropdown:hover>a {
        text-decoration: underline;
        padding-top: 10px;
    }

    .BuyTicketsDataLeft {
        padding-left: 10rem !important;
        padding-right: 3rem !important;
    }

    .BuyTicketsDataRight {
        padding-left: 3rem !important;
        padding-right: 10rem !important;
    }
}

.navbar-expand-lg {
    padding-top: 0;
}

/* ######## END HEADER ########## */

/* ######## FOOTER ########## */
.footer {
    background-color: #000;
    color: white;
    padding: 3rem 0 5rem 0;
    margin: 0;
}

.footer-link {
    list-style: none;
    margin-top: 10px;
    line-height: 1.8;
}

.footer-link li {
    margin-bottom: 1rem;
}

.footer-link li a {
    color: white;
    text-decoration: underline;
    text-align: left;
    text-transform: capitalize;
}

.footer-link li a:hover {
    opacity: 0.8;
}

.social-icons i:not(:last-child) {
    margin-right: 14px;
    font-size: 20px;
}

.social-icons a {
    margin-right: 14px;
    font-size: 20px;
    color: white;
    font-weight: 300;
}

.footerAwards {
    border-bottom: 1px solid #545454;
    border-top: 1px solid #545454;
    padding: 14px 0;
}

.footerAwards p {
    font-size: 1rem;
    font-weight: normal;
}

.footerAwards .title {
    font-size: 1rem;
    font-weight: 800;
}
.footerAwards img {
	max-width:100%;
	height:auto;
}

.footer-list-group {
    list-style: none;
    padding-left: 0;
}

.main-footer .sticky-footer {
    display: none;
}

.main-footer .sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999999999;
    width: 100vw;
    box-sizing: border-box;
    padding-bottom: 0;
    background-color: #000;
}

.main-footer .sticky-footer:before {
    position: absolute;
    background: #333333;
    content: "";
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 1px;
    left: 0;
    right: 0;
    top: 0px;
    z-index: 999;
}

.main-footer .sticky-footer .footer-menu-container {
    position: relative;
    z-index: 99;
}

.main-footer #footer-nav-toggler {
    background: transparent;
    width: 100%;
    text-align: right;
    position: relative;
    border: none;
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
}

.main-footer #footer-nav-toggler.active {
    background-color: #707070;
}

.main-footer #footer-nav-toggler.active .navbar-toggle-icon:first-child {
    transform: rotate(45deg);
    top: 10px;
    position: relative;
}

.main-footer #footer-nav-toggler.active .navbar-toggle-icon:nth-child(2) {
    transform: rotate(-45deg);
}

.main-footer #footer-nav-toggler.active .navbar-toggle-icon:last-child {
    display: none;
}

.main-footer #footer-nav-toggler:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    height: 80%;
    width: 1px;
    background: #707070;
    left: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.main-footer #footer-nav-toggler .navbar-toggle-icon {
    height: 1px;
    display: block;
    background: rgb(112, 112, 112) !important;
    background-color: rgb(112, 112, 112) !important;

    margin-bottom: 10px;
    width: 100%;
    text-align: left;
}

.main-footer #footer-nav-toggler.active .navbar-toggle-icon {
    background-color: rgb(228 228 228) !important;
}

.main-footer #footer-nav-toggler .navbar-toggle-icon:last-child {
    width: 70%;
    margin-bottom: 0;
}

#navbar-container {
    position: fixed;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    max-height: 50%;
    overflow-y: hidden;
    visibility: hidden;
    opacity: 0;
    background: #000;
}

#navbar-container.menu-open {
    visibility: visible;
    opacity: 1;
    overflow-y: hidden;
    min-height: 80vh;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    background-color: #000000;
    bottom: 0;
    top: 0;
    z-index: 999999999;
    height: 80vh;
}

#navbar-container .navbar-items {
    justify-content: flex-start !important;
    flex-direction: column !important;
    height: 100% !important;
    display: flex !important;
    padding: 1.7rem 2rem 1rem 2rem;
    width: 100%;
    overflow-y: scroll;
}

#navbar-container .navbar-items .navbar-item .items-menu {
    text-align: center !important;
    margin-left: auto !important;
    margin-bottom: 0.5rem !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

#navbar-container .navbar-items .navbar-item .items-menu li {
    margin-top: 6px;
}

#navbar-container .navbar-items .navbar-item .items-menu li a {
    font-size: 1.375rem;
    line-height: 1.563rem;
    color: #ffffff;
    padding-right: 0;
    padding-left: 0;
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

#navbar-container .navbar-items .navbar-item .items-menu li.has-children .sub-menu {
    display: none;
    opacity: 0;
}

#navbar-container .navbar-items .navbar-item .top-menu {
    position: relative;
    border-bottom: 1px solid #333;
    padding-left: 0 !important;
    text-align: center !important;
    margin-top: 1rem !important;
    justify-content: space-between !important;
    display: flex !important;
    align-items: center;
}

#navbar-container .navbar-items .navbar-item .top-menu li {
    position: relative;
    list-style: none;
    padding: 1rem;
    min-height: 75px;
    display: flex;
}

#navbar-container .navbar-items .navbar-item .top-menu li:first-child::after {
    position: absolute;
    border-right: 1px solid #333;
    content: "";
    width: 1px;
    margin-top: auto;
    margin-bottom: auto;
    height: 60%;
    top: 0;
    bottom: 0;
    right: 0;
}

#navbar-container .navbar-items .navbar-item .top-menu li:last-child::before {
    position: absolute;
    border-right: 1px solid #333;
    content: "";
    width: 1px;
    margin-top: auto;
    margin-bottom: auto;
    height: 60%;
    top: 0;
    left: 0;
    bottom: 0;
}

#navbar-container .navbar-items .navbar-item .top-menu li a {
    color: #03a9a2;
    font-size: 0.7rem;
    line-height: 1.2rem;
}

#navbar-container .nav-item-menu {
    position: relative;
    padding-bottom: 2rem;
}

#navbar-container .nav-item-menu ul li.nav-item.dropdown:hover>a {
    border: transparent;
}

#navbar-container .sub-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    text-align: center;
    box-sizing: border-box;
    z-index: 99;
    padding: 2rem;
    color: #ffffff;
    height: 100%;
    animation: fadeOut 1s linear;

}

.navbar-open {
    animation: fadeIn 1s linear;
}

.navbar-close {
    animation: fadeOut 1s linear;
}

@keyframes fadeIn {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .5;

    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

#navbar-container .sub-nav li,
#navbar-container .sub-nav span {
    font-size: 1rem !important;
    color: #ffffff;
}

#navbar-container .sub-nav span {
    color: #03a9a2;
    padding-bottom: 40px;
    display: block;
}

#navbar-container .sub-nav .link {
    padding: 10px 0;
    display: block;
    width: 100%;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 22px;
}

#navbar-container .sub-nav a.item {
    padding: 10px 0;
    display: block;
    width: 100%;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
}

#navbar-container .input-group-prepend {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

/* ######## END FOOTER ########## */
/*-----------------
HOMEPAGE 
-----------------------*/
.gotheenergy {
    background-image: url(../image/gotEnergyBG.png);
    background-size: cover;
    background-position: center;
    padding: 10rem 1rem;
    background-color: #000;
    margin-right: 2rem;
}

.gotheenergyHeading {
    font-size: 3.5rem;
    line-height: 4rem;
    font-weight: 100;
}

.gotheenergyHeading+p {
    font-size: 1.375rem;
    font-weight: 200;
}

.hero-video-container {
    min-height: calc(100vh - 160px);
}

.hero-video-container .hero-video {
    height: 100%;
    width: 100%;
}

.hero-embed-video {
    height: 100%;
    width: 100%;
}

.hero-embed-video .bg-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: transparent;
    z-index: 100;
}

.gotheenergy div>p:first-child {
    text-transform: uppercase;
    letter-spacing: 0.075rem;
    font-size: 1rem;
    font-weight: 200;
}

.Check-In-Check-Out .form-control {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    max-width: 143px;
}

.Check-In-Check-Out .form-control:focus {
    box-shadow: none;
    outline: none;
}

/* ////////////-----Slider------////////////// */

.tsr-swiper {
    position: relative;
}

.tsr-swiper .swiper-slide {
    position: relative;
}

.tsr-swiper .swiper-slide figure {
    overflow: hidden;
}

.tsr-swiper .swiper-slide figure img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ////////////-----Casimo------////////////// */

.casino {
    background-color: rgb(63, 60, 60) !important;
    padding: 50px 0px;
    color: rgb(194, 187, 187);
}

.primary-btn {
    font-size: 1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    margin-top: 10px;
    border: 1px solid white;
    padding: 8px 24px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    transition: all 0.3s;
    height: auto;
}

.primary-btn:hover {
    background-color: var(--secondary-clr);
    color: #ffffff;
    text-decoration: none;
}

.our-text {
    font-size: 23px;
    font-weight: 300;
}

.casino .our-text {
    font-size: 1.5rem;
    color: #fff;
    line-height: 2rem;
    text-transform: lowercase;
}

.ProudSponsors {
    background-color: black;
    padding: 50px 0px;
    color: white;
    font-weight: 300;
}

.ProudSponsorsGallery img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: grayscale(0);
    transition: all 0.5s;
}

.ProudSponsorsGallery img:hover {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: grayscale(0);
}

.proudtitle {
    margin-bottom: 0;
    font-size: 2rem;
    text-transform: lowercase;
}

.proud-description {
    font-weight: normal;
    font-size: 18px;
}

.PlayerRewardsClub {
    padding: 50px 0px;
    color: white;
    font-weight: 300;
    position: relative;
    overflow: hidden;
    z-index: 10;
    background-color: #000;
}

@media only screen and (max-width: 600px) {
    .PlayerRewardsClub {
        background-size: 100%;
    }
}

.rewardsClubCard-container {
    position: relative;
    z-index: 10;
}

.rewardsClubCard-container::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../image/player-rewards-club-bg.png);
    background-color: #000;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.rewardsClubCard {
    max-height: 70vh;
    margin: auto;
    display: block;
}

.plugtitle {
    font-size: 2rem;
    text-transform: lowercase;
}

.PlugintoRewards {
    background-image: url(../image/PlugintoRewards.jpg);
    background-size: 100%;
    background-color: rgb(10, 10, 110);
    padding: 50px 0;
    color: white;
    overflow: hidden;
    background-position: center;
}

.PlugintoRewards p.description-text {
    font-size: 18px;
    line-height: 26px;
}

.downloadtoTurnon {
    font-family: Termina;
    font-size: 1.5rem;
}

.clubtitle {
    font-size: 2rem !important;
    font-family: Termina;
    font-weight: 200;
}

.PlayerRewardsClub p {
    font-size: 1.125rem;
    line-height: 2rem;
}

.taste .row,
.BuyTickets .row {
    width: auto;
}

.mblpic {
    width: auto;
    height: 610px;
    margin: 0 auto;
    display: inline-block;
}

/* ##############-buy tickets#### */
.BuyTickets {
    background-color: #222222;
    color: white;
    overflow: hidden;
    border: 1px solid black;
}

.BuyTickets .actions {
    min-width: 230px;
}

.BuyTicketsData h5 {
    font-family: "termina", sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
}

.manpic {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* #########--end tickets########## */
/* msuic show */
.music {
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
}

.musicpic {
    width: 100%;
    height: 35rem;
    object-fit: cover;
}

.shows a {
    width: 20%;
}

.musicbox,
.tastebox {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    width: 43rem;
    padding: 2rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

/* music shows  end */

/* ////////--tash --orangekye--///// */

.tashing {
    overflow: hidden;
    position: relative;
    z-index: 100;
    background-color: #130500;
}

.tash {
    overflow: hidden;
    border: 1px solid black;
    transition: all 0.3s;
}

.tash img {
    transition: all 0.3s;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.tash:hover img {
    transform: scale(1.07);
    transition: all 0.3s;
}

.tashbox {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -10px);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px 42px;
    width: 23rem;
}

.tashbox p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

.tash-title {
    font-weight: 300;
    font-size: 2rem;
}

.secondimg {
    overflow: hidden;
}

.tash-img,
.orange-img {
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.tash-img:hover,
.orange-img:hover {
    opacity: 1;
}

.tashonepic:hover {
    opacity: 1;
}

/* taste --the wow */

.taste {
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
}

.taste>.row,
.music>.row {
    height: 35rem;
}

.tastepic {
    width: 100%;
    height: 35rem;
    object-fit: cover;
}

/* taste the wow  end */
.homepageCarousel {
    padding: 0 0 100px 0 !important;
}

.block-slide>h4 {
    font-family: Termina;
    font-size: 2rem;
    font-weight: 200;
    text-transform: lowercase;
}

.homepageCarousel .block-slide {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, 0);
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    width: 100%;
    color: #fff;
    padding: 2.5rem;
    max-width: 23rem;
}

.homepageCarouselNavBox {
    border: 1px solid #333333;
    position: absolute;
    left: -2px;
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}

.homepageCarousel-thumbs,
.tsr-swiper-thumbs {
    overflow: hidden;
}

.homepageCarousel-thumbs .swiper-slide,
.tsr-swiper-thumbs .swiper-slide {
    text-align: center;
    padding: 10px;
    height: 90px !important;
    border-bottom: 1px solid #333333;
}

.homepageCarousel-thumbs .swiper-slide-active,
.tsr-swiper-thumbs .swiper-slide-active {
    background: var(--secondary-clr);
}

/* heartheExcitement */
.heartheExcitement {
    padding: 0 0 100px 0 !important;
}

.heartheExcitement .block-slide {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, 0);
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    width: 100%;
    color: #fff;
    padding: 2.5rem;
    max-width: 23rem;
}

.heartheExcitementNavBox {
    border: 1px solid #333333;
    position: absolute;
    left: -2px;
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}

.ReservationsHeading {
    font-weight: 200;
    letter-spacing: 0.075rem;
}

/* popup   */
.popup img {
    width: 100%;
}

.popup-item {
    background-color: #24bcf2;
    color: white;
}

.summer h2 {
    font-weight: 200;
    margin-bottom: 0;
    line-height: 1;
}

.summer h4 {
    font-family: termina, "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-transform: none;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 14px;
}

.summer {
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
    font-family: "termina";
}

.summer .primary-btn {
    font-size: 14px;
    padding: 8px 16px;
}

@media screen and (max-width: 600px) {
    .summer {
        padding: 30px;
    }
}

@media screen and (max-width: 600px) {
    .popup-all {
        flex-direction: column-reverse;
    }
}

#PlayCation button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    position: absolute;
    right: 0;
    z-index: 999;
}

/* popup end */

/*-----------------
Eat & Drink
-----------------------*/
.imageHoverLeftInfoRight .infoBox {
    position: absolute;
    top: 50%;
    left: 18%;
    transform: translate(-5%, -50%);
    max-width: 50%;
}

.imageHoverRightInfoLeft .infoBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 50%;
}

.imageHoverLeftInfoRight img,
.imageHoverRightInfoLeft img {
    width: 100%;
}

.banner-booking-button {
    position: fixed;
    right: 0;
    top: 12rem;
    z-index: 999;
    background: #000000;
    padding: 14px;
    border-radius: 5px 0px 0px 5px;
    border: 1px solid #404040;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
}

.banner-booking-button:hover img {
    filter: invert(48%) sepia(59%) saturate(4196%) hue-rotate(145deg) brightness(85%) contrast(84%);
}

.banner-booking-button:hover a span {
    color: #028782;
}

.banner-booking-button a {
    color: var(--primary-clr);
    text-align: center;
}

.banner-booking-button a:hover {
    text-decoration: none;
}

.banner-booking-button a span {
    color: #fff;
    display: block;
}

.ReservationsBookPopUp {
    display: none;
    position: fixed;
    right: 0;
    top: 12rem;
    z-index: 999;
    background: var(--primary-clr);
    padding: 50px;
    border-radius: 5px 0px 0px 5px;
    border: 1px solid #404040;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
    width: 0;
    height: 0;
    opacity: 0;
    transition: all 0.5s;
}

.ReservationsBookPopUp.show {
    transition: all 0.5s;
    display: block;
    width: 26.5rem;
    height: 26.5rem;
    opacity: 1;
    z-index: 999999999;
}

.ReservationsBookPopUp .input-group span {
    width: 90px;
}

.CloseReservationsBookPopUp {
    position: absolute;
    top: 20px;
    right: 40px;
}

.ReservationsBookPopUp .icon-close {
    color: #fff;
    font-size: 14px;
}

.ReservationsBookPopUp .icon-close:hover {
    text-decoration: none;
}

.ReservationsBookPopUp .icon-close .icon-box {
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    line-height: 30px;
    margin: 0 auto 4px;
}

/*-----------------
Play
-----------------------*/
.ProgressiveJackpotsList>div:not(:last-child) {
    border-right: 1px solid #333;
}

.ProgressiveJackpotsList .description {
    font-size: 1.2rem;
    font-weight: 100;
}

.ProgressiveJackpotsList .description-price {
    font-size: 1.6rem;
    font-weight: bold;
}

.ProgressiveJackpots .description-detail {
    font-size: 0.9rem;
    font-weight: 100;
    color: #b2b2b2;
}

.hero-embed-image {
    display: none;
}

.ProgressiveJackpots .heading2 {
    color: #03a9a2;
}

/* career-openings */

.career-openings {
    padding-bottom: 2rem;
}

/*######### MEDIA QUERY START HERE ########*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 768px) {
    body {
        width: 100vw;
    }

    .component--full-title,
    .component--tile-slider {
        font-size: 2.5rem;
    }

    .primary-btn {
        padding: 8px 28px;
    }

    .Check-In-Check-Out .CheckIn,
    .Check-In-Check-Out .CheckOut,
    .Check-In-Check-Out .Adults {
        display: none;
    }

    .ReservationsBook {
        border-top: 2px solid #333333;
    }

    .tastebox {
        background-color: #000;
        /* opacity: 0.8; */
        color: white;
        width: 100%;
        padding: 20px 28px;
        position: relative;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .tashbox {
        position: relative;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -0px);
        background-color: #000;
        color: white;
        text-align: center;
        padding: 20px 20px;
        opacity: 1;
    }

    .homepageCarousel-swiper-pagination,
    .heartheExcitement-swiper-pagination {
        text-align: center;
        padding: 0;
    }

    .homepageCarousel .block-slide,
    .tsr-swiper .block-slide {
        position: relative;
        bottom: 0;
        left: 0;
        transform: translate(0, 0);
        background: transparent;
        text-align: center;
        padding: 14px;
        width: 100%;
        color: #fff;
    }

    .homepageCarousel .swiper-pagination-bullet,
    .tsr-swiper .swiper-pagination-bullet {
        width: 30px;
    }

    .musicbox {
        background-color: #000;
        opacity: 1;
        color: white;
        width: 100%;
        padding: 20px 60px;
        position: relative;
        bottom: 0;
        left: 0;
        transform: translate(0, 0);
    }

    .banner-booking-button {
        background: #009c90;
        border: none;
        top: 0;
    }

    .imageHoverLeftInfoRight .infoBox,
    .imageHoverRightInfoLeft .infoBox {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0%, -50%);
        max-width: 100%;
        text-align: center;
        padding: 0 14px;
    }

    .imageHoverRightInfoLeft .row {
        flex-direction: column-reverse !important;
    }
}

/* Extra small devices (phones, 991 and down) */
@media only screen and (max-width: 991px) {
    .Mainmenu {
        padding: 10px 0;
        position: fixed;
        bottom: 0;
        z-index: 999;
        width: 100%;
        border-top: 2px solid #707070;
    }

    .navbarNav {
        position: fixed;
        bottom: -100vh;
        height: 92%;
        width: 100%;
        background: #000;
        left: 0;
        padding: 10px;
        opacity: 0;
        transition: all 0.4s;
    }

    .navbarNav.show {
        bottom: 60px;
        opacity: 1;
    }

    .navbar-nav .nav-link {
        text-align: center;
    }

    .dropdown-menu.show {
        background-color: #1e1e1ec2;
    }

    .dropdown-item {
        color: #fff;
        text-align: center;
    }

    .MobHamburger:before {
        content: "";
        position: absolute;
        left: -6px;
        top: 0;
        height: 46px;
        width: 1px;
        background: #fff;
        opacity: 0.5;
    }

    .ProudSponsorsGallery {
        display: grid;
        grid-gap: 10px;
        grid-template-columns: auto auto;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    /*background*/
    .lg-bg-primary {
        background: var(--primary-clr) !important;
    }

    .lg-bg-secondary {
        background: var(--secondary-clr) !important;
    }

    .lg-bg-white {
        background: #fff !important;
    }

    .lg-bg-greylight {
        background: #f3f3f3 !important;
    }

    .lg-bg-t {
        background: transparent !important;
    }

    .downloadtoTurnon {
        max-width: 70%;
    }

    .modal-lg,
    .modal-xl {
        max-width: 900px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px;
    }
}

/* Slider CSS Style */
.tsr-swiper-pagination {
    text-align: center;
    padding: 2rem 0;
}

.trs-swiper-thumbnail-box,
.tsr-swiper-thumbnail-box {
    border: 1px solid #333333;
    position: absolute;
    left: -2px;
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}

.trs-swiper-thumbnail-wrapper,
.tsr-swiper-thumbnail-wrapper {
    overflow: hidden;
}

.trs-swiper-thumbnail-wrapper .trs-swiper-thumbnails .swiper-slide,
.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide {
    text-align: center;
    padding: 10px;
    height: 100px !important;
    width: 115px;
    position: relative;
    border-bottom: 1px solid #333333;
    cursor: pointer;
}

.trs-swiper-thumbnail-wrapper .trs-swiper-thumbnails .swiper-slide-active,
.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide-active {
    background: #009C90;
}

.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide-container {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    width: 95px;
}

.trs-swiper .swiper-pagination-bullet,
.tsr-swiper .swiper-pagination-bullet {
    position: relative;
    width: 40px;
    height: 2px;
    display: inline-block;
    border-radius: 0;
    opacity: 0.2;
    transition: all 0.3s;
    padding-top: 8px;
    padding-bottom: 8px;
}

.trs-swiper .swiper-pagination-bullet::after,
.tsr-swiper .swiper-pagination-bullet::after {
    position: absolute;
    height: 1px;
    width: 100%;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
}

.trs-swiper .swiper-pagination-bullet-active,
.tsr-swiper .swiper-pagination-bullet-active {
    background: transparent;
    height: 1px;
    opacity: 1;
}

.trs-swiper .swiper-pagination-bullet-active::before,
.tsr-swiper .swiper-pagination-bullet-active::before {
    position: absolute;
    height: 1px;
    width: 100%;
    content: "";
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    background: #fff;
}

.musicbox,
.tastebox {
    padding: 2rem 3.5rem;
}

.primary-btn {
    font-size: 0.85rem;
    text-align: center;
}

/* .trs-swiper .swiper-pagination-bullet-active:after,
.tsr-swiper .swiper-pagination-bullet-active:after {

    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 40px;
    height: 1px;
    display: inline-block;
    border-radius: 0;
    background: #fff;
    opacity: 1;
    transition: all 0.3s;
} */



.hero-container {
    min-height: 600px;
    height: 100vh;
    position: relative;
    width: 100%;
    background-image: url("./../image/tsr-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* padding: 1rem 0; */
}

#hero-embed-video-container {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    display: block;
    z-index: 4;
    transition: 2s ease-out;
}

.video-completed #hero-embed-video-container {
    transition: 2s ease-in;
    height: 0;
    opacity: 0;
}

.video-completed .section-video .gotheenergy {
    transform: translate(0, 0);
    transition: 1.5s linear;
    z-index: 7;
}

.hero-container #hero-embed-video {
    width: 100%;
    min-height: 100%;
    transition: 1s ease-in;
    transform: translate(0, 0);
    height: 100% !important;
}

.h-100 {
    height: 100%;
}

.color-white {
    color: var(--color-white);
}

/* Footer */
.footer-link {
    text-decoration: underline;
    color: var(--color-white);
}

.footer-link:hover {
    text-decoration: none;
    color: var(--color-white);
}

.image-community {
    height: 160px;
    width: 160px;
}

.font-weight-medium {
    font-weight: 500;
}

ul.header-nav .nav-item.dropdown:hover>a {
    border-bottom-color: #4e4e4e;
}

ul.header-nav .nav-item .dropdown-menu .dropdown-item {
    margin-top: 7px;
    margin-bottom: 7px;
}

.reservation-logo {
    margin-right: 1rem;
}

.course-image {
    visibility: hidden;
}

.footer .list-group {
    margin-bottom: 2rem;
}

.footer .list-group li {
    margin-bottom: 0.5rem;
    text-align: center;
}

.top-menu--menu {
    padding-left: 0;
    position: relative;
    border-bottom: 1px solid #333;
    padding-left: 0 !important;
}

.top-menu--menu li {
    position: relative;
    list-style: none;
    padding: 1rem;
    min-height: 75px;
    display: flex;
    align-items: center;
}

.top-menu--menu li:first-child::after {
    position: absolute;
    border-right: 1px solid #333;
    content: "";
    width: 1px;
    margin-top: auto;
    margin-bottom: auto;
    height: 60%;
    top: 0;
    bottom: 0;
    right: 0;
}

.top-menu--menu li:last-child::before {
    position: absolute;
    border-right: 1px solid #333;
    content: "";
    width: 1px;
    margin-top: auto;
    margin-bottom: auto;
    height: 60%;
    top: 0;
    left: 0;
    bottom: 0;
}

.top-menu--menu li a {
    color: #03a9a2;
    font-size: 0.9rem;
    line-height: 1.2rem;
}

.nav-item.dropdown:hover>a {
    text-decoration: none;
    border-bottom: 1px solid #4e4e4e;
}

body ul.mobile-nav {
    position: relative;
}

.sub-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    height: 100vh;
    text-align: center;
    box-sizing: border-box;
    z-index: 99;
    padding: 2rem;
}

.sub-nav li,
.sub-nav span {
    font-size: 1rem !important;
    color: #ffffff;
}

.sub-nav span {
    color: #03a9a2;
}

/* ============================== NEW CSS================== */

.t-primary {
    color: var(--secondary-clr);
}

.fw-light {
    font-weight: 300 !important;
}

.bg-black {
    background-color: #000000;
}

.bg-white {
    background-color: #ffffff;
}

.app-header .top-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 200;
}

.app-header .top-menu li {
    display: inline-block;
    padding: 0.5rem;
    margin-right: 0.5rem;
}

.app-header .top-menu li.dropdown:hover .dropdown-menu {
    display: block;
}

.app-header .top-menu li:last-child {
    margin-right: 0;
}

.app-header .top-menu li a {
    font-size: 0.9rem;
    color: #ffffff;
    display: flex;
    padding: 0;
    padding-bottom: 0;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.app-header .top-menu li a img {
    margin-right: 10px;
}

.app-header .top-menu li a:hover img.filter-white {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(193deg) brightness(101%) contrast(101%);
}

/* menu .dropdown */
.app-header .top-menu li .dropdown-menu {
    padding: 1rem 3rem;
    width: 364px;
    left: -200%;
    border: 1px solid #333;
    border-radius: 0;
    margin-top: 0;
}

.app-header .top-menu li .dropdown-menu:after,
.app-header .top-menu li .dropdown-menu:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.app-header .top-menu li .dropdown-menu:after {
    border-color: rgba(62, 62, 213, 0);
    border-bottom-color: #000000;
    border-width: 6px;
    margin-left: -38px;
}

.app-header .top-menu li .dropdown-menu:before {
    border-color: rgba(51, 51, 51, 0);
    border-bottom-color: #333333;
    border-width: 8px;
    margin-left: -40px;
}

.app-header .top-menu li .dropdown-menu h6,
.app-header .top-menu li .dropdown-menu .menu-text h3.title {
    font-size: 24px;
    line-height: 29px;
    font-weight: lighter;
    color: #ffffff;
    font-family: "termina", sans-serif;
}

.app-header .top-menu li .dropdown-menu h6 {
    font-size: 24px;
    line-height: 32px;
    font-weight: lighter;
    color: #ffffff;
}

.app-header .top-menu li .dropdown-menu p {
    line-height: 26px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #ffffff;
}
body.fixed-header {
	padding-top:151px;
	background:#000;
}

.fixed-top .navbar-nav {
    border-top: 0;
    padding-top: 0px;
}

.main-navbar ul {
    padding-left: 0;
}

.main-navbar ul li {
    margin: 0.5rem 1rem;
}

.main-navbar ul li a {
    color: #ffffff;
    padding: 0.5rem 1rem;
}

.main-navbar ul li.dropdown .dropdown-menu {
    background-color: #000000;
    padding: 0.8rem;
    top: 75%;
}

.main-navbar ul li.dropdown .dropdown-menu a {
    text-decoration: none;
}

.main-navbar ul li.dropdown .dropdown-menu a {
    text-decoration: none;
    background-color: transparent;
    color: #ffffff;
}

.main-navbar ul li.dropdown:hover>.dropdown-menu {
    display: block;
}

/* --------------------Video Section -------- */
.section-video {
    position: relative;
    width: 100%;
    min-height: calc(95vh - 170px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.section-video::after {
    position: absolute;
    width: 100%;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/media/5249/tsr-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 2;
    background-color: #000;
    /* animation: slideUp 1.5s linear 1 forwards; */
    transition: 1s linear;
    transform: translate(0, 100%);
}



.video-completed .section-video::after {
    /* transition: all 1.5s linear; */
    /* animation: slideUp 1.5s linear 1 forwards; */
    height: 100%;
    background-size: 100%;
    transform: translate(0, 0);
    transition: 1.5s linear;
    z-index: 6;

}

@keyframes slideUp {
    0% {
        height: 0%;
        background-size: 150%;
    }

    50% {
        height: 50%;
        background-size: 125%;
    }

    100% {
        height: 100%;
        background-size: 100%;
    }
}



.section-video .text-container {
    height: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.section-video .text-container .got-energy-heading {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 100;
}

.section-video .text-container .description {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 100;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.section-video .text-container .t-button {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
}

.section-video .text-container .t-button:hover {
    background-color: var(--secondary-clr);
    text-decoration: none;
    color: #ffffff;
}

.heading-mask {
    font-size: 2rem;
    line-height: 2.5rem;
}

.sub-heading-mask {
    font-family: termina, sans-serif;
    font-size: 1.5rem;
    margin: 0.8rem 0;
    color: #24bcf2;
    font-weight: 100;
    line-height: 29px;
}

.description-mask {
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 400;
    margin: 1.4rem 0;
}

/* Slider-Content */

.tastebox.slider-section p {
    font-size: 1.3rem;
    margin-top: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
    margin-bottom: 1rem;
    font-weight: 100;
}

.tastebox.tastebox-stay {
    padding: 3rem 6rem;
}

.tastebox.tastebox-stay h2 {
    font-size: 1rem;
    font-family: "Work Sans", sans-serif;
}

.tastebox.tastebox-play {
    padding: 3rem 5rem;
    width: 35rem;
}

.tastebox.slider-section a.primary-btn {
    margin-bottom: 1rem;
}

/* Infobox */
.imageHoverLeftInfoRight .infoBox,
.imageHoverRightInfoLeft .infoBox {
    width: 440px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.imageHoverLeftInfoRight .infoBox h4,
.imageHoverRightInfoLeft .infoBox h4 {
    font-size: 2rem;
    font-weight: 300;
}

.imageHoverLeftInfoRight .infoBox p,
.imageHoverRightInfoLeft .infoBox p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: "Work Sans", sans-serif;
}

.imageHoverLeftInfoRight .infoBox .action-wrapper a.primary-btn:first-child,
.imageHoverRightInfoLeft .infoBox .action-wrapper a.primary-btn:first-child,
.imageHoverLeftInfoRight .infoBox .actions-row a.primary-btn:first-child,
.imageHoverRightInfoLeft .infoBox .actions-row a.primary-btn:first-child,
.imageHoverLeftInfoRight .infoBox .actions a.primary-btn:first-child,
.imageHoverRightInfoLeft .infoBox .actions a.primary-btn:first-child {
    margin-right: 1.35rem !important;
}

.imageHoverLeftInfoRight .infoBox .action-wrapper a.primary-btn,
.imageHoverRightInfoLeft .infoBox .action-wrapper a.primary-btn,
.imageHoverLeftInfoRight .infoBox .actions-row a.primary-btn,
.imageHoverRightInfoLeft .infoBox .actions-row a.primary-btn,
.imageHoverLeftInfoRight .infoBox .actions a.primary-btn,
.imageHoverRightInfoLeft .infoBox .actions a.primary-btn {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
    height: auto;
    text-align: center;
    font-size: 0.85rem;
}

.career-box-container {
    /* padding: 10rem 30rem 10rem 10rem; */
    max-width: 500px;
}

.career-box-container .text-cb {
    font-size: 2.1rem;
}

.career-box-container .text-cc {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.6rem;
}

.box-position {
    z-index: 99999999;
}

.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide img {
    display: inline-block;
}

.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide span {
    display: block;
    text-align: center
}

.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide span {
    color: #fff;
    margin-top: 0.3rem;
    white-space: nowrap;
}

.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide-active span {
    color: #000;
}

.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide-active img {
    filter: invert(0%) sepia(96%) saturate(7500%) hue-rotate(101deg) brightness(0) contrast(102%);
}

.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide:hover img {
    filter: invert(39%) sepia(42%) saturate(2860%) hue-rotate(127deg) brightness(91%) contrast(101%);
}

.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide:hover span {
    color: #009C90;
}

.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide-active:hover span {
    color: #000;
}

.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide-active:hover img {
    filter: invert(0%) sepia(96%) saturate(7500%) hue-rotate(101deg) brightness(0) contrast(102%)
}

.fixed-top {
    z-index: 999999999;
}

.ProgressiveJackpots .description-detail em {
    font-style: normal
}

body .music,
body .taste {
    background-color: #000;
}

.imageHoverLeftInfoRight img.box-icon,
.imageHoverRightInfoLeft img.box-icon {
    position: absolute;
    height: 100px;
    width: auto;
    max-width: 190px;
    filter: invert(12%) sepia(62%) saturate(24%) hue-rotate(314deg) brightness(15%) contrast(82%);
}

.imageHoverLeftInfoRight img.box-icon {
    right: 4rem;
    top: 4rem;
}

.imageHoverRightInfoLeft img.box-icon {
    left: 4rem;
    top: 4rem;
}

.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide-active span {
    color: #000;
}

.tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnail-wrapper .tsr-swiper-thumbnails .swiper-slide-active img {

    filter: invert(0%) sepia(98%) saturate(17%) hue-rotate(223deg) brightness(109%) contrast(100%);
}

.hero-embed-video .video-embed {
    height: 100%
}

/* Header Changes 10-08-2022 */

.app-header .top-menu li .dropdown-menu-rewards {
    padding: 1.5rem 2rem 1rem 2rem;
    width: 280px;
    left: -100%;
    border: 1px solid #333;
    border-radius: 0;
    margin-top: 0;
}

.app-header .top-menu li .dropdown-menu-rewards:before {
    margin-left: -22px;
}

.app-header .top-menu li .dropdown-menu-rewards:after {
    margin-left: -20px;
}

.app-header .top-menu li .dropdown-menu-rewards .menu-text p {
    font-size: 1rem;
}

.app-header .top-menu li .dropdown-menu-rewards .menu-text h6,
.app-header .top-menu li .dropdown-menu-rewards .menu-text h3.title {
    font-size: 24px;
    line-height: 29px;
    font-weight: lighter;
    color: #ffffff;
    font-family: "termina", sans-serif;
}

.app-header .top-menu li .dropdown-menu-rewards .menu-text p a {
    color: #009C90;
    font-size: 1rem;
    font-weight: normal;
}



/* Footer 10-08-2022 */

#navbar-container #footer-top-menu {
    position: relative;
    width: 100%;
}

#navbar-container #footer-top-menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: .5rem 0 0;
    list-style: none;
    border-bottom: 1px solid #333333;
    margin-bottom: 1rem;
    position: relative;
}

#navbar-container #footer-top-menu ul li.list-item {
    position: relative;
    padding: 0.7rem 0.3rem;
    width: 100%;
    cursor: pointer;
}



#navbar-container #footer-top-menu ul li.list-item::after {
    position: absolute;
    height: 80%;
    width: 1px;
    background-color: #333;
    content: '';
    right: -5px;
    top: 50%;
    transform: translate(0, -50%);
}

#navbar-container #footer-top-menu ul li.list-item:last-child::after {
    display: none;
}

#navbar-container .footer-top-menu li.list-item a {
    color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 0;
    padding: 0;
}

#navbar-container #footer-top-menu ul .item-expanded img {
    filter: invert(0%) sepia(98%) saturate(17%) hue-rotate(223deg) brightness(109%) contrast(100%);
}

#navbar-container #footer-top-menu li.list-item a span {
    color: #fff;
    display: block;
    font-size: .9rem;
    margin-top: 0.5rem;
    font-weight: 400;
    line-height: 1rem;
    letter-spacing: 0;
}

#navbar-container #footer-top-menu li.list-item a img {
    height: auto;
}

#navbar-container #footer-top-menu .dropdown-menu-rewards,
#navbar-container #footer-top-menu .dropdown-menu-app {
    display: none;
    width: 100%;
    min-width: 250px;
    padding: 2rem;
    left: 0;
    border: 1px solid #333;
    position: absolute;
    bottom: auto;
    top: 75px;
    background: #000;
    z-index: 99999999;
}
#navbar-container #footer-top-menu .drp-down .d-block {max-width:100%;}
#navbar-container #footer-top-menu .drp-down .d-block img {max-width:100%;}
#navbar-container .navbar-items .nav-search .search-text{
    background-color:  rgb(251 250 250) !important;
}
#navbar-container #footer-top-menu .dropdown-menu-rewards.open,
#navbar-container #footer-top-menu .dropdown-menu-app.open {
    display: flex;
    justify-content: center;

}

#navbar-container #footer-top-menu .dropdown-menu-app.open {
    z-index: 9999;
}

#navbar-container #footer-top-menu .dropdown-menu-rewards.open::before,
#navbar-container #footer-top-menu .dropdown-menu-app.open::before {
    bottom: 0;
    top: 1px;
    left: 60%;
    transform: translate(0%, -50%);
    content: "";
    position: absolute;
    pointer-events: none;
    background-image: url(/image/saparator.svg);
    height: 20px;
    width: 20px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #000;
}

#navbar-container #footer-top-menu .dropdown-menu-app.open::before {
    left: 10%;
}

#navbar-container #footer-top-menu .dropdown-menu-rewards .menu-text p a,
#navbar-container #footer-top-menu .dropdown-menu-app .menu-text p a {
    color: #009C90;
    font-size: 1rem;
    font-weight: normal;
}

#navbar-container #footer-top-menu .dropdown-menu-rewards .menu-text h6,
#navbar-container #footer-top-menu .dropdown-menu-app .menu-text h6 {
    margin-bottom: 1rem;
    font-size: 24px;
    line-height: 29px;
    font-weight: lighter;
    color: #ffffff;
    font-family: "termina", sans-serif;
}


.footer-nav-top {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-top li {
    position: relative;
    padding: 0 1rem
}

.footer-nav-top li:first-child::after {
    position: absolute;
    height: 70%;
    width: 1px;
    background: #ffffff;
    content: '';
    right: 0px;
    top: 5px;
}

.footer-nav-top li a {
    color: #ffffff;
    font-family: termina, sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
}

.footer .items-list {
    position: relative;
}

@media (min-width: 481px) and (max-width: 767px) {
    .footer-nav-top {
        padding-top: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav-top li:first-child {
        padding-bottom: 1rem;
    }

    .footer-nav-top li:first-child::after {
        display: none;
    }

    .footer .section-footer .logo {
        text-align: center;
    }

    .footer .section-footer .logo img {
        height: 30px;
    }

    .footer-nav-top li a {
        font-size: .9rem;
    }

    .footer .text-items {
        text-align: center;
    }

    .footer .items-list {
        text-align: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }

    .footer .items-list:after {
        position: absolute;
        content: '';
        bottom: -1rem;
        background: #5C5C5C;
        height: 1px;
        width: 100%;
        left: 0;
    }

    .footer-copyright-text {
        margin-bottom: 2rem;
    }
}

@media (min-width: 280px) and (max-width: 480px) {
    .footer-nav-top {
        padding-top: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav-top li:first-child {
        padding-bottom: 1rem;
    }

    .footer-nav-top li:first-child::after {
        display: none;
    }

    .footer .section-footer .logo {
        text-align: center;
    }

    .footer .section-footer .logo img {
        height: 30px;
    }

    .footer-nav-top li a {
        font-size: .9rem;
    }

    .footer .text-items {
        text-align: center;
    }

    .footer .items-list {
        text-align: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }

    .footer .items-list:after {
        position: absolute;
        content: '';
        bottom: -1rem;
        background: #5C5C5C;
        height: 1px;
        width: 100%;
        left: 0;
    }

    .footer-copyright-text {
        margin-bottom: 2rem;
    }
}

.separator-bottom {
    position: relative;
    border-bottom: 1px solid #5C5C5C;
}

.footer .footerAwards {
    border: 0;
}

.footer.main-footer {
    padding-bottom: 2rem;
}

.footer .text-items p {
    margin-bottom: 4px;
}


.section-video .gotheenergy {
    position: relative;
    z-index: 3;
    transform: translate(0, 130%);
    transition: 1.5s linear;
}

/* Skip Content CSS */

.hidden-skip {
    padding: 8px;
    position: absolute;
    background: transparent;
    left: 50%;
    height: 30px;
    transform: translateY(-100%);
    transition: transform 0.3s;
    text-indent: -99999999px;
}

.footer-copyright-text p {
    margin-bottom: 0;
}

.hidden-element {
    position: absolute;
    visibility: hidden;
    z-index: -1;
    display: none;
}


.hidden-element span {
    visibility: hidden;
    opacity: 0;
}

button:focus {
    line-height: inherit;
}

button:focus:not(:focus-visible) {
    line-height: inherit;
    outline: none;
}

/* Remove outline for non-keyboard :focus */
*:focus:not(.focus-visible) {
    outline: none;
}

/* Optional: Customize .focus-visible */
button:focus-visible {
    outline-color: transparent;
}

a.skip-main {
    left: -1000%;
    position: absolute;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}

a.skip-main:focus,
a.skip-main:active {
    color: #fff;
    background-color: #000;
    left: auto;
    top: auto;
    width: 00003%;
    height: auto;
    overflow: auto;
    margin: 0%;
    padding: 0;
    border-radius: 0;

    text-align: center;
    font-size: 1.2em;
    z-index: -999;
}


/* Homepage Video Button */

.button-skip-video {
    background-repeat: no-repeat;
    background-position: center -100%;
    background-size: 100%;
    background-color: #0000009e;
    color: #8E8E8E;
    padding: 8px 10px;
    border: 0;
    width: auto;
    line-height: 100%;
    overflow: hidden;
    font-weight: 700;
    font-size: 0.7rem;
    line-height: 1;
    text-transform: lowercase;
    text-align: center;
    letter-spacing: 1.3px;
    transition: all 0.6s ease-in;
    display: block;
    position: absolute;
    right: 45px;
    top: 3px;
    cursor: pointer;
    z-index: 999;
    border: 1px solid transparent;

}

.video-homepage div.w-css-reset[data-handle="clickForSoundButton"] .w-css-reset.w-css-reset-tree {
    display: block !important
}

#wistia_chrome_24 #wistia_grid_32_wrapper .w-css-reset-tree button,
.video-homepage div.w-css-reset[data-handle="clickForSoundButton"] button.w-vulcan-v2-button[aria-label="Click for sound"] {
    padding: 0 !important;
    background-color: #0000009e !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 29px !important;
    width: 38px !important;
    top: 3px !important;
    right: 3px !important;
    z-index: 999;
    border-radius: 0 !important;
}

div.w-css-reset[data-handle="clickForSoundButton"] button.w-vulcan-v2-button[aria-label="Click for sound"] {
    display: none !important;
}

#wistia_chrome_24 #wistia_grid_32_wrapper .w-css-reset-tree button::before,
.video-homepage div.w-css-reset[data-handle="clickForSoundButton"] button.w-vulcan-v2-button[aria-label="Click for sound"]:before {
    content: '';
    background: #8E8E8E;
    top: 50%;
    position: absolute;
    height: 30%;
    width: 1px;
    left: 30%;
    transform: translate(-50%, -50%) rotate(45deg);
}

#wistia_chrome_24 #wistia_grid_32_wrapper .w-css-reset-tree button:after,
.video-homepage div.w-css-reset[data-handle="clickForSoundButton"] button.w-vulcan-v2-button[aria-label="Click for sound"]:after {
    content: '';
    background: #8E8E8E;
    top: 50%;
    position: absolute;
    height: 30%;
    width: 1px;
    left: 30%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

#wistia_chrome_24 #wistia_grid_32_wrapper .w-css-reset-tree button.mute-video:before,
.video-homepage div.w-css-reset[data-handle="clickForSoundButton"] button.w-vulcan-v2-button[aria-label="Click for sound"].mute-video:before {
    display: none;
}

#wistia_chrome_24 #wistia_grid_32_wrapper .w-css-reset-tree button.mute-video:after,
div.w-css-reset[data-handle="clickForSoundButton"] button.w-vulcan-v2-button[aria-label="Click for sound"].mute-video:after {
    display: none;
}

#wistia_chrome_24 #wistia_grid_32_wrapper .w-css-reset-tree button svg,
div.w-css-reset[data-handle="clickForSoundButton"] button.w-vulcan-v2-button[aria-label="Click for sound"] svg {
    transform: rotateY(180deg);
    color: #8E8E8E;
    display: block;
    padding: 0;
    position: relative;
	width:100%;
	height:100%;
}

#wistia_chrome_24 #wistia_grid_32_wrapper .w-css-reset-tree button svg g,
div.w-css-reset[data-handle="clickForSoundButton"] button.w-vulcan-v2-button[aria-label="Click for sound"] svg g {
    display: none;
}

#wistia_chrome_24 #wistia_grid_32_wrapper .w-css-reset-tree button.mute-video svg g,
div.w-css-reset[data-handle="clickForSoundButton"] button.w-vulcan-v2-button[aria-label="Click for sound"].mute-video svg g {
    color: #8E8E8E;
    stroke: #8E8E8E;
    display: block;
}

#wistia_chrome_24 #wistia_grid_32_wrapper .w-css-reset-tree button svg polygon,
div.w-css-reset[data-handle="clickForSoundButton"] button.w-vulcan-v2-button[aria-label="Click for sound"] svg polygon {
    fill: #8E8E8E;
}

.mr-custom-4 {
    margin-right: 4.5rem !important;
}

.slider-heading {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer .social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media only screen and (min-width:1023px) and (max-width:1366px) {
    .section-video .text-container .got-energy-heading {
        font-size: 2.5rem;
    }

    .main-navbar ul li {
        margin: 0.5rem;
    }

    .main-navbar ul li {
        font-size: .9rem;
    }

}


#logo-desktop,
#top-nav {
    transition: all 300ms ease-out;
    opacity: 1;
    height: auto;
}

#logo-desktop.hidden,
#top-nav.hidden {
    transition: all 200ms ease-in-out;
    transform: translateY(-100%);
    height: 0;
}

#sticky-nav {
    transition: all 300ms ease-in-out;
}

.fixed-top {
    transform: translateY(0px);
    transition: all 300ms ease-in-out;
}

.animateOut {
    transform: translateY(-100%);
}

.animateIn {
    transform: translateY(0px);
}


#sticky-nav .navbar-expand-lg .navbar-nav {}

#sticky-nav.fixed-top {
    animation: scrollMoveUp 0.4s linear;

}

#sticky-nav.fixed-top .navbar-expand-lg {
    padding-bottom: 0
}

@keyframes scrollMoveUp {

    0% {
        top: -50px;
    }

    25% {
        top: -35px;
    }

    50% {
        top: -25px;
    }

    75% {
        top: -12px;
    }

    100% {
        top: 0px;
    }
}

a:focus,
input:focus,
textarea:focus,
select:focus,
button:focus,
p:focus,
button:focus,
a:hover {
   text-decoration: none;
   outline-style: solid;
  outline-width: 0;
  outline-color: transparent;
}

#app-popup {
    z-index: 9999999999;
}

