/*------------------------------------------------------------------
[Master Stylesheet]

Author: AtypicalThemes
Template: Strider - A Game Studio Template
Version:	1.0

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

-------------------------------------------------------------------
Table of contents

I.General
II.Page Prealoader
III.Header & Navigation
IV.Hero Section
V.About Section
VI.Games Section
VII.Team Section
VIII.Careers Section
IX.Contact Section
X.Footer
XI.404 Page
XII.Responsive Styles

-------------------------------------------------------------------
[Color codes]

Background:	#111; (black)
Content:	#FFF; (white)
Footer:		#070707; (black)

a (standard):	#F5F5F5; (white)
a (hover): #31e8ff; (cyan)
a (visited):	#31e8ff;
a (active):	#31e8ff;

[Colors]

Primary Color: #31e8ff;
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500');
/* Raleway Font */
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

/* Open Sans Font */
@font-face {
    font-family: 'Anurati';
    src: url('../font/Anurati-Regular.otf');
}

/* --------------------------- /////////// I. GENERAL /////////// --------------------------- */
/* -Color- */
.colored {
    color: #31e8ff;
}

/* -Link Styling- */
a {
    color: #31e8ff;
    font-family: Raleway, sans-serif;
    text-decoration: none;
}

a:visited {
    color: #7b7b7b;
    text-decoration: none;
}

a:hover {
    color: #31e8ff;
    text-decoration: underline;
}

a:active {
    color: #31e8ff;
    text-decoration: underline;
}

a:focus {
    color: #31e8ff;
    text-decoration: none;
}

/* -Resets- */
html,
body {
    background-color: #111;
    background: url(../img/bg.png);
    background-repeat: repeat;
    color: #FFF;
    font-size: 16px;
    line-height: 1.5rem;
    /* 24px */
    max-width: 100%;
    overflow-x: hidden;
}

/* -Full width fluid container- */
.full-width {
    padding-left: 0;
    padding-right: 0;
}

/* -Text Styling */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Raleway, sans-serif;
}

h1 {
    font-size: 2.25rem;
    /* 36px */
    font-family: Anurati, sans-serif;
    letter-spacing: 5px;
}

h2 {
    font-size: 1.50rem;
    /* 24px */
    font-weight: 500;
}

h3 {
    font-size: 1.25rem;
    /* 20px */
    font-weight: 400;
}

h4 {
    font-size: 1.10rem;
    font-weight: 300;
}

p {
    font-family: Open Sans, sans-serif;
    font-size: 0.9375rem;
    /* 15px */
    padding: 5px 5px 5px 0;
    margin: 0;
}

.strong {
    font-weight: bold;
}

.subtle {
    color: #999;
}

.spaced {
    letter-spacing: 5px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

ul {
    list-style-type: none;
    padding: 0;
}

/* -Margins and Floats- */
.floated-left {
    float: left;
}

.floated-right {
    float: right;
}

.inline {
    display: inline;
}

.offset {
    margin-left: 10px;
}

.tiny-margin {
    margin-bottom: 1.5em
        /* 24px */
}

.small-margin {
    margin-bottom: 3em;
    /* 48px */
}

.medium-margin {
    margin-bottom: 6em;
    /* 96px */
}

.large-margin {
    margin-bottom: 12em;
    /* 192px */
}

/* -<hr>- */
hr {
    width: 100%;
    height: 2px;
    background: #31e8ff;
    margin: 20px 0;
    border: none;
}

.hr-short {
    width: 100px;
    height: 2px;
    margin: 5px auto;
}

.short-hr-left::after {
    border-top: 2px solid;
    border-color: #31e8ff;
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    margin: 13px 0 0 0;
}

.short-hr-center::after {
    border-top: 2px solid;
    border-color: #31e8ff;
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    margin: 13px auto 0 auto;
}

/* General input fields */
input {
    height: 45px;
    padding-left: 10px;
    border: 1px solid #D4D4D4;
    /*border: 1px solid #D4D4D4 !important;*/
}

input:focus {
    border: 1px solid #333;
    outline: none;
}

textarea {
    height: 150px;
    width: 100%;
    max-width: 100%;
    padding-top: 10px;
    padding-left: 10px;
    border: 1px solid #D4D4D4 !important;
}

textarea:focus {
    border: 1px solid #333;
    outline: none;
}

/* -General Button Styles */
button {
    outline: none !important;
}

.button {
    background: #31e8ff;
    border: none;
    border-radius: 2px;
    color: #FFF;
    font-family: Raleway, sans-serif;
    font-weight: 500;
    display: block;
    height: auto;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px 15px;
    outline: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.button:hover {
    background: #FFF;
    color: #2B2B2B;
}

/* --------------------------- /////////// II. PAGE PRELOADER /////////// --------------------------- */
/* -Loading Screen- */
#loader-wrapper {
    background: #111;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 1050;
}

.loader-logo {
    position: relative;
    color: #FFF;
    top: 43%;
    font-family: Anurati, sans-serif;
    letter-spacing: 5px;
}

#progress {
    width: 0;
    height: 2px;
    background: #31e8ff;
    position: relative;
    top: 45%;
}

.loader-text {
    color: #FFF;
}

.btn-purple {
    color: #fff;
    background-color: #8d17b8;
    border-color: #8d17b8;
}

.btn-purple:hover {
    color: #fff;
    background-color: #711394;
    border-color: #8115a8;
}

#retro-design-price {
    font-size: 30px;
}

/* -Loading Screen RETRO DESIGN- */
#project-loader-wrapper {
    background: rgba(0, 0, 0, 0.9);
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 1050;
}

#project-progress {
    width: 0;
    height: 2px;
    background: #31e8ff;
    position: relative;
    top: 45%;
}

#project-loader-wrapper .loader {
    width: 200px;
    height: 200px;
}

#project-loader-wrapper .circle {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid transparent;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.7), 0 0 40px rgba(0, 255, 255, 0.7), 0 0 60px rgba(0, 255, 255, 0.7), 0 0 80px rgba(0, 255, 255, 0.7);
    transform: translate(-50%, -50%);
    animation: loader-rotate 4s linear infinite;
}

#project-loader-wrapper .circle::before,
#project-loader-wrapper .circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

#project-loader-wrapper .circle::before {
    width: 80%;
    height: 80%;
    border: 5px solid rgba(0, 255, 255, 0.7);
    animation: loader-rotate-reverse 2s linear infinite;
}

#project-loader-wrapper .circle::after {
    width: 60%;
    height: 60%;
    border: 2px solid rgba(0, 255, 255, 0.7);
    animation: loader-rotate 3s linear infinite;
}


@keyframes loader-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loader-rotate-reverse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

#project-loader-wrapper .pulse {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 40px;
    height: 40px;
    background-color: #00ccff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: loader-pulse 1.5s infinite;
}

@keyframes loader-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
    }
}

#project-loader-wrapper .central-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 255, 255, 1) 0%, rgba(0, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

#project-loader-wrapper .loading-bar {
    width: 300px;
    height: 20px;
    border: 1px solid #ccc;
    margin: auto;
    position: relative;
}

#project-loader-wrapper .loading-block {
    position: relative;
    top: 30%;
}

#project-loader-wrapper .progress {
    height: 100%;
    background-color: #00ccff;
    position: absolute;
    top: 0;
    left: 0;
    /* animation: fill-progress 4s forwards; */
}

@keyframes fill-progress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* -Loading Screen Animation- */
.loaded {
    -moz-transform: translate3d(0px, -100%, 0px);
    -webkit-transform: translate3d(0px, -100%, 0px);
    -o-transform: translate(0px, -100%);
    -ms-transform: translate(0px, -100%);
    transform: translate3d(0px, -100%, 0px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* --------------------------- /////////// III. HEADER & NAVIGATION /////////// --------------------------- */
#logo {
    font-family: Anurati, sans-serif;
    font-size: 1.75rem;
    /* 28px */
    ;
    letter-spacing: 5px;
}

.navbar-dark {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    z-index: 900;
    transition: 0.3s;
}

.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    /* navbar background gradient */
    z-index: 900;
}

.nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 5px;
    transition: 0.2s;
}

.navbar-dark .navbar-nav .nav-link {
    color: #FFF;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #31e8ff;
}

.navbar-dark .navbar-nav .nav-link:active {
    color: #31e8ff;
}

.navbar-dark .navbar-nav .nav-link:focus {
    color: #31e8ff;
}

