/*-----------------------------
 General Styles
---------------------------- */
  * {
    box-sizing: border-box;
  }
  html {
    background-color: #000;
  }
  body {
    width: 100%;
    height: 100%;
    max-height: 1024px;
    position: fixed;
    padding:0px;
    margin: auto;
    background:#000;
    overflow: hidden; 
    font-family: 'uniformcondenced-regular', sans-serif;
  }

  .nav-bar-block ion-header-bar.bar-header {
    display: none;
  }

  .wallGuideView .has-tabs, .bar-footer.has-tabs {
    top: 0;
    bottom: 0;
  }
  
  
  #wallImages {
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
  

  
  .platform-ios.platform-cordova:not(.fullscreen) .has-header, .platform-ios.platform-cordova:not(.fullscreen) .bar-subheader {
    top: 0!important;
  }
  
  #disableAll h3 {
    margin-top: 20px;
    font-size: 1.5em;
    text-align: center;
    color: #fff;
  }

  #disableAll p {
    color: white;
    text-align: center;
    max-width: 768px;
    margin: 10px auto;
  }

  #disableAll a:link,
  #disableAll a:hover,
  #disableAll a:visited
  {
    color: #fff;
  }




/*--------------------
    Loading
---------------------*/

div#loadingWall {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    background-color: #38302e;
    /*opacity: 0;*/
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    
}
  div#loadingWall ion-spinner {
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -16px 0 0 -16px;
      width: 32px;
      height: 32px;
      stroke: #CC0000;
  }

  div#loadingBar {
    position: absolute;
    bottom: 0px;
    left: 0;
    /* margin: -16px -100px -16px -100px; */
    width: auto;
    height: 32px;
    stroke: #CC0000;
    background: #554743;
    right: 0;
  }




  div#loadingBar #loadingText {
    position: absolute;
    height:32px;
    width:100%;
    top:0px;
    left:0px;
    color:#fff;
    z-index:10;
    padding:5px 0px;
    text-align:center;
  }

div#loadingBar #loadingProgress {
  position: relative;
  width:0%;
  height:32px;
  background:#CC0000;
  -webkit-transition: width .1s ease;
  transition: width .1s ease;
}
/*
  div#loadingWall #loadingWallProgressWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
    width: 100px;
    height: 32px;
    stroke: #CC0000;
    background:#555;
  }
*/



  #rotateOrientation {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: rgba(56, 48, 46, 0.6);

    display: none;
    opacity: 0;
    
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
  }
    div#rotateOrientation div {
      width: 45%;
      height: 60%;
      margin: 10% auto 5%;
      text-align: center;
      background-image: url(../../img/02_Rotate_90.gif);
      background-repeat: no-repeat;
      background-position: 50%;
      background-size: contain;
    }

    div#rotateOrientation.rotate div {

        -webkit-animation:spin 1s ease-out;
        -moz-animation:spin 1s ease-out ;
        animation:spin 1s ease-out;
    }
    @-moz-keyframes spin { 100% { -moz-transform: rotate(90deg); } }
    @-webkit-keyframes spin { 100% { -webkit-transform: rotate(90deg); } }
    @keyframes spin { 100% { -webkit-transform: rotate(90deg); transform:rotate(90deg); } }



    div#rotateOrientation p {
      position: absolute;
      top: 50%;
      margin-top: -13px;
      width: 100%;
      color: #fff;
      text-align: center;
      margin: auto;
      max-height: 20%;
    }
    span#launch_enterFullScreen {
      color: #FFF;
      border: medium none;
      padding: 10px 15px;
      text-align: center;
      border-radius: 3px;
      background: linear-gradient(to bottom, #C44B47 1%, #C44B47 48%, #B1171E 52%, #B1171E 100%) repeat scroll 0% 0% transparent;
      text-decoration: none;
      cursor: pointer;
      font-size: .8em
    }
    span#launch_enterFullScreen:hover {
      background: linear-gradient(to bottom, #d45e5a 1%, #d25b57 48%, #c3272e 52%, #c0242b 100%) repeat scroll 0% 0% transparent;
    }

  @media (orientation: portrait) {
    div#rotateOrientation div {
      height: 30%;
      margin: 30% auto 5%;
    }
  }



