/*
Theme Name: ExS - Child theme
Template: exs
Author: Filipa Oliveira
Version: 4.2.6
*/
/* GLOBAL */
 body {
    font-family: "Roboto", sans-serif; 
    font-weight: 400;
    font-size: 1rem;
    text-align: justify;
     color: #000000;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700; 
    margin-top: 1em;
    text-align: left;
    color: #000000;
}
.gradient {
  height: 6px;
  width: 100%;
    background: #001489;
    background: linear-gradient(90deg, rgba(0, 20, 137, 1) 0%, rgba(0, 20, 137, 1) 14%, rgba(0, 119, 73, 1) 28%, rgba(0, 119, 73, 1) 42%, rgba(255, 184, 28, 1) 56%, rgba(255, 184, 28, 1) 70%, rgba(227, 60, 49, 1) 84%, rgba(227, 60, 49, 1) 100%);
}
.space {
    margin-bottom: 1.875rem;
}
.schema-faq-section {
    margin-bottom: 1rem;
}
#wpadminbar a:hover {
    color: #FFB81C!important;
}
.showM {
    display: block!important;
}
.showD {
    display: none!important;
}
a:focus, a:hover {
    color: #001489!important;
}
@media screen and (min-width: 450px) {
    .showD {
        display: block!important;
    }
    .showM {
        display: none!important;
    }
}
/* ANIMATION BALL */
.ball-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}
.ball {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
}
/* ANIMATION PLANE */
.plane {
    position: absolute;
    width: 118px;
    height: 75px;
    left: -160px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
}
.plane-body {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/wp-content/themes/exs-child/images/plane-body.svg') no-repeat center center / contain;
}
.propeller {
    position: absolute;
    width: 24px;
    height: 52px;
    right: -12px;
    top: 22%;
    transform: translateY(-50%);
    background: url('/wp-content/themes/exs-child/images/plane-propeller.svg') no-repeat center center / contain;
    /* animação estilo Aviator: ligeira pulsação */
    animation: propeller-stretch 0.25s steps(2) infinite;
    transform-origin: center;
}
@keyframes propeller-stretch {
    0%   { transform: translateY(-50%) scaleY(1.2); }
    50%  { transform: translateY(-50%) scaleY(.8); }
    100% { transform: translateY(-50%) scaleY(1.2); }
}
/* ANIMATION MINE */
.mine {
    position: absolute;
    width: 42px;
    height: 50px;
    background: url('/wp-content/themes/exs-child/images/mine.svg') no-repeat center center;
    background-size: contain;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}