.navbar-toggler {
    border: none;
    cursor: pointer;
}

#hamburger .icon-bar {
    display: block;
    height: 2px;
    width: 25px;
    background: #FFF;
    margin: 7px 0;
    transition: .3s ease-in-out;
}

/* - Mobile menu animation - */
#hamburger .icon-bar:nth-child(1) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger .icon-bar:nth-child(2) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger .icon-bar:nth-child(3) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger.open .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger.open .icon-bar:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#hamburger.open .icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* --------------------------- /////////// IV. HERO SECTION /////////// --------------------------- */
/* -Hero Image- */
.hero-unit {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/background/1.jpg);
    background-size: cover;
    background-position: center;
    min-height: 720px;
    height: 100vh;
}

/* -Hero Image Caption- */
/* .hero-caption {
    display: block;
    position: relative;
    margin-top: 40vh;
    color: #FFF;
    text-shadow: none; 
    padding: 20px;
    z-index: 5;
    text-align: center;
} */
.hero-caption {
    display: block;
    position: absolute;
    margin: auto;
    color: #FFF;
    text-shadow: none;
    padding: 20px;
    z-index: 5;
    text-align: center;
    top: 40vh;
    width: 100%;
}

.hero-caption h1 {
    font-weight: 300;
    font-size: 3rem;
    font-family: Raleway, sans-serif;
}

/* --------------------------- /////////// V. ABOUT SECTION /////////// --------------------------- */
#support-image {
    margin: 0 0 0 20%;
}

/* --------------------------- /////////// VI. GAMES SECTION /////////// --------------------------- */
.game-tags {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    padding: 10px;
    border-left: 2px solid #31e8ff;
}

.game-tags li {
    display: inline;
    margin: 0 0 0 15px;
    font-family: Raleway, sans-serif;
    font-size: 1.10rem;
    /* 20px */
    ;
    font-weight: 500;
}

.game-tags li a {
    color: #FFF;
    text-decoration: none;
}

.game-tags li a:hover {
    color: #31e8ff;
}

.game-tags li a:focus {
    color: #31e8ff;
}

.game-card {
    width: 100%;
    margin: 0 0 3.5em 0;
    min-height: 270px;
    height: auto;
}

.lightbox .lb-image {
    border: 4px solid #111;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    border-left: 2px solid #31e8ff;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.3s ease;
}

.overlay i {
    position: absolute;
    top: 40%;
    left: 45%;
}

.overlay:hover {
    opacity: 1;
}

.game-card-left {
    padding: 0;
}

.game-card-left img {
    height: 100%;
    width: 100%;
    min-height: 270px;
}

.game-card-right {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    padding: 20px 40px;
    margin: 0;
}

.game-card-right h2 {
    margin-bottom: 0;
}

.game-card-right>.short-hr-left::after {
    margin: 5px 0;
}

.tags {
    font-size: 14px;
    padding-top: 0;
}

.game-description {
    margin: 35px 0;
}

/* -- Modal -- */
.expand {
    cursor: pointer;
}

.game-modal .modal-header {
    height: 150px;
    background-image: url(../img/modal_header_bg.png);
    background-position: bottom;
    background-size: cover;
    border-bottom: 1px solid #555;
}

.game-modal .modal-title {
    margin: 5% 0 0 5%;
}

.game-modal img {
    margin: 5px 0 50px 0;
}

.modal-vid {
    width: 100%;
    max-width: 768px;
    height: 415px;
    margin: 20px 0 60px 0;
    border: none;
}

/* -- Buttons -- */
.steam-btn {
    display: inline-block;
    margin: 25px 0 0 0;
}

.steam-btn a {
    display: inline-block;
    min-height: 55px;
    min-width: 150px;
    height: auto;
    width: auto;
    background: #DDD;
    border-radius: 3px;
    padding: 8px;
    border: none;
    color: #111;
    cursor: pointer;
    transition: 0.2s;
}

.steam-btn:hover a {
    background: #000;
    color: #FFF;
}

.steam-btn i {
    float: left;
}

.steam-btn p {
    float: right;
    line-height: 20px;
    font-weight: bold;
}

.button-store {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 5px 22px;
    border-radius: 5px;
    margin: 30px 10px 0 0;
    color: #111;
    background: #DDD;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.button-store:hover {
    background: #000;
    color: #FFF;
}

.button-store>i {
    float: left;
    display: inline;
    margin-top: 5px;
}

.button-store p {
    float: right;
    padding: 0 0 0 10px;
}

.reviews {
    width: auto;
    display: inline-block;
    float: right;
    margin: 20px 0 0 0;
    text-align: center;
}

.reviews a {
    color: #FFF;
}

.reviews a:hover {
    color: #FFF;
}

.reviews a:active {
    color: #FFF;
}

.reviews a:visited {
    color: #FFF;
}

.score-card {
    display: inline-block;
    min-height: 70px;
    min-width: 90px;
    width: auto;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    text-align: center;
    margin: 0 5px 0 0;
    padding: 5px;
    border-radius: 2px;
    transition: 0.2s;
}

.score-card:hover {
    background: #FFF;
}

.score-card:hover p {
    color: #111;
}

.score-card p:nth-of-type(2) {
    font-size: 14px;
    padding-top: 0;
}

.score {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 5px;
    padding-bottom: 0;
}

.rating {
    width: auto;
    height: auto;
    padding: 10px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    text-align: center;
    float: right;
    border-radius: 2px;
    margin: 20px 0 0 0;
}

.rating ul {
    margin: 0;
}

.rating ul li {
    display: inline;
    margin: 0 5px 0 0;
}

.rating p {
    font-size: 1.5rem;
}

/* --------------------------- /////////// VII. TEAM SECTION /////////// --------------------------- */
#full-row {
    width: 100%;
}

#services figure {
    display: inline-block;
    position: relative;
    text-align: center;
    overflow: hidden;
}

#services figure img {
    border-radius: 3px;
    border-bottom: 2px solid #31e8ff;
}

.services-caption ul {
    margin-top: 10px;
}

.services-caption ul li {
    display: inline;
    margin: 0 5px;
}

.services-caption ul li>a {
    color: #EEE;
}

.services-caption ul li>a:hover {
    color: #31e8ff;
}

.services-caption {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    text-align: center;
    padding: 40% 20px 20px 20px;
    z-index: 5;
    opacity: 0;
    transition: all 0.3s ease;
    width: 100%;
}

#services figure:hover>.services-caption {
    opacity: 1;
}

#services figure:hover>img {
    filter: blur(2px);
}

.services-name {
    font-size: 1.5rem;
    padding-bottom: 0;
}

.gallery-item {
    padding: 0 2.5px;
}

.grid-gallery .row {
    margin: 0 0 5px 0;
}

.overlay.gallery {
    left: 0;
    width: 100%;
    border: none;
}

/* --------------------------- /////////// VIII. CAREERS SECTION /////////// --------------------------- */
.job-card {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    border-left: 2px solid #31e8ff;
    padding: 25px 35px;
    margin: 10px 0;
}

.modal-content {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
}

.modal-header {
    border-bottom: 1px solid #31e8ff;
}

.modal-body>ul>li>p {
    padding: 0px 5px;
    display: inline;
}

.modal-body ul {
    list-style: none;
    margin: 10px 0 0 25px;
}

.modal-body ul li {
    margin: 5px 0;
}

/*.modal-body:not(.GB) ul li:before {
content: "\f101";
color: #31e8ff;
display: inline-block;
width: 1em;
margin-left: -10px;
font-family: fontawesome;
}*/
.modal-body .skill-list {
    margin: 10px 0;
}

.modal-body .skill-list li {
    display: inline-block;
    padding: 5px 15px 7px 15px;
    margin: 5px 5px;
    border: 1px solid #31e8ff;
    border-radius: 20px;
}

.modal-body .skill-list li:before {
    display: none;
}

.modal-body h3 {
    margin-bottom: 0;
}

.modal-footer {
    border-top: 1px solid #31e8ff;
}

.modal-footer button {
    margin: 0;
}

.button.secondary {
    background: #222;
}

.button.secondary:hover {
    background: #FFF;
}

.close {
    color: #FFF;
    opacity: 1;
    text-shadow: none;
    cursor: pointer;
}

.close:hover {
    color: #31e8ff;
    opacity: 1;
}