/*---------------------------
   Nav Bar 
-----------------------------*/
  #tab-overlay {
    display: none;
  }

  ion-view.wallGuideView.pane {
    background-color: #eee;
  }

  [name="wall-guide-view"][nav-view="active"] .wallGuideView {
    opacity: 1!important;
  }

  ion-tabs.main-tabs.tabs-standard {
    display: inline-block;
    height: 100%;
  }
    .wallGuide .tab-nav.tabs {
      border: none!important;
      box-sizing: border-box;
    }
      .wallGuide div#wallNavPadding {
        height: 50%;
        margin-top: -200px;
        min-height: 190px;
      }

  .bar-black .tab-nav.tabs.landscape {
    height: 100%;
    width: 64px;
    /*display: inline-block;*/
    display: none;
  }
  .tab-nav.tabs.landscape a.tab-item {
    height: 25%;
    width: 100%;
    margin: auto;
    padding-top: 10%;
    max-height: 100px;
  }
  .tab-nav.tabs.landscape a.tab-item.tab-item-active:after {
      top: 50%;
      left: 0;
      /*margin-top: -9px;*/
      -webkit-transform: rotate(90deg) scale(1.75);
      transform: rotate(90deg) scale(1.75);
  }

  @media (min-height: 375px) {
    .tab-nav.tabs.landscape a.tab-item.tab-item-active:after {
      top: 45%;
    }
  }


    .tab-nav.tabs.landscape a.tab-item i.icon {
        display: block;
        margin: auto;
        width: 100%;
    }
    .tab-nav.tabs.landscape a.tab-item i:before {
        position: static;
        left: 0;
        width: auto;
        padding: 0;
        margin: auto;
        font-size: 2.5em;
    }
  .tab-nav.tabs.landscape .tab-item i.icon + span.tab-title {
      width: 100%;
      text-align: center;
      height: auto;
      display: block;
      margin: -10px auto 0;
      padding: 0;
  }

  




