.mbfp-posts {
	width: 100%;
}

.mbfp-posts tbody tr:nth-child(2n + 1) {
	background: rgba(0, 0, 0, 0.1);
}

.mbfp-col-delete {
	width: 20%;
}

@media (min-width: 576px) {
	.mbfp-col-delete {
		width: 10%;
	}
}

.mbfp-posts .mbfp-table__delete {
	background: #45cbf7 url('trash.svg') no-repeat center;
	text-decoration: none;
	display: flex;
	width: 2em;
	height: 2em;
	line-height: 2;
	justify-content: center;
	align-items: center;
	border-radius: 0.25em;
	border: none;
	transition: 0.3s;
	box-sizing: border-box;
	cursor: pointer;
	padding: 0.4em;
	margin: 0 auto;
}

.mbfp-posts__delete:hover {
	background: #2f829d;
}

.mbfp-notice {
	text-align: center;
	padding: .75em 1.25em;
	margin-bottom: 1em;
	border: 1px solid transparent;
	border-radius: .25em;
	color: #856404;
	border-color: #ffeeba;
	background-color: #fff3cd;
}

.mbfp-btn {
	position: relative;
	display: inline-flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

.mbfp-btn>* {
	pointer-events: none;
}

.mbfp-count:after {
	content: ")";
}

.mbfp-count:before {
	content: "(";
}

.mbfp-btn .mbfp-icon {
	font-size: 0;
}

.margin-left {
	margin-left: 4px;
}

/* loading */
.mbfp-loading::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	z-index: 1;
}

.mbfp-loading-icon {
	display: none;
	position: absolute;
	width: 16px;
	height: 16px;
	border: 2px solid #ffffff;
	border-top: 2px solid #333333;
	border-radius: 50%;
	animation: mbfp-spin 1s linear infinite;
	z-index: 2;
}

.mbfp-loading .mbfp-loading-icon {
	display: block;
}

@keyframes mbfp-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}