/*!
Theme Name: Infra Theme 2
Description: Custom light theme
Version: 1.0.4
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: infra-theme-2
*/


@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;700&display=swap');

:root {
    --accent-color: #59cf80;
    --main-color: #f0f2f4;
    --text-color: #161925;

    --header-top-color: #db403d;
    --header-top-text-color: #ffffff;
    --header-main-color: #ffffff;
    --header-main-text-color: #161925;
    --header-main-font-size: 16px;

    --top-disclaimer-dark-color: #4d4d4d;
    --top-disclaimer-dark-text-color: #ffffff;
    --top-disclaimer-light-color: #eff1f4;
    --top-disclaimer-light-text-color: #161925;

    --middle-disclaimer-color: #db403d;
    --middle-disclaimer-text-color: #161925;

    --card-item-background: #ffffff;
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    font-style: normal;
    font-weight: normal;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--main-color);
}

a {
    text-decoration: none;
    color: #000000;
    outline: none;
}

p {
    margin-bottom: 10px;
}
p:last-child {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 20px 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
}

.hidden {
    overflow: hidden;
}

.container {
    width: 926px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .container {
        width: 100%;
        padding: 0 24px;
        max-width: 500px;
    }
}

.bg {
    position: relative;
    padding: 0;
}

.bg-l, .bg-r {
    position: absolute;
    top: 0;
    z-index: 3;
}

@media (max-width: 2500px) {
    .bg-l {
        left: -350px;
        top: 100px;
    }

    .bg-r {
        right: -350px;
        top: 100px;
    }
}

@media (min-width: 2500px) {
    .bg-l {
        left: -350px;
        top: 100px;
    }

    .bg-r {
        right: -350px;
        top: 100px;
    }
}

@media (max-width: 1920px) {
    .bg-l {
        left: -300px;
        top: 100px;
    }

    .bg-r {
        right: -300px;
        top: 100px;
    }
}

@media (max-width: 1500px) {
    .bg-l {
        left: -235px;
    }

    .bg-r {
        right: -235px;
    }
}

@media (max-width: 1400px) {
    .bg-l, .bg-r {
        max-width: 150px;
    }

    .bg-l {
        left: -160px;
    }

    .bg-r {
        right: -160px;
    }
}

@media (max-width: 1280px) {
    .bg-l, .bg-r {
        display: none;
    }
}

/* Header */
.header__wrapper {
    padding: 12px 0;
    background-color: var(--header-top-color);
}
.header .container {
    width: 100%;
    max-width: 1280px;
}
.header__left {
    display: flex;
    gap: 12px;
    align-items: center;
}
.header__left a {
    color: var(--header-top-text-color);
    font-weight: 700;
}
.header__responsible-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.header__responsible-logo img {
    min-height: 56px;
    min-width: 56px;
    max-height: 56px;
    max-width: 56px;
}
.header__left-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--header-top-text-color);
}
.header__left-description {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--header-top-text-color);
}
.header__left-title p, .header__left-description p {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: inherit;
    font-size: inherit;
    font-style: inherit;
}
.header__right {
    margin: 12px 0 0 0;
}

.header.sticky {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow-anchor: none;
}

