#otherBoxMain * {
	box-sizing: border-box;
}
#otherBoxMain {
	position: fixed;
	z-index: 2000;
	background: #000 url(../images/loading.gif) no-repeat 50% 50%;
	border-radius: 1em;
	border: 2px solid #fff;
	opacity: 0;
	transition: top  0.25s, left 0.25s, width 0.25s, height 0.25s, opacity 0.25s;
}
#otherBoxMain span {
	display: block;
	position: absolute;
	top: -0.8em;
	right: -0.8em;
	background: url(../images/icon_otherBox_close.svg) no-repeat 50% 50%;
	background-size: 80% auto;
	color: #ccc;
	cursor: pointer;
	line-height: 1.8em;
	height: 2em;
	width: 2em;
	border-radius: 100%;
	border: 0px solid #fff;
	text-align: center;
	font-weight: bold;
	z-index: 3000;
}
/*
#otherBoxMain span:hover {
	background: #729868;
	color: #fff;
	border-color: #fff;
}
*/
#otherBoxContent {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 0.8em;
}
#otherBoxItem {
	width: 100%;
	height: 100%;
	border: 0;
	opacity: 0;
	transition: opacity 0.25s;
}
div#otherBoxItem {
	background: #fff;
	padding: 1.5em;
	overflow: auto;
}
#otherBoxBg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.75);
	/*display: none;*/
	opacity: 0;
	transition: opacity 0.25s;
}
.otherBoxMainBtn {
	position: absolute;
	top: calc(50% - 2em);
	height: 4em;
	width: 4em;
	/*min-width: 100px;*/
	border-radius: 1em;
	opacity: 0.75;
	z-index: 2500;
	transition: opacity 0.25s;
}
.otherBoxMainBtn:hover {
	opacity: 1;
	cursor: pointer;
}
.otherBoxMainBtn.next {
	right: 1em;
	background: rgba(255, 255, 255, 0.5) url(../img/next.png) no-repeat 50% 50%;
	background-size: 2em 2em;
/*	background-color: red;*/
}
.otherBoxMainBtn.back {
	left: 1em;
	background: blue;
	background: rgba(255, 255, 255, 0.5) url(../img/back.png) no-repeat 50% 50%;
	background-size: 2em 2em;
	/*background-color: red;*/
}
#otherBoxNavPanel {
	position: fixed;
	bottom: 16px;
	left: 0;
	height: 70px;
	width: 100%;
	text-align: center;
	z-index: 2000;
	opacity: 0;
	background: rgba(0, 0, 0, 0.5);
	transition: opacity 0.25s;
}
#otherBoxNavPanelBtnLeft, #otherBoxNavPanelBtnRight {
	width: 60px;
	height: 60px;
	margin: 5px;
	/*background: olive;*/
	float: left;
	background: url(../img/back.png) no-repeat 50% 50%;
	background-size: 35% auto;
	cursor: pointer;
}
#otherBoxNavPanelBtnRight {
	/*background: orange;*/
	background: url(../img/next.png) no-repeat 50% 50%;
	background-size: 35% auto;
	float: right;
}
#otherBoxNavPanelContent {
	width: 100%;
	height: 70px;
	overflow: hidden;
}
#otherBoxNavPanelContent.short {
	width: calc(100% - 140px);
	float: left;
}
#otherBoxNavPanelSlider {
	margin: auto;
	height: 70px;
}
.otherBoxNavPanelBtn {
	display: block;
	margin: 5px;
	width: 72px;
	height: 56px;
	cursor: pointer;
	float: left;
	background-color: #000;
	background-repeat: no-repeat;
	background-size: auto 90%;
	background-position: 50% 50%;
	border: 2px solid #444;
	transition: border-color 0.5s;
}

.otherBoxNavPanelBtn.akt {
	/*background: #377035;*/
	border-color: #377035;
	cursor: default;
}
