/* Invisible FileUpload */
.fileUpload {
	position: relative;
	overflow: hidden;
}
.fileUpload input.upload {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
}

/* Picture Container */
.centalContent{
	display: -webkit-flex;
	display:         flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.picContainer{
	background-color: black;
	position: relative;
	text-align: center;
	overflow: hidden;
}
.picMask{
	width: 100%;
	height: 15%;
	bottom: 0;
	cursor: pointer;
	position: absolute;
	background-color: rgba(0,0,0,.3);
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}
.picContainer:hover > .picMask{
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: absolute;
	background-color: rgba(0,0,0,.6);
}
/*.pngPic{
	position: absolute;
	top: -25%;
	left: -25%;
	width: 150%;
	height: 150%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.picContainer:hover .pngPic{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}*/
.hPic{
	position: absolute;
	top: 0%;
	left: -25%;
	width: 150%;
	height: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.picContainer:hover .hPic{
	position: absolute;
	top: 16.6666667%;
	left: 0;
	width: 100%;
	height: 66.6666667%;
}
.vPic{
	position: absolute;
	top: -25%;
	left: 0%;
	width: 100%;
	height: 150%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.picContainer:hover .vPic{
	position: absolute;
	top: 0;
	left: 16.6666667%;
	width: 66.6666667%;
	height: 100%;
}
.picContainerIcon{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 45px;
	height: 45px;
	padding: 20px 10px 10px 20px;
	border-radius: 40px 0px 0px 0px;
	cursor: pointer;
	color: white;
	background-color: rgba(0,0,0,.3);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.picContainerIcon:hover{
	background-color: #d9534f;
}

/* Switch Radio Button */
.switch-field {
	display: inline-block;
}
.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}
.switch-field label {
	float: left;
}
.switch-field label {
	display: inline-block;
	width: 60px;
	background-color: #e4e4e4;
	color: rgba(0, 0, 0, 0.6);
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	text-shadow: none;
	padding: 6px 14px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}
.switch-field label:hover {
	cursor: pointer;
}
.switch-field input:checked + label {
	background-color: #bce8f1;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.switch-field label:first-of-type {
	border-radius: 4px 0 0 4px;
}
.switch-field label:last-of-type {
	border-radius: 0 4px 4px 0;
}

/* Cropper */
.cropImage {
	max-width: 100%;
}

/* Others */
.hiddenBr{
	display: none;
}
.modal-body-limit{
	max-width: 100%;
	max-height: calc(100vh - 200px);
}