@font-face {
    src: url("/components/assets/fonts/ttsevers-extrabold.woff2")
        format("truetype");
    font-family: "ttsevers-extrabold";
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    src: url("/components/assets/fonts/ttsevers-bold.woff2") format("truetype");
    font-family: "ttsevers-bold";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    src: url("/components/assets/fonts/ttsevers-medium.woff2")
        format("truetype");
    font-family: "ttsevers-medium";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    src: url("/components/assets/fonts/ttsevers-regular.woff2")
        format("truetype");
    font-family: "ttsevers-regular";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-title-eb: "ttsevers-extrabold", sans-serif;
    --font-title-b: "ttsevers-bold", sans-serif;
    --font-text-m: "ttsevers-medium", sans-serif;
    --font-text-r: "ttsevers-regular", sans-serif;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol,
li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #ffffff;
}

body {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

main,
footer {
    width: 100%;
    color: rgba(3, 3, 3, 1);
}

img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    vertical-align: top;
}

.casinoenligne--container__main {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.casinoenligne__visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

/* Header */
.casinoenligne--header {
    width: 100%;
    background-color: #1c1c1c;
}

.casinoenligne--header__container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.275rem 0;
}

.casinoenligne--menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1.25rem;
}

.casinoenligne--menu__contact {
    outline: none;
    border: 2px solid #ff7626;
    max-width: 271px;
    width: 100%;
    height: 50px;
    font-family: var(--font-title-b);
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* Menu */
.casinoenligne--header__nav {
    width: 100%;
    max-width: 680px;
}

.casinoenligne--menu_nav {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8.75rem;
    justify-content: flex-end;
}
.casinoenligne--menu__list {
    gap: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.casinoenligne--main__text-logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.casinoenligne--menu__list-item a {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 130%;
    font-family: var(--font-text-r);
    cursor: pointer;
    font-style: italic;
    text-decoration: underline;
}

/* Burger */
#casinoenligneMenuToggle {
    display: none;
    position: absolute;
    top: 0;
    left: 0rem;
    z-index: 999 !important;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    height: 58px;
}

#casinoenligneMenuToggle a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

#casinoenligneMenuToggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin-bottom: 5px;
    right: 0rem;
    top: 0rem;
    position: relative;
    background: #fff;
    border-radius: 3px;
    z-index: 1001 !important;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.no-scroll {
    overflow: hidden !important; /* Отключаем прокрутку с приоритетом */
}

#casinoenligneMenuToggle span:first-child {
    transform-origin: 0% 0%;
}

#casinoenligneMenuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#casinoenligneMenu {
    position: absolute;
    max-width: 100vw;
    width: 100%;
    z-index: 1000;
    margin: -75px 0 0 0px;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1c1c1c;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    height: 130vh;
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
}

#casinoenligneMenu li {
    text-align: center;
    padding: 20px 50px;
    font-size: 22px;
}

#casinoenligneMenuToggle input:checked ~ ul {
    transform: none;
}

#casinoenligneMenu a {
    margin: 0;
}

.burger-button {
    display: block;
    width: 22px;
    height: 32px;
    position: absolute;
    top: 1.25rem;
    right: 1.4rem;
    cursor: pointer;
    opacity: 1;
    z-index: 1002 !important;
    -webkit-touch-callout: none;
    background: transparent;
    border: none;
    padding: 0;
}

/* Добавляем класс для открытого состояния */
.burger-button.active span:first-child {
    transform: rotate(45deg) translate(0px, 0px);
    background: #f9f9f9;
    -webkit-transform: rotate(45deg) translate(0px, 0px);
    -moz-transform: rotate(45deg) translate(0px, 0px);
    -ms-transform: rotate(45deg) translate(0px, 0px);
    -o-transform: rotate(45deg) translate(0px, 0px);
}

.burger-button.active span:nth-child(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

.burger-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(-1px, -2px);
    -webkit-transform: rotate(-45deg) translate(-1px, -2px);
    -moz-transform: rotate(-45deg) translate(-1px, -2px);
    -ms-transform: rotate(-45deg) translate(-1px, -2px);
    -o-transform: rotate(-45deg) translate(-1px, -2px);
}