.header__main {
    background-color: var(--header-main-color);
}
.header__main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    flex-direction: column;
}
.header__main_left {
    display: flex;
    align-items: center;
    gap: 32px;
    order: 2;
}
.header__main_right {
    order: 1;
    /* margin-bottom: 12px;
    padding-bottom: 12px; */
    /* border-bottom: 1px solid #eee; */
    width: 100%;
	margin-bottom: 24px;
}
.header__main_left .default-logo {
    max-width: 80px;
    height: auto;
}
.header__main_left .menu {
    display: flex;
    gap: 25px;
}
.header__main_left .menu a {
    font-size: var(--header-main-font-size);
    position: relative;
}
.header__main_left .menu a:after {
    content: '';
    background-color: var(--header-top-color);
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    transition: width 0.3s ease-in-out;
}
.header__main_left .menu a:hover:after {
    width: 100%;
}
.header__main_right .sgamenu {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.header__main_right .sgabutton {
    border: 1px solid rgb(165 165 165);
    border-radius: 8px;
    height: max-content;
	text-align: center;
}
.header__main_right .sgabutton a {
	padding: 6px;
    line-height: 20px;
    align-items: center;
    gap: 12px;
	display: flex;
	justify-content: center;
}
.header__main_right .sgabutton a img {
    max-height: 15px;
    width: auto;
}
.header__main_right .sgabutton a span {
	display: none;
}

.ct-header-text{
    //
}
@media (min-width: 992px) {
    .admin-bar .header.sticky {
        top: 32px;
    }

    .header__wrapper {
        padding: 16px 0;
    }
    .header__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header__left-inner {
        padding-right: 20px;
    }
    .header__left-title {
        font-size: 20px;
    }
    .header__left-description {
        font-size: 16px;
    }
    .header__right {
        margin: 0;
    }

    .header__main {
        height: 108px;
    }

    .header__main .container {
        flex-direction: row;
    }
    .header__main_left {
        gap: 64px;
        order: 1;
    }
    .header__main_left .default-logo {
        max-width: 125px;
    }
    .header__main_right {
        order: 2;
        margin-bottom: 0;
    }
    .header__main_right .sgamenu {
		display: flex;
    	flex-wrap: wrap;
        justify-content: flex-end;
    }
    .header__main_right .sgabutton a {
        padding: 2px 6px;
    }
	.header__main_right .sgabutton a span {
		display: inline;
	}
	.ct-header-text{
		padding-left: 25px;
	}
	.header__main_right .sgabutton a img {
		max-width: 80px;
        max-height: none;
	}
	.header__main_right .sgamenu > a {
		border: 0;
    	height: auto;
    	display: inline-block;
	}
}

/* Logos */
.logos {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.logos__item {
    max-width: 100%;
    width: 50%;
}
.logos__item-link {
    padding: 6px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    max-width: 100%;
    min-width: 100%;
    min-height: 52px;
    max-height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.logos__item-link img {
    display: block;
    max-width: 100px;
    max-height: 30px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (min-width: 992px) {
    .logos {
        gap: 16px;
    }

    .logs__item {
        max-width: unset;
        width: unset;
    }

    .logos__item-link {
        padding: 10px 24px;
        max-width: 150px;
        min-width: 150px;
        min-height: 52px;
        max-height: 52px;
    }
}

/* Top Disclaimer */
.top-disclaimer {
    text-align: center;
}
.top-disclaimer__dark {
    padding: 66px 0;
    color: var(--top-disclaimer-dark-text-color);
    background-color: var(--top-disclaimer-dark-color);
}
.top-disclaimer__light {
    padding: 66px 0;
    color: var(--top-disclaimer-light-text-color);
    background-color: var(--top-disclaimer-light-color);

}
.top-disclaimer__light a {
    color: var(--top-disclaimer-light-text-color);
}
.top-disclaimer__title {
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 700;
}
.top-disclaimer__subtitle {
    margin-bottom: 24px;
    font-size: 24px;
}
.top-disclaimer__subdescription {
    font-size: 20px;
}
.top-disclaimer__small-description {
    margin-bottom: 24px;
}
.top-disclaimer__small-description div {
    margin-bottom: 5px;
}
.top-disclaimer__small-description strong {
    font-weight: 700;
}
.top-disclaimer__logos ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    justify-content: center;
    margin: 40px 0;
}
.top-disclaimer__logos ul:last-of-type {
    margin-bottom: 0;
}
.top-disclaimer__logos ul li {
    display: flex;
    align-items: center;
	justify-content: center;
}
.top-disclaimer__logos ul img {
    max-width: 180px;
    max-height: 40px;
    width: 100%;
}
@media screen and (min-width: 992px) {
	.top-disclaimer__logos ul {
		display: flex;
		justify-content: center;
		gap: 32px;
		margin: 20px 0 40px;
	}
}

    /* Posts Grid */
.recent {
    background: var(--main-color);
    padding: 66px 0 0;
    flex-grow: 1;
}
.recent .hero .title {
    font-weight: 700;
    color: var(--text-color);
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 33px;
    text-align: center;
}
.recent .hero .description {
    margin: 20px 0 0 0;
    color: var(--text-color);
    text-align: center;
}
.recent .hero.bottom .title {
    margin-top: 0;
}
.recent .list-wrapper .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.recent .card-list {
    margin: 0px;
}
.recent .card-list:not(:first-child) {
    margin-top: 30px;
}
.recent .card-item, .card-item-inner {
    width: 100%;
    max-width: 675px;
    margin-left: auto;
    margin-right: auto;
    background: var(--card-item-background);
    border-radius: 2px;
    -webkit-transition: 0.15s;
    transition: 0.15s;
    position: relative;
    border-radius: 10px 10px 10px 10px;
}
.recent .card-item {
    background: transparent;
    border-radius: 0;
}
.recent .card-row {
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
}
.recent .card-item-mobile {
    display: none;
}
.recent .card-item .card-item-mobile .logo {
    min-width: 100%;
    width: 100%;
    min-height: 100px;
    border-radius: 10px;
}
.recent .card-item .card-item-mobile .logo img {
    max-height: 52px;
}
.card-item-mobile {
    display: block;
    padding: 16px;
    height: 100%;
}
.recent .card-item:not(:first-child) {
    margin-top: 32px;
}
.card-footer_show .recent .card-item, .card-footer_show .recent .card-item-inner  {
    margin: 0 0 40px;
}
.recent .card-item:last-child {
    margin-bottom: 0px;
}
.recent .card-item .card-footer {
    position: absolute;
    bottom: -16px;
    left: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: #ababab;
    padding: 0 0 0 10px;
    text-align: center;
}
.recent .card-item .card-footer a {
    font-family: 'Outfit', sans-serif;
    color: inherit;
}
.recent .top .card-item .card-footer {
    bottom: -30px;
}
.recent .card-item .list-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--main-color);
    line-height: 22px;
    display: block;
    text-decoration: none;
    transition: 0.1s ease;
}
.recent .card-item .list {
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.recent .card-item .list .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin: 0px 0px 8px 0px;
    line-height: 10px;
    text-align: center;
    flex-grow: 1;
}
.recent .card-item .list .item:last-child {
    margin: 0px;
}
.recent .card-item .list .item .image, .recent .card-item .list .item .title {
    display: inline-block;
    vertical-align: middle;
}
.recent .card-item .list .item .image {
    margin: 0px;
    width: 14px;
    min-width: 14px;
    height: 14px;
    background: var(--accent-color);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.recent .card-item .list .item .image img {
    width: 6px;
    height: 5px;
    object-fit: contain;
    object-position: center;
}
.recent .card-item .list .item .title,
.recent .card-item .list .item p {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
    /* line-height: 15px; */
    /* padding-left: 10px; */
}
.recent .card-item .list .item .title2,
.recent .card-item .list .item p {
    font-size: 0.8rem;

}
.recent .card-item .logo {
    background: var(--main-color);
    width: 100%;
    height: 100%;
    min-height: 145px;
    /* min-width: 188px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* min-height: 61px; */
    position: relative;
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid #c6c0c0;
}

.toplist-card-wrapper.toplist-card-casino-wrapper .toplist-card .toplist-card-body .usp .icon {
    background-size: 18px;
    padding-top: 22px;
    line-height: normal;

}
.icon{
    background-repeat: no-repeat;
    background-size: 18px;
    padding-top: 22px;
    background-position: top;
    flex: 0 0 auto;
    width: 33%;
    text-align: center;
}

.icon-bankid {
    background-image: url(https://img.gamelounge.com/svg/service/dark/bankid.svg);
}
.icon-livechat {
    background-image: url(https://img.gamelounge.com/svg/service/dark/livechat.svg);
}
.icon-trustly {
    background-image: url(https://img.gamelounge.com/svg/service/dark/trustly.svg);
}

.d-flex{
    display: flex;
    font-weight: 600 !important;
    font-size: .65rem !important;
    padding-top: 1rem !important;
    width: 100%;
}
.recent .card-item .payments {
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 10px;
}
.recent .card-item .payments .item:not(:last-child) {
    margin-right: 8px;
    width: 33%;
}
.recent .card-item .payments .item .image {
    max-width: 30px;
    height: 30px;
}
.recent .card-item .payments .item .image img {
    display: block;
    border-radius: 2px;
    height: 100%;
}
.recent .card-item .logo img {
    width: auto;
    max-width: 80%;
    display: block;
    height: auto;
    /*max-height: 43%;*/
    max-height: 70px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.recent .card-item .button {
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    border-radius: 22px;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: var(--main-color);
    -webkit-transition: 0.15s;
    transition: 0.15s;
    width: 100%;
}
.recent .card-item .card-item-mobile .button {
    width: 100%;
    margin: 24px auto 0px;
    max-width: 100%;
    height: 44px;
}
.recent .block-l .list-wrapper p {
    color: var(--text-color);
}
.recent .block-r {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50%;
}
.recent .block-l .list-wrapper {
    margin-top: 15px;
}
.recent .card-item-mobile .block-r {
    margin-top: auto;
    margin-bottom: 0px;
    flex-wrap: wrap;
    width: 100%;
}
.recent ul.card-list .card-item-mobile .block-l .list-wrapper {
    margin-top: 24px;
    padding: 0;
    /* padding-left: 16px; */
}
.recent .card-item .card-footer {
    position: static;
    margin: 10px 0 0 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: #666666;
}
.recent .card-item:not(:first-child) {
    margin-top: 30px;
}
.recent .card-item .card-item-mobile .button, .recent .card-item .card-item-desktop .button {
    color: black;
    /* color: var(--main-color); */
}
.recent .card-item .card-item-mobile .logo, .recent .card-item .card-item-desktop .logo {
    border-radius: 4px;
}
/* .recent .card-item .list .item .title, .recent .card-item .list .item p {
    line-height: 18px;
} */
.recent .card-item .list .item .title {
    padding-left: 0px !important;
}
@media (min-width: 375px) and (max-width: 1024px) {
    .recent .top .card-item .card-footer {
        bottom: -16px;
    }
}
@media (max-width: 374px) {
    .recent .card-item-mobile {
        padding-left: 5px;
        padding-right: 5px;
    }
}
@media screen and (min-width: 991px) {
    .recent .card-item .card-item-mobile .logo img {
        min-height: 77px;
    }
    .recent .card-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
    }
    .recent .card-list.top .card-item {
        margin: 0;
        width: calc((100% - 16px * 2) / 3);
        max-width: none;
    }
    .recent .card-list.top .card-item .card-item-mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .recent .card-list .card-item {
        width: calc((100% - 16px) / 2);
    }
    .recent .card-item .list .item .title {
        padding-left: 16px;
    }
}
@media screen and (min-width: 992px) {
    .recent .card-item:not(:first-child) {
        margin-top: 0px;
    }
    .recent .card-list:not(.top) .card-item {
        margin: 0;
        margin-bottom: 32px;
    }
    .recent .card-item .list .item {
        margin-bottom: 14px;
    }
    .recent .card-item .button:hover {
        /* background: rgba(255, 219, 174, 0.7); */
        background: #a1d1b1;
    }
    .recent .card-item .payments {
        margin-top: 24px;
    }
}
@media screen and (max-width: 991px) {
    .recent {
        padding: 33px 0 0;
    }
    .recent .hero.bottom .title {
        margin-top: 44px;
    }
    .recent .hero .title {
        margin-bottom: 10px;
        line-height: 1.2;
    }
    .recent .hero.bottom .title,
    .recent .hero .title {
        font-size: 24px;
    }
    .recent .card-item, .recent .card-item-inner {
        position: relative;
    }
    .recent .card-row {
        flex-wrap: wrap;
    }
    .recent .card-item-mobile {
        display: block;
    }
    .card-footer_show .recent .card-item:not(:last-child) {
        margin: 0 0 40px;
    }
    .recent .card-item .list-title {
        width: 100%;
        font-size: 15px;
        line-height: 1;
    }
    .recent .card-item .list-wrapper .list .item p {
        font-size: 14px;
    }
    .recent .block-l .list-wrapper {
        padding: 15px 0px 15px 15px;
        margin-top: 0px;
    }
    .recent .card-item .list {
        margin: 0px 0px;
        margin-top: 0px;
    }
    .recent .card-item .list .item {
        display: -webkit-box;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        min-width: 180px;
        margin: 0px 0px 12px 0px;
    }
}
@media only screen and (max-width: 767px) {
    .recent .card-item .button {
        width: 100%;
        font-size: 15px;
    }
}

/* Posts List */
.responsible-gaming {
    padding: 33px 0 0 0;
}
.responsible-gaming__title {
    margin: 0;
    color: var(--text-color);
    font-weight: 700;
}
.responsible-gaming__subtitle {
    margin: 16px 0 0 0;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
}
.responsible-gaming__description, .responsible-gaming__subdescription {
    margin: 20px 0 30px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-color);
}

.responsible-gaming__description ul li {
    list-style-type: none;
}

.responsible-gaming__description p:not(:last-child), .responsible-gaming__subdescription p:not(:last-child) {
    margin-bottom: 5px;
}
.responsible-gaming__subdescription {
    margin: 20px 0 0 0;
}
.responsible-gaming a {
    color: var(--text-color);
    text-decoration: underline;
}
.responsible-gaming__description ul {
    padding-left: 20px;
    margin-bottom: 10px;
}
/* .responsible-gaming__description ul li {
    list-style: disc;
} */
@media (min-width: 1024px) {
    .responsible-gaming {
        padding: 66px 0 0 0;
    }
    .responsible-gaming__subtitle {
        margin: 24px 0 0 0;
    }
    .responsible-gaming__description {
        margin: 20px 0 30px 0;
    }
}
.responsible-list__item {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.15);
}
.responsible-list__item:not(:last-child) {
    margin-bottom: 32px;
}
.responsible-list__item-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 114px;
    max-width: 114px;
    aspect-ratio: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 100%;
}
.responsible-list__item-logo img {
    display: block;
    max-width: 86px;
    max-height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}
.responsible-list__item-inner {
    margin: 16px 0 0 0;
    text-align: center;
}
.responsible-list__item-title {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
}
.responsible-list__item-description {
    margin: 10px 0 0 0;
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-color);
}
.responsible-list__item-description p:not(:last-child) {
    margin-bottom: 5px;
}
.responsible-list__item-bottom {
    margin: 16px 0 0 0;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color);
}
.responsible-list__item-bottom a {
    color: inherit;
    text-decoration: underline;
    transition: all ease .1s;
}
.responsible-list__item-bottom a:hover {
    color: #ccc;
    opacity: 0.9;
}
@media (min-width: 768px) {
    .responsible-list__item {
        padding: 20px 24px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 30px;
    }
    .responsible-list__item:not(:last-child) {
        margin-bottom: 30px;
    }
    .responsible-list__item:first-child {
        padding-bottom: 30px;
    }
    .responsible-list__item-inner {
        margin: 0;
    }
    .responsible-list__item-bottom {
        margin: 12px 0 0 0;
    }
    .responsible-gaming__title {
        font-size: 34px;
    }
}

