/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://tomusborne.com
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.3.1.1699723712
Updated: 2023-11-11 17:28:32

*/

.text-center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

.entry-content {
    margin: 2em 0;
}

.header-wrapper {
    background-color: var(--base);
}

.header-wrapper .container {
    padding: 50px 10px;
}

.header-wrapper .container h1 {
    margin: 0;
    font-weight: bold;
}

.entry-content .container,
header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    background-color: transparent !important;
}

@media (max-width: 768px) {
    .header-wrapper .container {
        padding: 30px 10px;
    }
}

/* Hero Section */
.hero-section {
    padding: 20px;
    min-height: 600px;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.5;
}

.hero-section .inner-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
}

.hero-section .hero-icon {
    width: 110px;
    margin-bottom: 10px;
}

.hero-section h1 {
    font-size: 60px;
    font-weight: bold;
    font-style: italic;
    color: #fff;
}

.hero-section p {
    font-size: 21px;
}

.btn {
    background-color: var(--accent-2);
    text-decoration: none;
    color: #fff;
    display: inline-block;
    min-width: 150px;
    padding: 10px 30px;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.25em;
    border-radius: 20px;
    transition: all .3s;
    text-align: center;
}

.btn:hover,
.btn:focus {
    color: #fff;
    box-shadow: 0px 0px 10px 0px var(--accent-2);
}

.dark-btn {
    background-color: var(--contrast-2);
}

.dark-btn:hover,
.dark-btn:focus {
    box-shadow: 0px 0px 10px 0px var(--contrast-2);
}

/* Game Template */
.inside-article.game h1 {
    text-align: center;
}

.game-iframe {
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
}

.game-iframe .inner-wrapper {
    padding: 15px;
    background-color: var(--base);
    border-radius: 5px;
}

@media (max-width: 640px) {
    .game-iframe .inner-wrapper>iframe {
        max-height: 325px !important;
    }
}

/* Game Grid Shortcode */
.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.game-grid .game {
    padding-top: 100%;
    background-size: cover;
    background-position: center center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.game-grid .game .inner-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: all .5s;
}

.game-grid .game:hover .inner-wrapper {
    opacity: 1;
}