/* Обновляем селектор для checked состояния */
#casinoenligneMenuToggle .active ~ #casinoenligneMenu {
    transform: none;
}

/* Welcome */
.casinoenligne--welcome-box {
    padding: 4.475rem 0;

    width: 100%;
    margin: 0 auto;
}

.casinoenligne--welcome---info {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.casinoenligne--welcome----title {
    font-family: var(--font-title-eb);
    font-weight: 800;
    font-size: 4rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #000;
}

.casinoenligne--welcome---description {
    background-image: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, #000000 100%),
        url("/components/assets/image/welcome/welcome-bg-horse.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 6.5rem;
}

.casinoenligne--welcome----top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.casinoenligne--welcome----top_title {
    font-family: var(--font-text-m);
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    color: #fff;
    text-transform: uppercase;
    max-width: 372px;
    width: 100%;
}

.casinoenligne--welcome----top_text {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 130%;
    color: #fff;
    max-width: 610px;
    width: 100%;
}

.casinoenligne--welcome---btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff7626;
    border: 2px solid #ff7626;
    max-width: 130px;
    width: 100%;
    height: 130px;
    color: #fff;
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    margin: 0 auto;
}

/* Age Information */
.casinoenligne--age-box {
    padding: 4.475rem 0;
    background: #1c1c1c;
}

.casinoenligne--age--container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1180px;
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
}

.casinoenligne--age---image {
    background-image: url("/components/assets/image/age/age-horse.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 350px;
    width: 100%;
    height: 348px;
    border-radius: 200px;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px;
}

.casinoenligne--age---description {
    max-width: 649px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.casinoenligne--age---text_box {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.casinoenligne--age----text {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 2rem;
    line-height: 100%;
    color: #fff;
}

.casinoenligne--age----text a {
    text-decoration: underline;
}

.casinoenligne--text_orange {
    color: #ff7626 !important;
}

.casinoenligne--age---btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    height: 75px;
    background-color: #ff7626;
    max-width: 625px;
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 100%;
    color: #fff;
    text-transform: uppercase;
}

/* Games Sites */
.casinoenligne--sites-box {
    padding: 4.475rem 0;
}

.casinoenligne--sites--container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}

.casinoenligne--sites--title {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 4rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #000;
    text-align: left !important;
    width: 100%;
}

.casinoenligne--sites---lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 2.5rem 5.125rem;
    width: 100%;
}

.casinoenligne--sites----items {
    border: 2px solid #ff7626;
    max-width: 250px;
    width: 100%;
    height: 250px;
    position: relative;
}

