body {
    font-family: 'Quicksand';
    background-color: #e7efe3;
}

h1, h2, h3, h4, h5, h6 {
    /* font-family: 'Rowdies'; */
    font-family: 'Bungee';
}

h2#before-mark:before {
    /* background-image: url(../images/before-blue.svg); */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: "";
    display: inline-block;
    height: 12px;
    margin-bottom: 25px;
    margin-left: 0px;
    margin-right: -55px;
    width: 55px;
}
a {
    color: #ffca00;
    font-weight:600;
}

/**** Hero section ****/
.hero {
    background: url('../images/background/sports-betting-1.png') no-repeat center center/cover;
    color: white;
    padding: 40px 0px;
    position:relative;
}
.hero:before {
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background-color:rgba(0, 0, 0, 0.5);
}

.hero div.container {
    
}

.hero div.container div {
  position:relative;
}

.hero div.container .row h2, .hero div.container .row h4 {
    margin-bottom:20px;
}

.hero div.container .row .inner-row {
    margin-left:0;
    margin-right:0;
    padding: 10px 0;
    align-items:center;
    border-radius: 8px;
}

.hero div.container .row .inner-row.age-warning {
    color:#000;
    border:solid 1px #c51717;
    background-color: #ffffc7;
    text-align: center;
}
.hero div.container .row .inner-row.age-warning h1 {
    margin-bottom:0;
}
.hero div.container .row .inner-row.age-warning span {
    font-weight:600;
    font-size:0.8rem;
}
.hero div.container .row .inner-row.age-warning span a {
    color:#df0b0b;
    font-weight:bold;
}

.hero div.container .row .inner-row.games-list {
    border:solid 2px #00cccc;
    background-color: #ffffff;
    text-align:center;
}
.hero div.container .row .inner-row.games-list:not(:last-child) {
    margin-bottom:20px;
}

.hero div.container .row .inner-row.games-list .list-ribbon {
    /* background-color: #199e83; */
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    padding: 3px 3px;
    position: absolute;
    z-index: 1;
    left: 10px;
    top: -22px;
    border-radius: 6px 6px 6px 0px;
    width:auto;
}

.hero div.container .row .inner-row.games-list img {
    max-width: 100%;
    width: auto;
    max-height: 40px;
    height: auto;
    object-fit:contain;
}
.hero div.container .row .inner-row.games-list .welcome-bonus {
    font-weight:700;
    font-size:1.1rem;
    color: #111;
    margin: 10px 0;
}
.hero div.container .row .inner-row.games-list a.cta {
    background: linear-gradient(135deg, rgb(112, 255, 221) 0%, rgb(25, 158, 131) 52%, rgb(65, 209, 199) 100%);
    font-weight:700;
    color: #fff;
    text-decoration:none;
    padding:5px 15px;
    border-radius:50px;
    display:block;
    position: relative;
    overflow: hidden;
}
.hero div.container .row .inner-row.games-list a.cta::before {
    content: '';
    width: 200%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(100%);
    background: linear-gradient(135deg, rgba(255,0,0,0.1) 0%, rgba(255,255,255,0.3) 30%, rgba(255,255,0,0.75) 50%, rgba(255,255,255,0.3) 70%, rgba(255,0,0,0.1) 100%);
    animation: shine 1s infinite;
}
@keyframes shine {
    0% {transform:  translateX(-100%);}
    100% {transform: translateX(100%);}
}

.hero a.btn {
  margin-top:20px;
  background: linear-gradient(135deg, rgb(112, 255, 221) 0%, rgb(25, 158, 131) 52%, rgb(65, 209, 199) 100%);
  border-radius:50px;
  font-family: 'Bungee Inline';
}

/**** Casino Table section ****/
.casino-table {
    width: 100%;
}
.casino-table thead {
    display: table-header-group;
    text-align: center;
}
.casino-table tr {
    display: table-row;
    margin-bottom: 10px;
    background: transparent;
    padding: 0;
}

.casino-table td {
    display: table-cell;
    padding: 10px;
    text-align: center;
    align-content: center;
    background-color: #fff;
}

.casino-table td#index {
    font-weight:600;
}
.casino-table td#description {
    text-align:left;
}

.casino-table td img {
    max-width: 200px;
    max-height: 60px;
}
.casino-table td ul {
    margin-bottom:0;
}
.casino-table td .rating-stars {
    font-size:24px;
    font-weight:600;
}

.casino-table td a.btn-success {
    width:auto;
    min-width:200px;
}
a.btn-success {
    border-radius: 8px;
    box-shadow: 2px 3px 5px #fff;
}

