section .title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
section .title h3 {
    font-size: 24px;
    font-weight: 900;
    color: #0B71F0;

    text-transform: capitalize;
    margin: 0;
    padding: 0;
}
section .title a {
    font-weight: 700;
    font-size: 16px;
    color: #0B71F0;
}

section .title.centered {
    flex-direction: column;
    justify-content: center;
}
section .title.centered h3{
    color: black;
}
section .title.centered small {
    font-weight: 400;
    font-size: 16px;
}

section {
    padding: 40px 0;
}

section.my-8 {
    padding: 8px 0;
}


section.jumbo {
    background-color: #6500C0;
    width: 100%;
    text-align: center;
    padding: 0;
}
section.jumbo img {
    max-width: 1400px;
    width: 100%;
    display: block;
    margin: 0 auto;
}
section.jumbo img.mobile {
    display: none;
}
section.jumbo .description {
    width: 100%;
    background: #6500C0;
    margin-bottom: 0;
}
section.jumbo .description p {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 14px;
}


section.latest-bingo-games .games {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
section.latest-bingo-games .games .game {
    background-color: white;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 8px 16px;
}
section.latest-bingo-games .games .game .title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 8px;
}
section.latest-bingo-games .games .game .title span {
    font-weight: 900;
    font-size: 14px;
    color: black;
}
section.latest-bingo-games .games .game .title .time {
    font-weight: 700;
    font-size: 13px;
    color: #FF02CC;
}
section.latest-bingo-games .games .game .game_image {
    position: relative;
}
section.latest-bingo-games .games .game .game_image .latest_game_overlay {
    position: absolute;

    height: 126px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    top: 0;
}
.latest_game_overlay .bingo_type {
    width: 32px;
    height: 32px;

    margin-top: 10px;
    margin-left: 10px;

    line-height: 32px;
    text-align: center;
    font-weight: 800;
    font-size: 16px;

    background-color: white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
}
.latest_game_overlay .room-progress {
    width: 223px;

    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3px;

    font-weight: 800;
    font-size: 16px;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 64.06%, #000000 100%);
}
section.latest-bingo-games .games .game .info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 12px;
}
section.latest-bingo-games .games .game .info > div {
    display: flex;
    flex-direction: row;
    align-items: center;
}
section.latest-bingo-games .games .game .info > div span {
    font-weight: 700;
    font-size: 13px;
    color: black;
    margin-left: 4px;
}
/** {{{ Featured slots */
section.featured-slots .game-list {
    display: grid;
    grid-template-columns: [first] 160px [second] 160px [third] 160px [fourth] 160px [fifth] 160px [sixth] 160px;
    grid-template-rows: [row-1-start] 220px [row-2-start] 220px [row-2-end];
    gap: 28px;
}
section.featured-slots .game-list .game.large {
    grid-column-start: 1;
    grid-column-end: span 2;
    grid-row-start: 1;
    grid-row-end: span 2;
}

section.featured-slots.in-row .game-list {
    display: flex;
    flex-direction: row;
} 

section.featured-slots .game-list .game .image img {
    width: 100%;
    max-height: 470px;
}
section.featured-slots .game-list .game .image {
    position: relative;
}
section.featured-slots .game-list .game .image .game-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
section.featured-slots .game-list .game .image .game-overlay div.label {
    display: flex;
    transform: skewX(-10deg);
    margin-top: 12px;
    margin-left: -10px;

    border-radius: 2px;
}
section.featured-slots .game-list .game .image .game-overlay .freespins {
    background-color: #5BFFFB;
    padding: 3px;
    padding-right: 12px;
    width: fit-content;
    border-radius: 2px;
}
section.featured-slots .game-list .game .image .game-overlay .new {
    background-color: #FAFF04;
    padding: 3px;
    padding-right: 8px;
    padding-left: 8px;
    width: fit-content;
    margin-left: -6px;
    border-radius: 2px;
}
section.featured-slots .game-list .game .image .game-overlay button.favourite {
    background-color: white;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    width: 30px;
    height: 30px;

    position: absolute;
    right: 10px;
    top: 10px;
}
section.featured-slots .game-list .game .image .game-overlay button.favourite > img {
    margin-top: 8px;
}
section.featured-slots .game-list .game .image .game-overlay button.favourite .hover {
    display: none;
}
section.featured-slots .game-list .game .image .game-overlay button.favourite:hover .normal,
section.featured-slots .game-list .game .image .game-overlay button.favourite.active .normal {
    display: none;
}
section.featured-slots .game-list .game .image .game-overlay button.favourite:hover .hover,
section.featured-slots .game-list .game .image .game-overlay button.favourite.active .hover {
    margin-top: 2px;
    display: block;
}
section.featured-slots .game-list .game .image .game-overlay div span {
    display: block;
    transform: skewX(10deg);
    font-weight: 400;
    font-size: 10px;
    text-transform: uppercase;
}
section.featured-slots .game-list .game .image .game-overlay .freespins span {
    padding-left: 16px;
}

