* {
    --main-bg1-color: #25567e;
    --main-bg2-color: #131920;

    --main-bg-contrast1-color: #0f1c27;
    --main-bg-contrast2-color: #0003;

    --main-bg-contrast-trans1-color: #24384bf1;
}

#background {
    display: none;
}

#backgroundColor {
    position: fixed;
    display: block;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: radial-gradient(ellipse at bottom, var(--main-bg1-color) 0%, var(--main-bg2-color) 100%);
}



body {
    padding-top: 70px;
}

.deskSpace100 { padding-top: 100px; }
@media (max-width: 950px) { .deskSpace100 { padding-top: 0px; }}






.streamerInfo .linkButtonV1 {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 11px 22px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    font-size: 21px;
    display: block;
    width: max-content;
    font-weight: 500;
    border: none;
    outline: none;
    display: block;
    width: max-content;
}



/* bonushunt styles */
.bonushuntGridContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 370px 300px auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-areas: "bonushuntTable bonushuntTable tipGame" "bonushuntTable bonushuntTable bonushuntStats";

    --mainCard-bgColorDark: #191d24;
    --mainCard-bgColorContrast1: #1d222b;
}

/* bonushuntTable */
.bonushuntGridContainer .bonushuntTable {
    grid-area: bonushuntTable;
    position: relative;
    background-color: #1f252e;
    border-radius: 15px;
    overflow: hidden;

    overflow: auto;
    height: auto;
    /*height: 689px;*/
}

.bonushuntGridContainer .bonushuntTable table {
    border-collapse: collapse;
    color: #fff;

    width: 100%;
    overflow-y: scroll;
}

.bonushuntGridContainer .bonushuntTable table thead tr {
    background-color: var(--mainCard-bgColorDark);
}

.bonushuntGridContainer .bonushuntTable table thead th {
    background-color: var(--mainCard-bgColorDark);
    position: sticky;
    top: 0; 
    z-index: 2;
}

.bonushuntGridContainer .bonushuntTable table thead th i {
    color: rgb(145, 185, 218, 0.9);
}

.bonushuntGridContainer .bonushuntTable table tbody {

}

.bonushuntGridContainer .bonushuntTable table tbody tr {
    background-color: var(--mainCard-bgColorContrast1);
}

.bonushuntGridContainer .bonushuntTable table tbody tr:nth-child(2n) {
    background-color: var(--mainCard-bgColorDark);
}

.bonushuntGridContainer .bonushuntTable table td,
.bonushuntGridContainer .bonushuntTable table th {
    text-align: left;
    padding: 15px 0px;
    font-family: 'Rubik', sans-serif;
}

.bonushuntGridContainer .bonushuntTable table td:first-child,
.bonushuntGridContainer .bonushuntTable table th:first-child {
    padding-left: 30px;
}

.bonushuntGridContainer .bonushuntTable table tbody td:last-child {
    /*display: flex;
    align-items: center;*/
}

.bonushuntGridContainer .bonushuntTable .bestSlotIcon {
    color: gold;
    margin-left: 15px;
    font-size: 19px;
}

.bonushuntGridContainer .bonushuntTable .worstSlotIcon {
    color: #bb9c86;
    margin-left: 15px;
    font-size: 19px;
}

/*.bonushuntGridContainer .bonushuntTable .profitIndicator {
    height: 9px;
    width: 9px;
    border-radius: 20px;
    display: block;
    margin-left: 8px;
}

.bonushuntGridContainer .bonushuntTable .profitIndicator.profit {
    background-color: #47b487;
}

.bonushuntGridContainer .bonushuntTable .profitIndicator.noProfit {
    background-color: #e67070;
}*/

.bonushuntGridContainer .bonushuntTable table tbody td.profit {
    color: #54c495;
}

.bonushuntGridContainer .bonushuntTable table tbody td.noProfit {
    color: #f87979;
}

.bonushuntGridContainer .bonushuntTable .currentlyPlaingIcon {
    margin-right: 15px;
    color: #47b487;
}




/* tipGame */
.bonushuntGridContainer .tipGame {
    grid-area: tipGame;
    background-color: var(--mainCard-bgColorDark);
    border-radius: 15px;
    overflow: hidden;
    padding: 25px 30px 30px 30px;
    color: #fff;
    position: relative;
}