/* Middle Disclaimer */
.middle-disclaimer {
    margin-top: 66px;
    text-align: center;
}
.middle-disclaimer__light {
    padding: 66px 0;
    color: var(--middle-disclaimer-text-color);
    background-color: var(--middle-disclaimer-color);
}
.middle-disclaimer__title {
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--middle-disclaimer-text-color);
    font-weight: 700;
}

.middle-disclaimer__block {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.middle-disclaimer__image{
    width: 35px;
}
.middle-disclaimer__subdescription p {
    margin-bottom: 20px;
}

/* Gaming */

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

/* Footer */
.footer {
    margin-top: 33px;
    margin-bottom: 0;
    padding-top: 40px;
    background-color: var(--main-color);
}
.footer .copyright .copyright-text {
    padding: 0;
}
.footer .copyright .copyright-icon {
    margin: 0 20px 0px 0px;
}
.footer .copyright .copyright-icon img {
    width: 100%;
    display: block;
}
.footer .copyright .f_left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.footer .copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    height: 68px;
}
.footer .copyright-icon {
    margin: 0 20px 0 0;
    width: 36px;
    height: 36px;
}
.footer .copyright-text {
    font-size: 14px;
    line-height: 1.71;
    color: var(--text-color);
}
.footer .f_right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer .f_right .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 47%;
    max-width: 47%;
    width: 100%;
    min-height: 60px;
    max-height: 60px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}
