.ui-sortable-handle:hover {
    cursor: move;
    }

.scrf-notice {
    padding: 10px;
    margin: 5px 0 !important;
    background-color: #e5eaff;
    }

.subsubsub li.mine {
    display: none;
    }

.post-state {
	font-weight: 600;
	font-size: 14px
	}

.scrf-required {
	color: red;
	font-weight: 500;
	}

.switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
    margin: 3px 0 2px -3px;
}

.switch input {
	display: none;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 34px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 50%;
}

input:checked + .slider {
	background-color: #2196f3;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

.scrf-blocks-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 12px;
}

.scrf-block-title {
	margin: 10px 0 0 0;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
    background-color: #677bf4;
    color: #fff;
    padding: 8px;
    border-radius: 10px 10px 0 0;
}

.scrf-block .wp-list-table {
	width: 100%;
	table-layout: fixed;
	margin-top: 0;
}

.scrf-sortable-placeholder td {
	height: 45px;
	background: #f6f7f7;
	border: 2px dashed #8c8f94;
}

.scrf-row-dragging {
	opacity: 0.8;
}

.scrf-block {
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.scrf-block-dragover {
	box-shadow: 0 0 0 2px #2271b1;
}

.scrf-sortable-active {
	background: #f9fbfd;
}

@media (min-width: 1280px) {
	.scrf-blocks-wrap {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}