video {
    display: block;
    width: 100%;
    max-width: 1110px;
    height: 100%;
    margin: 0 auto;
    border-radius: 12px;
    position: relative !important;
  }

  .video-container {
    border-radius: 10px;
    overflow: hidden;
    /* hide overflow from rounded corners */
    margin-top: 30px;
    margin-bottom: 25px;
    align-items: center;
    background-color: black;
  }

  .loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  .spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }


  /* For WebKit browsers */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background-color: #777;
  border-radius: 10px;
}

/* For Firefox */

html {
  scrollbar-color: #777 #1e1e1e;
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background-color: #1e1e1e;
}

html::-webkit-scrollbar-thumb {
  background-color: #777;
  border-radius: 10px;
}

/* For IE, Edge, and Opera */

html {
  scrollbar-color: #777 #1e1e1e;
}

html::-ms-scrollbar {
  width: 10px;
}

html::-ms-scrollbar-track {
  background-color: #1e1e1e;
}

html::-ms-scrollbar-thumb {
  background-color: #777;
  border-radius: 10px;
}