/* ======================
CSS — Thème 8 (Ultra-moderne / Néo-spirituel)
Palette : cyan / magenta / blanc froid / violet clair
Effets : glassmorphism, glow néon, symboles géométriques
====================== */

:root {
    --cyan: #5ee8ff;
    --pink: #ff4bd8;
    --violet: #c39bff;
    --white-cold: #f7faff;
    --glass-bg: rgba(255,255,255,0.25);
    --blur: blur(18px);
    --shadow-soft: 0 12px 40px rgba(0,0,0,0.18);
	--gold: #d4af37;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body.neo-spirit {
    background: linear-gradient(135deg, #0a0f1f, #1b1140 40%, #351f57 80%);
    color: var(--white-cold);
    font-family: 'Manrope', sans-serif;
    margin: 0;
}

.brand{font-family:'Playfair Display', serif; font-size:56px; margin:0; color:#d4af37}

.tagline {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    letter-spacing: 0.8px;
    color: #ffdbaa;
    text-shadow: 0 0 8px rgba(255, 180, 120, 0.45);
    margin-top: 6px;
    font-weight: 500;
}

.neon-glow {
    text-align: center;
    padding: 40px 0;
}

/* Card */
.oracle-card {
    padding: 0;
    border-radius: 22px;
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.card-preview {
	transition: opacity 0.8s ease-out;
	opacity:1;
}

.card-visual img {	   
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.card-content {
    padding: 24px;
}

.card-title {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    -webkit-background-clip: text;
    color: transparent;
}

.card-txt {
	font-size: 22px;
	text-align: center;
	color: #ffeb9c; /* or plus chaud */
	text-shadow:
		0 0 10px rgba(255, 225, 120, 0.9),
		0 0 20px rgba(255, 200, 90, 0.8),
		0 0 45px rgba(255, 170, 60, 0.7),
		0 0 70px rgba(255, 150, 40, 0.55),
		0 0 90px rgba(255, 130, 20, 0.45);
}

/* ================================
   Texte des sections #text2 et #text3
   ================================ */

#card-text2,
#card-temp {
    font-size: 22px;
    line-height: 1.55;
    text-align: justify;
    padding: 0 24px;
    color: #ffebc1;
    text-shadow:
        0 0 8px rgba(255, 200, 120, 0.55),
        0 0 16px rgba(255, 180, 90, 0.40),
        0 0 26px rgba(255, 160, 70, 0.32);
}

/* Titre "Ta leçon du jour" harmonisé */
#card-details-2 h3 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 18px;
    color: #ffd58a;
    text-shadow: 0 0 12px rgba(255, 210, 120, 0.55);
}

/* Titre premier texte */
#card-details h3 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 18px;
    color: #ffd58a;
    text-shadow: 0 0 12px rgba(255, 210, 120, 0.55);
}

/* Espacement général */
#text2, #text3 {
	padding-top: 32px;
    padding-bottom: 32px;
    margin: 40px auto;
	background: radial-gradient(
        circle at center,
        rgba(255, 220, 150, 0.35) 0%,
        rgba(255, 180, 90, 0.20) 40%,
        rgba(40, 0, 70, 0.10) 70%,
        transparent 100%
    );
}

/* ================================
   Tablettes (max 992px)
   ================================ */
@media (max-width: 992px) {

    #card-text2,
    #card-temp {
        font-size: 20px;
        line-height: 1.58;
        padding: 0 20px;
    }

    #card-details-2 h3 {
        font-size: 24px;
    }

    #text2, #text3 {
        padding-top: 28px;
        padding-bottom: 28px;
    }
}


/* ================================
   Mobiles (max 600px)
   ================================ */
@media (max-width: 600px) {

    #card-text2,
    #card-temp {
        font-size: 18px;
        line-height: 1.6;
        padding: 0 12px;
        text-align: justify;
    }

    #card-details-2 h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    #text2, #text3 {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}


/* ================================
   Très petits écrans (max 420px)
   ================================ */
@media (max-width: 420px) {

    #card-text2,
    #card-temp {
        font-size: 17px;
        line-height: 1.62;
        padding: 0 16px;
    }

    #card-details-2 h3 {
        font-size: 20px;
    }

    #text2, #text3 {
        padding-top: 22px;
        padding-bottom: 22px;
    }
}


