body{

  overflow-x: hidden; /* Disable horizontal scroll */
  overflow-y: hidden; /* Disable horizontal scroll */
}

.map {

        height: 100vh
      }

      /* Style page content - use this if you want to push the page content to the right when you open the side navigation */


      /* The side navigation menu */

      .sidenav{
        height: 0%; /* 100% Full-height */
        width: 0%;
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        background-color: #111; /* Black*/
        overflow-y: auto; /* Disable horizontal scroll */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
      }

      /* The navigation menu links */
      .sidenav a {
      /*  padding: 8px 8px 8px 32px;*/
        text-decoration: none;
        font-size: 25px;
        display: block;
        transition: 0.3s;
      }

      .sidenav .closebtn {
        position: absolute;
        padding: 0px 0px 0px 0px;
        top: 0px;
        right: 10px;
        font-size: 32px;
      }

      .movieTitle{
        color:white;
      }

      .movieSceneDescription{
        color:grey;
      }

      .detailPanelLabel{
        color:#D3D3D3;
        font-size : 19px;
      }

      .movieDescription{
        color:grey;
        margin-left: 140px;
      }

      .accessMain{
        font-weight: bold; /* Making font bold */
        font-size : 14px;
        width : 100%;
        border-radius: 20px; /* Making border radius */
        padding: 5px 30px 5px 30px; /* Making space around letters */
        display: inline-block;
        text-align: center;
        margin-right : 5%;
      }

      .public{
        background-color: green; /* Changing background color */
      }

      .private{
        background-color:red;
      }

      .paid{
        background-color:blue;
      }

      .casttable{
        margin-top: 10px;
        font-size: 14px;
      }

      .moviePoster{
        width: auto;
        height: 100%;
        max-height: 20vh;
        float : left;
      }

      .scenePicture{
         display: block;
        width: auto;
        height: 100%;
        max-height: 20vh;
        margin-left: auto;
        margin-right: auto;
      }

      hr{
        border: 1px solid white;
      }

      .marker {
        background-image: url('images/cinema-15-active.jpg');
        background-size: cover;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        cursor: pointer;
      }


      .subpanel{
        margin-top: 5px;
          border : 2px;
          border-style: solid;
      }
      .subpanel-header{
          float: right;
        text-align: center;
        padding-right : 5px;
        background-color: grey;
        color : #000000;
        width:20%;
      }



      .panel-heading{
        background-color: grey;
      }

.accordion-toggle{
  color:white;
  margin-left : 0;
}

.sidePanelLandscape{
  border-right : 1em solid grey;
}

.sidePanelLandscapeOpen{
  width : 33%;
  height : 100%;
}

.sidePanelLandscapeCollapsed{
  width : 0%;
  height : 100%;
}

.sidePanelPortrait{
    border-top : 1em solid grey;
}

.sidePanelPortraitOpen{
    width : 100%;
    height : 66%;
}

.sidePanelPortraitCollapsed{
  width : 100%;
  height : 0%;
}

.collapseBtnPortrait{
  border : none;
  background-color: black;
  color : white;
  font-weight: bold;
  float : none;
  height: 5%;
  width : 100%;
}

.collapseBtnLandscape{
  border : none;
  background-color: black;
  color : white;
  font-weight: bold;
  float : right;
  width: 3%;
  height : 100%;
}

.detailPanelContainer{
  overflow-x: hidden; /* Disable horizontal scroll */
  overflow-y: auto; /* Disable horizontal scroll */
    position: absolute;
     left: 0; right: 0; bottom: 0;
}

.detailPanelContainerLandscape{
  top: 0;
   width: 97%;
}

.detailPanelContainerPortrait{
  height: 95%;
}

.collapseBtn{
  position : sticky;
  top:0;
  z-index:1;
  display: inline;
}


/* Style the Image Used to Trigger the Modal */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modalForPicture {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content-picture {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content-picture, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.closeModalForPicture {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.topPanelMenu {
  background-color: #343332;
   text-align: center;
}

.closeModalForPicture:hover,
.closeModalForPicture:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content-picture {
    width: 100%;
  }
}
