/*=============================*/
/*=====----- GENERAL -----=====*/
/*=============================*/

.panel-footer {
    position: relative;
    display: grid;
    background: var(--black);
    color: var(--white);
}

.panel-footer .contentRender_name_plugins_core_textbox {
    padding: 0;
}

.panel-footer .contentRender_name_plugins_core_textbox * {
    font: inherit;
    color: inherit;
    text-decoration: none;
}

/*==================================*/
/*=====----- MAIN SECTION -----=====*/
/*==================================*/

.panel-footer .footer-enews {
    order: 1;
}

.panel-footer .footer-main {
    display: grid;
    grid-template:
        'social' auto
        'logo' auto
        'nav' auto
        'attributions' auto / minmax(0, 1fr);
}

.panel-footer .footer-logo-col,
.panel-footer .footer-nav-col,
.panel-footer .attributions {
    padding: 0 32px;
}

/*=====----- LOGO -----=====*/

.panel-footer .footer-logo-col {
    grid-area: logo;
    padding-top: 50px;
    margin-bottom:24px;
}

.panel-footer .logo-footer {
    margin-bottom: 22px;
}

.panel-footer .logo-footer a {
    padding: 0;
}

.panel-footer .logo-footer img {
    width: auto;
    height: 75px;
}

/*=====----- CONTENT -----=====*/

.panel-footer .footer-content p {
    margin: 0;
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    line-height: calc(12/7);
    color: inherit;
    text-transform: uppercase;
}

/*=====----- NAVIGATION -----=====*/

.panel-footer .footer-nav-col {
    grid-area: nav;
    margin-bottom: 36px;
}

.panel-footer .footer-nav-col > * + * {
    margin-top: 30px;
}

/*=====----- SOCIAL MEDIA -----=====*/

.panel-footer .footer-social-col {
    grid-area: social;
}

/*==================================*/
/*=====----- ATTRIBUTIONS -----=====*/
/*==================================*/

.panel-footer .attributions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
    grid-area: attributions;
    padding-bottom: 48px;
}

.panel-footer .responsible-gaming-content,
.panel-footer .copyright {
    color: var(--gray);
}

.panel-footer .responsible-gaming-content {
    order: -1;
    margin-bottom: 26px;
}

.panel-footer .responsible-gaming-content p,
.panel-footer .copyright {
    font-weight: var(--font-weight-med);
    font-size: 13px;
    line-height: calc(20/13);
}

.panel-footer .responsible-gaming-content p {
    margin: 0;
}

.panel-footer .copyright p {
    margin-bottom: 10px;
}

.panel-footer .copyright p:last-child {
    margin: 0;
}

.panel-footer .made-by-sv img {
    width: 157px;
}

/*===================================*/
/*=====----- MEDIA QUERIES -----=====*/
/*===================================*/

@media (min-width: 40em) {
    .panel-footer .footer-main {
        grid-template:
            'social social' auto
            'logo nav' auto
            'attributions attributions' auto / minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
        gap: 32px;
    }

    .panel-footer .footer-logo-col,
    .panel-footer .footer-nav-col {
        margin: 0;
    }

    .panel-footer .footer-logo-col {
        padding: 0 0 0 32px;
    }

    .panel-footer .footer-nav-col {
        padding: 0 32px 0 0;
    }
}

@media (min-width: 64em) {
    .panel-footer {
        padding-top: 30px;
        background: none;
    }

    .panel-footer .footer-enews {
        position: relative;
        z-index: 1;
        order: unset;
    }

    .panel-footer .footer-main {
        position: relative;
        z-index: 2;
        grid-template:
            'logo nav social' auto
            'attributions attributions social' auto / minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
        justify-content: space-between;
        padding: 32px 30px;
        gap: 40px 32px;
        background: var(--black);
    }

    .panel-footer .footer-logo-col,
    .panel-footer .footer-nav-col,
    .panel-footer .attributions {
        padding: 0;
    }

    .panel-footer .logo-footer {
        margin-bottom: 17px;
    }

    .panel-footer .logo-footer img {
        height: 93px;
    }

    .panel-footer .footer-nav-col {
        display: grid;
        grid-template: auto / repeat(2, minmax(0, 1fr));
        gap: 20px;
        align-items: start;
        margin: 16px 0 0 0;
    }

    .panel-footer .footer-nav-col > * + * {
        margin: 0;
    }

    .panel-footer .footer-social-col {
        margin-top: -130px;
    }

    .panel-footer .attributions {
        grid-template:
            '. .' auto
            'copyright  gaming' auto / minmax(0, 1fr) minmax(0, 1fr);
    }

    .panel-footer .copyright {
        grid-area: copyright;
        max-width: 320px;
    }

    .panel-footer .copyright p {
        margin-bottom: 4px;
    }

    .panel-footer .made-by-sv {
        grid-area: svlogo;
        justify-self: start;
        align-self: end;
    }

    .panel-footer .made-by-sv img {
        width: 130px;
    }

    .panel-footer .responsible-gaming-content {
        grid-area: gaming;
        max-width: 354px;
        margin: 0;
    }
}

@media (min-width: 90em) {
    .panel-footer .footer-nav-col {
        gap: 50px;
    }
}