.card-details {
    padding: 24px;
    background: rgba(255,255,255,0.07);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.card-details-2 {
    padding: 24px;
    background: rgba(255,255,255,0.07);
    border-top: 1px solid rgba(255,255,255,0.1);
}

#card-details, 
#card-details-2 {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Buttons */
#drawBtn {
    background: linear-gradient(135deg, #d4af37, #f7d774);
    border: none;
    color: #3b2900;
    padding: 12px 24px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    box-shadow:
        0 0 10px rgba(212,175,55,0.6),
        0 0 20px rgba(247,215,116,0.45),
        0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.15s ease-out, box-shadow 0.3s ease-out;
}

#drawBtn:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 14px rgba(212,175,55,0.75),
        0 0 28px rgba(247,215,116,0.6),
        0 8px 22px rgba(0,0,0,0.3);
}

#drawBtn:active {
    transform: scale(0.97);
}

.btn-secondary-neon {
    background: transparent;
    border: 1px solid var(--violet);
    color: var(--violet);
    padding: 10px 20px;
    border-radius: 14px;
    cursor: pointer;
}

.hidden { display: none; }

.controls {
	text-align: center;
	margin: 30px auto;
	}

/* Info panel */
.neo-panel {
    background: radial-gradient(
        circle at center,
        rgba(255, 220, 150, 0.35) 0%,
        rgba(255, 180, 90, 0.20) 40%,
        rgba(40, 0, 70, 0.10) 70%,
        transparent 100%
    );
    padding: 20px;
	text-align: center;
	max-width: 720px;
	margin: 0 auto 30px auto;
    border-radius: 16px;
    backdrop-filter: var(--blur);
    color: #ffeb9c;
}

/*/* Slim card + optimized placeholder */


/* Réduction de la largeur de la carte */
.slim-card {
margin: 0 auto;
}

.slim-card,
.neo-card,
.oracle-card {
    width: 100%;
    max-width: 720px;
    box-sizing: border-box;
}

/* Placeholder optimisé */
.card-visual img {
width: 100%;
height: auto;
/* max-height: 260px; réduit pour éviter surcharge mobile */
/* aspect-ratio: 3/2; format harmonieux */
object-fit: cover;
border-radius: 18px;
}
/* Effet d’onde néon étendu à toute la carte */
.oracle-card { position: relative; overflow: hidden; }


.neon-ripple {
position: absolute;
width: 40px;
height: 40px;
background: radial-gradient(circle, var(--cyan) 0%, var(--pink) 50%, transparent 100%);
border-radius: 50%;
transform: translate(-50%, -50%);
animation: ripple 0.7s ease-out;
pointer-events: none;
mix-blend-mode: screen;
box-shadow: 0 0 30px var(--pink), 0 0 40px var(--cyan);
}


@keyframes ripple {
from { opacity: 0.9; transform: translate(-50%, -50%) scale(0.2); }
to { opacity: 0; transform: translate(-50%, -50%) scale(8); }
}
/* Titre en surimpression */
.overlay-title {
position: relative;
}

.overlay-text {
position: absolute;
bottom: 8%;
left: 50%;
transform: translateX(-50%);
width: 90%;
text-align: center;
font-size: 22px;
font-weight: 400;

text-shadow: 0 0 12px rgba(0,0,0,0.55);
pointer-events: none;
z-index: 6;
}

.image-title {
opacity: 0;
transition: opacity 1.2s ease-out;		   
position: absolute;
top: 10%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
font-size: 44px;
font-family: 'Syne', sans-serif;
color: #ffeb9c; /* or plus chaud */
text-shadow:
    0 0 10px rgba(255, 225, 120, 0.9),
    0 0 20px rgba(255, 200, 90, 0.8),
    0 0 45px rgba(255, 170, 60, 0.7),
    0 0 70px rgba(255, 150, 40, 0.55),
    0 0 90px rgba(255, 130, 20, 0.45);
animation: angelSparkle 2.8s infinite ease-in-out;
z-index: 5;
pointer-events: none;
}

@keyframes angelSparkle {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(255, 225, 120, 0.9),
            0 0 22px rgba(255, 200, 90, 0.8),
            0 0 50px rgba(255, 170, 60, 0.6),
            0 0 75px rgba(255, 150, 40, 0.45);
        opacity: 1;
    }
    50% {
        text-shadow:
            0 0 14px rgba(255, 240, 150, 1),
            0 0 28px rgba(255, 215, 120, 1),
            0 0 60px rgba(255, 190, 90, 0.75),
            0 0 90px rgba(255, 160, 60, 0.55);
        opacity: 0.85;
    }
}


/* ===============================
   SCROLL-UP BUTTON — STYLE DORÉ
================================*/
#scroll-up-btn {
  position: fixed;
  bottom: 60px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;

  /* Style doré identique au bouton menu */
  background: radial-gradient(circle at 30% 30%, #fff4d0 0%, #f0c974 45%, #d6a94f 85%);
  border: 2px solid rgba(255, 240, 190, 0.65);
  color: #5c3d00;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
      0 0 12px rgba(255, 220, 150, 0.7),
      0 0 22px rgba(255, 210, 120, 0.55),
      inset 0 0 10px rgba(255,255,255,0.35),
      inset 0 0 18px rgba(255,220,150,0.25);

  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, box-shadow .35s ease;
}

/* Icône flèche */
#scroll-up-btn::before {
  content: "▲";
  font-size: 24px;
  font-weight: bold;
  color: #5c3d00;
  margin-top: -3px;
}

/* Visible */
#scroll-up-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hover */
#scroll-up-btn:hover {
  transform: scale(1.08);
  box-shadow:
      0 0 16px rgba(214,177,105,0.8),
      inset 0 0 12px rgba(255,255,255,0.45);
}


/* ============================================================
   FOOTER ANGÉLIQUE – Style complet
   ============================================================ */

.footer-angelic {
  background: radial-gradient(circle at center,
      #24163c 0%,
      #140d26 70%,
      #0a0716 100%);
  padding: 50px 20px;
  margin-top: 60px;
  color: #cfcaff;
  text-align: center;
  position: relative;
}

.footer-inner {
  max-width: 900px;
  margin: auto;
}

/* Citation */
.footer-quote {
  font-style: italic;
  font-size: 1.2em;
  color: #d4b46a;
  margin-bottom: 25px;
}

/* Ligne décorative */
.footer-divider, .divider {
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4b46a, transparent);
  margin: 18px auto 26px;
}

/* Logo */
.footer-logo img {
  width: 130px;
  filter: drop-shadow(0 0 8px rgba(214,177,105,0.45));
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.06);
}

/* Liens */
.footer-nav {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #e8d6b7;
  font-size: 1em;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-nav a:hover {
  color: #f1d59a;
  text-shadow: 0 0 6px rgba(214,177,105,0.55);
}

/* Copyright */
.footer-copy {
  margin-top: 35px;
  font-size: 0.95em;
  color: #bfae91;
}

/* Responsive */
@media (max-width: 600px){
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }

  .footer-logo img {
    width: 110px;
  }

  .footer-quote {
    font-size: 1.1em;
  }
}

/* ===========================================================
   MENU GAUCHE CONTENANT LE CONTENU
   =========================================================== */
#left-side-menu {
  z-index: 999999 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(135deg, #0c0d1a, #1a1035 45%, #2a164c 100%);;
  border-right: 2px solid #d6b169;
  padding: 26px 22px;
  overflow-y: auto;
  color: #d6b169;
  

  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

/* Titres du menu */

#left-side-menu h2 {
  text-align: center;
  font-size: 1.18em;
  font-style: 
  margin: 20px 0 10px 0;
  font-weight: 700;
  color: #ffde9a;
  background: linear-gradient(90deg, transparent, #d6b169, transparent);
  text-shadow: 0 0 6px rgba(214,177,105,0.45);
  border-bottom: 2px solid var(--gold);;
  padding-bottom: 4px;
}

#left-side-menu h3 {
  font-size: 1.15em;
  margin: 18px 0 10px 0;
  font-weight: 700;
  text-align: center;
  color: #ffde9a;
  background: linear-gradient(90deg, transparent, #d6b169, transparent);
  text-shadow: 0 0 6px rgba(214,177,105,0.45);
}
/* Liens du menu */
#left-side-menu a {
  display: block;
  padding: 8px 0;
  font-size: 1.05em;
  font-weight: 500;
  color: #d6b169;
  text-decoration: none;
  text-shadow: 0 0 6px rgba(214,177,105,0.45);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

#left-side-menu a:hover {
  color: #ffde9a; /* doré plus lumineux */
  text-shadow: 0 0 10px rgba(255,220,150,0.75);
}


/* Petits séparateurs */
.side-menu-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d6b169, transparent);
  margin: 16px 0;
}


#left-side-menu.open {
  transform: translateX(0);
}

#left-side-menu.closed {
  transform: translateX(-100%);
}

