/* =========================================================
   CASINO OFFERS
   ========================================================= */

.widget-bonus-list {
    width: 100%;
    margin: 25px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    box-sizing: border-box;
}


/* =========================================================
   CARD
   ========================================================= */

.widget-bonus-card {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 425px;
    margin: 0;
    padding: 0 0 10px;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .20);
    box-sizing: border-box;
}


/* =========================================================
   LARGE CARD
   First offer = 2 columns
   ========================================================= */

.widget-bonus-card.widget-large {
    grid-column: span 2;
    height: 425px;
    background: #242424;
}


/* =========================================================
   INFO / CLOSE BUTTONS
   ========================================================= */

.widget-info-btn,
.widget-close-btn {
    position: absolute;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 30px;

    cursor: pointer;

    box-sizing: border-box;
}

.widget-info-btn {
    top: 12px;
    left: 12px;

    color: #111;
    background: #f1f1f1;

    font-weight: 700;
}

.widget-close-btn {
    top: 12px;
    right: 12px;

    color: #aaa;
    background: #444;

    font-size: 25px;
    font-weight: 300;
}

.widget-info-btn:hover,
.widget-close-btn:hover {
    opacity: .85;
}


/* =========================================================
   SMALL CARD
   ========================================================= */

.widget-bonus-card.widget-small {
    display: flex;
    flex-direction: column;

    background: #fff;
}


/* =========================================================
   SMALL CARD - LOGO HEADER
   ========================================================= */

.widget-bonus-card.widget-small > a:first-of-type {
    display: block;

    width: 100%;
    height: 135px;

    margin: 0;
    padding: 0;

    text-decoration: none;

    flex: 0 0 135px;
}

.widget-bonus-logo {
    position: relative;

    width: 100%;
    height: 135px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    box-sizing: border-box;
}

.widget-bonus-logo > img:not(.widget-iso) {
    display: block;

    width: 110px;
    height: 110px;

    max-width: 110px;
    max-height: 110px;

    object-fit: contain;

    margin: 0 auto;
}

.widget-bonus-logo .widget-iso {
    position: absolute;

    left: 12px;
    bottom: 12px;

    display: block;

    width: 30px;
    height: 30px;

    max-width: 30px;
    max-height: 30px;

    object-fit: contain;

    margin: 0;
}


/* =========================================================
   SMALL CARD CONTENT
   ========================================================= */

.widget-bonus-content {
    width: 100%;

    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 25px 20px 18px;

    text-align: center;

    box-sizing: border-box;
}

.widget-bonus-text {
    display: block;

    width: 100%;

    margin: 0 0 12px;

    color: #111;

    font-size: 28px;
    line-height: 1.15;
    font-weight: 600;

    text-align: center;
}

.widget-bonus-text > span {
    display: block;
}

.widget-ready-to-play {
    display: block;

    width: 100%;

    margin: 0 0 14px;

    color: #555;

    font-size: 17px;
    line-height: 24px;
    font-weight: 400;

    text-align: center;
}


/* =========================================================
   CLAIM BONUS BUTTON
   ========================================================= */

.widget-claim-bonus-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 60px;

    margin: auto 0 10px;
    padding: 12px 25px;

    border: 0;
    border-radius: 35px;

    background: #00df16;
    color: #fff !important;

    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;

    text-align: center;
    text-decoration: none;

    box-shadow: 0 7px 0 #008d13;

    cursor: pointer;

    box-sizing: border-box;

    transition:
            transform .15s ease,
            box-shadow .15s ease,
            opacity .15s ease;
}

.widget-claim-bonus-btn:hover,
.widget-claim-bonus-btn:focus,
.widget-claim-bonus-btn:visited {
    color: #fff !important;
    text-decoration: none !important;
}

.widget-claim-bonus-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 9px 0 #008d13;
}

.widget-claim-bonus-btn:active {
    transform: translateY(3px);

    box-shadow: 0 4px 0 #008d13;
}


/* =========================================================
   18+ / GAMBLE AWARE
   ========================================================= */

.widget-line-text {
    display: block;

    width: 100%;

    margin: 0;

    color: #444;

    font-size: 16px;
    line-height: 22px;
    font-weight: 400;

    text-align: center;
}

.widget-line-text a {
    color: #444;

    text-decoration: underline;
}

.widget-line-text a:hover {
    color: #111;
}


/* =========================================================
   LARGE CARD
   ========================================================= */

.widget-large-bg {
    position: relative;

    width: 100%;
    height: 100%;

    background: #242424;

    border-radius: 12px;

    overflow: hidden;

    box-sizing: border-box;
}

.widget-large-content {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}

