
.loader {
    border-top-color: rgba(0,0,0,0.3);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bar1, .bar2, .bar3 {
    width: 20px;
    height: 2px;
    background-color: white; 
    margin: 5px 0;
    transition: 0.3s;
  }
#icon.change .bar1 { transform: translate(0, 7px) rotate(-45deg); }
#icon.change .bar2 { opacity: 0; }
#icon.change .bar3 { transform: translate(0, -7px) rotate(45deg); }