/* -- Newsletter -- */
#newsletter input {
    width: 40%;
    height: 45px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    border: none !important;
    padding: 0 0 0 20px;
    display: inline-block;
    margin-top: 20px;
    color: #fff;
}

#newsletter button {
    display: inline-block;
    height: 43px;
    width: auto;
}

/* --------------------------- /////////// IX. CONTACT SECTION /////////// --------------------------- */
#contactForm {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    padding: 5%;
    margin-top: 25px;
}

#contactForm input {
    width: 100%;
    color: #FFF;
    background: none;
    border-bottom: 2px solid #31e8ff !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    margin-bottom: 25px;
}

#contactForm textarea {
    width: 100%;
    color: #FFF;
    background: none;
    border-bottom: 2px solid #31e8ff !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    margin-bottom: 25px;
}

#contactForm .button {
    margin-left: 0;
    padding: 15px 25px;
    font-size: 1.25rem;
}

/* - Warning and succes msg text- */
.text-danger,
.text-success {
    font-family: Open Sans, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.25rem;
}

#contact-info {
    margin-top: 25px;
}

#contact ul li i {
    color: #31e8ff;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    padding: 10px;
}

#contact ul li p {
    display: inline;
    margin-left: 5px;
}

#contact ul li {
    margin-bottom: 15px;
}

#map-canvas {
    width: 100%;
    height: 330px;
    opacity: 0.9;
}

/* --------------------------- /////////// X. FOOTER /////////// --------------------------- */
#footer {
    width: 100%;
    min-height: 70px;
    height: auto;
    background: #070707;
    border-top: 2px solid #31e8ff;
    padding: 20px 0 0 0;
}

.social-links {
    float: right;
}

.social-links li {
    display: inline;
    margin-left: 15px;
}

.social-links li a {
    color: #FFF;
}

.social-links li a:hover {
    color: #31e8ff;
}

.social-links li a:focus {
    color: #31e8ff;
}

#copyright,
.mentions-legales {
    float: left;
}

/* --------------------------- /////////// XI. 404 PAGE /////////// --------------------------- */
#container-404 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

#container-404 .row-fluid {
    margin-top: 18%;
}

.text-404 h1 {
    font-family: Anurati, sans-serif;
    font-size: 4rem;
}

.text-404 a {
    display: inline-block;
    text-decoration: none;
}

/* --------------------------- /////////// XII. RESPONSIVE STYLES /////////// --------------------------- */
@media (max-width : 991px) {
    .nav-item>a::first-letter {
        color: #31e8ff;
    }

    .navbar-dark {
        background-color: rgba(0, 0, 0, 0.4);
        /* navbar background gradient */
    }

    .scrolled {
        background-color: rgba(0, 0, 0, 0.8);
        /* navbar background gradient */
    }

    #footer {
        text-align: center;
        padding: 10px 0 0 0;
    }

    .social-links {
        float: none;
    }

    #copyright,
    .mentions-legales {
        float: none;
        margin-bottom: 5px;
    }

    #container-404 .row-fluid {
        margin-top: 40%;
    }

    .mentions-legales {
        margin-left: 0px;
    }
}

@media (max-width : 767px) {
    .large-margin {
        margin-bottom: 4em;
        /* 96px */
    }

    .medium-margin {
        margin-bottom: 3em;
    }

    .small-margin {
        margin-bottom: 2em;
    }

    .heading {
        font-size: 1.50rem;
    }

    hr {
        margin: 0;
    }

    #support-image {
        display: block;
        margin: 2em auto 0 auto;
    }

    .game-card {
        margin: 0 0 3em 0;
    }

    .steam-btn {
        display: block;
        text-align: center;
    }

    .button-store:nth-of-type(2) {
        float: right;
    }

    .reviews {
        display: block;
        margin: 15px auto 0 auto;
        float: left;
        width: 100%;
    }

    .rating {
        display: block;
        margin: 15px auto 0 auto;
        float: none;
    }

    #services figure {
        margin: 20px auto;
    }

    .gallery-item {
        margin: 5px 0;
    }

    .grid-gallery .row {
        margin: 0;
    }

    #newsletter input {
        width: 100%;
        display: block;
        margin: 20px 0;
    }

    #newsletter button {
        width: 100%;
        display: block;
    }

    #contactForm {
        margin: 0 0 3em 0;
    }

    .text-404 h1 {
        font-size: 3.5rem;
    }
}

@media (max-width : 480px) {
    .game-card-left img {
        min-height: 0;
    }

    .score-card {
        margin: 5px 0;
    }

    .hero-caption h1 {
        font-size: 2.5rem;
    }

    .button-store {
        margin: 5px auto;
    }

    .button-store:nth-of-type(2) {
        float: none;
    }
}

/* Custom */
span.protectedNumber:before {
    content: attr(title);
}

.game-description a {
    color: #31e8ff;
}

.price {
    font-size: 30px;
    position: absolute;
    left: 10px;
}

.img-preview {
    width: 60%;
    margin-bottom: 0px !important;
    border-radius: 30px;
}

.img-sticker-preview {
    width: 100%;
    margin-bottom: 0px !important;
    display: block;
}

#gba-modules-container input,
#gba-allinone-modules-container input {
    height: 20px;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ul-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto !important;
}

.ul-list .li-item {
    box-shadow: inset 0 0 0 1px #ccc;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 12px;
    margin-bottom: 12px;
}

.ul-list .li-item.selected,
.ul-list .li-item:hover {
    box-shadow: inset 0 0 0 2px #ff4747;
}

.ul-list .div-image {
    width: 58px;
    height: 58px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2px;
}

.ul-list img {
    width: 100%;
    margin: auto;
}

.allinone-custom-size,
.games-custom-size {
    width: 76px !important;
    height: 76px !important;
}

.allinone-carousel-left,
.games-carousel-left {
    position: absolute;
    width: 20px;
    height: 73px;
    margin-left: 2px;
    margin-top: 2px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding-top: 26px;
    display: none;
}

.allinone-carousel-right,
.games-carousel-right {
    position: absolute;
    width: 20px;
    height: 73px;
    margin-left: 54px;
    margin-top: -74px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding-top: 26px;
    display: none;
}

.gba-allinone-choose-model {
    width: 76px;
    position: absolute;
    margin-top: -38px;
    margin-left: 0;
}

.m-auto {
    margin: auto;
}

.m-100 {
    margin: 100px;
}

.mt-5p {
    margin-top: 5%;
}

.mt-10p {
    margin-top: 10%;
}

.mt-15p {
    margin-top: 15%;
}

.mt-20p {
    margin-top: 20%;
}

.ml-20 {
    margin-left: 20px;
}

.mt-6 {
    margin-top: 6px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-14 {
    margin-top: 14px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-22 {
    margin-top: 22px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.fs-8 {
    font-size: 8px;
}

.fs-9 {
    font-size: 9px;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-34 {
    font-size: 34px;
}

.font-info {
    color: #17a2b8;
}

.font-success {
    color: #28a745;
}

.font-warning {
    color: #ffc107;
}

.font-danger {
    color: #dc3545;
}

.font-primary {
    color: #007bff;
}

#gba-button-preview,
#gba-screen-preview {
    display: none;
}

.cart-img {
    text-align: center;
}

.cart-img img {
    width: 80px;
}

.cart-text span {
    margin-top: 25px;
    display: block;
}

.cart-text-list span {
    margin-left: 5px;
}

.confirmation-img img {
    width: 100%;
}

#table-items th {
    text-align: center;
}

#table-items tbody th,
#table-items td {
    vertical-align: middle;
}

.badge-qty {
    position: absolute;
    margin-top: -8px;
    margin-left: -2px;
}

.pointer {
    cursor: pointer;
}

.move {
    cursor: move;
}

.modal-message {
    border: 1px solid #28a745;
    padding: 6px;
    color: #28a745;
    left: 15px;
    position: absolute;
}

.valign-middle {
    vertical-align: middle;
}

.payment-container {
    border: 2px solid #656565;
    border-radius: 20px;
    padding: 15px;
}

.text-error {
    color: #c92a2a;
}

.mentions-legales {
    margin-left: 20px;
}

.modal-sell img {
    width: 100%;
}

#forsale a {
    color: #31e8ff !important;
}

.text-info {
    color: #0c5460;
}

button:disabled {
    cursor: not-allowed;
}

.service-led-image {
    width: 100%;
    margin-bottom: 0px !important;
    border-radius: 30px;
}

