/*.mfm-thumbnail-placeholder {*/
/*	position: relative;*/
/*	display: inline-block;*/
/*	background: #f0f0f0;*/
/*	width: 150px;*/
/*	height: 150px;*/
/*	!*margin: 5px;*!*/
/*	border: 1px solid #ccc;*/
/*	text-align: center;*/
/*	vertical-align: middle;*/
/*	line-height: 150px; !* Aby text bol vycentrovaný vertikálne *!*/
/*	!*font-size: 20px;*!*/
/*	!*font-weight: bold;*!*/
/*	color: #333;*/
/*	overflow: hidden;*/
/*}*/

/*.mfm-folder-thumbnails.sortable {*/
/*	min-height: 100px;  !* Aby mal contajner priestor aj keď je prázdny *!*/
/*	border: 1px dashed #ddd;*/
/*	!*padding: 5px;*!*/
/*}*/

/*.mfm-sortable-placeholder {*/
/*	width: 100px; !* Šírka thumbnailu *!*/
/*	height: 100px; !* Výška thumbnailu *!*/
/*	display: inline-block; !* Zabezpečenie radenia v riadkoch *!*/
/*	border: 2px dashed #ccc; !* Na viditeľnosť počas presúvania *!*/
/*	box-sizing: border-box;*/
/*	background-color: #f0f0f0;*/
/*}*/


/*.mfm-thumbnail-placeholder .mfm-progress {*/
/*	position: absolute;*/
/*	top: 50%;*/
/*	left: 50%;*/
/*	transform: translate(-50%, -50%);*/
/*	font-size: 24px;*/
/*	line-height: normal;*/
/*}*/

/*.mfm-thumbnail-placeholder .mfm-loader {*/
/*	position: absolute;*/
/*	top: 0;*/
/*	left: 0;*/
/*	width: 150px;*/
/*	height: 150px;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*}*/


/*.mfm-spinner {*/
/*	border: 4px solid #f3f3f3;*/
/*	border-top: 4px solid #555;*/
/*	border-radius: 50%;*/
/*	width: 24px;*/
/*	height: 24px;*/
/*	animation: mfm-spin 1s linear infinite;*/
/*}*/



.mfm-placeholder-thumbnail {
	display: inline-block;
	width: 120px;
	height: 120px;
	margin: 4px;
	background: #f0f0f0;
	border: 2px dashed #ccc;
	position: relative;
}

/*.mfm-placeholder-thumbnail .mfm-placeholder-image {*/
/*	!*width: 100%;*!*/
/*	!*height: 100%;*!*/
/*	width: 75px;*/
/*	height: 75px;*/
/*	!*display: flex;*!*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	font-size: 12px;*/
/*	color: #999;*/
/*}*/

/*.mfm-placeholder-thumbnail .mfm-placeholder-image::after {*/
/*	content: 'Presúvam...';*/
/*}*/

/*.mfm-multi-drag-helper {*/
/*	display: flex;*/
/*	flex-wrap: wrap;*/
/*	gap: 3px;*/
/*}*/

.mfm-multi-drag-helper .mfm-image-wrapper {
	margin: 0;
}

.mfm-loading-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 5px 0;
}

.mfm-spinner {
	position: absolute;
	top: 28%;
	left: 28%;
	width: 20px;
	height: 20px;
	border: 5px solid #f3f3f3; /* Svetlosivý okraj */
	border-top: 5px solid #3498db; /* Modrý okraj */
	border-radius: 50%; /* Kruh */
	animation: mfm-spin 1s linear infinite; /* Animácia rotácie */
	margin-bottom: 5px; /* Priestor medzi spinnerom a textom */
}

@keyframes mfm-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