.widget-bonus-content-white {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px 70px 30px;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   LARGE LOGO
   ========================================================= */

.widget-large-logo {
    position: relative;

    width: 120px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 0 18px;

    border-radius: 50%;

    overflow: visible;
}

.widget-large-logo > img:not(.flag img) {
    display: block;

    width: 96px;
    height: 96px;

    max-width: 96px;
    max-height: 96px;

    object-fit: contain;

    border-radius: 50%;
}

.widget-large-logo .flag {
    position: absolute;

    top: -2px;
    right: -2px;

    z-index: 5;
}

.widget-large-logo .flag img {
    display: block;

    width: 24px;
    height: 24px;

    object-fit: contain;
}


/* =========================================================
   LARGE CARD TEXT
   ========================================================= */

.widget-bonus-text-white {
    display: block;

    width: 100%;

    margin: 0 0 22px;

    color: #fff;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 600;

    text-align: center;
}

.widget-bonus-text-white > span {
    display: block;
}


/* =========================================================
   LARGE CARD BUTTON
   ========================================================= */

.widget-claim-bonus-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    width: min(620px, 100%);
    min-height: 72px;

    margin: 0;
    padding: 15px 35px;

    border-radius: 40px;

    background: linear-gradient(
            180deg,
            #ffbf1a 0%,
            #ffbe0b 100%
    );

    color: #111 !important;

    font-family: 'Montserrat', sans-serif;
    font-size: 29px;
    line-height: 1;
    font-weight: 600;

    text-decoration: none;
    text-align: center;

    box-shadow: 0 7px 0 #d85b19;

    box-sizing: border-box;

    transition:
            transform .15s ease,
            box-shadow .15s ease,
            opacity .15s ease;
}

.widget-claim-bonus-btn-large:hover,
.widget-claim-bonus-btn-large:focus,
.widget-claim-bonus-btn-large:visited {
    color: #111 !important;
    text-decoration: none !important;
}

.widget-claim-bonus-btn-large:hover {
    color: #111;

    transform: translateY(-2px);

    box-shadow: 0 9px 0 #d85b19;
}

.widget-claim-bonus-btn-large:active {
    transform: translateY(3px);

    box-shadow: 0 4px 0 #d85b19;
}

.widget-large-bonus-text {
    display: block;
}


/* =========================================================
   LINKS INSIDE CARDS
   ========================================================= */

.widget-bonus-card a {
    text-decoration: none;
}

.widget-bonus-card a:hover {
    opacity: 1;
}


/* =========================================================
   TABLET
   ========================================================= */

@media only screen and (max-width: 1024px) {

    .widget-bonus-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .widget-bonus-card {
        height: 410px;
    }

    .widget-bonus-card.widget-large {
        grid-column: span 2;
        height: 410px;
    }

    .widget-bonus-text {
        font-size: 25px;
    }

    .widget-bonus-text-white {
        font-size: 36px;
    }

    .widget-claim-bonus-btn-large {
        width: min(560px, 100%);
        font-size: 27px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media only screen and (max-width: 600px) {

    .widget-bonus-list {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 20px;
    }

    .widget-bonus-card,
    .widget-bonus-card.widget-large {
        grid-column: span 1;

        width: 100%;
        height: auto;

        min-height: 400px;
    }


    /* Small card */

    .widget-bonus-card.widget-small {
        min-height: 400px;
    }

    .widget-bonus-logo,
    .widget-bonus-card.widget-small > a:first-of-type {
        height: 125px;

        flex-basis: 125px;
    }

    .widget-bonus-logo > img:not(.widget-iso) {
        width: 95px;
        height: 95px;

        max-width: 95px;
        max-height: 95px;
    }

    .widget-bonus-logo .widget-iso {
        left: 10px;
        bottom: 10px;

        width: 26px;
        height: 26px;

        max-width: 26px;
        max-height: 26px;
    }

    .widget-bonus-content {
        padding: 22px 16px 18px;
    }

    .widget-bonus-text {
        font-size: 23px;
        line-height: 1.2;

        margin-bottom: 10px;
    }

    .widget-ready-to-play {
        font-size: 16px;
        line-height: 22px;

        margin-bottom: 12px;
    }

    .widget-claim-bonus-btn {
        min-height: 56px;
        font-size: 23px;
        padding: 12px 20px;
    }


    /* Large card */

    .widget-large-bg {
        min-height: 400px;
    }

    .widget-large-content {
        min-height: 400px;
    }

    .widget-bonus-content-white {
        padding: 45px 20px 30px;
    }

    .widget-large-logo {
        width: 100px;
        height: 100px;

        margin-bottom: 15px;
    }

    .widget-large-logo > img:not(.flag img) {
        width: 82px;
        height: 82px;

        max-width: 82px;
        max-height: 82px;
    }

    .widget-bonus-text-white {
        font-size: 29px;
        line-height: 1.15;

        margin-bottom: 20px;
    }

    .widget-claim-bonus-btn-large {
        width: 100%;
        min-height: 62px;

        padding: 13px 20px;

        font-size: 23px;
    }

    .widget-info-btn,
    .widget-close-btn {
        width: 29px;
        height: 29px;
    }

    .widget-info-btn {
        top: 10px;
        left: 10px;

        font-size: 18px;
    }

    .widget-close-btn {
        top: 10px;
        right: 10px;

        font-size: 23px;
    }

    .widget-line-text {
        font-size: 15px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media only screen and (max-width: 380px) {

    .widget-bonus-text {
        font-size: 21px;
    }

    .widget-bonus-text-white {
        font-size: 26px;
    }

    .widget-claim-bonus-btn {
        font-size: 21px;
    }

    .widget-claim-bonus-btn-large {
        font-size: 21px;
    }
}