.warranty {
    width: 100px;
    margin: 0 !important;
}

.warranty-color {
    color: #bbae67;
}

/* order process */
.order-process-message {
    position: absolute;
    right: 110px;
    top: 25px;
}

:root {
    --background-modal-color: #fff;
    --color-timeline-default: #D2D3D8;
    --color-step-completed: #5C6174;
    --color-checkmark-completed: #fff;
    --color-in-progress: #13CB8F;
    --color-label-default: var(--color-timeline-default);
    --color-label-completed: var(--color-step-completed);
    --color-label-loading: var(--color-in-progress);
    --color-icon-completed: var(--color-step-completed);
    --color-icon-default: var(--color-timeline-default);
}

.order-process-container {
    display: none;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 200ms ease;
    background: var(--background-modal-color);
    height: 220px;
    min-width: 420px;
    max-width: 750px;
    flex-grow: 1;
    border-radius: 5px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.14);
    margin: auto;
}

.main-container .steps-container {
    padding: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container .steps-container .step {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease;
    flex-grow: 0;
    height: 15px;
    width: 15px;
    border: 4px solid var(--color-timeline-default);
    border-radius: 50%;
}

.main-container .steps-container .step .preloader,
body .main-container .steps-container .step svg {
    display: none;
}

.main-container .steps-container .step.completed {
    width: 18px;
    height: 18px;
    background: var(--color-step-completed);
    border: none;
}

.main-container .steps-container .step.completed svg {
    transition: all 200ms ease;
    display: block;
    height: 10px;
    width: 10px;
    fill: var(--color-checkmark-completed);
}

.main-container .steps-container .step.in-progress {
    width: 18px;
    height: 18px;
    background: var(--color-in-progress);
    border: none;
}

.main-container .steps-container .step.in-progress .preloader {
    display: block;
    height: 10px;
    width: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-left-color: transparent;
    animation-name: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.main-container .steps-container .step .label {
    position: absolute;
    /* top: 30px; */
    margin-top: 70px;
    filter: none;
    z-index: 2000;
    color: var(--color-label-default);
    transition: all 200ms ease;
    font-weight: 700;
}

.main-container .steps-container .step .label.completed {
    color: var(--color-label-completed);
}

body .main-container .steps-container .step .label.loading {
    color: var(--color-label-loading);
}

.main-container .steps-container .step .icon {
    font-size: 40px;
    position: absolute;
    top: -60px;
    color: var(--color-icon-default);
    transition: color 200ms ease;
}

.main-container .steps-container .step .icon.completed {
    color: var(--color-icon-completed);
}

.main-container .steps-container .step .icon.in-progress {
    color: var(--color-in-progress);
}

.main-container .steps-container .line {
    transition: all 200ms ease;
    height: 2px;
    flex-grow: 1;
    max-width: 120px;
    background: var(--color-timeline-default);
}

.main-container .steps-container .line.completed {
    background: var(--color-step-completed);
}

.main-container .steps-container .line.next-step-uncomplete {
    background: linear-gradient(to right, var(--color-step-completed), var(--color-timeline-default));
}

.main-container .steps-container .line.next-step-in-progress {
    background: linear-gradient(to right, var(--color-step-completed), var(--color-in-progress));
}

.main-container .steps-container .line.prev-step-in-progress {
    background: linear-gradient(to right, var(--color-in-progress), var(--color-timeline-default));
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.order-tracking-info {
    background: #FFF;
    border-radius: 5px;
    color: #000;
    padding: 20px;
    margin-left: 10px;
}

.paypal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFC439;
    color: #111;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.paypal-button img {
    height: 20px;
    margin-right: 10px;
}

.paypal-button:hover {
    background-color: #E0A800;
}

/* retro design */
#containment-wrapper {
    max-height: 867px;
}

.collapse-chevron {
    position: absolute;
    right: 20px;
    color: #31e8ff;
    margin-top: 5px;
}

.p-absolute {
    position: absolute;
}

.p-relative {
    position: relative;
}

.mt--200 {
    margin-top: -200px;
}

.mt--100 {
    margin-top: -100px;
}

.retro-design-menu .card {
    background-color: rgba(100, 100, 100, 1);
}

.retro-design-menu .btn-link {
    color: #31e8ff;
}

.retro-design-menu .btn-link:hover {
    color: #915825;
}

.retro-design-menu h2 {
    color: #FFF;
}

#progressBar,
#lensEditorProgressBar {
    width: 100%;
    height: 30px;
    background-color: #f0f0f0;
    margin-top: 10px;
    border-radius: 5px;
    overflow: hidden;
}

#progressBarFill,
#lensEditorProgressBarFill {
    height: 100%;
    background-color: #4caf50;
    width: 0%;
    transition: width 0.3s ease;
}

.custom-file-label::after {
    content: inherit;
}

.ui-resizable {
    position: absolute !important;
}

.element-selected {
    border: 2px solid #28a745;
    ;
}

.retro-design-menu .form-check input {
    height: 20px;
}

.retro-design-menu .form-check label {
    color: #FFF;
}

#uploaded-shell-files .border-element,
#uploaded-lens-editor-files .border-element,
#uploaded-stickers-editor-files .border-element,
#sortable-stickers-editor-text .border-element {
    border: 1px solid #31e8ff !important;
}

.retro-design-menu .pl-2 {
    padding-left: 2rem !important;
}

.bb-orange {
    border-bottom: 2px solid #31e8ff;
}

.custom-tiny-margin {
    margin-bottom: 1.5em;
    z-index: 60;
    position: relative;
}

.move-icon {
    vertical-align: sub;
    color: #FFF;
    cursor: move;
}

.full-row {
    width: 100%;
}

#pixabayImageModal .modal-xl,
#stickpngImageModal .modal-xl,
#pngartsImageModal .modal-xl,
#clipartmaxImageModal .modal-xl {
    max-width: 90%;
}

#pixabayImageModal img,
#stickpngImageModal img,
#pngartsImageModal img,
#clipartmaxImageModal img {
    margin: 0;
}

.pixabay-result {
    height: 100%;
    background: rgba(35, 35, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.pixabay-result img {
    width: 100%;
    /* height: 120px; */
    height: 300px;
    /* object-fit: cover; */
    object-fit: contain;
    background-color: #fff;
}

.pixabay-result-body {
    padding: 10px;
}

.pixabay-result-tags {
    min-height: 38px;
    color: #fff;
    font-size: 13px;
    line-height: 19px;
    overflow: hidden;
}

.pixabay-result-user {
    margin: 6px 0;
    color: #bbb;
    font-size: 12px;
}

.compact-source-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.compact-source-button {
    white-space: nowrap;
}

.compact-source-button.active {
    background-color: #28a745;
    border-color: #28a745;
}

.compact-web-results {
    max-height: 360px;
    overflow-y: auto;
}

.compact-web-result {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 8px;
    margin-bottom: 8px;
    padding: 8px;
    background: rgba(35, 35, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.compact-web-result img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background-color: #fff;
}

.compact-web-title {
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    max-height: 32px;
    overflow: hidden;
}

.compact-web-source {
    color: #bbb;
    font-size: 11px;
}

.compact-web-pagination {
    font-size: 12px;
}

#retro-design-lens-menu .card {
    background-color: rgba(100, 100, 100, 1);
}

.logo-svg {
    width: 70%;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#lensEditorModal img,
#stickersEditorModal img {
    margin: 0;
}

#lens-editor-container {
    width: 100%;
    position: relative;
    /* Pour positionner l'image logo par rapport à ce conteneur */
    display: inline-block;
    /* Pour que la taille du conteneur s'ajuste à l'image de fond */
}

#shell-project-container {
    height: 100%;
}

#lensEditorModal .modal-xl,
#stickersEditorModal .modal-xl {
    max-width: 90%;
}

.lens-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.image-tools {
    position: absolute;
}

.image-tools-top {
    top: -50px;
    padding: 5px;
    border-radius: 5px;
    background: #17a2b8;
}

.image-tools-left {
    left: -165px;
}

.image-tools-right {
    right: -50px;
}

.image-tools>div {
    display: flex;
    position: relative;
    right: 0%;
    justify-content: start;
}

.image-tools>div>input {
    width: 65px;
}

.image-tools .btn {
    width: 43px;
}

.image-action-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    width: 100%;
}

.image-action-buttons .btn {
    min-width: 36px;
    padding-right: 8px;
    padding-left: 8px;
}

