html,
body {
  height: 100%;
  margin: 0;
  background-color: #000;
  overflow: hidden;
}

#vimeo-container,
#vimeo-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#vimeo-player {
  /* opacity: 0;
  transition: opacity 0.3s; */
}

#button-container {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  max-width: 177.78vh;
  left: 50%;
}

#button-player-aspect-ratio {
  position: relative;
  height: 0;
  max-height: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  top: 50%;
  margin-top: -28.125%; /* 50% of 16:9 */
  width: 100%;
  margin-left: -50%;
}

#fullscreen-button {
  width: 36px;
  height: 36px;
  position: absolute;
  background: rgba(23, 35, 34, 0.7);
  border: none;
  border-radius: 4px;
  fill: white;
  cursor: pointer;
  outline: none;
  pointer-events: initial;
  right: 10px;
  bottom: 48px;
  transform: scale(1);
  opacity: 0;
  transition: opacity 0.3s;
  z-index:100;
}

#fullscreen-button:hover svg {
  fill: #1ab7ea;
  transition: fill 0.1s;
}

#fullscreen-button svg.expand {
  display: initial;
  margin-bottom: -2px;
  margin-left: 2px;
}

#fullscreen-button svg.shrink {
  display: none;
  margin-bottom: -2px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 300px) {
  #button-container  {
    display:none;
  }
}
  