/* General Styles */
body {
    margin: 0 !important;
    font-family: Arial, sans-serif !important;
    background-size: cover !important;
}

h2 {
	background: linear-gradient(to right, #E50A62, #5F84C2) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            color: transparent !important;
            font-weight: 900;
            margin-bottom: 2rem !important;
			width: fit-content;
}

h4 {
    color: #696A6D;
    font-weight: 900;
	margin-bottom: 40px !important;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 2500px !important;
    margin-left: 0px !important;
}

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

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Form Container */
.form-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
}

.form-group-options {
    width: 100%;
}


/* Button Row Wrapper */
.button-row-wrapper {
    position: relative;
    padding: 10px;
    border-radius: 5px;
    margin-top: 30px;
	width: 100%;
	background: #f2f1f2;
}

.button-row-title {
    position: absolute;
    top: -28px;
    left: -4px;
    background: #fff;
    padding: 0 5px;
    font-weight: bold;
    color: #a060cc;
}


.img-preview {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}



.dashboard-title, .dashboard-message {
    color: #fff;
    text-align: center;
}

/* Menu Item Styles */
.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    width: 150px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.menu-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.menu-item span {
    color: #333;
    font-weight: bold;
}

.menu-item:hover {
    transform: translateY(-5px);
}

/* Login Box Styles */
.content-box {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: white;
    text-align: center;
}

