/**
* Modální dialog
* 
* Knihovna pro vytváření modálního dialogu postavená na PgwModal (http://pgwjs.com - http://pagawa.com)
* 
* @category   GUI knihovna
* @copyright  Copyright (c) 2012 Foxtrot Technologies s.r.o. (www.foxtrot.cz)
* @version    4.2, 2019-10-19
*/

.foxModalHidden {
	display: none;
}

.foxModalBackground {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	background-color: rgba(0,0,0,0.6);
	overflow: hidden;
}

.foxModalDlg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 95%;
	max-height: 95%;
	max-width: 600px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #fff;
	display: flex;
	flex-direction: column;
}

.foxModalTitlebar {
	display: flex;
	flex-direction: row;
	background-color: #3ea5e1;
	height: 40px;	
}

.foxModalTitle {
	flex: 1 100%;
	color: #fff;
	-webkit-user-select: none;
	user-select: none;
	display: flex;
	flex-direction: column;
}

.foxModalTitle p {
	margin: auto 10px;
	text-align: left; 	
	font-size: 14px;
}


.foxModalClose {
	background-image: url("images/foxModal_close_icon.svg");
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	flex: 0 0 2vh;
	height: 2vh;
	margin: auto 1vw auto 1vh;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
}

.foxModalClose:active {
	background-color: #02293F;
}

.foxModalMainContColumn, .foxModalMainContRow {
	flex: 1 100%;
	display: flex;
}

.foxModalMainContColumn {
	flex-direction: column;
}

.foxModalMainContRow {
	flex-direction: row;
	align-items: center;
}

.foxModalIconColumn {
	height: 6vh;
	margin: 2vh 0;
}

.foxModalStyleText {
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	color: #000;
	padding: 0 1vw 0 1vw;
}

.foxModalFormDesc {
	text-align: center;
	font-size: 10px;
	color: #000;
	padding: 0 1vw 0 1vw;
}

.foxModalText {
	text-align: center;
	font-size: 12px;
	color: #000;
	padding: 0 1vw 2vh 1vw;
}

.foxModalEvalCont {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.foxModalButtCont {
	display: flex;
	flex-direction: row;
	padding: 0 0 2vh 0;
	justify-content: center;
}

.foxModalButt {
	padding: 0 2vw;
	background-color: #3ea5e1;
	color: #fff;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
	margin: 0 0.3vw;
	display: flex;
	min-width: 10vw;
}

.foxModalButt:active {
	background-color: #02293F;
}

.foxModalButt:hover {
	background-color: #5c89a2;
}

.foxModalButt p {
	margin: 1vw auto; /* Important */ 
	text-align: center; 	
	font-size: 1.7vmin;
}

.foxModalIconRow {
	height: 6vh;
	flex: 0 0 6vh;
	margin: 2vh 1vw 2vh 2vw;
}

.foxModalRightCont {
	flex: 1 100%;
	display: flex;
	flex-direction: column;
	margin: 2vh 0 0 0;
}

.foxModalInputHead {
	color: #000;
	font-size: 1.6vmin;
}

.foxModalInput, .foxModalTextarea {
	flex: 0 0 3vh;
	color: #6f6f6f;
	font-size: 1.5vmin;
	line-height: 3vh;
	outline: none;
	border: solid 1px #E9E9E9;
	padding: 0 0.3vw 0 0.3vw;
	margin-top: 1vh;
	margin-bottom: 1vh;
}

.foxModalTextarea {
	resize: none;
	margin: 6vmin;
	font-size: 1.5vmin;
	padding: 0.3vw;
}

.foxModalSelect {
	height: 4vh;
	flex: 0 0 4vh;
	line-height: 4vh;
	font-size: 1.5vmin;
	color: var(--sub-text-color);
	border: solid 1px var(--def-border);
	padding: 0 0.3vw 0 0.3vw;
	margin-top: 1vh;
	margin-bottom: 1vh;
}

.foxModalFormCont {
	padding: 1vh 1vw;
	display: flex;
	flex-direction: column;
}

.foxModalInfo {
	color: #8F8F8F;
	font-size: 1.5vmin;
	font-style: italic;
	text-align: center;
	margin: 0 0 1vh 0;
}

.foxModalFormImageCont {
	width: 100%;
	display: flex;
	flex-direction: row;
	margin: 1vh 0;
	align-items: center;
}

.foxModalFormImage {
	height: 8vh;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
}

.foxModalFormImageSubCont {
	flex: 1 100%;
	display: flex;
	flex-direction: column;
	padding: 0 0 0 0.5vw;
}

.foxModalFormImageInfo {
	padding: 1vh 0;
}

.foxModalFormImageButtonsCont {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.foxModalEvalStarImg {
	width: 1vh;
	flex: 0 0 1vh;
}

.foxModalEvalCtrl {
	margin: 4vh 0;
	display: flex;
	flex-direction: row;
}