.loader {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #fff #fff transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  .loader::after,
  .loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent rgb(16, 185, 129) rgb(16, 185, 129);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
  }
  .loader::before {
    width: 32px;
    height: 32px;
    border-color: #fff #fff transparent transparent;
    animation: rotation 1.5s linear infinite;
  }

  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
  
  google-cast-launcher {
    --disconnected-color: white;
    --connected-color: white;
   }

      /* width */
      .active {
        color: #059669;
        border-left-width: 4px;
        border-left-color: #059669;
      }
      ::-webkit-scrollbar {
        width: 10px;
        height: 8px;
      }
  
      /* Track */
      ::-webkit-scrollbar-track {
        background: rgb(16, 185, 129, 0.2);
      }
  
      /* Handle */
      ::-webkit-scrollbar-thumb {
        border-radius: 100px;
        background: rgb(16, 185, 129);
      }
  
      /* Handle on hover */
      ::-webkit-scrollbar-thumb:hover {
        background: rgb(16, 185, 129, 0.6);
      }