#realkit_modals_shortcode label {
	display: block;
	margin: 0 0 5px;
}
#realkit_modals_shortcode label::after {
	content: '';
	display: block;
	width: 100%;
	height: 0;
	clear: both;
}
#realkit_modals_shortcode label span {
	float: left;
	display: block;
	line-height: 30px;
}
#realkit_modals_shortcode label input {
	float: right;
	height: 30px;
	margin: 0;
}
#realkit_modals_shortcode label.checkbox {
	display: flex;
	justify-content: space-between;
	margin: 20px 0 0;
}
#realkit_modals_shortcode label.checkbox::after {
	display: none;
}
#realkit_modals_shortcode label.checkbox input {
	float: none;
	width: 16px;
	height: 16px;
}
#realkit_modals_shortcode label.checkbox div {
	flex: 0 0 calc(100% - 16px - 10px);
	float: none;
	line-height: 16px;
}
#realkit_modals_shortcode i {
	font-style: normal;
}

.realkit_modals_shortcode_cover {
	position: relative;
	cursor: pointer;
	display: inline-block;
	margin: -5px;
	padding: 5px 25px 5px 5px;
}
.realkit_modals_shortcode_cover::before,
.realkit_modals_shortcode_cover::after {
	opacity: 0;
	content: '';
	display: block;
	width: 10px;
	height: 12px;
	position: absolute;
	box-sizing: border-box;
	border-radius: 2px;
	transition: all 200ms linear;
}
.realkit_modals_shortcode_cover::before {
	top: 8px;
	right: 8px;
	background: #666;
}
.realkit_modals_shortcode_cover::after {
	top: 5px;
	right: 5px;
	border: 1px solid #666;
}
.realkit_modals_shortcode_cover:hover {
	background: #f5f5f5;
}
.realkit_modals_shortcode_cover:hover::before,
.realkit_modals_shortcode_cover:hover::after {
	opacity: 1;
}
.realkit_modals_shortcode_cover.pushed::before {
	background: #0073aa;
}
.realkit_modals_shortcode_cover.pushed::after {
	border-color: #0073aa;
}