@import"https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap";

html {
    height: -webkit-fill-available;
    height: 100%;
    padding: 0
}

body {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    font-family: Montserrat,sans-serif;
    background: linear-gradient(0deg, #122434 0%, #122434 100%);
    background-repeat: no-repeat;
    background-attachment: fixed
}

.content {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: width 0.5s, height 0.5s;
  }

  .content.transparent needle-engine {
    box-shadow: none;
  }

  .overlay-container {    
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: #00000000;
    border-radius: 0em;
    padding: 0px;
    /* Box Shadow on/off
    backdrop-filter: blur(2px);
    box-shadow: 0px 0px 20px 0px rgba(245, 245, 245, 0.2);
    border: 2px solid rgba(21, 59, 45, 0.185);
    */
  }

  .overlay-container button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 0;
    color: #ffffff;
    border: none;
    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
    position: relative;
  }

  .overlay-container button:hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .btn-fullscreen {
    margin-bottom: -1em;
  }

  .btn-fullscreen .fullscreen-icon {
    width: 16px;
    height: 16px;
    display: block;
  }

  .btn-fullscreen .icon-exit {
    display: none;
  }

  .btn-fullscreen.is-fullscreen .icon-enter {
    display: none;
  }

  .btn-fullscreen.is-fullscreen .icon-exit {
    display: block;
  }

  .btn-fullscreen::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
  }

  .btn-fullscreen:hover::after,
  .btn-fullscreen:focus-visible::after {
    opacity: 1;
  }

  @media screen and (max-width: 768px),
         screen and (max-height: 1000px)
   {

    .overlay-container button {
      font-size: 1em;
    }
}