/* ---------------------------
  IScroll Related Styles 
----------------------------- */
  canvas#wallGuideCanvas {
    background-color: #000
  }
  #wall, #wallGuideScroller {
    position: absolute;
    top: 1px!important;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;

    cursor: -webkit-grab;

    /* Prevent native touch events on Windows */
    -ms-touch-action: none;

    /* Prevent the callout on tap-hold and text selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    /* Prevent text resize on orientation change, useful for web-apps */
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
    text-size-adjust: none;
  }
  #wallGuideScroller {
    margin-top: -5px;
  }

  #wall {
    background-color: #000;
    position: absolute;

    /* Prevent elements to be highlighted on tap */
    -webkit-tap-highlight-color: rgba(0,0,0,0);

    /* Put the scroller into the HW Compositing layer right from the start */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  a.wall {
    display: block;
  }

  .wall {
    height:auto;
    display:inline-block;
  }
  .wall div.section {
    display:table-cell;
    vertical-align: top;
  }
  
  .wall div img {
    margin-right: -1px;
    width: auto;
    /* prevents pixelation 

        by making the browser re-render the element 
        in stead of doing this zoomed in rendering
        of a 'screen-shot' sort of thing that it does...
     */
    transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
  }

  /* -----------------
    Wall Menu
  ------------------*/
  .menu .scroll-content {
    overflow-y: scroll;
  }


    ion-side-menu.menu.menu-right {
      background-color: #372F2D;
      overflow: visible;
      z-index: 99 !important;
      right: 0;
      max-width: 250px;      
      -webkit-transform: translate3d(250px, 0, 0);
      transform: translate3d(250px, 0, 0);
      -webkit-transition: -webkit-transform .2s ease;
      transition: -webkit-transform .2s ease;
      -webkit-transition: transform .2s ease;
      transition: transform .2s ease;
    }
    .wallGuide.menu-open ion-side-menu.menu.menu-right {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
      .menu ion-item a.item-content {
        white-space: normal;
        padding: 15px 20px 15px;
      }
    .wallGuide.menu-open div#wall-menuButtonBar {
      box-shadow: -2px 0 10px 0px #000;
    }

    ion-side-menu.menu-right {
      display: none;
    }

      ion-side-menu.menu.menu-right .list {
        padding: 0;
      }
        ion-side-menu.menu.menu-right ion-item.item-complex {
          border-bottom: 1px solid #2B2522;
          cursor: pointer;
        }
        ion-side-menu.menu.menu-right ion-item.item-complex a:hover {
          background-color: #483e3c;
        }

      div#wall-menuButtonBar {
        /*display: none;*/
        position: absolute;
        z-index: 9;
        height: 100%;
        width: 20px;
        margin-left: -30px;
        padding: 0 15px;
        background-color: #282320;
        cursor: pointer;
      }
        #wall-menuButtonWrap {
          position: absolute;
          z-index: 1;
          height: 100%;
          width: 20px;
          margin-left: -15px;
          padding: 0 15px;
          cursor: pointer;          
        }
        div#wall-menuButtonBar:hover {
          background-color: #2b2b2b;
        }

          div#wall-menuButton {
            color: #8C8381;
            width: 75px;
            margin-top: 86px;
            padding-left: 15px;
            text-align: right;
            text-transform: uppercase;
            font-weight: bold;
            margin-left: -10px;
            -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
            -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
          }


  /*.icon-gps.wall-gps, */
  .icon-fullscreen {
    position: absolute;
    z-index: 9;
    width: 30px;
    height: 36px;
    left: -30px;
    bottom: 0;
    color: #fff;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .icon-fullscreen img {
    padding: 5px;
  }
    /*.icon-gps.wall-gps:before,*/
    .icon-fullscreen:before {
      font-size: 3.2em;
      height: 30px;
      width: 30px;
      padding-top: 4px;
      margin-left: -5px;
      margin-top: -5px;
    }

  .icon-gps.wall-gps.on {
    color: #2B95FA;     
  }

  .icon-gps.loading {
    transition: color 0.2s ease;
    color: #2B95FA;
            animation:wall_gpsLoading 1s;
       -moz-animation:wall_gpsLoading 1s infinite; /* Firefox */
    -webkit-animation:wall_gpsLoading 1s infinite; /* Safari and Chrome */
  }  

  @keyframes wall_gpsLoading
  {
    0%   {color:#2B95FA;}
    100%   {color:#fff;}
  }

  @-moz-keyframes wall_gpsLoading /* Firefox */
  {
    0%   {color:#2B95FA;}
    100%   {color:#fff;}
  }

  @-webkit-keyframes wall_gpsLoading /* Safari and Chrome */
  {
    0%   {color:#2B95FA;}
    100%   {color:#fff;}
  }


  /*---------------------
   Wall Icon Navigation
  ---------------------- */
  div#nav {
    position: absolute;
    bottom: 0;
    z-index: 101;
    width: 100%;
    height: 50px;
    background-color: rgb(12, 12, 12);
  }
    .navWrap {
      position: absolute;
      bottom: 0;
      width: 100%;
      background-color: rgb(28,28,28);
    }


      #menuToggle {
        padding: 9px 7px 5px;
        color: #fff;
        cursor: pointer;

        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
      }
        #menuToggle img {
          width: 32px;
        }
  div#miniMapWrap {
    position: absolute;    
    bottom: 0;
    padding: 5px 10px 0;
    background-color: rgb(43, 43, 43);
  }
  div#miniMap {
    width: 100%;
    height: 10px;

    -webkit-transition:opacity .5s ease;
    transition:opacity .5s ease;
  }
    div#miniMap_markerWrap {
      z-index: 1;
      position: relative;
    }
      div#miniMap_marker {
        width: 0;
        height: 0;
        padding: 0px;
        margin: -2px auto 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        border-top: 6px solid #cc0000;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0px solid transparent;
        background-color: transparent;
      }
    .miniMapSection {
      display: inline-block;
      height: 8px;
      position: relative;
      top: -5px;
      background-color: #8d3812;
      border-right: 1px solid #2b2b2b;
    }
  /**/
  .section {
    position: relative;
  }

  /* Wall Icons Points */
  .iconWrap {
    cursor: pointer;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
  }
  .icons {
    position: absolute;
    z-index: 99;
    color: #fff;
    border-radius: 5px;
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    /*transition: transform .1s ease;
    -webkit-transition: transform .1s ease;*/
  }

  h3.icons {
    position: absolute;
    z-index: 99;
    max-width: 300px;
    padding-bottom: 10px;
    text-align: center;
    text-transform: none;
    font-family: 'uniformcondenced-regular', sans-serif;
    font-size: 1em;
    color: #fff;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
  }
    .wall .marker img {
      width: 22px;
      height: auto;
      margin-top: -25px;
    }
  .icons.dot {
    position: absolute;
    z-index: 99;
    padding: 0 10px 10px;
    /*margin: 20px 0 0 15px;*/
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  #prevPoint.end, #nextPoint.end {
    opacity: .1;
  }