.image-retouch-panel {
    position: absolute;
    top: 40px;
    left: calc(100% + 6px);
    z-index: 60;
    width: 245px;
    padding: 12px;
    border: 1px solid rgba(49, 232, 255, 0.30);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(7, 10, 18, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: var(--ro-text);
}

.image-retouch-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.image-retouch-header .btn {
    width: 32px;
    height: 32px;
    padding: 0;
}

.image-retouch-control {
    margin-bottom: 10px;
}

.image-retouch-control label {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
    color: var(--ro-muted);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.image-retouch-control input[type="range"] {
    width: 100%;
    accent-color: var(--ro-cyan);
}

.image-retouch-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.image-retouch-actions .btn {
    width: auto;
}

.image-tools input::-webkit-outer-spin-button,
.image-tools input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.image-tools input[type=number] {
    -moz-appearance: textfield;
}

#sortable-lens div.selected,
#sortable-sticker div.selected {
    box-shadow: inset 0 0 0 2px #ff4747;
}

#sticker-top-background {
    position: absolute;
    height: 39.2%;
    width: 100%;
    z-index: 0;
}

.sticker-middle-background-gb {
    display: none;
}

.sticker-middle-logo-svg-gb {
    display: none;
}

.sticker-middle-line-svg-gb {
    display: none;
}

.sticker-middle-background-gbc {
    position: absolute;
    height: 19%;
    width: 100%;
    top: 34%;
    z-index: 0;
}

.sticker-middle-background-gba {
    position: absolute;
    height: 11%;
    width: 100%;
    z-index: 0;
    margin-top: 39%;
}

#sticker-bottom-background {
    position: absolute;
    height: 10%;
    width: 100%;
    z-index: 0;
    margin-top: 57%;
}

#sticker-holographic-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 6;
    top: 0;
}

.sticker-top-logo-svg {
    width: 54%;
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sticker-middle-logo-svg-gba {
    width: 16%;
    position: absolute;
    top: 40.5%;
    left: 36%;
    transform: translate(-50%, -50%);
}

.sticker-middle-logo-svg-gbc {
    position: absolute;
    width: 29%;
    top: 37%;
    left: 42.5%;
    transform: translate(-50%, -50%);
}

.sticker-middle-line-svg-gbc {
    width: 36%;
    height: 0px;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sticker-middle-line-svg-gba {
    width: 28%;
    height: 18px;
    position: absolute;
    top: 42%;
    left: 42%;
    transform: translate(-50%, -50%);
}

.sticker-middle-barcode-svg-gb {
    width: 13.8%;
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, rgba(127, 125, 126, 1) 0%, rgba(151, 150, 149, 1) 50%);
}

.sticker-middle-barcode-svg-gbc {
    width: 16.45%;
    position: absolute;
    top: 28.5%;
    left: 49.92%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, rgba(127, 125, 126, 1) 0%, rgba(151, 150, 149, 1) 50%);
}

.sticker-middle-barcode-svg-gba {
    width: 16%;
    position: absolute;
    top: 41%;
    left: 64.5%;
    transform: translate(-50%, -50%);
}

.sticker-holographic {
    width: 200px;
    height: 50px;
    background: linear-gradient(to right,
            rgba(255, 0, 0, 0) 46%,
            /* Red */
            rgba(255, 0, 0, 0.5) 47%,
            /* Red */
            rgba(255, 127, 0, 0.5) 48%,
            /* Orange */
            rgba(255, 255, 0, 0.5) 49%,
            /* Yellow */
            rgba(0, 255, 0, 0.5) 50%,
            /* Green */
            rgba(0, 0, 255, 0.5) 51%,
            /* Blue */
            rgba(75, 0, 130, 0.5) 52%,
            /* Indigo */
            rgba(143, 0, 255, 0.5) 53%,
            /* Violet */
            rgba(255, 0, 0, 0) 54%
            /* Red again */
        );
    background-position: center;
    background-clip: content-box;
    /* Pour rendre le contenu non affecté par le dégradé transparent */
}

.ck.ck-editor__main>.ck-editor__editable {
    background: transparent !important;
}

.ck.ck-balloon-panel {
    z-index: 9999 !important;
}

.ck-powered-by-balloon {
    display: none !important;
}

.sticker-bloc-text {
    left: 20%;
    top: 30%;
    width: 50%;
}

.center-element {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.fixed-blocks {
    position: fixed;
    top: 0%;
    margin-left: -15px;
}

.fixed-project-container {
    position: fixed;
    top: 3%;
    width: 56.3%;
    z-index: 1;
}

.fixed-stickers-editor-container {
    position: fixed;
    top: -19%;
    width: 65.35%;
}

.fixed-footer {
    z-index: 1;
    position: relative;
}

@media (max-width : 768px) {
    #containment-wrapper {
        height: 700px;
    }

    .fixed-project-container {
        position: relative;
        top: auto;
        width: 100%;
    }
}

/* ------------------------- */

/* loader */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #31e8ff;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
}

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }

    50%,
    100% {
        top: 24px;
        height: 32px;
    }
}

.circle-loader {
    /*margin: 0 0 30px 10px;*/
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-left-color: #228ae6;
    animation-name: loader-spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.circle-loader,
.circle-loader:after {
    border-radius: 50%;
    width: 8em;
    height: 8em;
}

.animated-checkmark {
    display: none;
}

.animated-checkmark.draw:after {
    animation-duration: 1.2s;
    animation-timing-function: ease;
    animation-name: animated-checkmark;
    transform: scaleX(-1) rotate(135deg);
}

.animated-checkmark:after {
    opacity: 1;
    height: 4em;
    width: 2em;
    transform-origin: left top;
    border-right: 2px solid #396f3a;
    border-top: 2px solid #396f3a;
    content: '';
    left: 2em;
    top: 4em;
    position: absolute;
}

.load-failure:before,
.load-failure:after {
    display: block;
    content: "";
    height: 2px;
    background: #c92a2a;
    width: 50%;
    position: absolute;
    top: 4em;
    left: 2em;
}

.load-failure:before {
    transform: rotate(45deg);
}

.load-failure:after {
    transform: rotate(-45deg);
}

.load-complete {
    -webkit-animation: none;
    animation: none;
    transition: border 500ms ease-out;
}

.load-complete.load-success {
    border-color: #396f3a;
}

.load-complete.load-failure {
    border-color: #c92a2a;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animated-checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 2em;
        opacity: 1;
    }

    40% {
        height: 4em;
        width: 2em;
        opacity: 1;
    }

    100% {
        height: 4em;
        width: 2em;
        opacity: 1;
    }
}

/* ---------- */
/* Radio Style */
.container-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

.container-radio:hover input~.checkmark {
    background-color: #ccc;
}

.container-radio input:checked~.checkmark {
    background-color: #31e8ff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container-radio input:checked~.checkmark:after {
    display: block;
}

.container-radio .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

#shipping-form .container-radio img {
    width: 150px;
}

#shipping-form .container-radio .checkmark {
    top: 7px;
}

#payment-form .container-radio img {
    width: 250px;
}

#payment-form .container-radio .checkmark {
    top: 38px;
}

#payment-form .info-payment {
    margin: -20px 0 20px 0;
}

/* ----------- */

/* Stripe */
.StripeElement {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

#card-errors {
    height: 20px;
    padding: 4px 0;
    color: #fa755a;
}

/* ----------- */

/* Rating styles */
@charset "UTF-8";

.rating-order {
    margin: 20px auto;
    width: 400px;
    height: 40px;
}

.rating-order>* {
    float: right;
}

@-webkit-keyframes pulse {
    50% {
        color: #5e5e5e;
        text-shadow: 0 0 15px #777777;
    }
}

@keyframes pulse {
    50% {
        color: #5e5e5e;
        text-shadow: 0 0 15px #777777;
    }
}

.rating-order label {
    height: 40px;
    width: 20%;
    display: block;
    position: relative;
    cursor: pointer;
}

.rating-order label:nth-of-type(5):after {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.rating-order label:nth-of-type(4):after {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.rating-order label:nth-of-type(3):after {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}

.rating-order label:nth-of-type(2):after {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.rating-order label:nth-of-type(1):after {
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
}

.rating-order label:after {
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    content: "☆";
    color: #444;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 80px;
    -webkit-animation: 1s pulse ease;
    animation: 1s pulse ease;
}

.rating-order label:hover:after {
    color: #5e5e5e;
    text-shadow: 0 0 15px #5e5e5e;
}

.rating-order input {
    display: none;
}

.rating-order input:checked+label:after,
.rating-order input:checked~label:after {
    content: "★";
    color: #F9BF3B;
    text-shadow: 0 0 20px #F9BF3B;
}

.af img {
    width: 100%;
}

.af a:visited {
    color: inherit;
    text-decoration: none;
}

a.force-white:visited {
    color: #ffffff;
    text-decoration: none;
}

a.force-black:visited {
    color: #212529;
    text-decoration: none;
}

/* Color Picker */
.input-group-addon:last-child {
    border-left: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,
.input-group-btn:first-child>.btn:not(:first-child),
.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group>.btn,
.input-group-btn:last-child>.dropdown-toggle {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgb(204, 204, 204);
    border-radius: 4px;
}

.input-group-addon,
.input-group-btn {
    width: 40px;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group .form-control,
.input-group-addon,
.input-group-btn {
    display: table-cell;
}

.colorpicker-element .input-group-addon i,
.colorpicker-element .add-on i {
    margin-top: 4px;
}

/* LECTEUR MP3 */
.index-player {
    position: fixed;
    right: 10px;
    top: 10px;
}

.sound-wave {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar {
    animation-name: wave-lg;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    background: radial-gradient(circle, rgb(0, 0, 0) 15%, rgba(49, 232, 255, 1) 100%);
    margin: 0 1.5px;
    height: 10px;
    width: 1px;

    &:nth-child(-n + 7),
    &:nth-last-child(-n + 7) {
        animation-name: wave-md;
    }

    &:nth-child(-n + 3),
    &:nth-last-child(-n + 3) {
        animation-name: wave-sm;
    }
}

@keyframes wave-sm {
    0% {
        opacity: 0.35;
        height: 10px;
    }

    100% {
        opacity: 1;
        height: 25px;
    }
}

@keyframes wave-md {
    0% {
        opacity: 0.35;
        height: 15px;
    }

    100% {
        opacity: 1;
        height: 50px;
    }
}

@keyframes wave-lg {
    0% {
        opacity: 0.35;
        height: 15px;
    }

    100% {
        opacity: 1;
        height: 40px;
    }
}

@media (max-width: 991px) {
    .index-player {
        position: fixed;
        right: 18%;
        top: 10px;
    }

    .sound-wave {
        display: none;
    }
}

@media (min-width:992px) and (max-width:1500px) {
    .index-player {
        position: fixed;
        right: 10px;
        top: 50px;
    }
}

/* --------------------------- RETRO DESIGN 2026 THEME --------------------------- */
:root {
    --ro-bg: #070a12;
    --ro-surface: rgba(13, 18, 32, 0.84);
    --ro-surface-strong: rgba(18, 25, 43, 0.94);
    --ro-panel-border: rgba(112, 240, 255, 0.22);
    --ro-panel-border-hot: rgba(255, 62, 182, 0.42);
    --ro-text: #eef7ff;
    --ro-muted: #98a8bc;
    --ro-cyan: #31e8ff;
    --ro-cyan-soft: rgba(49, 232, 255, 0.22);
    --ro-magenta: #ff3eb6;
    --ro-lime: #a7ff4f;
    --ro-warning: #ffd166;
    --ro-shadow: 0 20px 80px rgba(0, 0, 0, 0.42);
}

html,
body {
    min-height: 100%;
    background:
        radial-gradient(circle at 18% 10%, rgba(49, 232, 255, 0.16), transparent 28rem),
        radial-gradient(circle at 84% 18%, rgba(255, 62, 182, 0.13), transparent 24rem),
        linear-gradient(135deg, rgba(49, 232, 255, 0.045) 25%, transparent 25%) 0 0 / 34px 34px,
        linear-gradient(225deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 34px 34px,
        linear-gradient(180deg, #070a12 0%, #0c1020 48%, #080b14 100%) !important;
    color: var(--ro-text);
    font-family: "Open Sans", Arial, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 7px,
        linear-gradient(90deg, transparent, rgba(49, 232, 255, 0.08), transparent);
    opacity: 0.48;
}

.colored,
.collapse-chevron,
.retro-design-menu .btn-link,
.text-info {
    color: var(--ro-cyan) !important;
}

a:visited {
    color: #b9c7d8;
}

.container-fluid {
    width: min(1880px, 100%);
    padding: 22px clamp(14px, 2vw, 34px) 0;
}

.heading.custom-tiny-margin {
    align-items: center;
    min-height: 74px;
    margin-bottom: 0.75rem;
    padding: 12px 0 6px;
}

#logo {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    color: var(--ro-text) !important;
    text-decoration: none;
}

#logo h1 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 2.15rem);
    letter-spacing: 0;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(49, 232, 255, 0.45);
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--ro-cyan);
}

.heading img[alt="beta"] {
    width: 96px !important;
    top: 9px !important;
    left: auto !important;
    right: -104px;
    filter: drop-shadow(0 0 12px rgba(255, 62, 182, 0.45));
}

hr {
    height: 1px;
    background: linear-gradient(90deg, rgba(49, 232, 255, 0), var(--ro-cyan), rgba(255, 62, 182, 0.76), rgba(49, 232, 255, 0));
    box-shadow: 0 0 16px rgba(49, 232, 255, 0.55);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
}

h2 {
    color: var(--ro-text);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.short-hr-left::after,
.short-hr-center::after,
.bb-orange {
    border-color: var(--ro-cyan) !important;
}

.mt-5p {
    margin-top: 1.1rem;
}

/* .row > .col-md-3,
.row > .col-md-2 {
    z-index: 4;
} */

#containment-wrapper {
    min-height: 780px;
    max-height: none;
    margin-top: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#containment-wrapper::before {
    content: "";
    position: absolute;
    inset: clamp(8px, 1.5vw, 24px);
    border: 1px solid rgba(49, 232, 255, 0.14);
    background:
        linear-gradient(90deg, rgba(49, 232, 255, 0.08) 1px, transparent 1px) 0 0 / 46px 46px,
        linear-gradient(rgba(49, 232, 255, 0.06) 1px, transparent 1px) 0 0 / 46px 46px,
        radial-gradient(circle at 50% 42%, rgba(49, 232, 255, 0.18), transparent 34rem);
    border-radius: 8px;
    box-shadow: inset 0 0 65px rgba(49, 232, 255, 0.08), var(--ro-shadow);
}

#containment-wrapper::after {
    content: "";
    position: absolute;
    left: 16%;
    right: 16%;
    bottom: 12%;
    height: 16%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(49, 232, 255, 0.32), rgba(255, 62, 182, 0.08) 46%, transparent 70%);
    filter: blur(18px);
}

#shell-project-container {
    width: min(100%, 760px);
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    z-index: 1;
}

#shell-project-container img {
    left: 50%;
    top: 50%;
    /* max-height: 92%; */
    transform: translate(-50%, -50%);
    /* filter: drop-shadow(0 32px 46px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 26px rgba(49, 232, 255, 0.12)); */
}

#retro-design-container-shell {
    position: absolute;
    width: 100%;
    height: 100%;
}

.retro-design-menu .card,
#retro-design-lens-menu .card,
.game-modal .modal-content {
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--ro-panel-border);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
        var(--ro-surface);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

.retro-design-menu .card-header,
.retro-design-menu .card-body {
    background: transparent;
    border: 0;
}

.retro-design-menu .card-header {
    padding: 0.8rem 0.9rem;
}

.retro-design-menu .card-header h5 {
    padding-right: 26px;
}

.retro-design-menu .card-body {
    padding: 0.8rem 0.85rem 0.95rem;
}

.retro-design-menu .btn-link {
    width: auto;
    max-width: 100%;
    padding: 0;
    border: 0;
    font-weight: 800;
    letter-spacing: 0;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}

.retro-design-menu .btn-link:hover {
    color: var(--ro-magenta) !important;
    text-decoration: none;
}

.collapse-chevron {
    right: 14px;
    opacity: 0.85;
    text-shadow: 0 0 12px rgba(49, 232, 255, 0.58);
}

.form-control,
input,
textarea,
.custom-file-label {
    border: 1px solid rgba(49, 232, 255, 0.24) !important;
    border-radius: 6px;
    background-color: rgba(4, 8, 18, 0.72) !important;
    color: var(--ro-text) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.form-control:focus,
input:focus,
textarea:focus {
    border-color: rgba(49, 232, 255, 0.76) !important;
    box-shadow: 0 0 0 0.2rem rgba(49, 232, 255, 0.12) !important;
}

.retro-design-menu .form-check label,
.retro-design-menu h2,
.font-success {
    color: var(--ro-text) !important;
}

.retro-design-menu h5 .font-success,
.retro-design-menu .text-info .font-success {
    display: block;
    margin: 3px 0 0;
    color: var(--ro-muted) !important;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.15;
}

.font-warning {
    color: var(--ro-cyan) !important;
}

.btn-warning {
    color: #111827  !important;
}

.font-info,
.subtle {
    color: var(--ro-muted) !important;
}

.ul-list {
    gap: 10px;
    margin: 0 !important;
}

.ul-list .li-item {
    position: relative;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    box-shadow: inset 0 0 0 1px rgba(49, 232, 255, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.ul-list .li-item:hover,
.ul-list .li-item.selected {
    border-color: var(--ro-cyan);
    background: linear-gradient(180deg, rgba(49, 232, 255, 0.14), rgba(255, 62, 182, 0.08));
    box-shadow: 0 0 0 1px rgba(49, 232, 255, 0.34), 0 0 24px rgba(49, 232, 255, 0.18);
    transform: translateY(-2px);
}

.ul-list .li-item.selected::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--ro-lime);
    box-shadow: 0 0 12px var(--ro-lime);
}

.ul-list .div-image {
    width: 62px;
    height: 62px;
    padding: 6px;
}

.ul-list img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ul-list i {
    font-size: 1.6rem;
    color: var(--ro-muted);
}

.btn {
    border-width: 0;
    border-radius: 6px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.btn-success,
.button,
.btn-primary {
    background: linear-gradient(135deg, var(--ro-cyan), #16a8ff) !important;
    color: #041018 !important;
}

.btn-info {
    background: linear-gradient(135deg, #7c5cff, var(--ro-cyan)) !important;
    color: #fff !important;
}

.btn-purple {
    background: linear-gradient(135deg, var(--ro-magenta), #7c5cff) !important;
    color: #fff !important;
}

.btn-warning {
    background: linear-gradient(135deg, var(--ro-warning), var(--ro-lime)) !important;
}

.btn:hover,
.button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.button.secondary,
.game-modal .modal-footer .button.secondary {
    border: 1px solid rgba(49, 232, 255, 0.32) !important;
    background:
        linear-gradient(135deg, rgba(49, 232, 255, 0.12), rgba(255, 62, 182, 0.10)),
        rgba(7, 10, 18, 0.76) !important;
    color: var(--ro-text) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 10px 22px rgba(0, 0, 0, 0.18);
}

.button.secondary:hover,
.game-modal .modal-footer .button.secondary:hover {
    border-color: rgba(255, 62, 182, 0.58) !important;
    background:
        linear-gradient(135deg, rgba(49, 232, 255, 0.18), rgba(255, 62, 182, 0.20)),
        rgba(12, 16, 32, 0.92) !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 1px rgba(255, 62, 182, 0.16), 0 12px 28px rgba(0, 0, 0, 0.28);
}

#retro-design-price {
    display: inline-block;
    font-family: Anurati, Raleway, sans-serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    letter-spacing: 0;
    color: var(--ro-lime) !important;
    text-shadow: 0 0 24px rgba(167, 255, 79, 0.48);
}

#retro-design-summary-cart .card {
    border-color: rgba(167, 255, 79, 0.24);
}

.retro-design-recap-card .card-header {
    padding-bottom: 0.75rem;
}

.retro-design-price-summary {
    margin-bottom: 10px;
    color: var(--ro-text);
    font-size: 0.82rem;
}

.retro-design-summary-row,
.retro-design-detail-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 5px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.retro-design-summary-row:first-child,
.retro-design-detail-row:first-child {
    border-top: 0;
}

.retro-design-summary-label,
.retro-design-detail-label {
    min-width: 0;
    color: var(--ro-text);
    line-height: 1.2;
}

.retro-design-summary-label span,
.retro-design-detail-label span {
    display: block;
    color: var(--ro-muted);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.retro-design-summary-value,
.retro-design-detail-value {
    flex: 0 0 auto;
    color: var(--ro-cyan);
    font-weight: 800;
    text-align: right;
}

.retro-design-detail-toggle {
    margin-top: 2px;
}

.retro-design-price-detail-list {
    max-height: 230px;
    overflow-y: auto;
    padding-right: 4px;
    color: var(--ro-text);
    font-size: 0.8rem;
    scrollbar-color: rgba(49, 232, 255, 0.55) rgba(255, 255, 255, 0.06);
}

.retro-design-detail-row-total {
    margin-top: 4px;
    border-top-color: rgba(167, 255, 79, 0.30);
}

.retro-design-autosave-status {
    min-height: 18px;
    padding: 0 0.9rem 0.75rem;
    color: var(--ro-muted);
    font-size: 0.74rem;
    font-weight: 700;
}

#player-container .btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
}

.sound-wave {
    height: 42px;
    padding: 0 10px;
    border: 1px solid rgba(49, 232, 255, 0.14);
    border-radius: 999px;
    background: rgba(7, 10, 18, 0.48);
}

.bar {
    background: linear-gradient(180deg, var(--ro-cyan), var(--ro-magenta));
    box-shadow: 0 0 8px rgba(49, 232, 255, 0.42);
}

#loader-wrapper,
#project-loader-wrapper {
    background:
        radial-gradient(circle at 50% 30%, rgba(49, 232, 255, 0.16), transparent 22rem),
        linear-gradient(180deg, #05070d, #090e1a);
}

#progress,
#project-progress,
#project-loader-wrapper .progress {
    background: linear-gradient(90deg, var(--ro-cyan), var(--ro-magenta));
}

#project-loader-wrapper .loading-bar {
    height: 12px;
    border-color: rgba(49, 232, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.game-modal .modal-content {
    color: var(--ro-text);
}

.game-modal .modal-header,
.game-modal .modal-footer {
    border-color: rgba(49, 232, 255, 0.16);
}

.game-modal .close {
    color: var(--ro-text);
    opacity: 0.9;
    text-shadow: none;
}

#footer {
    background: rgba(5, 7, 13, 0.9);
    border-top: 1px solid rgba(49, 232, 255, 0.16);
}

#main-footer.fixed-footer {
    z-index: 2;
}

@media (min-width: 992px) {
    .container-fluid > .row:not(.heading) {
        align-items: flex-start;
    }

    .row > .col-md-3 {
        flex: 0 0 24%;
        max-width: 24%;
    }

    .row > #containment-wrapper.col-md-7 {
        flex: 0 0 56%;
        max-width: 56%;
    }

    .row > .col-md-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    #retro-design-menu-left,
    #retro-design-menu-right,
    #retro-design-summary-cart {
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        padding-right: 6px;
        scrollbar-color: rgba(49, 232, 255, 0.55) rgba(255, 255, 255, 0.06);
    }

    #retro-design-summary-cart {
        max-height: none;
    }
}

@media (max-width: 991px) {
    .container-fluid {
        padding: 14px;
    }

    .heading.custom-tiny-margin {
        margin-bottom: 0.25rem;
    }

    .heading img[alt="beta"] {
        display: none;
    }

    #containment-wrapper {
        min-height: 560px;
        order: -1;
    }

    #containment-wrapper::before {
        inset: 0;
    }

    #shell-project-container {
        min-height: 520px;
    }

    .fixed-project-container {
        position: relative;
        top: auto;
        width: 100%;
    }
}

/* Retro Design project loader: holographic assembly sequence */
#project-loader-wrapper {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 34%, rgba(49, 232, 255, 0.18), transparent 22rem),
        radial-gradient(circle at 58% 42%, rgba(255, 62, 182, 0.12), transparent 28rem),
        linear-gradient(90deg, rgba(49, 232, 255, 0.055) 1px, transparent 1px) 0 0 / 44px 44px,
        linear-gradient(rgba(49, 232, 255, 0.04) 1px, transparent 1px) 0 0 / 44px 44px,
        linear-gradient(180deg, rgba(5, 7, 13, 0.98), rgba(8, 12, 24, 0.96)) !important;
}

#project-loader-wrapper[style*="display: block"] {
    display: flex !important;
}

