/* style for lightbox START */
#lightbox-container, #relogin-container {
    position: absolute; 
    width: calc(100% - 30px); 
    height: calc(100% - 60px); 
    padding: 15px; 
    z-index:98; 
    visibility: hidden; 
    background-color: rgba(0,0,0,0.5);    
}

#lightbox-div, #relogin-div {
    background-color: #fff; 
    width: 0%; 
    height: 0%; 
    position: absolute;
    top: 50%;
    left: 50%;
/*    border-radius: 0.3em;*/ /* need to be set on lightbox-button as well */
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    transition: width 0.15s, height 0.15s, top 0.15s, left 0.15s;
    transition-timing-function: ease-out;
}

#lightbox-div.active, #relogin-div.active {
    transition: width 0.25s, height 0.25s, top 0.25s, left 0.25s;
    transition-timing-function: ease-out;
    width: calc(100% - 30px);
    height: calc(100% - 60px);
    top: 20px;
    left: 15px;
}

#lightbox-content, #relogin-content {
    opacity: 0;
    padding: 0.75em;
    overflow: auto;
    height: calc(100% - 5.5em);
}

#lightbox-div.active #lightbox-content, #relogin-div.active #relogin-content {
    transition: opacity 0.1s;
    transition-delay: 0.5s;
    opacity: 1;
}

#lightbox-content h2, #relogin-content h2 {
    font-size: 20px;
    line-height: 1em; 
}

#lightbox-buttons {
    position: absolute;
    background-color: #eee;
    bottom: 0px;
    height: 4em;
    width: 100%;
 /*   border-bottom-left-radius: 0.3em;*/ /* need to be aligned with lightbox-div */
 /*   border-bottom-right-radius: 0.3em;*/ /* need to be aligned with lightbox-div */
    border-top: 1px solid #ddd;
}

#lightbox-buttons a {
    text-decoration: none;
}

#lightbox-buttons a.inactive {
    text-decoration: none;
    color: #aaa;
}

#lightbox-button-left {
    position: absolute;
    left: 0;
    width: 50%;
    text-align: center;
    font-size: 18px;
    padding-top: 14px;
}

#lightbox-button-right {
    position: absolute;
    right: 0;
    width: 50%;
    text-align: center;
    font-size: 18px;
    padding-top: 14px;
}

#lightbox-button-left a.disabled,  #lightbox-button-right a.disabled, #lightbox-button-left.disabled a, #lightbox-button-right.disabled a {
    color: #aaa;
}

#lightbox-button-separator {
    position: absolute;
    left: 50%;
    width: 1px;
    background-color: #ddd;
    height: 100%;
}
/* style for lightbox START */

/* use this for floating buttons */
.fixed-bottom {
    position: fixed;
    right: 2em;
    bottom: 1.5em;
    z-index: 999;
}

button {
    background-color: #b3d4fc;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 10px;
    font-size: 18px;
    color: #444;
}

input.token, input.token:active {
    width: 35px;
    border-radius: 10px;
    border: 1px solid #444;
    height: 45px;
    margin-right: 10px;
    text-align: center;
    font-size: 24px;    
}