/*----------------
  Wall Guide
-----------------*/
#miniMap_userPosition {
  position: absolute;
  z-index: 1;
  width: 7px; 
  height: 7px;
  border-radius: 50%;
  background-color: #2B95FA;
  top: 3px;
  opacity: 0;
  -webkit-transition: opacity .3s ease, left .5s ease;  
  transition: opacity .3s ease, left .5s ease;
}
#miniMap_userPosition.on {
  opacity: 1;
}
#userPosition {
  position: absolute;
  z-index: 0;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  opacity: 0;
  -webkit-transition: opacity .3s ease, left .5s ease;  
  transition: opacity .3s ease, left .5s ease;
}
  #userPosition img {
    width: 100%;
  }

#userPosition.on {
  opacity: 1;
}


/*#geoData {
  position: absolute;
  left: 20%;
  top: 20%;
  background-color: rgba(255,255,255,.5);
  color: #000;
}*/


/*------------------------
  Slider (ionic's box-slider)
------------------------- */
/*.body_scrollWrap .slider {
  height: 300px;
}*/

  ion-slide img {
    width: 100%;
    height: auto;
  }

  div.slider {
    visibility: visible;
  }
  .slider-pager {
    bottom: 11px;
  }

/* -------------------------
  symbol_content
-------------------------- */

  .symbolOverlay {
    display: inline-block;
    float: left;
    height: 100%;
    width: 100%;
/*    -webkit-transition: width .5s ease;
    transition: width .5s ease;*/
  }
  .symbolOverlay-loading {
    position: absolute;
    right: 0;
    z-index: 1;
    height: 100%;
    background-color: #fff;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
  }
    .symbolOverlay-loading ion-spinner {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 32px;
        height: 32px;
        margin: 0 0 0 -16px;
        stroke: #CC0000;
    }
      .symbolOverlay-loading ion-spinner svg {
          width: 32px;
          height: 32px;
      }

  ion-view.pane.symbolView {
    background-color: transparent;
    -webkit-transition: -webkit-transform .5s ease;
    -webkit-transition: transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
  }
    ion-view.symbolView .symbolWrap {
      position: relative;
      display: inline-block;
      height: 100%;
      background-color: #fff;
      box-shadow: 0 0 10px 0px #000;
    }
      .symbolWrap .has-header {
        top: 0;
        bottom: 41px;
        overflow-y: scroll;
      }