.bonushuntGridContainer .tipGame .title {
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.bonushuntGridContainer .tipGame .inputBoxWithBorder span {
    background-color: var(--mainCard-bgColorDark) !important;
}

.bonushuntGridContainer .tipGame button {
    border: none;
    outline: none;
    border-radius: 50px;
    padding: 10px 15px;
    background-color: #2b835e;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.bonushuntGridContainer .tipGame button:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0 0);
    cursor: pointer;
}

.bonushuntGridContainer .tipGame .b1 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.bonushuntGridContainer .tipGame .b1 i {
    color: #47b487;
}

.bonushuntGridContainer .tipGame .tipSuccessSection button {
    margin-top: 20px;
    background-color: #ffffff23;
    font-weight: 400;
}


/* bonushuntStats */
.bonushuntGridContainer .bonushuntStats {
    grid-area: bonushuntStats;
    position: relative;
    color: #fff;
    background-color: var(--mainCard-bgColorDark);
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 30px;
    height: auto;
}

.bonushuntGridContainer .bonushuntStats .titleWrapper {
    padding: 25px 30px 0px 30px;
}

.bonushuntGridContainer .bonushuntStats .title {
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.bonushuntGridContainer .bonushuntStats table {
    border-collapse: collapse;
    width: 100%;
}

.bonushuntGridContainer .bonushuntStats table tbody tr {
    background-color: var(--mainCard-bgColorContrast1);
}

.bonushuntGridContainer .bonushuntStats table tbody td {
    padding: 10px 0;
    font-family: 'Rubik', sans-serif;
}

.bonushuntGridContainer .bonushuntStats table tbody td:first-child {
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.75);
}

.bonushuntGridContainer .bonushuntStats table tbody tr:nth-child(2n) {
    background-color: var(--mainCard-bgColorDark);
}

.bonushuntGridContainer .bonushuntStats table td:last-child,
.bonushuntGridContainer .bonushuntStats table th:last-child {
    text-align: right;
    padding-right: 30px;
}


/* offer */
.offer {
    background-color: var(--mainCard-bgColorDark);
    height: max-content;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.offer .casinoLogo {
    width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    border-radius: 15px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
}

.offer .offerInfos {
    display: flex;
    justify-content: center;
    margin: 15px 0 24px 0;
}

.offer .offerInfos p {
    font-size: 34px;
    margin-right: 20px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.685);
    color: gold;
    font-weight: bold;
}

.offer .offerInfos p:last-child {
    margin-right: 0;
}

.offer .offerInfos p span {
    display: block;
    font-size: 15px;
    font-weight: normal;
    color: white;
    text-shadow: none;
    text-align: center;
}

.offer .infoSection {
    margin-bottom: 25px;
}

.offer .playButton {
    margin: 0 auto;
}


/* Mobile */
@media (max-width: 950px) {
	.bonushuntGridContainer {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "bonushuntTable" "bonushuntStats" "tipGame";
    }

    .bonushuntGridContainer .bonushuntTable table td:first-child,
    .bonushuntGridContainer .bonushuntTable table th:first-child {
        padding-left: 15px;
    }

    .bonushuntGridContainer .bonushuntTable table td:last-child,
    .bonushuntGridContainer .bonushuntTable table th:last-child {
        padding-right: 15px;
    }

    .bonushuntGridContainer .bonushuntTable table th .text {
        display: none;
    }

    .bonushuntGridContainer .bonushuntTable table td {
        white-space: nowrap;
        padding-right: 0px;
        text-overflow: ellipsis;
        padding-right: 15px;
    }

    .bonushuntGridContainer .bonushuntTable table td:first-child {
        white-space: normal;
    }

    .bonushuntGridContainer .tipGame {
        padding: 20px 20px 20px 20px;
    }

    .bonushuntGridContainer .bonushuntStats .titleWrapper {
        padding: 20px 20px 0px 20px;
    }

    .bonushuntGridContainer .bonushuntStats {
        padding-bottom: 20px;
    }

    .streamerInfo .linkButtonV1 {
        margin: 20px auto 0px auto;
    }
}


.allOffersButton {
    display: block;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 14px 25px;
    margin: 30px auto;
    border-radius: 50px;
    width: max-content;
    text-decoration: none;
    font-size: 19px;
    border: none;
    outline: none;
}