.gamble {
    height: 190px;
    /* White */

    box-sizing: border-box;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 10px;

    background-color: var(--theme-gamble-background-color);
}

.gamble-information {
    height: 19rem;
    padding: 20px 0;
    /*max-width: 171px;*/
    overflow: hidden;
    object-fit: cover;
    /* Grey Light New */
    border-top: 1px solid var(--theme-gamble-border-color);
    border-left: 1px solid var(--theme-gamble-border-color);
    border-bottom: 1px solid var(--theme-gamble-border-color);
    border-right-style: none;

    border-radius: 10px 0 0 10px;

    display: flex;
}

.solo .gamble-information {
    padding-left: 2rem;
}

.gamble-information .gamble-number {
    color: var(--theme-gamble-number-color);
    /*background: #edf6f9;*/
    background: var(--theme-items-background-color);
    width: 15px;
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
    margin-right: 10px;
    border-radius: 0 10px 10px 0;
    font-weight: bold;
}

.gamble-information .gamble-number.inflation {
    font-size: 10px;
}

.gamble-information .gamble-number.featured {
    background: var(--theme-items-featured-background-color);
}

.gamble-information img {
    max-width: 210px;
}

.gamble-information .gamble-basics {
    background: var(--theme-items-background-color);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.gamble-information .gamble-basics.featured {
    background: var(--theme-items-featured-background-color);
}

.gamble-basics {
    display: flex;
}

.gamble-rating {
    position: absolute;
    left: 0;
    top: 0;
    background: #252324;
    border-radius: 0 0 10px;
    padding: 3px 8px;
}

.gamble-rating.solo {
    position: relative;
    border-radius: 10px;
    padding: 6px 8px;
    height: 36px;
}

.gamble-rating.solo.header-center {
    margin-top: 1.5rem;
    margin-left: 2rem;
}

.gamble-rating-number {
    font-size: 14px;
    font-weight: bold;
    color: white;
    word-spacing: -3px;
}

.gamble-rating-total {
    font-weight: bold;
    font-size: 12px;
    color: #bab9ba;
}

.solo .gamble-rating-number {
    font-size: 17px;
}

.solo .gamble-rating-total {
    font-size: 15px;
}

.gamble-basics .gamble-logo {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gamble-basics .gamble-logo img {
    max-height: 70%;
}

.gamble-bonus {
    color: var(--theme-gamble-color);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.gamble-bonus .upto {
    font-size: 17px;
}

.gamble-bonus .amount {
    font-size: 36px;
    padding: 10px 0;
    font-weight: bolder;
}

.gamble-bonus .custom {
    font-size: 17px;
}

.gamble-details {
    margin-top: 2rem;
}

.gamble-name {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 0;
}

.gamble-description {
    z-index: 1;
    height: 190px;
    padding-left: 2rem !important;
    padding-right: 0;
    border-top: 1px solid var(--theme-gamble-border-color);
    border-bottom: 1px solid var(--theme-gamble-border-color);
}

.gamble-summary {
    display: flex;
    margin-top: 10px;
}

.gamble-summary .gamble-payment-methods {
    border-left: 1px solid #d3d3d3;
    padding-left: 15px;
    margin-left: 15px;
    height: 8rem;
}

.gamble-summary .gamble-payment-methods img {
    margin: 0 2px;
}

.gamble-location img {
    margin-left: -2px;
}

.gamble-description a:focus, a:hover {
    opacity: 1;
}

.gamble-properties {
    min-width: 18rem;
}

.property {
    color: #a1a2a3;
    font-size: 15px;
    letter-spacing: 0;
}

.gamble-play {
    height: 190px;
    /* Grey Light New */

    border: 1px solid var(--theme-gamble-border-color);
    border-left: none;
    box-sizing: border-box;
    border-radius: 0 14px 14px 0;
    padding: 20px;
}

.gamble-play .review-button {
    /*background: transparent;*/
    margin-top: 2rem;
}

.gamble-mobile-package {
    display: none;
}

@media screen and (min-width: 960px) and (max-width: 1366px) {
    .package-info {
        padding: 5px 0 0 1rem;
    }

    .package-info-main {
        height: 17rem;
    }
}

@media screen and (max-width: 1000px) {
    .gamble-memberships {
        width: 26%;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1260px) {
    .gamble-properties .lborder {
        margin-left: 3rem;
    }
}

@media screen and (max-width: 1260px) {
    .gamble {
        height: 100%;
        border: 1px solid var(--theme-gamble-border-color);
        border-radius: 14px;
    }

    .gamble-properties {
        display: flex;
    }

    .gamble-properties i {
        display: none;
    }

    .gamble-information {
        height: 22rem;
        border: none;
        border-radius: 0;
    }

    .gamble-information img {
        max-width: 13rem;
    }

    .gamble-description {
        height: 11rem;
        border-top: none;
        border-bottom: none;
        border-right: none;
        margin-top: 1rem;
    }

    .gamble-basics .gamble-logo {
        width: 45%;
    }

    .gamble-basics .gamble-logo img {
        max-width: 70%;
        max-height: 50%;
    }

    .gamble-basics .gamble-bonus {
        line-height: 2rem;
    }

    .gamble-basics .gamble-bonus .amount {
        font-size: 32px;
    }

    .gamble-basics .gamble-bonus .upto {
        font-size: 15px;
    }

    .gamble-basics .gamble-bonus .custom {
        font-size: 15px;
    }

    .gamble-rating {
        padding: 0 6px;
    }

    .gamble-name {
        margin-top: 10px;
        margin-bottom: 5px;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
    }

    .gamble-play {
        height: initial;
        border: none;
        box-sizing: border-box;
        padding: 20px;
    }

    .property {
        display: block;
    }

    .lborder {
        border-left: 1px solid #d3d3d3;
        padding-left: 2rem;
        margin-left: 6rem;
    }

    .action-buttons {
        display: flex;
        flex-direction: row-reverse;
        grid-column-gap: 1rem;
    }

    .action-buttons .review-button {
        width: 100%;
        background: #e9edf5;
        margin-top: 0;
        margin-right: 5px;
    }

    .action-buttons .play-button {
        width: 50%;
    }

    .action-buttons a, .action-buttons .play-button {
        width: 100%;
    }

    .gamble-information {
        padding-left: 2rem;
    }
}

@media (max-width: 768px) {
    .gamble-information {
        height: 10rem;
        padding: 5px 5px 0 0;
    }

    .solo .gamble-information {
        padding-left: 5px;
    }

    .solo .gamble-basics .gamble-logo {
        padding-left: 0;
    }

    .gamble-basics .gamble-logo {
        width: 50%;
        padding-left: 4rem;
    }

    .gamble-basics .gamble-bonus {
        width: 50%;
    }

    .gamble-basics .gamble-logo img {
        max-height: 80%;
    }

    .solo .gamble-description {
        padding-left: 0 !important;
    }

    .gamble-description {
        text-align: center;
        margin-top: 0;
        height: 100%;
    }

    .gamble-name {
        margin: 1.5rem 0;
    }

    .gamble-summary {
        justify-content: center;
        align-items: center;
        text-align: left;
    }

    .lborder {
        padding-left: 1rem;
        margin-left: 4rem;
    }
}
