/* Profil foro */
.fit-cover {
	object-fit: cover;
	border-radius: 50%;
	height: 35px;
	width: 35px;
	overflow: hidden;
}


/* Modal */
.modal-dialog {
	display: grid;
	width: 100vw;
	height: 100vh;
	place-items: center;
	background: transparent;
}

/* Loader */
.loader {
	width: 48px;
	height: 48px;
	border: 5px solid #FFF;
	border-bottom-color: #FF3D00;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.pointer-cursor {
	cursor: pointer;
}