.reviews {
    display: flex;

    width: 952px;
    margin: 0 auto;

    gap: 30px;
    justify-content: flex-start;
}

.reviews {
    display: flex;

    width: 952px;
    margin: 0 auto;

    gap: 30px;
}

.reviews .card {
    background-color: white;
    border-radius: 3px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    padding: 12px;
    min-width: 245px;
}

.winners {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
}

.winners .nav-forward {
    transform: rotate(180deg);
    margin-left: 24px;
}

.winners .nav-back {
    margin-right: 24px;
}

.winners__container {
    max-width: 852px;
    display: flex;
    gap: 30px;
    overflow-x: scroll;
    padding: 34px 0 8px 0;
    margin: -34px 0 -8px 0;
}

.winner {
    display: flex;
    flex-shrink: 0;
    max-width: 190px;
    background: #FFFFFF;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
    cursor: default;
}

.winner__empty {
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    padding: 0 4px;
}

.winner__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand1);
    padding: 4px 8px;
    flex-shrink: 0;
}

.winner__icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.winner__content {
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    padding: 0 4px;
}

.winner__info span {
    color: var(--brand1);
}

.reviews {
    justify-content: center;
    align-items: center;
}

.reviews .nav-forward {
    transform: rotateY(180deg);
}
.reviews .card {
    display: flex;
    flex-direction: row;
    padding: 12px;
}
.reviews .card .rating {
    display: flex;
    gap: 4px;
}
.reviews .card .rating .star {
    background: top left no-repeat url('/website/STAMP/Templates/Bingostars/Images/icons/icon-rating-star.svg');
    width: 25px;
    height: 23px;
}
.reviews .card .quote {
    padding-top: 36px;
    padding-right: 18px;
}

.reviews .card .review p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    margin: 12px 0;
}
.reviews .card .review .name {
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
}

.guarantees {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
}
.guarantees .guarantee {
    display: flex;
    align-items: center;
}
.guarantees .guarantee .guarantee__image {
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: white;
    text-align: center;
    line-height: 75px;
}
div.guarantee__image img {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.guarantees .guarantee .guarantee__content {
    font-weight: 700;
    font-size: 16px;
    padding-left: 8px;
}
section.guarantees__wrapper {
    padding: 8px 0;
}

.pagewithslider {
    width: 1400;
    margin: 0 auto;
}

#topSlider{
    position: relative;
    width: 100%;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-slide {
    margin: 0 auto;
}


#topSliderHolder{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    /*background-color: #6501c0;*/
}

.sliderDescription {
    width: 100%;
    background-color: red;
}

@media screen and (max-width:900px){
    /* .guarantees {
        gap: 25px;
    } */
    .guarantees .guarantee .guarantee__content{
        font-size: 13px;
    }
}

@media screen and (max-width:700px){
    #recentWinnersPortrait .title {
        zoom: 0.8;
    }

    #topSliderHolder{width: 100%;}
    #row1{background-size: 100% auto;}
    #topSlider{width:100%;background-size:100% auto;}
    #gameButtons{display:none;}
}
/*fourth breakpoint 500px*/
@media screen and (max-width:500px){

    .winner .bigger{font-size:14px;}
    #currentTournamentsPortrait .tournament{width:212px;margin-left: auto;margin-right: auto;clear:both;float: none;}

}

/*fifth breakpoint 400px*/
@media screen and (max-width:400px){


    #recentWinnersPortrait .text{font-size:10px;}
    .fruit{width: 23px;}
}