/* Logo */
.side-menu-logo img {
  width: 130px;
  margin: 0 auto 18px auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(214,177,105,0.45));
}

/* --- Bouton doré d’ouverture du menu --- */

.left-menu-toggle-gold {
  position: fixed;
  top: 40px;
  left: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff4d0 0%, #f0c974 45%, #d6a94f 85%);
  border: 2px solid rgba(255, 240, 190, 0.65);
  color: #5c3d00;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  box-shadow:
      0 0 12px rgba(255, 220, 150, 0.7),
      0 0 22px rgba(255, 210, 120, 0.55),
      inset 0 0 10px rgba(255, 255, 255, 0.35),
      inset 0 0 18px rgba(255, 220, 150, 0.25);
  transition: left 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
}

.left-menu-toggle-gold:hover {
  transform: scale(1.07);
  box-shadow: 0 0 16px rgba(214,177,105,0.7),
              inset 0 0 10px rgba(255,255,255,0.45);
}
#left-menu-toggle {
  z-index: 1000000 !important;
  transition: left 0.35s ease;
}
#left-menu-toggle.open {
  left: 260px;
}

@media (max-width: 900px) {
  #left-menu-toggle {
    position: fixed;
    top: 10px;
    left: 10px;
  }
}

.icon-angel-svg {
    width: 44px;
    height: 44px;
    margin: 0 12px;
    vertical-align: middle;
}

#ad_google {
    text-align: center;
	margin: auto;
	margin-bottom: 20px;
	margin-top: 20px;
	max-width: 900px;
}

#don {
    text-align: center;
	margin: auto;
	max-width: 900px;
}

#don a {
    color: #d6b169; /* doré doux */
    font-weight: 600;
    text-shadow: 0 0 6px rgba(214,177,105,0.45);
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

#don a:hover {
    color: #ffde9a; /* doré plus lumineux */
    text-shadow: 0 0 10px rgba(255,220,150,0.75);
}


/* ======================================
   COPYRIGHT — Style + Anti-débordement
   ====================================== */

#copyright {
    max-width: 900px;
    margin: 30px auto 0 auto;
    text-align: center;

    font-size: 15px;
    line-height: 1.45;
    color: #bfae91;
    padding: 0 16px; /* évite débordement */
    box-sizing: border-box;
}

/* Tablettes */
@media (max-width: 992px) {
    #copyright {
        font-size: 14px;
        line-height: 1.45;
        padding: 0 14px;
    }
}

/* Mobiles */
@media (max-width: 600px) {
    #copyright {
        font-size: 13px;
        line-height: 1.45;

        /* évite les débordements dus aux mots longs */
        word-wrap: break-word;
        overflow-wrap: break-word;

        padding: 0 12px;
    }
}

/* Très petits écrans */
@media (max-width: 420px) {
    #copyright {
        font-size: 12px;
        line-height: 1.4;
        padding: 0 10px;
    }
}


.site-header {
	position: relative;
    background: radial-gradient(
        circle at center,
        rgba(255, 220, 150, 0.35) 0%,
        rgba(255, 180, 90, 0.20) 40%,
        rgba(40, 0, 70, 0.10) 70%,
        transparent 100%
    );
    padding: 40px 0;
}

/* Halo doux autour du contenu */
/* .site-header::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;
    height: 480px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 230, 150, 0.55) 0%,
        rgba(255, 200, 120, 0.35) 35%,
        rgba(255, 170, 90, 0.15) 60%,
        transparent 100%
    );
    filter: blur(45px);
    z-index: 0;
    pointer-events: none;
} */

/* Faire passer le texte au-dessus du halo */
.site-header * {
    position: relative;
    z-index: 2;
}


.header-with-angels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.angel-icon {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(255, 220, 120, 0.55));
}

.right-angel {
  transform: scaleX(-1); /* Miroir horizontal */
}

/* ================================
   Responsive – Tablettes (max 992px)
   ================================ */
@media (max-width: 992px) {

    .site-header {
        padding: 30px 0;  /* header un peu moins haut */
    }

    .brand {
        font-size: 36px;  /* titre plus petit */
    }

    .header-icon {
        width: 70px;      /* icônes un peu réduites */
        height: auto;
    }
	
	.tagline {
        font-size: 18px;
    }
}


/* ================================
   Responsive – Mobiles (max 600px)
   ================================ */
