/******************************************************************************
* ldskLdsImageManager.js
*******************************************************************************

*******************************************************************************
*                                                                             *
* Copyright @ LD-SERVIVES 2018									              *
*                                                                             *
******************************************************************************/

.ldskImageManager {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1001;
    background: rgba(0,0,0,.7);
}

.imImg {
    display: inline-block;
    width: 120px;
    height: 120px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0);
    vertical-align: top;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.imImg:hover {
    border: 1px solid #414141;
    background: #e6e6e6;
}

.imImg img {
    max-width: 100px;
    max-height: 100px;
}

.ldskImageManager .window {
    display: block;
    position: relative;
    margin: 50px;
    padding: 20px;
    background: white;
    height: calc(100% - 100px);
    overflow: auto;
}

.imOptCont {
    position: absolute;
    background: #414141;
    width: 120px;
    left: -120%;
    bottom: 0;
    height: 30px;
    overflow: hidden;
    transition: all .25s ease-out;
    text-align: center;
    font-size: 20px;
    padding-top: 5px;
    color: white;
}

.imOptValidate {
    position: absolute;
    height: 30px;
    background: #226a9e;
    color: white;
    width: 50%;
    left: -50%;
    bottom: 0;
    text-align: center;
    font-size: 20px;
    padding-top: 5px;
    transition: all .25s ease-out;
}

.imOptCancel {
    position: absolute;
    height: 30px;
    background: #d22b2b;
    color: white;
    width: 50%;
    left: -50%;
    bottom: 0;
    text-align: center;
    font-size: 20px;
    padding-top: 5px;
    transition: all .25s ease-out;
}