.mine.show {
    opacity: 1;
    transform: scale(1);
}
.mine.exploding {
    background: url('/wp-content/themes/exs-child/images/burst.svg') no-repeat center center; 
    background-size: contain;
    animation: explode-pop 0.4s ease-out forwards;
}
@keyframes explode-pop {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}
/* ANIMATION ROCKET */
.main-pages-header {
    position: relative;
    display: flex; 
    padding: 5.625rem 1.25rem 1.25rem 1.25rem;
    min-height: 200px;
    overflow: hidden;
}
.main-pages-header[data-bg="FFB81C"],
.simple-pages-header[data-bg="FFB81C"] {
  color: #000;
}
.rocket {
    position: absolute;
    bottom: -80px;
    width: 40px;
    height: 80px;
    background: url('/wp-content/themes/exs-child/images/rocket-icon.svg') no-repeat center/contain;
    opacity: 0;
}
@keyframes flyRocket {
    0% {
        transform: translate(0,0) rotate(var(--angle, 0deg));
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--endX, 0), var(--endY, -500px)) rotate(var(--angle, 0deg));
        opacity: 0;
    }
}
/* Breadcrumbs */
.home #breadcrumbs {
    display: none;
}
#breadcrumbs {
    font-size: 0.75rem;
    margin-left: 5px;
}
#breadcrumbs a {
    text-decoration: underline;
    cursor: pointer;
}
.main-pages-header.light-theme #breadcrumbs,
.main-pages-header.light-theme #breadcrumbs a,
.simple-pages-header.light-theme #breadcrumbs,
.simple-pages-header.light-theme #breadcrumbs a,
.simple-pages-header.light-theme .newsMeta,
.simple-pages-header.light-theme .newsMeta a {
    color: #000 !important;
}
.simple-pages-header.light-theme .icon-inline svg {
    stroke: #000 !important;
}
.main-pages-header:not(.light-theme) #breadcrumbs,
.main-pages-header:not(.light-theme) #breadcrumbs a,
.simple-pages-header:not(.light-theme) #breadcrumbs,
.simple-pages-header:not(.light-theme) #breadcrumbs a {
    color: #fff !important;
}
.main-pages-header.light-theme #breadcrumbs a:hover,
.simple-pages-header.light-theme #breadcrumbs a:hover,
.main-pages-header:not(.light-theme) #breadcrumbs a:hover,
.simple-pages-header:not(.light-theme) #breadcrumbs a:hover {
    text-decoration: none;
}
/* HEADER */
#header {
    position: fixed;
    background: #ffffff;
    z-index: 9;
    width: 100%;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .1);  
}
.header-container {
    height: 80px;    
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: block;
    width: 96px;
    margin: 0 10px;    
}
.menuLeft,
.menuRight {
    display: none!important;
}
#mobile_menu,
#nav_toggle,
.mobile-only {
    display: block!important;
    opacity: 1 !important;
    pointer-events: auto!important;
    z-index: 999999;
}
.nav-btn span {
    border-radius: 4px;
    width: 13px;
    height: 3px;
}
.nav-btn span:before {
    width: 18px;  
    border-radius: 4px;  
    margin-left: -5px;
    bottom: 6px;  
    height: 3px;    
}
.nav-btn span:after {
    width: 8px;
    border-radius: 4px;  
    margin-right: 0;
    height: 3px;    
}
.nav-btn.mobile-only.active span,
.nav-btn.mobile-only.active span:after,
.nav-btn.mobile-only.active span:before {
    width: 18px;
    margin: auto;
}
.nav-btn.mobile-only.active span:before {
    top: 2px;   
}
.top-nav.active {
    padding-top: 50px;
}
.top-nav .top-menu a:not([id]):focus, 
.top-nav .top-menu a:not([id]):hover {
    color: #001489!important;
}
.top-menu li.current-menu-item a {
    background: #001489;
    color: #ffffff !important;
    border-radius: 14px;
    padding: .625rem;
}
@media (min-width: 768px) {
    .logo {
        margin: 0 20px;
    }
    .menuLeft,
    .menuRight {
        display: block !important;
    }
    #mobile_menu,
    #nav_toggle,
    .mobile-only {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    .header-container {
        justify-content: center;
    }
    .top-menu li:last-child {
        margin-right: 0;
        padding-right: 0;
    }
    .top-menu li.current-menu-item a {
        background: none !important;
        color: #001489 !important;
        border-radius: 0;
        padding: .5rem 0;
        border-top: none;
    }
    .top-menu > li > a:before {
        top: 0 !important;
        bottom: auto !important;
        background-color: #001489 !important; 
    }  
    .top-menu li.current-menu-item > a:before,
    .top-menu li.current_page_item > a:before,
    .top-menu li.current-menu-ancestor > a:before {
        width: 100% !important;
    }
    .top-menu li.current-menu-item > a:hover:before,
    .top-menu li.current_page_item > a:hover:before,
    .top-menu li.current-menu-ancestor > a:hover:before {
        width: 100% !important;
    }
    .top-menu > li > a:hover {
        border-top: none !important;
    }
} 
/* MAIN PAGES TEMPLATE */
.main-pages-header {
    color: #ffffff;
    padding: 5.625rem 1.25rem 1.25rem 1.25rem;
}
.main-pages-header h1.entry-title {
    color: inherit !important;
}
.main-pages-header.light-theme {
    color: #000000;
}
.main-pages-header.light-theme h1.entry-title {
    color: inherit !important;
}
.main-pages-header-content {
    max-width: 75rem;
    margin: 0 auto;
}
.entry-title {
    margin-top: 1.25rem;
}
.pages-content {
    max-width: 75rem;
    margin: 0 auto;
    padding: 1rem 0.625rem 0; 
}
/* Simple Pages About us etc */
.simple-pages-header {
    padding: 5.625rem 0.5rem 1.25rem 1.25rem;
    color: #ffffff;
}
.simple-pages-header h1.entry-title {
    color: inherit !important;
}
.simple-pages-header.light-theme {
    color: #000000;
}
.simple-pages-header.light-theme h1.entry-title {
    color: inherit !important;
}
/* CTAS TEXT */
.ctas {
    padding-bottom: 1rem;
}
.pages-content a {
    font-weight: 700;
    border-bottom: 3px solid #FFB81C;
}
.pages-content a:hover,
.pages-content a:focus {
    border-bottom: 3px solid #000000;
}
a.ctaReadReview {
    border-bottom: 3px solid #000000; 
}
a.ctaReadReview:hover {
    color: #FFB81C;
    border-bottom: 3px solid #FFB81C; 
}
.gridBox a,
.gridBox a:hover,
.bookiesTable .tableLogo a,
.bookiesTable .tableLogo a:hover,
.bannerMobile a,
.bannerMobile a:hover,
.galleryImgs .slides a,
.galleryImgs .slides a:hover,
.subMenu ul li a,
.subMenu ul li a:hover,
.pagination a,
.pagination a:hover,
a.ctaReadMore:hover,
.newsThumb a,
.newsThumb a:hover {
    border-bottom: none!important;
}
@media screen and (min-width: 450px) {
    .pages-content a {
        position: relative;
        display: inline-block;
        line-height: 1.313rem;
        border-bottom: none;
    }
    .pages-content a:hover {
        border-bottom: none;
    }
    .pages-content a:after {
        width: 100%;
        background-color: #FFB81C;
    }
    .pages-content a:after,.pages-content a:before {
        content: "";
        display: block;
        position: absolute;
        height: 3px;
        left: 0;
        bottom: -4px;
    }
    .pages-content a:before {
        background-color: #001489;
        width: 0;
        -webkit-transition: width .4s cubic-bezier(.77,0,.175,1);
        -o-transition: width .4s cubic-bezier(.77,0,.175,1);
        transition: width .4s cubic-bezier(.77,0,.175,1);
        z-index: 1;
    }
    .pages-content a:hover:before {
        width: 100%;
    }
    /* Remove underline from other links */
    .bannerMobile a:after,
    .bannerMobile a:hover:before,
    .bannerDesktop a:after,
    .bannerDesktop a:hover:before,
    .bookiesTable .tableLogo a:after,
    .bookiesTable .tableLogo a:hover:before,
    .allLink a:after,
    a.button:after,
    a.button:hover:before,
    .gridBox a:after,
    .gridBox a:hover:before,
    .gridBoxTitle a:after,
    .gridBoxTitle a:hover:before,
    .pagination a:after,
    .pagination a:hover:before,
    .subMenu ul li a:after,
    .subMenu ul li a:hover:before,
    a.ctaOffer:after,
    a.ctaOffer:hover:before,
    a.ctaReadMore:after,
    a.ctaReadMore:hover:before, 
    .galleryImgs .slides a:after, 
    .galleryImgs .slides a:hover:before,
    .singleThumb a:after,
    .singleThumb a:hover:before,
    .newsThumb a:after,
    .newsThumb a:hover:before {
        width: 0!important;
    }        
}
/* CTAs */
.ctaSingle {
    text-align: center;
    margin: 1rem auto;
}
a.ctaOffer {
    text-transform: uppercase;
    background-color: #007749;
    padding: 0.5rem 3rem;
    border-radius: 14px;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff!important;
    text-decoration: none;
    transition: background-color 0.3s ease; 
    line-height: unset;
    outline: 3px solid #007749;
    outline-offset: -3px;    
}
a.ctaOffer:hover {
    background-color: #ffffff;
    color: #007749!important;
}
.ctaSingle a.ctaOffer {
    padding: 0.5rem 3rem;
}
a.ctaReadReview {
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 700;    
}
a.ctaReadReview:hover {
    color: #000000!important;
}
a.ctaReadReview:before {
    background-color: #FFB81C!important;
}
a.ctaReadReview:after {
    background-color: #000000!important;
}
.ctaGames {
    text-align: center;
    margin: 1rem 0 1.5rem 0;
}
a.ctaReadMore {
    background-color: #ffffff;
    border: 3px solid #001489!important;
    color: #001489 !important;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 14px;
    padding: .5rem 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease; 
    display: inline;
}
a.ctaReadMore:hover {
    background-color: #001489;
    color: #ffffff !important;
    border: 3px solid #001489!important;
}
.backButton {
    display: flex;
    justify-content: center;
    color: #000000;
}
.backButton a {
    margin-top: 0.313rem;
    border-bottom: none;
}
.backButton a:focus {
    outline: none;
    border-bottom: none;
}
.backButton a:after,
.backButton a:hover:before {
    height: 0;
    width: 0; 
}
.backButton a:hover {
    color: #E33C31!important;   
}
.backButton:before {
    content: '\276E';
    font-size: 18px;
    margin-right: 5px;
    margin-top: 3px;
    color: inherit;
    cursor: pointer;
}
.backButton:hover {
    color: #E33C31!important;
}
.allLink {
    position: relative;
}
.allLink a {
    color: #001489 !important;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 3px solid #001489;
}
.allLink a:hover {
    border-bottom: 3px solid #FFB81D;
}
@media screen and (min-width: 450px) {
    a.ctaReadMore {
        padding: .5rem 2rem;
    }
}
@media screen and (min-width: 768px) {
    .ctas {
        padding-bottom: 0;
    }
    a.ctaOffer {
        padding: 0.5rem 0.813rem;
    }
    .backButton:before {
        margin-top: 0;
    }
    .allLink {
        position: absolute;
        right: 0;
        bottom: 5px;
    }    
}
@media screen and (min-width: 850px) {
    a.ctaOffer {
        padding: 0.5rem 1.5rem;
    }    
}
@media screen and (min-width: 1200px) {
    a.ctaOffer {
        padding: 0.5rem 2rem;
    }     
}
/* SUB-MENUS */
.subMenu {
    margin-bottom: 1.375rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.subMenu ul {
    display: flex;
    margin: 0;
    padding: 0;
}
.subMenu ul li {
    display: flex;
    margin: .625rem .188rem;
    padding: .625rem 0.5rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #001489;
    transition: background .3s ease;
    cursor: pointer;
    font-size: .813rem;
    text-transform: uppercase;
    text-align: center;
    flex: 1;
    white-space: normal;
    word-break: keep-all;
    justify-content: center;
    align-items: center;
    line-height: 1rem;
}
.subMenu ul li a {
    font-weight: 400;
    color: #001489;
    transition: color 0.3s ease;
}
.subMenu ul li:hover,
.subMenu ul li.active {
    background: #001489;
}
.subMenu ul li:hover a,
.subMenu ul li.active a {
    color: #ffffff!important;
}
.subMenu ul li a img {
    filter: brightness(0) invert(0);
    transition: filter 0.3s ease;
}
.subMenu ul li.active img {
    filter: brightness(100%) invert(0%);
    cursor: default;
}
.subMenu ul li a:hover img {
    filter: brightness(100%) invert(0%);
}
select {
    border-radius: 12px;
    margin-right: 5px;
}
@media screen and (min-width: 450px) {
    .subMenu ul li {
        flex: none;
        margin: .625rem .25rem;
        font-size: .875rem;   
        padding: .5rem;    
    }
}    
@media screen and (min-width: 760px) {
    .subMenu {
        flex-direction: row;
    }
}
/* SEARCH */
.pages-content.search {
    padding: 1.25rem 1.25rem 0 1.25rem;
}
.search-bar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    width: 100%;
    margin: 0 0 1.375rem 0;  
    flex-direction: column-reverse;     
}
.search-form {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    width: 100%;       
}
.search-form.marginBottom {
    margin-bottom: 1.375rem;
}
.search-form input {
    height: 38px;
    min-height: 38px;
}
.search-form input[type=text] {
    border-radius: 12px 0 0 12px;
    padding: 0 0.375rem;
    width: 100%;
    outline: none;
}
.search-form input[type=submit] {
    background-color: #001489;
    background-image: url('/wp-content/themes/exs-child/images/search.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 0 12px 12px 0;
    text-indent: -9999px;
    padding: 0 20px;
    width: 50px;
}
.search-form input[type=submit]:hover {
    background-color: #E33C31;
}
.search-form input[type=submit]:focus {
    border-color: #001489!important;
    outline: none!important;
}
@media screen and (min-width: 450px) {
    .search-form input[type=text] {
        width: 220px;
    }    
}
@media screen and (min-width: 768px) {
    .search-form {
        padding-top: 0;
        width: unset;       
    }  
    .search-bar {
        align-items: center;
    }
}
/* BOOKIES TABLE */
.bookiesTable.logoOnly .ribbon,
.bookiesTable.logoOnly .sashContainer {
    display: none;
}
.bookiesTable.short,
.bookiesTable.long {
    display: grid!important;
}
.bookiesTable.logoOnly {
    border: 0!important;
    display: flex;
}
.bookiesTable.logoOnly .tableLogo {
    padding: 0 .5rem .5rem 0;
}
 .bookiesTable.logoOnly .bookiesLogo {
     height: 50px;
     width: auto;
     max-width: unset;
     padding: 0;
}
.logoOnlyBlock {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;    
}
.tableHeader.short .keyTitle,
.bookiesTable.short .keyFeatures {
    display: none; 
}
.tableHeader {
    display:none;
}
.bookiesTable.short .ctas {
    margin-top: 0.875rem;
}
.bookiesTable {
    border: 1px solid #000000;
    border-top: none;
    display: grid;
    grid-template-columns: 1fr;
    font-size: 0.875rem;   
}
.bookiesTable:last-child {
  border-bottom: none;
}
.bookiesTable .tableLogo,
.bookiesTable .mainOffer,
.bookiesTable .keyFeatures,
.bookiesTable .ctas {
    text-align: center;
    display: flex;
    justify-content: center;  
    align-items: center;
}
.bookiesTable .mainOffer,
.bookiesTable .ctas {
    flex-direction: column;
}
.bookiesTable .tableLogo {
    position: relative;
    padding-top: 1.188rem;    
}
.bookiesTable .bookiesLogo {
    padding: .5rem;
    max-width: 70%;
}
.bookiesTable .sashContainer {
    position: absolute;
    text-transform: uppercase;
    color: #ffffff;
    top: 0;
    width: 100%;
    font-size: 0.75rem;
    line-height: 0.875rem;
}
.ribbon {
    --f: .5rem;
    --r: .4rem;
    position: absolute;
    top: 0.313rem;
    left: calc(-1*var(--f));
    padding-inline: .25em;
    line-height: 1.8;
    background: #E03C31;
    border-bottom: var(--f) solid #87160E;
    border-right: var(--r) solid #E03C31;
    clip-path: polygon(calc(100% - var(--r)) 0,0 0,0 calc(100% - var(--f)),var(--f) 100%, var(--f) calc(100% - var(--f)),calc(100% - var(--r)) calc(100% - var(--f)), 100% calc(50% - var(--f)/2));
}
.bookiesTable .mainOffer {
    padding: 0 .5rem;   
}
.bookiesTable .offer span {
    font-weight: 700;
    display: block;
    font-size: 0.875rem;
}
.bookiesTable .promocode {
    font-weight: 700;
    font-size: 0.875rem;
    padding-top: .5rem;
}
.bookiesTable .promocode span {
    font-weight: 400;
    padding: 0.313rem 0.625rem;
    border: 1px dotted #000000;
    align-self: center;
    text-overflow: ellipsis;
}
.bookiesTable .keyFeatures {
    padding: .5rem .5rem 0 .5rem;
}
.bookiesTable .keyFeatures ul {
    position: relative;
    padding-left: 0;
    border-left: 1px solid #007749;
    list-style: none; 
}
.bookiesTable .keyFeatures ul::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: url('/wp-content/themes/exs-child/images/pros.svg') no-repeat center/contain;
}
.bookiesTable .keyFeatures li {
    margin-bottom: 0.313rem;
    padding: 0px 0 0px 1.375rem;
    text-align: left;    
}
@media (min-width: 768px) {
    .bookiesTable .keyFeatures {
        justify-content: flex-start;
    }
    .bookiesTable.short .keyFeatures,
    .tableHeader.short .keyTitle {
        display: grid; 
    }
    .bookiesTable {
        grid-template-columns: 1fr 1fr 2fr 1fr; 
    }
    .tableHeader {
        display: grid;
        background-color: #ffffff;
        padding: 0.125rem;
        color: #000000;
        text-transform: uppercase;
        font-size: 0.875rem;
        font-weight: 700;
        text-align: center;
        grid-template-columns: 1fr 1fr 2fr 1fr;
        border: 1px solid #000000;
        border-top: none;
    }    
    .bookiesTable .bookiesLogo {
        padding: 0 .5rem;
        max-width: 100%;
    }
    .bookiesTable .promocode {
        padding-bottom: .5rem;
    }
    .bookiesTable.short .ctas {
        margin-top: 0;
    }
}
@media screen and (min-width: 1000px) {   
    .tableHeader,
    .bookiesTable {
        grid-template-columns: 1fr 2fr 2fr 1fr; 
    }    
    .bookiesTable .promocode {
        padding-bottom: 0;
    }  
}
/* CASINO REVIEWS */
.bookiesProsCons {
    flex-direction: column;
}
.bookiesProsCons .wp-block-column {
    flex-basis: 100%;
}
@media screen and (min-width: 1000px) {   
    .bookiesProsCons {
        flex-direction: row;
    }
    .bookiesProsCons .wp-block-column {
        flex-basis: 100%;
    }   
}
.prosTitle, 
.consTitle {
    font-weight: 700;
    margin-bottom: 0!important;
}
ul.pros,
ul.cons {
  list-style: none;
}
ul.pros li::before {
    content: '';
    display: inline-block;
    height: 14px;
    width: 14px;
    background-image: url('/wp-content/themes/exs-child/images/pros.svg');
    background-repeat: no-repeat;
    padding-right: 5px; 
    vertical-align: middle;
}
ul.cons li::before {
    content: '';
    display: inline-block;
    height: 14px;
    width: 14px;
    background-image: url('/wp-content/themes/exs-child/images/cons.svg');
    background-repeat: no-repeat;
    padding-right: 5px;  
    vertical-align: middle;    
}
.paymentLogos {
    margin-bottom: 1rem;
}
.paymentLogos img {
    margin: 2px 4px;
}
.galleryImgs {
    flex-direction: column;
}
.galleryImgs .slides {
    flex-basis: 100% !important;
}
.galleryImgs .slides img {
    width: 100%;
}
@media screen and (min-width: 900px) {
    .galleryImgs {
        flex-direction: row;
    }
}
/* CASINO GAMES */
.gameContent {
    padding: 0.313rem;
}
.gameName {
    font-weight: 700;
    text-align: center;
    margin-bottom: .5rem;
}
.gameDescription {
    text-align: center;
}
.full-width {
  width: 100%;
}
.gameImage {
    line-height: 0!important;
}
.gameImage a {
    line-height: 0!important;
    display: block!important;
}
.gameImage img {
    border-radius: 10px 10px 0 0;
}
.providerImg {
    background: #001489;
    height: 30px;
    text-align: center;
}
.gamesReview .post-thumbnail {
    float: none;
    margin: 0;
    width: 100%;
}
.gamesReview .gamesImage {
    width: 100%;
    float: none;
    margin: 0 0 2rem 0;
}
.galleryImgs {
    margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
    .gamesReview .post-thumbnail {
        float:none!important;
        margin: 0;
        width: 100%!important;
    }
    .gamesReview .gamesImage {
        width: 40%;
        float: right;
        margin: 0 0 2rem 1rem;
        display: block;
    }
    .gamesReview .gamesImage::after {
        content: "";
        display: table;
        clear: both;
    }
    .gamesReview .gradient {
        clear: both;
        margin-top: 0;
        padding-top: 0;
    }
    .wp-block-columns.galleryImgs {
        flex-wrap: nowrap!important;
    } 
}
@media screen and (min-width: 1000px) {
    .gamesReview .gamesImage {
        width: 30%;
    } 
}
/* BOOKIES REVIEWS */
.topLine.bookiesTable {
    border-top: 1px solid #000000;
}
.bookiesReview .marg {
    margin-bottom: 1.25rem;
}
.bookiesReview .bookiesTable {
    border-bottom: none;
}
.paymentIcons img {
    margin: 5px;
}
/* NEWS AND GUIDES */
.post-thumbnail {
    float: none;
    margin: 0 auto 2rem auto;
    width: 100%;
}
.newsMeta {
    font-size: 0.75rem;
    color: #ffffff;
    display: flex;
    align-items: center;    
}
.newsMeta a {
    color: #ffffff;
}
.newsMeta a:hover {
    text-decoration: underline;
    color: #ffffff!important;    
}
.introTextSinglePost p,
.introTextSinglePost {
    margin: 0 0 1.5rem 0;
}
.singleThumb img {
    width: 100% !important;
    float: none !important;
    margin: 0 0 1.5rem 0 !important;
}
.singleThumb a {
    display: unset!important;
}
.relatedArticles {
    margin: 1.5rem 0;
    padding: .5rem .5rem 0 .5rem;
}
@media screen and (min-width: 768px) {
    .singleThumb {
        width: 40% !important;
        float: right !important;
        margin: 0 0 2rem 2rem;
    }
    .singleThumb img {
        width: 100%;
        height: auto;
    }
    .relatedArticles {
        max-width: 75rem;
        margin: 0 auto;
    }
}
/* Pagination */
.pagination {
    font-size: 0.875rem;
    margin: 0 auto;
    width: 100%;
}
.pagination a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 4px;
    outline: none;    
}
@media (hover: hover) and (pointer: fine) {
    .pagination a:hover {
        background: #001489;
        color: #ffffff !important;
        border-color: #001489;
    }
}
.pagination a:active {
    background: #001489;
    color: #ffffff !important;
    border-color: #000f66;
}
.pagination .active {
    background-color: #001489;
    color: #ffffff;
    cursor: default;
    border-color: #001489;
}
/* 404 */
.page404 {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    align-items: center;
    margin: 0 auto;
}
/* Banner Block */
.bannerMobile {
    display: block;
}
.bannerDesktop {
    display: none;
}
.bannerMobile a,
.bannerDesktop a {
    display: inline!important;
}
.bannerMobile img,
.bannerDesktop img {
    width: 100%;
    height: auto;
}
@media (min-width: 721px) {
    .bannerMobile {
        display: none;
    }
    .bannerDesktop {
        display: block;
    }
}
/* Demo Game */
.demoGame {
    position: relative;
    line-height: 0;
    max-width: 680px;
    margin: 0 auto;
}
.demoGameOverlay {
    position: absolute;
    z-index: 8;
    left: 0;
    top: 0;
    height: 100%;    
    width: 100%;
    background: rgba(0,0,0,.6);    
}
.playBtn {
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%); 
}
.demoGame a.ctaOffer {
    white-space: nowrap;
    padding: 1.2rem 1.4rem;
    cursor: pointer;
    line-height: unset!important;
    background-color: #FFB81C; 
    outline: 3px solid #FFB81C;
    color: #000000!important;
}
.demoGame a.ctaOffer:hover {
    background-color: #ffffff;  
}
.demoLegal {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    bottom: 15px;
    color: #ffffff;
    text-align: center;
    font-size: 0.75rem;
}
.demoInfo {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.video-container {
    position: relative;
    padding-bottom: 58.25%; /* 16:9, for an aspect ratio of 1:1 change to this value to 100% */ 
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 450px) {
    .demoInfo {
        flex-direction: row;
    }  
}
/* TABLES */
.wp-block-table table {
  border: 1px solid #000000;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  overflow: auto;
}
.wp-block-table thead {
    border-bottom: none;
}
.wp-block-table th {
  background-color: #000000;
  color: #ffffff;
}
.wp-block-table td {
  border: 1px solid #000000;
}
@media (max-width: 699px) {
    .jrt td {
        display: block;
        text-align: left;
    }
    .jrt thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .jrt tr:nth-child(even) {
        background: #f4f4f4;
    }
    .jrt td {
        display: flex;
        border: none;
        font-weight: normal;
    }
    .jrt td:before {
        width: 100%;
        max-width: 45%;
        padding-right: 6px;
        font-weight: bold;
    }
}
/* GRID LAYOUT */
.gridWrapper,
.gridWrapperGames {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2rem;  
}
.gridWrapperGames .gridBoxText {
    text-align: center;
}
.gridWrapperGames .gridBox {
    flex-basis: calc(50% - 10px);
    border-color: #001489!important;
}
.gridBox {
    background: #ffffff;
    border-style: solid;
    border-width: 1px 3px 3px 1px;    
    border-radius: 12px;
    display: flex;
    flex-basis: 100%;
    flex-direction: column;    
}
.gridBoxContent {
    padding: 0.625rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;    
}
.gridWrapperGames .gridBoxContent {
    padding: 0.625rem 0.625rem 0 0.625rem;
}
.gridBox img {
    border-radius: 10px 10px 0 0;
}
.gridBoxTitle {
    font-size: 1.125rem;
    line-height: 1.375rem;
    margin: 0 0 0.625rem 0;
    text-align: left;
    letter-spacing: 0.031rem;
    font-weight: 700;
}
.gridBoxTitle a {
    color: #000000!important;
}
.gridBoxTitle a:hover {
    color: #001489!important;
}
.gridWrapperGames .gridBoxTitle {
    font-size: 1rem;
    margin: .5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.gridBoxText {
    font-size: 0.875rem;
    line-height: 1.5;
}
.gridBoxText a {
    color: #000000!important;
    font-weight: 400!important;
}
.date {
    margin-right: 0.313rem;
    font-size: 0.625rem;
}
.gridBoxMeta {
    display: flex;
    margin-top: 10px;
    font-size: 0.688rem;
    flex-wrap: wrap;
}
.gridBoxMeta a {
    font-weight: 400!important;
    color: #000000;
}
.gridBoxMeta a:hover {
    text-decoration: underline;
    color: #000000!important;
}
.gridBoxMeta .icon-inline {
    padding-right: 0.125rem;
}
@media screen and (min-width: 550px) and (max-width: 767px) {
    .gridBox {
        flex-basis: calc(50% - 10px);
    }
}   
@media screen and (min-width: 768px) {
    .relatedNewsArticles .gridBox:nth-child(4) {
        display: none!important;
    }  
    .gridBox,
    .gridWrapperGames .gridBox {
        flex-basis: calc(50% - 10px);
    }
    .relatedNewsArticles .gridBox {
        flex-basis: calc(32% - 5px);
    }
}
@media screen and (min-width: 1000px) {
    .relatedNewsArticles .gridBox:nth-child(4) {
        display: block!important;
    } 
    .relatedNewsArticles .gridBox,
    .gridBox,
    .gridWrapperGames .gridBox {
        flex-basis: calc(25% - 15px);
    }   
}
/* GRID LAYOUT NEWS - border colour */
.gridBox:nth-child(4n + 1) {
  border-color: #001489; 
}
.gridBox:nth-child(4n + 2) {
  border-color: #007749; 
}
.gridBox:nth-child(4n + 3) {
  border-color: #FFB81C;
}
.gridBox:nth-child(4n + 4) {
  border-color: #E03C31;
}
/* FOOTER */
.foot {
    margin-top: 2rem;
}
#site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 2rem 0.625rem 0.625rem 0.625rem;
}
#site-footer a,
#site-footer li {
    color: #ffffff;
}
#site-footer li {
    list-style: none;
    font-size: 0.75rem;
    padding: 0.313rem 0.5rem;
    text-transform: uppercase;
}
#site-footer li a:hover,
#site-footer a:hover {
    color: #FFB81C!important;
}
.footer-container {
    display: flex;
    position: relative;
    flex-direction: column;
}
.footer-container .stamp {
    position: absolute;
    bottom: 0;
    right: 0;
}
.footer-nav {
    display: flex;
    justify-content: center;
}
.bottom-menu {
    border-bottom: 1px solid #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 1.625rem;
}
.bottom-menu li.current-menu-item a {
    color: #FFB81C!important;
}
.footer-legal {
    padding-top: 1rem;
}
.footer-legal .grid-item {
    width: 100%;
}
.footer-legal p {
    font-size: 0.75rem;
    text-align: center;
}
.footer-legal .widget_text:last-of-type p {
    margin-bottom: 0;
}
.footer-legal a:hover {
    text-decoration: underline;
}
#site-footer li a:hover {
    color: #FFB81C;
}
.footer-container {
    display: flex;
    position: relative;
    flex-direction: column;
}
.footer-container .stamp {
    position: absolute;
    bottom: 0;
    right: 0;
}
.footer-nav {
    display: flex;
    justify-content: center;
}
.bottom-menu {
    border-bottom: 1px solid #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 1.625rem;
}
.bottom-menu li.current-menu-item a {
    color: #FFB81C!important;
}
.footer-legal {
    padding-top: 1rem;
}
.footer-legal .grid-item {
    width: 100%;
}
.footer-legal p {
    font-size: 0.75rem;
    text-align: center;
}
.footer-legal .widget_text:last-of-type p {
    margin-bottom: 0;
}
.footer-legal a:hover {
    text-decoration: underline;
}
@media (min-width: 768px) {
    #site-footer {
        padding: 1.25rem;
    }
    #site-footer li {
        padding: 0.313rem 0;
    }
    .footer-container {
        max-width: 67.5rem;
        align-items: center;
        flex-direction: row;
        margin: 0 auto;
    }
    .footer-legal {
        padding: 1.25rem 0.625rem 1.25rem 1.875rem;
        border-left: 1px solid #ffffff;
    }
    .footer-legal p {
        text-align: justify;
    }
    ul.bottom-menu {
        padding-left: 0;
    }
    .bottom-menu {
        justify-content: flex-start;
        flex-direction: column;
        width: 190px;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
}