.close-button-icon {
    justify-self: right;
    align-self: center;
    grid-area: close-button;
    background-image: url(../assets/icons/controls/close.png);
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 35px 35px;
  }
  
  .fast-forward-icon {
    background-image: url(../assets/icons/video/fast-forward-icon.png);
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 35px 35px;
    margin-top: 5px;
    margin-left: 5px;
  }
  
  .fast-rewind-icon {
    background-image: url(../assets/icons/video/fast-rewind-icon.png);
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 35px 35px;
    margin-top: 5px;
    margin-right: 5px;
  }
  
  .play-icon {
    background-image: url(../assets/icons/video/play-icon.png);
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45px 45px;
  }
  
  .pause-icon {
    background-image: url(../assets/icons/video/pause-icon.png);
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45px 45px;
  }
  
  .volume-up-icon {
    background-image: url(../assets/icons/volume/volume-up-icon.png);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
  }
  
  .volume-down-icon {
    background-image: url(../assets/icons/volume/volume-down-icon.png);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
  }

  .fullscreen-button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }

  .enter {
    background-image: url("../assets/controls/fullscreen_24dp.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .exit {
    background-image: url("../assets/controls/fullscreen_exit_24dp.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }