.pre-loaderTG {
    position: absolute;
    left: 50%;
    top: 45%;
    width: 200px;
    height: 100px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: 'Arimo', sans-serif !important;
    font-size: 15px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px; 
  }
 
  .pre-loaderTGTXT {
    color: #9e9e9e;
    font-family: 'Arimo', sans-serif !important;
    font-size: 12px !important;
    text-align: center;
  }

 .pre-loaderTGTXTDark {
    color: #fff;
    font-family: 'Arimo', sans-serif !important;
    font-size: 12px !important;
    text-align: center;
  }

  .pre-loaderTGTXTTG{
    font-size: 10px;
  }

 

  .loaderTG3 {
    width: 48px;
    height: 48px;
    border: 3px dotted #b9b9b9;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
  }
  .loaderTG3::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted #c33c3c;
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 1s linear infinite;
    transform-origin: center center;
  }

  img.loaderTG3IMG{
    width: 150px; /* zmieniony rozmiar, żeby logo było czytelne */
    animation: pulseloaderTG3IMG 2s infinite;
  }

  @keyframes pulseloaderTG3IMG {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
  }

  
  img.loaderTG3IMGWT{
    width: 150px; /* zmieniony rozmiar, żeby logo było czytelne */
    animation: pulseloaderTG3IMGWT 2s infinite;
    opacity: 0.5;
  }

  @keyframes pulseloaderTG3IMGWT {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
  }
      
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  } 