#project-loader-wrapper::before {
    content: "";
    position: absolute;
    inset: -20%;
    pointer-events: none;
    background:
        conic-gradient(from 90deg at 50% 50%, transparent 0deg, rgba(49, 232, 255, 0.12) 44deg, transparent 90deg, rgba(255, 62, 182, 0.10) 156deg, transparent 230deg, rgba(49, 232, 255, 0.10) 314deg, transparent 360deg);
    opacity: 0.58;
    animation: project-loader-field 11s linear infinite;
}

#project-loader-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 0%, rgba(49, 232, 255, 0.16) 49%, rgba(49, 232, 255, 0.30) 50%, rgba(255, 62, 182, 0.10) 51%, transparent 54%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 7px;
    mix-blend-mode: screen;
    opacity: 0.46;
    animation: project-loader-scan 2.6s ease-in-out infinite;
}

#project-loader-wrapper .loader {
    position: relative;
    width: clamp(220px, 24vw, 330px);
    height: clamp(220px, 24vw, 330px);
    z-index: 2;
    transform-style: preserve-3d;
}

#project-loader-wrapper .loader::before,
#project-loader-wrapper .loader::after {
    content: "";
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    border: 1px solid rgba(49, 232, 255, 0.24);
    box-shadow: inset 0 0 34px rgba(49, 232, 255, 0.12), 0 0 44px rgba(49, 232, 255, 0.12);
}

#project-loader-wrapper .loader::before {
    transform: rotateX(68deg);
    animation: project-loader-orbit 4.2s linear infinite;
}

#project-loader-wrapper .loader::after {
    inset: 27%;
    border-color: rgba(255, 62, 182, 0.28);
    transform: rotateX(68deg) rotateZ(60deg);
    animation: project-loader-orbit 3.4s linear infinite reverse;
}

#project-loader-wrapper .circle {
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg, var(--ro-cyan) 0 18deg, transparent 18deg 54deg, rgba(255, 62, 182, 0.95) 54deg 76deg, transparent 76deg 126deg, rgba(49, 232, 255, 0.72) 126deg 148deg, transparent 148deg 212deg, rgba(255, 209, 102, 0.86) 212deg 228deg, transparent 228deg 292deg, rgba(49, 232, 255, 0.95) 292deg 318deg, transparent 318deg 360deg);
    box-shadow: 0 0 34px rgba(49, 232, 255, 0.22), 0 0 80px rgba(255, 62, 182, 0.12);
    transform: translate(-50%, -50%);
    animation: project-loader-ring 3.2s linear infinite;
    -webkit-mask: radial-gradient(circle, transparent 58%, #000 59%, #000 63%, transparent 64%);
    mask: radial-gradient(circle, transparent 58%, #000 59%, #000 63%, transparent 64%);
}

#project-loader-wrapper .circle::before,
#project-loader-wrapper .circle::after {
    inset: 0;
    top: 50%;
    left: 50%;
    border: 0;
    border-radius: 50%;
    background:
        conic-gradient(from 180deg, transparent 0deg, rgba(49, 232, 255, 0.78) 18deg, transparent 52deg, rgba(255, 62, 182, 0.72) 86deg, transparent 124deg, rgba(49, 232, 255, 0.66) 196deg, transparent 250deg);
    -webkit-mask: radial-gradient(circle, transparent 40%, #000 41%, #000 45%, transparent 46%);
    mask: radial-gradient(circle, transparent 40%, #000 41%, #000 45%, transparent 46%);
}

#project-loader-wrapper .circle::before {
    width: 82%;
    height: 82%;
    animation: project-loader-ring 2.1s linear infinite reverse;
}

#project-loader-wrapper .circle::after {
    width: 62%;
    height: 62%;
    animation: project-loader-ring 1.7s linear infinite;
}

#project-loader-wrapper .pulse {
    top: 50%;
    left: 50%;
    width: 28%;
    height: 28%;
    border: 1px solid rgba(49, 232, 255, 0.42);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(238, 247, 255, 0.96) 0 5%, rgba(49, 232, 255, 0.74) 6% 22%, rgba(255, 62, 182, 0.28) 23% 44%, transparent 45%),
        rgba(49, 232, 255, 0.06);
    box-shadow: 0 0 34px rgba(49, 232, 255, 0.55), 0 0 72px rgba(255, 62, 182, 0.18);
    animation: project-loader-core 1.35s ease-in-out infinite;
}

#project-loader-wrapper .central-glow {
    top: 50%;
    left: 50%;
    width: 62%;
    height: 62%;
    background:
        linear-gradient(90deg, transparent 48%, rgba(49, 232, 255, 0.52) 49%, rgba(49, 232, 255, 0.52) 51%, transparent 52%),
        linear-gradient(transparent 48%, rgba(49, 232, 255, 0.44) 49%, rgba(49, 232, 255, 0.44) 51%, transparent 52%),
        radial-gradient(circle, rgba(49, 232, 255, 0.28), transparent 62%);
    opacity: 0.72;
    animation: project-loader-reticle 2.2s ease-in-out infinite;
}

#project-loader-wrapper .loading-block {
    position: relative;
    top: auto;
    z-index: 3;
    width: min(620px, calc(100vw - 34px));
    padding: 22px 24px 20px;
    border: 1px solid rgba(49, 232, 255, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        rgba(10, 15, 28, 0.78);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

#project-loader-wrapper .loading-block::before {
    content: "RETRO DESIGN BUILD MATRIX";
    display: block;
    margin-bottom: 13px;
    color: rgba(49, 232, 255, 0.84);
    font-family: Raleway, sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0;
    text-align: left;
}

#project-loader-wrapper .loading-block::after {
    content: "SCAN / RENDER / SYNC";
    display: block;
    margin-top: 10px;
    color: rgba(152, 168, 188, 0.92);
    font-size: 0.72rem;
    font-weight: 700;
    text-align: right;
}

#project-loader-wrapper .loading-bar {
    width: 100%;
    height: 16px;
    overflow: hidden;
    border: 1px solid rgba(49, 232, 255, 0.34);
    border-radius: 999px;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
        rgba(4, 8, 18, 0.82);
    box-shadow: inset 0 0 18px rgba(49, 232, 255, 0.10), 0 0 22px rgba(49, 232, 255, 0.10);
}

#project-loader-wrapper .progress {
    height: 100%;
    min-width: 8px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.0)) 0 0 / 76px 100%,
        linear-gradient(90deg, var(--ro-cyan), #16a8ff 48%, var(--ro-magenta)) !important;
    box-shadow: 0 0 18px rgba(49, 232, 255, 0.58), 0 0 34px rgba(255, 62, 182, 0.20);
    animation: project-loader-data 1.1s linear infinite;
    transition: width 420ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

#project-loader-wrapper .loader-text {
    margin: 16px 0 0;
    color: var(--ro-text);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(49, 232, 255, 0.42);
}

#project-loader-wrapper .loading-block span {
    color: var(--ro-muted);
    font-size: 0.9rem;
}

#project-loader-wrapper .loading-block .btn {
    margin-top: 14px;
}

@keyframes project-loader-field {
    from {
        transform: rotate(0deg) scale(1);
    }
    to {
        transform: rotate(360deg) scale(1.05);
    }
}

@keyframes project-loader-scan {
    0%,
    100% {
        transform: translateY(-64%);
        opacity: 0;
    }
    14%,
    76% {
        opacity: 0.48;
    }
    50% {
        transform: translateY(64%);
        opacity: 0.62;
    }
}

@keyframes project-loader-orbit {
    from {
        transform: rotateX(68deg) rotateZ(0deg);
    }
    to {
        transform: rotateX(68deg) rotateZ(360deg);
    }
}

@keyframes project-loader-ring {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes project-loader-core {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.92);
        opacity: 0.82;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 1;
    }
}

@keyframes project-loader-reticle {
    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0.94);
        opacity: 0.58;
    }
    50% {
        transform: translate(-50%, -50%) rotate(45deg) scale(1.04);
        opacity: 0.9;
    }
}

@keyframes project-loader-data {
    from {
        background-position: -76px 0, 0 0;
    }
    to {
        background-position: 76px 0, 0 0;
    }
}

@media (max-width: 640px) {
    #project-loader-wrapper {
        gap: 22px;
        padding: 18px;
    }

    #project-loader-wrapper .loader {
        width: min(74vw, 260px);
        height: min(74vw, 260px);
    }

    #project-loader-wrapper .loading-block {
        padding: 18px 16px;
    }
}