.game-grid .game .inner-wrapper .title {
    font-size: 22px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Table */
.table-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.table-container .table-row {
    border-radius: 5px;
    padding: 15px 0;
    background-color: #fff;
    box-shadow: 0px 10px 40px 0px rgba(109, 141, 173, 0.25);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: flex;
}

.table-container .table-row:hover {
    box-shadow: 0px 15px 40px 0px rgba(109, 141, 173, 0.55);
}

.table-container .table-row p {
    margin-bottom: 0;
}

.table-container .table-row:last-child {
    margin-bottom: 0;
}

.table-container .table-row .count-box {
    display: inline-block;
    width: 30px;
    padding-top: 20px;
    padding-bottom: 7px;
    text-align: center;
    font-weight: 700;
    font-size: 1em;
    line-height: 1em;
    position: absolute;
    top: -25px;
    left: 30px;
    border-radius: 5px;
    color: #fff;
    background-color: var(--accent);
}

.table-container .table-row .col {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.table-container .table-row .col::before {
    content: '';
    height: 50px;
    width: 1px;
    background-color: var(--contrast-3);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.table-container .table-row .col:last-child::before {
    display: none;
}

.table-container .table-row .title-col p {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: var(--contrast);
}

.table-container .table-row .rating-wrapper {
    display: flex;
    gap: 8px;
    border: 1px solid var(--contrast-3);
    border-radius: 100px;
    padding: 6px 15px;
}

.table-container .table-row .rating-wrapper .rating {
    color: #ffd32a;
}

.table-container .table-row .rating-wrapper .text {
    font-weight: bold;
    color: var(--contrast);
}

.table-container .table-row .button-col {
    flex-direction: column;
    gap: 8px;
}

.table-container .table-row .icon {
    width: 80px;
    max-width: 100%;
    border-radius: 5px;
}

@media (max-width: 990px) {
    .table-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .table-container .table-row {
        flex-direction: column;
        gap: 20px;
    }

    .table-container .table-row .col {
        width: 100%;
    }

    .table-container .table-row .col::before {
        display: none;
    }

    .table-container .table-row .button-col {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .table-container .btn {
        padding: 8px 25px;
        font-size: 0.85em;
        line-height: 1.2em;
    }
}

@media (max-width: 768px) {
    .table-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Casino Page */
.casino .container {
    display: flex;
    gap: 30px;
}

.casino .container .sidebar {
    width: 25%;
    flex-shrink: 0;
}

.casino .container .sidebar .inner-wrapper {
    position: sticky;
    top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.casino .container .content {
    width: 75%;
}

.casino .sidebar .logo {
    width: 120px;
    max-width: 100%;
    border-radius: 5px;
}

.casino .sidebar .rating {
    color: #ffd32a;
    position: relative;
}

.casino .sidebar .rating::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    background-color: var(--contrast-3);
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.casino .sidebar .content {
    width: 100%;
}

.casino .sidebar .box {
    background-color: var(--base);
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.casino .sidebar .content h1,
.casino .sidebar .content h2,
.casino .sidebar .content h3,
.casino .sidebar .content h4,
.casino .sidebar .content h5,
.casino .sidebar .content h6,
.casino .sidebar .content p {
    margin: 0;
}

@media (max-width: 768px) {
    .casino .container {
        flex-direction: column;
    }

    .casino .container .sidebar {
        width: 100%;
    }

    .casino .container .content {
        width: 100%;
    }
}

/* Bonus Block */
.block-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 2rem;
}

.block-container .img-col {
    width: 25%;
    flex-shrink: 1;
    flex-grow: 0;
    text-align: center;
}

.block-container .img-col img {
    max-width: 100%;
    width: 230px;
}

.block-container .content-wrapper h1,
.block-container .content-wrapper h2,
.block-container .content-wrapper h3,
.block-container .content-wrapper h4,
.block-container .content-wrapper h5,
.block-container .content-wrapper h6 {
    color: inherit;
    margin-bottom: 0.375rem;
}

.block-container .content-wrapper p {
    margin-bottom: 0.375rem;
}

.block-container .content-wrapper p:last-child {
    margin-bottom: 0;
}

.block-container .content-col {
    width: 75%;
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.block-container .content-col .content-wrapper {
    flex-grow: 1;
}

.block-container .content-col .btn-wrapper {
    width: 33.3333%;
    flex-shrink: 0;
    flex-grow: 0;
}

.block-container .content-col .btn-wrapper button {
    width: 100%;
    position: relative;
    background-color: var(--this-bg-color);
    transition: .15s ease;
    padding-right: 2.25rem;
}

.block-container .content-col .btn-wrapper button::before {
    --offset: 40%;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px dashed var(--this-bg-color);
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    -webkit-clip-path: polygon(var(--offset) 0, 100% 0, 100% 100%, var(--offset) 100%);
    clip-path: polygon(var(--offset) 0, 100% 0, 100% 100%, var(--offset) 100%);
    color: #000;
    content: attr(data-code);
    display: flex;
    font-weight: 700;
    justify-content: flex-end;
    padding: 10px 0.375rem;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    transition: .15s ease;
    white-space: nowrap;
    width: 2rem;
    z-index: 1;
}

.block-container .content-col .btn-wrapper button:hover {
    background-color: var(--this-bg-hover-color);
}

.block-container .content-col .btn-wrapper button:hover:before {
    --offset: 15%;
    border-color: var(--this-bg-hover-color);
}

@media (max-width: 1024px) {
    .block-container .content-col {
        flex-direction: column;
    }

    .block-container .content-col .btn-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .block-container {
        flex-direction: column;
    }

    .block-container .img-col,
    .block-container .content-col {
        width: 100%;
    }
}

.popup-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
}

.popup-overlay .popup {
    background-color: #f9f9f9;
    width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    box-shadow: 0px 10px 40px 0px rgba(109, 141, 173, 0.25);
    padding: 30px 20px;
}

.popup-overlay .popup .close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.popup-overlay .popup .content {
    width: 100%;
}

.popup-overlay .popup .btn-container {
    width: 400px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

.popup-overlay .popup .btn-container .code-wrapper {
    border: 1px dashed;
    padding: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.popup-overlay .popup .btn-container .btn {
    width: 100%;
    background-color: var(--this-bg-color);
    padding: 15px 30px;
    border-radius: 100px;
}

.popup-overlay .popup .btn-container .btn:hover,
.popup-overlay .popup .btn-container .btn:focus {
    background-color: var(--this-bg-hover-color);
    box-shadow: none;
}

@media (max-width: 768px) {
    .popup-overlay .popup {
        width: calc(100% - 30px);
    }
}
