#open-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 130px;
    cursor: pointer;
    
}

/* #open-overlay svg {
    max-width: 100%;
    height: auto;
} */

.btn-webcam svg {
    max-width: 70px;
    height: auto;
}

#open-overlay svg path {
    fill: var(--project); /* alebo white, black, atď. */
}

.floating #open-overlay svg path {
    fill: var(--white);
}

.open-menu #open-overlay {
    display: none;
}

#open-overlay span {
    font-size: 11px;
    color: var(--white);
}

.floating #open-overlay span {
    display: none;
}

.open-menu .btn-nav-home {
    display: none !important;
}


/* OVERLAY */
#overlay-webcam {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 99999999;
    display: none;
}

#holidayinfo {
    width: 100% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#close-overlay {
    width: 55px;
    height: 55px;
    font-size: 35px;
    position:absolute;
    top:10px;
    right:10px;
    background: var(--project); 
    color: var(--white); 
    border-radius: 50%; 
    padding:5px 10px; 
    cursor:pointer;
}



.btn-nav-offer {
    font-family: DM Sans, sans-serif;
      background-color: var(--yellow);

  color: var(--black);

  letter-spacing: 2px;

  text-transform: uppercase;

  display: flex;

  align-items: center;

  height: 46px;

  padding-left: 18px;

  padding-right: 18px;

  font-size: 13px;

  font-weight: 500;

  line-height: 20px;

  transition: background-color .2s, color .2s;

  text-decoration: unset;
}