
/* 
---------------------------------------------
DING STYLES
--------------------------------------------- 
*/
.ding-logo-small {
    opacity: .9;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    align-items: center;
    gap: 1rem;
    cursor: default;
  }
  
  .ding-logo-small:hover p {
    transition: all .3s ease;
    transform: translateX(0);
    opacity: 1;
  }
  
  .ding-logo-small p {
    transition: all .3s ease;
    transform: translateX(-20px);
    opacity: 0;
  }
  
  .ding-logo-small img{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    transition: all .3s ease;
  }
  
  .ding-logo-small img:hover {
    box-shadow: 0px 0px 10px 2px #0E6FFF;
    transition: all .3s ease;
  }
  
  