@media (max-width: 600px) {

    .site-header {
        padding: 20px 0;
    }

    .brand {
        font-size: 28px;  /* Titre bien lisible sans être trop large */
    }

    .tagline {
        font-size: 14px;  /* sous-titre adapté mobile */
        margin-top: 6px;
    }
	
	#left-side-menu {
        width: 200px;
    }
	
	#left-menu-toggle.open {
        left: 200px; /* au lieu de 260px – ne dépasse plus */
    }
	
	/* ----- Bouton MENU ----- */
    #left-menu-toggle {
        width: 42px !important;
        height: 42px !important;
        font-size: 22px !important;
        top: 12px !important;
        left: 10px !important;
        border-width: 1px !important;
    }

    #left-menu-toggle.open {
        left: 180px !important; /* réduit pour éviter débordement */
    }

    /* ----- Bouton SCROLL-UP ----- */
    #scroll-up-btn {
        width: 44px !important;
        height: 44px !important;
        bottom: 65px !important;
        right: 16px !important;
        border-width: 1px !important;
    }

    #scroll-up-btn::before {
        font-size: 30px !important;
    }

}


/* ================================
   Responsive – Très petits écrans (max 420px)
   ================================ */
@media (max-width: 420px) {

    .brand {
        font-size: 24px; /* titre compact mais agréable */
    }

    .tagline {
        font-size: 13px;
    }
	
	#left-side-menu {
        width: 170px;
    }
	
	#left-menu-toggle {
        width: 42px !important;
        height: 42px !important;
        font-size: 22px !important;
        top: 12px !important;
        left: 10px !important;
    }

    #left-menu-toggle.open {
        left: 160px !important;
    }

    #scroll-up-btn {
        width: 40px !important;
        height: 40px !important;
        right: 20px !important;
        bottom: 65px !important;
    }

    #scroll-up-btn::before {
        font-size: 16px !important;
    }
}

/* =============================
   Mobile : une seule icône centrée
   ============================= */
@media (max-width: 600px) {

    /* On passe le header en colonne */
    .header-with-angels {
        flex-direction: column;
        gap: 6px; /* petit espace entre l’icône et le titre */
    }

    /* Masquer les deux icônes */
    .header-with-angels .angel-icon {
        display: none;
    }

    /* Icône unique au-dessus du titre */
    .header-with-angels::before {
        content: "";
        width: 82px;
        height: 82px;
        background-image: url("assets/images/ange-parchemin.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        filter: drop-shadow(0 0 10px rgba(255, 220, 150, 0.55));
        display: block;
    }
}

/* ================================
   Tablettes (max 992px)
   ================================ */
@media (max-width: 992px) {

  .card-title {
    font-size: 26px;      /* un peu plus petit */
    line-height: 1.25;
  }

  .card-txt {
    font-size: 18px;
    line-height: 1.45;
    text-align: justify;
    padding: 0 20px;      /* meilleure lisibilité */
  }
}


/* ================================
   Mobiles (max 600px)
   ================================ */
@media (max-width: 600px) {

  .card-title {
    font-size: 22px;
    line-height: 1.2;
    padding: 0 14px;
    text-align: center;
  }

  .card-txt {
    font-size: 17px;
    line-height: 1.55;
    text-align: justify;  /* alignement demandé */
    padding: 0 18px;
  }
}


/* ================================
   Très petits écrans (max 420px)
   ================================ */
@media (max-width: 420px) {

  .card-title {
    font-size: 20px;
  }

  .card-txt {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* Image publicitaire — responsive et intégration douce */
#annonce-pub {
    display: block;
    width: 100%;
    max-width: 700px;      /* largeur max sur desktop */
    height: auto;
    margin: 20px auto;
    border-radius: 18px;   /* cohérence avec les cartes */
    object-fit: cover;

    /* léger halo/glow angélique */
    box-shadow: 0 0 25px rgba(255, 240, 200, 0.25);
}


/* ================================
   TABLETTES
   ================================ */
@media (max-width: 992px) {
    #annonce-pub {
        max-width: 500px;
        border-radius: 16px;
        margin: 18px auto;
    }
}


/* ================================
   MOBILES
   ================================ */
@media (max-width: 600px) {
    #annonce-pub {
        max-width: 90%;
        border-radius: 14px;
        margin: 15px auto;
        box-shadow: 0 0 18px rgba(255, 240, 200, 0.18);
    }
}


/* ================================
   TRÈS PETITS ÉCRANS
   ================================ */
@media (max-width: 420px) {
    #annonce-pub {
        border-radius: 12px;
        margin: 12px auto;
    }
}

/* End */