.style-switcher
{
    position: fixed;
    right: 2px;
    top: 0;
    padding: 2px;
    width:0;
    border:none;
    background:none;
    z-index: 101;
    border-radius: 5px;
    transition: all 0.3s ease;

}



/*.style-switcher .open
{
    transform: translateX(0px);
}
.style-switcher .s-icon
{
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%;
    border: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}
.style-switcher .s-icon i{
    line-height: 40px;
}
.style-switcher .style-switcher-toggler{
    top: 0;
}
.style-switcher .day-night
{
    top: 55px;
}
.style-switcher h4{
    margin: 0 0 10px;
    color: var(--text-black-700);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.style-switcher .colors
{ 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.style-switcher .colors span
{
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}
.style-switcher .color-1
{
    background: #ec1839;
}
.style-switcher .color-2
{
    background: #fa5b0f;
}
.style-switcher .color-3
{
    background: #37b182;
}
.style-switcher .color-4
{
    background: #1854b4;
}
.style-switcher .color-5
{
    background: #f021b2;
}
*/
/*  style palette couleur debut */
:root {


    --skin-color:#ec1839;
   --bg-black-900:#f2f2fc;
   --bg-black-100:#fdf9ff;
   --bg-black-50:#e8dfec;
   --text-black-900:#302e4d;
   --text-black-700:#504e70;
   --z-whrite:black;

}
    
            body{
              margin: 0;
              /*font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
              transition: background 0.3s, color 0.3s;*/
              transition: background 0.4s, color 0.4s;


            }
              body.light {    --bg-black-900:#151515;
    --bg-black-100:#222222;
    --bg-black-50:#393939;
    --text-black-900:#ffffff;
    --text-black-700:#e9e9e9;
   --z-whrite:white;

              }
              .top-bar{
    position: fixed;
    right: 0;
    top: 60px;
    margin: 0 0 10px;
    padding: 15px;
    border: 1px solid var(--bg-black-50);
    background: var(--bg-black-100);
    z-index: 101;
    border-radius: 5px;
    transition: all 0.3s ease;
     line-height: 40px;

              }
               .btn-toggle{
                background: var(--skin-color);
                color: var(--z-whrite);
                border: none;
                padding: 10px 15px;
                border-radius: 8px;
                cursor: pointer;
                display: block;
                align-items: center;
                font-size: 20px;
                transition: background 0.3s ease;
                top: 55px;
                animation: pulse 1s infinite ease;
                margin-bottom: 5px;


               }
               .btn-toggle:hover{
                  background: var(--bg-black-50);

               }
               .palette-menu{
                display: none;
                position: absolute;
                top: 50px;
                background: var(--text-black-700);
                padding: 10px;
                border-radius: 8px;
                display: flex;
                gap: 10px;
                animation: fade 0.3s ease;

               }
               .corlor-circle{
                width: 25px;
                height: 25px;
                border-radius: 50%;
                cursor: pointer;
                border: 2px solid var(--text-black-700);

               }
                @keyframes fade {
                  from{ opacity: 0;
                    transform: translateX(-10px);
                  }
                  to{
                     opacity: 1; transform: translateX(0);
                  }

                }
                /* style ico debut*/
               .btn-icon {
  /*    position: fixed;
      z-index: 1001;
      font-size: 1.3rem;
      border: none;
      background: none;
      cursor: pointer;
      color: var(--skin-color);*/

                      background: var(--skin-color);
                color: var(--z-whrite);
                border: none;
                padding: 10px 15px;
                border-radius: 8px;
                cursor: pointer;
                display: flex;
                align-items: center;
                gap: 8px;
                font-size: 20px;
                transition: background 0.3s ease;
    }

    #themeToggle {
      top: 1rem;
      right: 4rem;

      
    }

    #colorIcon {
      top: 1rem;
      right: 1rem;

    }

    #colorPanel {
      position: fixed;
      top:10rem;
      right: 1rem;
      background: whitez;
      padding: 0.5rem;
      border-radius: 0.5rem;
      box-shadow: 0 4px 8px var(--text-black-900);
      display: none;
      z-index: 1000;
      max-width: 200px;
      padding: 5px;

    }

    #colorPanel .btn-color {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      margin: 0.2rem;
      border: 2px solid var(--text-black-900);
      display: inline-block;
      cursor: pointer;
      align-items: center;
      background: var(--bg-black-100 );
        font-size: 3rem;
        
      transition: transform 0.2s;
      
      animation: pulse 2s infinite ease-in-out;
    }
    .btn-color:hover{
         transform: scale(1.2);

    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.8; }
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateX(-25px);
      }
    }

  
    audio{
    width: 100%;
    height: 40px;
    margin-bottom: 5px;
    top: 100px;
      color: var(--z-whrite);
      border-radius: 2px;
font-size: 20px;


  }
  audio::-webkit-media-controls-panel{
    background: var(   --skin-color);
    color: var(--text-black-900);
  }
  audio::-webkit-media-controls-pause-button{
    color:var(--text-black-700);

  }
                /* style ico fin*/
            /*co fin*/

      
/*  style palette couleur fin */