.footer .f_right img {
    display: block;
    max-width: 144px;
    max-height: 34px;
    width: 100%;
}
.footer .container {
    padding: 0 24px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer .f_right .copyright-icon {
    margin: 0;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 47%;
    max-width: 47%;
    width: 100%;
    min-height: 60px;
    max-height: 60px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}
.footer__logo {
    margin: 24px 0;
}
.footer-bottom-link {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: center;
}
.footer-bottom-link a {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--text-color);
}
.footer-bottom-link a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer-bottom-link .menu-footer-menu-container #menu-footer-menu {
    display: flex;
	flex-direction: column;
    gap: 20px;
}
.footer__privacy-text {
    color: var(--text-color);
}
.footer .footer__privacy-text p {
    margin-bottom: 20px;
}
.footer .footer__privacy-text a {
    color: var(--text-color);
    text-decoration: underline;
}
.footer__subheading {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 24px;
}
@media (min-width: 1024px) {
    .footer {
        margin-top: 66px;
    }
}
@media only screen and (max-width: 991px) {
    .footer .copyright {
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        justify-content: space-between;
    }
    .footer .f_right .footer-logo {
        width: 48px;
        margin-right: 0px;
    }
    .footer .f_right a:not(.footer-logo) {
        display: none;
    }
    .footer .copyright-text {
        text-align: left;
        line-height: 24px;
        padding: 0px 60px;
    }
    .footer .copyright-icon {
        margin: 0px 0px 18px;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }
    .footer .copyright-icon img {
        display: block;
    }
}
@media screen and (min-width: 992px){
    .footer-bottom-link {
        flex-direction: row;
        gap: 30px;
    }
    .footer {
        padding: 20px 0;
    }
    .footer .container {
        height: unset;
        padding: 0;
    }
    .footer .f_right .footer-logo, .footer .copyright .copyright-icon {
        flex-shrink: 0;
        min-width: 116px;
        max-width: 116px;
        min-height: 46px;
        max-height: 46px;
    }
    .footer .f_right .footer-logo img, .footer .copyright .copyright-icon img {
        max-width: 112px;
        max-height: 30px;
        object-fit: contain;
    }
    .footer .f_right {
        margin: 0;
        align-items: center;
        gap: 10px;
    }
    .footer-bottom-link, .lang-de .footer-bottom-link, .lang-de_rootz .footer-bottom-link {
        margin: 0;
        padding-bottom: 0;
        flex-direction: row;
    }
	.footer-bottom-link .menu-footer-menu-container #menu-footer-menu {
		flex-direction: row;
	}
}

/* Main Content */
.site-main > .container {
    padding: 33px 0 0;
    color: var(--text-color);
}
.site-main > .container h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
}
.site-main > .container a {
    color: var(--text-color);
    text-decoration: underline;
}
.site-main > .container ul {
    padding-left: 20px;
    margin-bottom: 10px;
}
.site-main > .container ul li {
    list-style: disc;
    margin-bottom: 5px;
}