.casinoenligne--sites----items_age {
    background-image: url("/components/assets/image/sites/sites-icon-age.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 122px;
    width: 100%;
    height: 122px;
    top: 50%;
    left: 50%;
    position: relative;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.casinoenligne--sites----items_gambleaware {
    max-width: 200px;
    width: 100%;
    height: 61px;
    top: 50%;
    left: 50%;
    position: relative;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.casinoenligne--sites----items_gt {
    max-width: 200px;
    width: 100%;
    height: 93px;
    top: 50%;
    left: 50%;
    position: relative;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.casinoenligne--sites----items_mediater {
    max-width: 200px;
    width: 100%;
    height: 70px;
    top: 50%;
    left: 50%;
    position: relative;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.casinoenligne--sites----items_anj {
    max-width: 200px;
    width: 100%;
    height: 145px;
    top: 50%;
    left: 50%;
    position: relative;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.casinoenligne--sites----items_gamcare {
    max-width: 200px;
    width: 100%;
    height: 57px;
    top: 50%;
    left: 50%;
    position: relative;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.casinoenligne--sites----items_aditel {
    max-width: 200px;
    width: 100%;
    height: 40px;
    top: 50%;
    left: 50%;
    position: relative;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.casinoenligne--sites---text {
    position: absolute;
    top: 62.5%;
    left: 2.5%;
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 130%;
    color: #000;
    max-width: 311px;
    width: 100%;
}

/* Partner */
.casinoenligne--partner-box {
    background-color: #ff7626;
    padding: 1.05rem 0;
}

.casinoenligne--partner--container {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    align-items: center;
}

.casinoenligne--partner---title {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 4rem;
    line-height: 100%;
    color: #fff;
    text-transform: uppercase;
    max-width: 647px;
    width: 100%;
    text-align: left;
}

.casinoenligne--partner---lists {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
}

.casinoenligne--partner----bwin {
    background-image: url(/components/assets/image/partners/partners-logo-bwin.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 170px;
    width: 100%;
    height: 170px;
}
.casinoenligne--partner----netbet {
    background-image: url(/components/assets/image/partners/partners-logo-netbet.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 170px;
    width: 100%;
    height: 170px;
}

/* Casino game */
.casinoenligne--casino--container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.casinoenligne---top_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1.25rem;
}

.casinoenligne---top__items {
    font-family: var(--font-text-m);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 100%;
    color: #fff;
    vertical-align: middle;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.casinoenligne---top__items::before {
    content: url("/components/assets/image/casino/casino-check-circle.svg");
}

.casinoenligne--casino---games {
    display: flex;
    gap: 1.25rem;
}

.casinoenligne--casino----items {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    background: #ffffff;
    max-width: 650px;
    width: 100%;
    padding: 1.25rem 0.7rem;
}

.casinoenligne--casino----items_top {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.casinoenligne--casino----items__parions {
    max-width: 220px;
    width: 100%;
    height: 54px;
}

.casinoenligne--casino----items_bonus {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 2rem;
    line-height: 100%;
    color: #000;
    vertical-align: middle;
    text-transform: uppercase;
}

.casinoenligne--casino_left {
    padding: 0 1.25rem;
}

.casinoenligne--casino----items_info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.casinoenligne--casino----items__name {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 100%;
    color: #000;
    vertical-align: middle;
    text-transform: uppercase;
}

.casinoenligne--casino----items__rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.casinoenligne--casino----items_advantages {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.75rem;
}

.casinoenligne--casino----items__elem {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    color: #000;
    vertical-align: middle;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.casinoenligne--medal_icon::before {
    content: url("/components/assets/image/casino/casino-icon-award.svg");
}
.casinoenligne--dollar_icon::before {
    content: url("/components/assets/image/casino/casino-icon-dollar-sign.svg");
}
.casinoenligne--phone_icon::before {
    content: url("/components/assets/image/casino/casino-icon-smartphone.svg");
}

.casinoenligne--casino----items_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    height: 75px;
    background-color: #ff7626;
    max-width: 610px;
    border: none;
    margin: 0 auto;
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 100%;
    color: #fff;
    text-transform: uppercase;
    gap: 1.4rem;
}

.casinoenligne--casino----items_btn::after {
    content: url("/components/assets/image/casino/casino-arrow-right-circle.svg");
}

.casinoenligne--alert_icon::before {
    content: url("/components/assets/image/casino/casino-icon-alert-circle.svg");
}
.casinoenligne--like_icon::before {
    content: url("/components/assets/image/casino/casino-icon-like.svg");
}

.casinoenligne--casino----items__pmust {
    max-width: 108px;
    width: 100%;
    height: 54px;
}

/* Betting */
.casinoenligne--betting-box {
    background-color: #ff7626;
    padding: 4.475rem 0;
}

.casinoenligne--betting--container {
    max-width: 1180px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: space-between;
}

.casinoenligne--betting--description {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 708px;
    width: 100%;
}

.casinoenligne--betting---title {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 4rem;
    line-height: 100%;
    color: #fff;

    text-transform: uppercase;
}

.casinoenligne--betting__textbox {
    max-width: 650px;
    width: 100%;
}

.casinoenligne--betting---text {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 130%;
    color: #fff;
}

.casinoenligne--betting--image {
    background-image: url(/components/assets/image/betting/betting-horse-man.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 350px;
    width: 100%;
    height: 348px;
    border-radius: 200px;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px;
}

/* Contact Info */
.casinoenligne--contactinfo-box {
    padding: 4rem 0;
}

.casinoenligne--contactinfo--container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.casinoenligne--contactinfo---info {
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.casinoenligne--contactinfo----text {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 130%;
    color: #000;
}

.casinoenligne--contactinfo--phone {
    background-image: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, #000000 100%),
        url(/components/assets/image/contactinfo/contactinfo-bg-horse-ippodrom.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
    height: 330px;
}

.casinoenligne--contactinfo--phone_text {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 2rem;
    line-height: 100%;
    color: #fff;
    text-align: center;
}

.casinoenligne--contactinfo--phone_number {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 2rem;
    line-height: 100%;
    text-align: center;
    color: #fff;
}

.casinoenligne--contactinfo-w {
    max-width: 644px;
    width: 100%;
}

.casinoenligne--contactinfo--phone__desc {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 100%;
    color: #fff;
    text-align: center;
}

/* Footer */
.casinoenligne--footer {
    width: 100%;
    padding: 2.5rem 0 1.5rem;
    background: #1c1c1c;
}

.casinoenligne--footer-box {
    display: flex;
    flex-direction: column;
    gap: 4.85rem;
    align-items: flex-end;
}

.casinoenligne--footer--top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.casinoenligne--footer---nav {
    display: flex;
    align-items: center;
    max-width: 985px;
    width: 100%;
    justify-content: space-between;
}

.casinoenligne--footer---logo {
    background-image: url("/components/assets/image/footer/footer-logo.svg");
    max-width: 76px;
    width: 100%;
    height: 37px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.casinoenligne--footer----link a {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 100%;
    text-align: center;
    color: #fff;
}

.casinoenligne--footer--copy {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    color: #fff;
}

/* Sign Up */
.casinoenligne--sign__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    gap: 1.25rem;
}

.casinoenligne--sign___info {
    max-width: 610px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.casinoenligne--sign___info-title {
    color: #fbf9fa;
    font-size: 3.2rem;
    font-family: var(--font-title);
    line-height: 130%;
}

.casinoenligne--sign___info-title::after {
    content: ":(";
}

.casinoenligne--sign___info-btn {
    max-width: 236px;
    width: 100%;
    height: 56px;
    border: none;
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: #fff;
    font-weight: 400;
    line-height: 120%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(93.51deg, #9b51e0 2.84%, #3081ed 99.18%);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.casinoenligne--sign___img {
    max-width: 533px;
    width: 100%;
    height: 352px;
}

.casinoenligne-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.casinoenligne-modal-content {
    background-color: #fefefe;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
    border-radius: 5px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.casinoenligne-modal__close-sign,
.casinoenligne-modal__close-login,
.casinoenligne_modal-content--message_close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.casinoenligne-modal__close-sign:hover,
.casinoenligne-modal__close-login:hover,
.casinoenligne_modal-content--message_close:hover {
    color: black;
}

.casinoenligne-modal-content_text {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-title-b);
    line-height: 20px;
    text-align: center;
}

/* Cookies Modal */
.casinoenligne--fixed-cookie {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 20;
}

#casinoenligneCookiePopup {
    z-index: 15;
    background: #ff7626;
    position: fixed;
    top: 50%;
    left: 50%;
    font-size: 14px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 600px;
    width: 100%;
    font-family: var(--font-text);
    text-align: justify;
    line-height: 1.8em;
    padding: 2.5rem 1.25rem;
    transition: all 0.5s ease-in;
    box-shadow: 0px 0px 8px 0px #00000080;
    z-index: 20;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.casinoenligne--cookie_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.casinoenligne--cookie_title {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 4rem;
    line-height: 100%;
    color: #fff;
}

.casinoenligne--cookie_text {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 120%;
    color: #fff;
}
.casinoenligne--cookie-btn {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 100%;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 261px;
    width: 100%;
    height: 75px;
    cursor: pointer;
}

.casinoenligne--cookie-btn_bg {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 100%;
    color: #ff7626;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 261px;
    width: 100%;
    height: 75px;
    cursor: pointer;
}

.casinoenligne--btn--box_cookie {
    display: flex;
    gap: 0.7rem;
    justify-content: center;

    width: 100%;
}

.casinoenligne__cookie-container {
    display: flex;

    flex-direction: column;
    gap: 1.25rem;
}

.casinoenligne--hide {
    visibility: hidden;
    bottom: 0;
    right: 2em;
}
.casinoenligne--show_cookie {
    visibility: visible;
    bottom: 0em;
    right: 2em;
}

/* Popup */
.casinoenligne__popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
        pointer-events 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
        pointer-events 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
        pointer-events 0.2s ease-in-out;
    height: 100vh;
}

.casinoenligne__popup__close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #101010ad;

    z-index: 1;
}

.casinoenligne__popup__body {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 584px;
    height: auto;
    background: #ffffff;
    font-family: var(--font-text);
    z-index: 2;

    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.casinoenligne__popup__top {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: #1c1c1c;
}

.casinoenligne__popup__top-text {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 100%;
    color: #fff;
    text-align: center;
}

.casinoenligne__popup__top-link {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 100%;
    color: #fff;
    text-align: center;
}

@media (max-width: 625px) {
    .casinoenligne__popup__body {
        width: 75%;
    }

    .casinoenligne__popup__form-top {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .casinoenligne__popup__title {
        text-align: center;
    }

    .casinoenligne__popup__form-title {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .casinoenligne__popup__form-bottom {
        flex-direction: column;
        align-items: center;
    }

    .casinoenligne__popup__form-top_icon {
        max-width: 100px !important;
        width: 100%;
        height: 100px !important;
    }

    .casinoenligne__popup__form,
    .casinoenligne__popup__form-bottom {
        gap: 0.2rem !important;
    }

    .casinoenligne__popup__top {
        padding: 1rem;
    }
}

.casinoenligne__popup__form {
    width: 100%;
    padding: 1.4rem;
    background-color: #ff7626;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.casinoenligne__popup__form input {
    position: absolute;
    top: 0;
    left: -5000px;
}

.casinoenligne__popup__title {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #fff;
}

.casinoenligne__popup__text {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 130%;
    color: #fff;
    text-decoration: underline;
}

.casinoenligne__popup__form-top {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
}

.casinoenligne__popup__form-title {
    max-width: 315px;
    width: 100%;
}

.casinoenligne__popup__form-top_icon {
    background-image: url("/components/assets/image/popup/popup-alert.svg");
    max-width: 122px;
    width: 100%;
    height: 122px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.casinoenligne__popup__form-bottom {
    display: flex;
    gap: 1.25rem;
}

.casinoenligne__popup__button-exit {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 100%;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 261px;
    width: 100%;
    height: 75px;
    cursor: pointer;
}

.casinoenligne__popup__button {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 100%;
    color: #ff7626;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 261px;
    width: 100%;
    height: 75px;
    cursor: pointer;
}

.casinoenligne__popup__button:active {
    opacity: 0.2;
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
}

@media (max-width: 991px) {
    .casinoenligne__popup__button {
        min-width: 149px;
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .casinoenligne__popup__button {
        font-size: 16px;
        min-width: 169px;
        min-height: 30px;
    }
}

/* Modal Sign up  */
.casinoenligne-modal_sign {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #101010ad;

    backdrop-filter: blur(22.899999618530273px);

    padding: 0 1rem;
}

.casinoenligne-modal__content-sign {
    background: linear-gradient(90deg, #0f3443 0%, #34e89e 100%);
    display: flex;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border: none;
    width: 100%;
    height: 540px;
    max-width: 600px;
    position: relative;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    padding: 1.25rem;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.casinoenligne__form {
    display: flex;
    flex-direction: column;

    gap: 0.75rem;
    width: 100%;
}

.casinoenligne__form__input {
    outline: none;
    border: none;
    padding: 1.3rem 1.5rem;
    font-family: var(--font-text-m);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 100%;
    color: #fff;
    background-color: transparent;
    border: 2px solid #ffffff;
}

.casinoenligne__form__input::placeholder {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 100%;

    color: #fff;
}

.casinoenligne__form__button {
    outline: none;
    border: none;
    width: 100%;
    height: 75px;
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 100%;

    text-transform: uppercase;

    color: #ff7626;

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.casinoenligne__form__login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.casinoenligne__form__log {
    font-size: 1.05rem;
    line-height: 20px;
    font-weight: 400;
    font-family: var(--font-text);
    color: #feffff;
}

.casinoenligne__form__reg {
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 1.05rem;
    line-height: 20px;
    font-weight: 400;
    font-family: var(--font-text);
    color: #e84015;
}

/* Log in */
.casinoenligne-modal_login {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #101010ad;

    padding: 0 1rem;
}

.casinoenligne-modal--title {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 4rem;
    line-height: 100%;
    color: #fff;
}

.casinoenligne-modal--text {
    font-family: var(--font-text-m);
    font-weight: 500;
    font-size: 1rem;
    line-height: 100%;
    color: #fff;
}

.casinoenligne-modal__content-login {
    background: #ff7626;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border: none;
    width: 100%;
    box-shadow: 0px 0px 8px 0px #00000080;
    height: 480px;
    max-width: 582px;
    position: relative;

    padding: 2.5rem 1.25rem;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/* Others Styles */
.casinoenligne--conditions--container {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 2.5rem;
}

.casinoenligne--sites_conditions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 976px;
    width: 100%;
}

.casinoenligne--sites__items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.casinoenligne--sites___text {
    font-family: var(--font-text-r);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 100%;
    color: #000;
}

.casinoenligne--sites___title {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 100%;
    color: #ff7626;
}

.casinoenligne--sites__sublists {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.casinoenligne--sites__sublists li {
    list-style-type: disc;
    margin-left: 1.25rem;
}

.casinoenligne--sites___text-link {
    font-family: var(--font-title-b);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 100%;
    color: #000000;
}

.casinoenligne--conditions---lists {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

.casinoenligne--sites--bold {
    font-weight: 700;
    font-family: var(--font-title-b);
}

.casinoenligne--conditions_w {
    max-width: 170px !important;
    width: 100%;
    height: 170px !important;
}
.casinoenligne--conditions_gambleaware {
    max-width: 150px !important;
    width: 100%;
    height: 46px !important;
}
.casinoenligne--conditions_gt {
    max-width: 150px !important;
    width: 100%;
    height: 69px !important;
}

.casinoenligne--conditions_mediater {
    max-width: 152px !important;
    width: 100%;
    height: 53px !important;
}

.casinoenligne--conditions_mediater {
    max-width: 152px !important;
    width: 100%;
    height: 53px !important;
}

.casinoenligne--conditions_anj {
    max-width: 151px !important;
    width: 100%;
    height: 109px !important;
}
.casinoenligne--conditions_gamcare {
    max-width: 150px !important;
    width: 100%;
    height: 43px !important;
}
.casinoenligne--conditions_aditel {
    max-width: 148px !important;
    width: 100%;
    height: 30px !important;
}

/* Mobile */
@media screen and (max-width: 1360px) {
    .casinoenligne--container__main {
        padding: 0 1.8rem;
    }

    .casinoenligne--sites---text {
        position: static;
        max-width: 100%;
    }

    .casinoenligne--sites---lists {
        justify-content: center;
        gap: 1.25rem;
    }

    .casinoenligne--casino---games {
        flex-direction: column;
        align-items: center;
    }

    .casinoenligne--footer--top {
        gap: 1.25rem;
    }
}

@media screen and (max-width: 1120px) {
    .casinoenligne---top_list {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .casinoenligne--footer--top {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 991px) {
    .casinoenligne--age---image,
    .casinoenligne--betting--image {
        display: none;
    }

    .casinoenligne--age--container {
        justify-content: center;
    }

    .casinoenligne--partner--container {
        flex-direction: column;
    }

    .casinoenligne--footer---nav {
        flex-direction: column;
        gap: 0.7rem;
    }

    .casinoenligne--footer--copy {
        text-align: center;
        width: 100%;
    }

    .casinoenligne--menu_nav {
        flex-direction: column-reverse;
        align-items: center;
        gap: 0.7rem;
    }

    .casinoenligne--header__nav {
        max-width: 188px;
        width: 100%;
    }

    .casinoenligne--welcome----top {
        flex-direction: column;
    }
}

@media screen and (max-width: 700px) {
    .casinoenligne--welcome----title,
    .casinoenligne--sites--title,
    .casinoenligne--partner---title,
    .casinoenligne--betting---title {
        font-size: 2rem;
    }

    .casinoenligne--welcome-box,
    .casinoenligne--age-box,
    .casinoenligne--sites-box,
    .casinoenligne--partner-box,
    .casinoenligne--betting-box,
    .casinoenligne--contactinfo-box {
        padding: 2.5rem 0;
    }

    .casinoenligne--welcome----top_title,
    .casinoenligne--age----text,
    .casinoenligne--contactinfo--phone_text {
        font-size: 1.4rem;
    }

    .casinoenligne--welcome----top_text,
    .casinoenligne--sites---text,
    .casinoenligne---top__items,
    .casinoenligne--betting---text,
    .casinoenligne--footer----link a {
        font-size: 1.125rem;
    }
    .casinoenligne--sites---lists {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .casinoenligne--casino----items_advantages {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .casinoenligne--betting--description {
        gap: 1.25rem;
    }

    .casinoenligne--footer-box {
        gap: 4rem;
    }
    .casinoenligne--btn--box_cookie {
        flex-direction: column;
        align-items: center;
    }

    .casinoenligne--cookie-btn,
    .casinoenligne--cookie-btn_bg {
        max-width: 100%;
        width: 100%;
    }

    #casinoenligneCookiePopup {
        width: 90%;
        padding: 1rem 0;
    }
}

@media screen and (max-width: 576px) {
    .casinoenligne-modal__content-login {
        height: 565px;
    }

    .casinoenligne-modal--title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 575px) {
    #casinoenligneCookiePopup {
        height: 500px;
    }
}

@media screen and (max-width: 520px) {
    .casinoenligne--sites----items {
        max-width: 155px;
        width: 100%;
        height: 155px;
    }

    .casinoenligne--sites----items_gambleaware {
        height: 37px;
        max-width: 120px;
        width: 100%;
    }

    .casinoenligne--sites----items_gt {
        max-width: 120px;
        width: 100%;
        height: 55px;
    }

    .casinoenligne--sites----items_mediater {
        max-width: 120px;
        width: 100%;
        height: 42px;
    }

    .casinoenligne--sites----items_anj {
        max-width: 120px;
        width: 100%;
        height: 87px;
    }

    .casinoenligne--sites----items_gamcare {
        max-width: 120px;
        width: 100%;
        height: 34px;
    }

    .casinoenligne--sites----items_aditel {
        max-width: 120px;
        width: 100%;
        height: 24px;
    }

    .casinoenligne--casino_left {
        padding: 0;
    }

    .casinoenligne--partner---lists {
        gap: 1.25rem;
    }

    .casinoenligne--partner----bwin,
    .casinoenligne--partner----netbet {
        max-width: 130px;
        width: 100%;
        height: 130px;
    }

    .casinoenligne--conditions---lists {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .casinoenligne--conditions_w {
        max-width: 155px !important;
        width: 100%;
        height: 155px !important;
    }
    .casinoenligne--conditions_gambleaware {
        max-width: 121px !important;
        width: 100%;
        height: 37px !important;
    }
    .casinoenligne--conditions_gt {
        max-width: 120px !important;
        width: 100%;
        height: 55px !important;
    }

    .casinoenligne--conditions_mediater {
        max-width: 120px !important;
        width: 100%;
        height: 42px !important;
    }

    .casinoenligne--conditions_anj {
        max-width: 121px !important;
        width: 100%;
        height: 87px !important;
    }
    .casinoenligne--conditions_gamcare {
        max-width: 119px !important;
        width: 100%;
        height: 34px !important;
    }
    .casinoenligne--conditions_aditel {
        max-width: 118px !important;
        width: 100%;
        height: 24px !important;
    }
}

@media screen and (max-width: 483px) {
    #casinoenligneCookiePopup {
        height: 550px;
    }
}

@media screen and (max-width: 384px) {
    #casinoenligneCookiePopup {
        height: 645px;
    }
}

@media screen and (max-width: 359px) {
    .casinoenligne--partner---lists {
        flex-direction: column;
        align-items: center;
    }

    .casinoenligne--sites---lists,
    .casinoenligne--conditions---lists {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
    }
}