.casino-table td .age-terms {
    color:#e10000;
    font-weight:600;
    font-size:14px;
}
@media only screen and (max-width: 768px) {
    .casino-table thead, .casino-table td#index {
        display: none;
    }
    .casino-table tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 10px;
        background: #fff;
        padding: 10px;
    }
    .casino-table td {
        display: block;
        text-align: center;
        padding: 8px;
    }
    .casino-table td img {
        
    }
}

/**** Info card section ****/
.info-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 15px;
}
.info-card img {
    margin: 5px;
    max-width: 200px;
    max-height: 60px;
}

/**** Footer ****/
.footer {
    background-color: #121212;
    color: white;
    padding: 10px 0;
    text-align: center;
}
.footer a {
    /* color: #ffc107; */
    text-decoration: none;
    margin: 0 10px;
}
p.copy-rights {
    margin-bottom:0;
}

/**** Modal ****/
.modal {
  background: rgba(0, 0, 0, 0.75);
}
.modal-content {
    color: #ccc;
  background: #121212;
  margin: auto;
  padding: 20px;
  border: 5px solid #444;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0px 0px 120px #ff005733;
}
.modal-content h3 {
  color: #fff;
}
.modal-content .modal-header {
  border-bottom:solid 2px #444;
}
.modal-content .modal-header .modal-title {
  color:#fff;
  font-size:2.5rem;
}
.modal-content .modal-footer {
  border-top:solid 2px #444;
}
.close {
  color: #444;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/******** Listed Games Section ********/
#games-list .listed-bonus-reviews-sec {
    margin-top: 20px;
}
#games-list .listed-bonus-reviews-sec .container {
    padding: 0px;
}

#games-list .listed-bonus-reviews-sec .section-header {
    display: flex;
}

#games-list .listed-bonus-reviews-sec .section-header, #games-list .listed-bonus-reviews-sec .section-description {
    color: #fff;
}

#games-list .listed-bonus-reviews-sec .section-header .icon {
    margin-right: 15px;
}

#games-list .listed-bonus-reviews-sec .game-review_custom-fields {
    display: flex;
    margin: 0px 0px 20px 0px;
    border: solid 2px #ccc;
    border-radius: 8px;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
}
#games-list .listed-bonus-reviews-sec .game-review_custom-fields:hover {
    transform: scale(1.01);
}

#games-list .listed-bonus-reviews-sec .list-ribbon {
    background-color: #199e83;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 3px 10px;
    position: absolute;
    z-index: 15;
    left: 10px;
    top: -13px;
    border-radius: 6px 6px 6px 0px;
}
#games-list .listed-bonus-reviews-sec .list-ribbon:before {
    border-color: #ffc400;
    border-right-color: #ffc40099;
    content: "";
    position: absolute;
    left: calc(0% - 10px);
    top: 14px;
    border-width: 10px;
    border-left-color: transparent;
    border-style: solid;
    z-index: -1;
    display:none;
}
#games-list .listed-bonus-reviews-sec .list-ribbon:after {
    border-color: #ffc400;
    border-left-color: #ffc40099;
    content: "";
    position: absolute;
    left: calc(100% - 10px);
    top: 14px;
    border-width: 10px;
    border-right-color: transparent;
    border-style: solid;
    z-index: -1;
    display:none;
}

#games-list .listed-bonus-reviews-sec .game-review_custom-fields .logo-wraper {
    background-color:rgba(255, 255, 255, 1);
    border-radius: 10px 0px 0px 10px;
    position: relative;
    padding: 10px;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#games-list .listed-bonus-reviews-sec .game-review_custom-fields .logo-wraper:after {
    background: url() no-repeat center;
    content: "";
    position: absolute;
    top: 0;
    right: -63px;
    height: 100%;
    width: 72px;
}
@media only screen and (max-width: 767px) {
    #games-list .listed-bonus-reviews-sec .game-review_custom-fields .logo-wraper:after {
        right: 0px;
        width: 80px;
    }
}

#games-list .listed-bonus-reviews-sec .game-review_custom-fields .logo-wraper a.game-logo:before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    width: 36px;
    height: 36px;
    left: -18px;
    top: 50%;
    transform: translate(0, -50%);
}
#games-list .listed-bonus-reviews-sec .game-review_custom-fields .logo-wraper a.game-logo .list-flag {
    position: absolute;
    width: 37px;
    height: 25px;
    left: auto;
    right: -20px;
    top: 50%;
    bottom: auto;
    transform: translate(0, -50%);
    z-index: 1;
}
#games-list .listed-bonus-reviews-sec .game-review_custom-fields .logo-wraper a.game-logo .list-logo {
    max-width: 80%;
    display: block;
    margin: auto;
    max-height: 100px;
    object-fit: contain;
}