/*      .symbolView .scroll {
          padding-bottom: 60px;
      }*/
        #symbol_content h1 {
          /*padding: 20px;*/
          /*margin-bottom: 0;*/
          font-family: 'uniformcondenced-regular';
          font-weight: bold;
          font-size: 2em;
        }

    .symbolView .slider {
        /*padding: 0 20px;*/
    }
      .symbolView .slider-slides {
          padding: 0;
          /*max-width: 100%;*/
          border: none;
          background-color: #FBFBFB;
          overflow: hidden;
      }
        .symbolView ion-slide.slider-slide {
          /*max-width: 100%;*/
        }

    button.sliderNextPrev {
      position: absolute;
      z-index: 2;
      width: 30px;
      height: 30px;
      padding: 4px;
      margin-top: -31px;
      border: none;
      background: rgba(52, 45, 43, 0.6);
      overflow: hidden;
    }
      button.sliderNextPrev:hover {
        background: rgba(52, 45, 43, 0.8);
      }
      button.sliderNextPrev:hover:before,
      button.sliderNextPrev:hover:after {
        opacity: 1;
      } 
      .sliderNextPrev:before,
      .sliderNextPrev:after {
        color: #fff;
        width: 40px;
        height: 40px;
        position: static;
        display: inline-block;
        vertical-align: middle;
        font-size: 4em;
        opacity: .8;
      }
      .sliderNextPrev:after {
        margin-top: -19px;
        margin-left: -18px;
      }
      button.sliderNextPrev.prev {
        left: 20px;
      }
      button.sliderNextPrev.next {
        right: 20px;
      }



    .nxtPrv {
        position: absolute;
        bottom: 0;
        width: 100%;
        color: #fff;
        background-color: #342D2B;
        padding: 10px 20px;
        text-transform: uppercase;
        font-weight: bold;
    }
      .nxtPrv span {
        font-size: .9em;
        cursor: pointer;
      }
      .nxt {
        float: right;
      }

    .nxtPrv .icon-prv-full:before,  
    .nxtPrv .icon-nxt-full:after {
      color: #CC0000;
      font-size: 2.5rem;
    }
    .nxtPrv .icon-prv-full {
      padding-left: 12px;
    }
    .nxtPrv .icon-prv-full:before {
      line-height: 1em;
    }
    .nxtPrv .icon-nxt-full {
      padding-right: 12px;
    }
    .nxtPrv .icon-nxt-full:after {
      line-height: 1em;
    }

      .nxtPrv span.disable-nxtPrv-button,
      .nxtPrv span.disable-nxtPrv-button:before,
      .nxtPrv span.disable-nxtPrv-button:after {
          color: gray;
      }

    .symbolView .poiLinks {
      text-align: left;
      padding: 5px 0;
    }


    #symbol_content .loading, #next_prev_symbol_content .loading {
      position: absolute;
      width: 100%;
      height: 100%;
      display: none;
      background: url(/wall-guide/images/preloader.gif) no-repeat 50% 45% / 75px;

     /* -webkit-transition: opacity 1s ease;
      transition: opacity 1s ease;*/
    }
    .symbol_scroll_wrap {
      position: absolute;
      width: 100%;
      height: 100%
    }
    .headerWrap, .body {
      /*max-width: 640px;*/
      margin: auto;

      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
      .header {
        position: relative;
        z-index: 10000;
        width: 100%;
        height: auto;
        min-height: 50px;
        display: inline-block;
        background-color: #000;
      }
       img.closeSymbol {
          width: 42px;
          padding: 10px;
          margin: 5px;
          position: absolute;
          top: 0;
          left: 0;
          cursor: pointer;
        }
        .headerWrap h2 {
          width: 85%;
          color: #fff;
          padding-top:  4px;
          padding-left: 8%;
          margin: 10px auto;
          font-family: 'skolar', serif;
          font-size: 1em;
          line-height: 1.5em;
          text-transform: uppercase;
          text-align: center;
          letter-spacing: .1em;
        }
    #symbol_content_wrap .body {
      position: relative;
      overflow: hidden;
      padding: 20px;
      top: 0!important;
      height: auto!important;
    }
      .body_scrollWrap {
        padding: 0 0 40px;
        cursor: default;
      }
        .text {
          position: relative;
          padding: 0;
          overflow: hidden;
          line-height: 1.5em;
        }


      ul.images {
        padding: 0;
        margin-top: 0;
        margin-bottom: 20px;
      }
        ul.images li {
          list-style: none;
        }
          ul.images li img {
            max-width: 100%;
            width: 100%;
          }


  .text_scrollWrap, .text_scrollWrap p {
    color: #352d2b;
    font-family: 'uniformcondenced-light', 'Helvetica Neue', Roboto, 'Segoe UI', sans-serif;
    font-size: 1.315rem;
    line-height: 1.3em;
  }

  @media (max-width: 360px) {
    .text_scrollWrap, .text_scrollWrap p {
      font-size: 1rem;    
    }
  }




.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
  display: none!important;
}


/* Wall popups */
div.wall-popups {
  display: none;
  position: absolute;
  right: 50px;
  z-index: 99;
  max-width: 240px;
  padding: 10px;
  margin-left: 10px;
  background: rgb(232, 232, 232);
  border-radius: 2px;
}
div.wall-popups:after {
  content: "\e609";
  top: -2px;
  right: 0;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: -32px;
  font-size: 4em;
  color: #e8e8e8;
}
div#wall-popups-menu {
  top: 10px;
}
div#wall-popups-fullScreen {
  bottom: 10px;  
}
div#wall-popups-menu:after {
  margin-top: -10px;  
}
div#wall-popups-fullScreen:after {
  margin-top: 30px;  
}
.wall-popups button {
  display: block;
  margin-left: auto;
  background: linear-gradient(to bottom, #C44B47 1%, #C44B47 48%, #B1171E 52%, #B1171E 100%) repeat scroll 0% 0% transparent;
  border: none;
  color: #fff;
  padding: 5px 10px;
  margin-top: 5px;
}
.wall-popups button:hover {
  background: linear-gradient(to bottom, #d45e5a 1%, #d25b57 48%, #c3272e 52%, #c0242b 100%) repeat scroll 0% 0% transparent;
}
#wall-popups-overlay {
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99;
  display: none;
}