/* Button Styles */
.btn-pink {
    color: #fff;
    background-image: linear-gradient(to right, #ff0077, #7700ff);
    border: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.btn-pink:hover {
    background-image: linear-gradient(to right, #ff3399, #9933ff);
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.6);
}

/* Additional Utility Styles for Login and Forms */
.form-control {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


.form-inline {
    display: flex;
    align-items: center;
}

.form-inline input {
    flex-grow: 1;
    margin-right: 10px;
}

.d-flex.align-items-center.mb-4 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.mr-3 {
    margin-right: 1rem;
}

.ml-3 {
    margin-left: 1rem;
}

.flex-grow-1 {
    flex-grow: 1;
}

.btn-primary {
    color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff !important;
    padding: 10px 16px !important;
    font-size: 18px !important;
    border-radius: 0.25rem !important;
    width: 65% !important;
    cursor: pointer !important;
}

.card {
    background-color: rgba(0, 0, 0, 0) !important;
    border-radius: 0 !important;
    overflow: hidden;
    transition: transform 0.3s;
}

.card-body {
	padding: 0rem !important;
}

.card:hover {
    transform: scale(1.05);
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.style-title {
    padding: 5px 10px !important;
    border-radius: 0px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 30px !important;
    opacity: 0.8;
}

.style-title h4 {
    margin: 0 !important;
    margin-bottom: 0px !important;
    font-size: 3vw !important;
    line-height: 1.2 !important;
}

.img-thumbnail {
    margin-top: 15px !important;
    padding: 0 !important;
    border: none !important;
    width: auto !important;
    display: block !important;
    margin-bottom: 0px !important;
}

.spinner {
    border: 0px solid rgba(0,0,0,.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border-left-color: #09f;
    animation: spin 1s infinite linear;
    background: linear-gradient(to right, #ff0077, #7700ff);
	margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.img-thumbnail-gal {
    margin-top: 15px !important;
    padding: 0 !important;
    border: none !important;
    width: auto !important;
    display: block !important;
    margin-bottom: 0px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
	border-radius: 15px !important;
}

.img-thumbnail-gal:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.user-info {
    position: relative;
    display: inline-block;
}

.option-logo-w {
    max-width: 100%; /* Assurer que l'image ne dépasse pas la largeur du conteneur */
    max-height: 100%; /* Assurer que l'image ne dépasse pas la hauteur du conteneur */
    display: block; /* Pour éviter le décalage bas ligne */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@font-face {
    font-family: 'Araboto';
    src: url('/fonts/Araboto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.logo_topbar {
    font-family: 'Araboto', sans-serif;
    font-size: 23px;
    color: var(--menu-text);
    text-decoration: none;
}

.logo img.subscription-image {
    height: 100%; /* L'image prend la hauteur du texte */
    margin-left: 10px; /* Espacement entre le texte et l'image */
    max-height: 50px; /* Hauteur maximale de l'image */
    object-fit: contain; /* Conserver les proportions de l'image */
}

.a-logo .logo_topbar {
    text-decoration: none !important; /* Supprimer la décoration de texte pour le span */
}

.a-logo:hover .logo_topbar {
    text-decoration: none !important; /* Assurez-vous qu'il n'y ait aucun soulignement au hover */
}

a {
    text-decoration: none !important; /* Supprimer le soulignement par défaut pour tous les liens */
}

a:hover {
    text-decoration: none !important; /* Supprimer le soulignement au hover pour tous les liens */
}

.credits-container {
    display: flex; /* Alignement horizontal */
    align-items: center; /* Centrer verticalement le contenu */
    background-color: var(--menu-hover-bg); /* Fond grisé */
    padding: 2px 8px; /* Espacement interne pour donner de l'air */
    border-radius: 50px; /* Coins arrondis */
    border: 1px solid #ddd; /* Bordure légère */
    width: 110px; /* Adapter la largeur au contenu */
	cursor: pointer; /* Rend le conteneur cliquable */
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.credits-container input.credits-input {
    cursor: pointer; /* Curseur en forme de main sur le chiffre des crédits */
}

.credits-container:hover {
    border: 1px solid #E50A62; /* Effet de bordure moderne */
    /*box-shadow: 0 0 15px rgba(229, 10, 98, 0.5); /* Ajout d'un effet d'ombre */
}

.credits-input {
    border: none; /* Retirer la bordure */
    background-color: transparent; /* Fond transparent */
    font-size: 14px; /* Taille de police */
    color: var(--menu-text); /* Couleur du texte */
    text-align: right; /* Alignement du texte à droite */
    min-width: 30px; /* Largeur minimale pour éviter d'être trop étroit */
    width: 50px; /* Adapter la largeur à la longueur du contenu */
    padding: 0; /* Supprimer le padding interne */
    margin-right: 5px; /* Espacement entre l'input et l'icône */
    flex-shrink: 0; /* Empêcher la réduction de taille */
}

.credits-input:focus {
    outline: none !important; /* Retire la bordure bleue par défaut au focus */
	color: var(--menu-text) !important;
}

.credits-container i {
    font-size: 16px; /* Ajuster la taille de l'icône */
    margin-left: 5px; /* Espacement entre l'input et l'icône */
    background: linear-gradient(to right, #E50A62, #5F84C2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}




button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

button.sign-in {
	width: 83%;
    padding: 10px 20px;
    border: none;
    color: white; /* Choisir une couleur de texte qui ressort bien sur un fond sombre */
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    background-image: linear-gradient(to right, #ff0077, #7700ff);
    outline: none;
	transition: background-color 0.3s, box-shadow 0.3s;
}

button.sign-in:hover {
    background-image: linear-gradient(to right, #ff3399, #9933ff); /* Un éclaircissement des couleurs originales */
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.6); /* Halo lumineux tout autour du bouton */
}

button.sign-in:disabled {
    opacity: 0.3; /* Réduire l'opacité pour indiquer visuellement que le bouton est désactivé */
    cursor: not-allowed; /* Changer le curseur pour indiquer qu'il n'est pas cliquable */
}


.overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fond grisé semi-transparent */
    z-index: 999; /* Assure que l'overlay est au-dessus de tout le reste */
    display: flex;
    justify-content: center;
    align-items: center;
}


.fullscreen-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Assure que l'image garde ses proportions */
}

/* Button Container */
.button-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 0; /* Ajustez le padding comme vous le souhaitez */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fullscreen Button */
.fullscreen-button {
    background: none;
    border: none;
    color: white;
    font-size: 24px; /* Ajustez la taille de la police d'icône comme vous le souhaitez */
    margin: 0 10px; /* Ajustez l'espacement entre les icônes comme vous le souhaitez */
    cursor: pointer;
    transition: color 0.3s;
}

.fullscreen-button:hover {
    color: #ff0077; /* Changez la couleur au survol comme vous le souhaitez */
}


@media (min-width: 576px) {
    .style-title h4 {
        font-size: 2.5vw !important;
    }
}

@media (min-width: 768px) {
    .style-title h4 {
        font-size: 1.6vw !important;
    }
}


@media (min-width: 992px) {
    .style-title h4 {
        font-size: 1.5vw !important;
    }
}

@media (min-width: 1200px) {
    .style-title h4 {
        font-size: 1.2vw !important;
    }
    .smallusername {
        display: none !important;
    }
}

@media (max-width: 370px) {
	.smallusername {
		display: none !important;
	}
}

@media (max-width: 800px) {
    .logo_topbar {
        display: none !important;
    }
}

/* Masquer le first popup et le tutoriel en dessous de 820px */
@media (max-width: 820px) {
  /* First login popup */
  #firstLoginPopup,
  .popup-overlay-flog {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Tutoriel */
  #cr-tuto-overlay,
  .cr-tuto-overlay {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Si la page a été "floutée" par le popup, on annule le flou sur mobile/tablette */
  #page-container.blurred {
    filter: none !important;
    -webkit-filter: none !important;
  }
}



@media (max-width: 960px) {
    .fa-full-screen {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .fullusername {
        display: none !important;
    }
	.topbar-center{
		font-size: 12px !important;
	}
}