#games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper {
    background: url('../images/background/football-4.jpg') no-repeat center center/cover;
    background-color: rgba(255, 255, 255, 0.85);
    background-blend-mode: overlay;
    /* background: linear-gradient(90deg, #f2f2f2 20%, #ddd 80%); */
    display: flex;
    width: 80%;
    padding-left: 1%;
    border-radius: 0px 8px 8px 0px;
}
#games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper > div {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    text-align: center;
}

#games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper .review-bonus-wraper {
    position: relative;
}

@media only screen and (min-width: 768px) {
    #games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper .review-bonus-wraper:before {
        content: "";
        position: absolute;
        width: 1px;
        height: 70%;
        background: #fff;
        left: -10px;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    #games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper .review-bonus-wraper:after {
        content: "";
        position: absolute;
        width: 1px;
        height: 70%;
        background: #fff;
        right: 5px;
        top: 0;
        bottom: 0;
        margin: auto;
    }
}

#games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper .review-bonus-wraper .bonus-amount {
    font-size: 28px;
    line-height: 1.1;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 3px #fff, 0 0 4px #fff, 0 0 5px #fff;
    }
    to {
        text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff, 0 0 6px #fff, 0 0 8px #fff;
    }
}

#games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper .review-description-wraper ul.description-lists {
    margin: 0px 10px;
    padding-left:0px !important;
}
#games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper .review-description-wraper ul.description-lists li {
    /* list-style-type: none; */
    position: relative;
    font-weight: 600;
    font-size: 16px;
    padding-left:5px;
    text-align:left;
}
#games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper .review-description-wraper ul.description-lists li:before {
    /* background-image: url(../images/flame.png); */
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    left: -15px;
    top: 2px;
    background-size: contain;
    background-repeat: no-repeat;
}

#games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper .button-wraper a {
    background: linear-gradient(135deg, rgb(112, 255, 221) 0%, rgb(25, 158, 131) 52%, rgb(65, 209, 199) 100%);
    padding: 8px 40px;
    border-radius: 50px;
    border: solid 1px #fff;
    text-align: center;
    text-decoration:none;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden !important;
    position: relative;
}
#games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper .button-wraper a::before {
    content: '';
    width: 200%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(100%);
    background: linear-gradient(135deg, rgba(255,0,0,0.1) 0%, rgba(255,255,0,0.2) 30%, rgba(0,255,0,0.3) 50%, rgba(0,0,255,0.2) 70%, rgba(255,255,0,0.1) 100%);
    animation: shine-1 1.5s infinite;
}
@keyframes shine-1 {
    0% {transform:  translateX(-100%);}
    100% {transform: translateX(100%);}
}

#games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper .button-wraper a:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.001)), linear-gradient(0deg, #199e83 0%, #1dd57f 100%);
}

#games-list .listed-bonus-reviews-sec .list-1 .content-wrapper .button-wraper a span.play-btn {
    color: #fff;
}

#games-list .listed-bonus-reviews-sec .list-1 .content-wrapper .button-wraper span.age-terms {
    color: #c71c1c;
    font-size:13px;
    font-weight:600;
    line-height:1;
    margin-top:10px;
}

@media only screen and (max-width: 767px) {
    #games-list .banner .banner-content {
        padding:0px 0px 20px 0px;
    }
    #games-list .listed-bonus-reviews-sec .section-header {
        display: block;
    }
    #games-list .listed-bonus-reviews-sec .game-review_custom-fields {
        flex-direction: column;
        border-radius: 10px;
    }
    #games-list .listed-bonus-reviews-sec .game-review_custom-fields .logo-wraper {
        width: 100% !important;
        border-radius: 10px 10px 0px 0px;
        padding-top:20px;
    }
    #games-list .listed-bonus-reviews-sec .game-review_custom-fields .logo-wraper a.game-logo:before {
        left: 50%;
        top: -20px;
        transform: translate(-50%, 0);
    }
    #games-list .listed-bonus-reviews-sec .game-review_custom-fields .logo-wraper a.game-logo .list-flag {
        left: 50%;
        top: auto;
        bottom: -12px;
        transform: translate(-50%, 0);
    }
    #games-list .listed-bonus-reviews-sec .game-review_custom-fields .logo-wraper a.game-logo .list-logo {
        max-height: 70px;
    }
    #games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper {
        display: block;
        width: 100%;
        border-radius: 0px 0px 10px 10px;
        padding-left: 0;
    }
    #games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper > div {
        width: 100% !important;
        padding: 10px 30px;
    }
    #games-list .listed-bonus-reviews-sec .game-review_custom-fields .content-wrapper div.button-wraper a {
        padding: 8px 40px;
    }
}

@media only screen and (max-width: 579px) {
    #games-list .listed-bonus-reviews-sec .container {
        padding: 0px 10px;
    }
    .bonus-amount {
        font-size: 30px !important;
    }
}
