/*
File: showBox.css
Client: Weber-Roth
Designer: © Michael Schwarz, CyDot
Version: 0.1.0
Updated: 2017-10-22
*/

.nobr {
    white-space: nowrap;
}

.showbox, .showbox * {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.showbox {
    position: absolute;
    top: 55%;
    left: 60%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    
    min-width: 300px;
    min-height: 300px;
    padding: 16px;
    background-color: #fff;
    
    -webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.3);
}

.showbox__image {
    display: block;
    margin-bottom: 16px;
}

.showbox__info {
    line-height: 1.6;
    letter-spacing: 0.04em;
    word-spacing: 0.08em;
}

.showbox__controls {
    position: relative;
    width: 80px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
}

.control-back {
    float: left;
}

.control-next {
    float: right;
}

.control-close {
    position: absolute;
    bottom: 16px;
    right: 16px;
}

.control-back, 
.control-next,
.control-close {
    /* Icon size */
    height: 24px;
    width: 24px;
    fill: #bbb;
}

.control-back:hover, 
.control-next:hover,
.control-close:hover {
    fill: #666;
    cursor: pointer; 
}

