:root {
    --orange: #f28f22;
}

/*
body::after {
  content: '';
  height: 100vh;
  float: right;
  visibility: hidden;
}
*/




  @media screen and (max-width: 1024px) {

    body {
        /*display: flex;
        flex-direction: column-reverse;*/
    }

  .left {
    background: var(--orange);
    /*height: 100%;*/

    display: grid;
    justify-content: center;  /* align horizontal */
    align-content: center;    /* align vertical */
    height: 15dvh;

    line-height: 0;

    /*border-top: 1px solid #666;
    margin-top: 40px;*/

  }


  .right {
    background: #f1f1f1;
  }
  .logo-1 {
    width: 80px;
    margin: 3px auto auto auto;
  }

  .overlay {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.cart {
    position: fixed;
    top: 51px;
    left: 0;
    z-index: 99;
    padding: 16px 0;
    background: rgba(244, 244, 244, 0.95);
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #999;
    font-weight: 500;
    z-index: 1;
    font-size: 12px;
  }

  #header {
    background: rgba(244, 244, 244, 0.95);
    width: 100%;
    text-align: center;
    padding: 10px 0;
    z-index: 1;
    font-size: 12px;
    font-style: italic;
    border-bottom: 1px solid #999;
  }

  .sticky-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .sticky-cart {
    position: -webkit-sticky;
    position: sticky;
    top: 51px;
    z-index: 1;
  }

  .section1-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(85vh - 30px);
    max-width: 100%;
    position: relative;
  }




}
@media screen and (min-width: 1025px) {

  .left {
    width:50%;
    background: var(--orange);
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;

    display: grid;
    justify-content: center;  /* align horizontal */
    align-content: center;    /* align vertical */
    height: 100vh;
  }
  .right {
    width: 50%;
    background: #f1f1f1;
    position: absolute;
    top: 0;
    left: 50%;
  }

  .logo-1 {
    width: 200px;
    margin: auto;
  }

    .overlay {
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 3;
    }

    .cart {
        position: fixed;
        top: 51px;
        left: 50%;
        z-index: 99;
        padding: 16px 0;
        background: rgba(244, 244, 244, 0.95);
        width: 50%;
        text-align: center;
        border-bottom: 1px solid #999;
        font-weight: 500;
        z-index: 1;
        font-size: 12px;
      }

      #header {
        position: fixed;
        top: 0;
        left: 50%;
        background: rgba(244, 244, 244, 0.95);
        width: 50%;
        text-align: center;
        padding: 10px 0;
        z-index: 1;
        font-size: 12px;
        font-style: italic;
        border-bottom: 1px solid #999;
      }

      .show-cart .container{
        margin-top: 80px;
      }

      .section1-flex {
        display: flex;
        align-items: center;
        justify-content: center;
        height: calc(100dvh - 30px);
        max-width: 100%;
        position: relative;
      }

}


.logo-1 {
  cursor: pointer;
}


#language-switcher {
  position: absolute;
  margin: 20px auto;
  width: 100%;
  text-align: center;
}
#language-switcher a {
  margin: 10px;
  color: #000;
}
#language-switcher span {

}


.container {
    max-width: 400px;
    margin: auto;
    padding: 15px;
  }




/* OVERLAY */
/* -------------------------------------------------------- */


  .booking-overlay-btn {
    cursor: pointer;
    font-size: 16px;
    /*background: #fbfbfd;*/
    padding: 3px;
  }



  .overlay-content {
    background-color: #fff;
    max-width: 330px;
    /*height: 50%;*/
    padding: 20px;
    position: relative;
    box-sizing: border-box;
    border-radius: 40px;
    border: 2px solid #000;
    text-align: left;
  }

  .overlay h2 {
  font-weight: 500;
  margin: 10px auto 15px auto;
  }
  .overlay p {
  font-size: 15px;
  }


  .close-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
    background: url('img/close.png') #fff no-repeat center center;
    background-size: 17px 17px;
    width: 34px;
    height: 34px;
    border: 1px solid #000;
    cursor: pointer;
  }

  .overlay a.book {
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 0px 10px;
  font-weight: 600;
  font-size: 20px;

  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);

  }

  .overlay a {
    color: #000;
  }

  .overlay ul {
  list-style: none;
  padding: 0;
  }
  /* -------------------------------------------------------- */


  .footer {
    text-align: center;
    font-size: 12px;
    color: #666;
    padding: 20px 0;
    font-weight: 400;
  }
  .footer a {
    text-decoration: none;
    color: #666;
  }
