#wim-image-container{
    display: none;
    position: fixed;
    z-index: 99999;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    top:0;
    padding:50px;
    background: rgba(0,0,0,.8);
}

#wim-image-container.active{
    display: block;
}

#wim-image-container .innerScreen{
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    background: #000;
    position: absolute;
    top:50px;
    left:50px;
    z-index:-1;
}

#wim-image-container.active img{
    width:100%;
    height:calc(100% - 40px);
    
    object-fit: contain;
}

#wim-image-container div#wim-navigation{
    background-color:#efefef;
    height:40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row-reverse;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    -webkit-flex-flow: row-reverse;
}

.nvbtn{
    padding:4px 10px;
    background:#000;
    color:#fff;
    border:1px solid #000;
    border-radius: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin:10px 20px;
    border:1px solid #000;
}

.nvbtn:hover{
    background:#fff;
    color:#000;
}
.nvbtn.disabled,
.nvbtn.disabled:hover{
    color:rgb(0,0,0,.4);
    background:#efefef;
    border-color:#efefef;
    cursor: not-allowed;
}
.nvbtn.next{
    float: right;
}

.close{
    position: absolute;
    top:70px;
    right:70px;
    background:url('svg/close-24px.svg')no-repeat #fff;
    background-position: center center;
    background-size: contain;
    width:30px;
    height:30px;
    cursor:pointer;
    border-radius: 2px;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }