.formfield {
	margin-bottom: 5px;
}

.formfield.fieldtype-hidden {
	display: none;
}

.formfield label {
	width: 200px;
	line-height: 27px;
	display: inline-block;
	vertical-align: top;
}

.formfield input[type="text"],
.formfield input[type="password"],
.formfield select,
.formfield textarea,
.formfield .image-select-wrapper,
.formfield .range-slider,
.formfield .custom-content,
.formfield .wp-picker-container {
	max-width: calc(100% - 210px);
	width: 350px;
	display: inline-block;
	vertical-align: top;
	margin: 0;
}


.formfield input[type="checkbox"] {
	min-height: 16px;
	max-height: 16px;
}

.formfield .wp-picker-container .wp-color-picker {
	max-width: 100%;
}

#postbox-container-1 fieldset {
	min-width:100%;
}

.widget-inside .formfield input[type="text"],
#postbox-container-1 .formfield input[type="text"],
.widget-inside .formfield input[type="password"],
#postbox-container-1 .formfield input[type="password"],
.widget-inside .formfield select,
#postbox-container-1 .formfield select,
.widget-inside .formfield textarea,
#postbox-container-1 .formfield textarea,
.widget-inside .formfield .image-select-wrapper,
#postbox-container-1 .formfield .image-select-wrapper,
.widget-inside .formfield .range-slider,
#postbox-container-1 .formfield .range-slider,
.widget-inside .formfield .custom-content,
#postbox-container-1 .formfield .custom-content,
.widget-inside .formfield .wp-picker-container,
#postbox-container-1 .formfield .wp-picker-container {
	max-width: 100%;
	display: block;
	width: 100%;
}

.formfield .range-slider .range-readout {
	height: 27px;
	line-height: 27px;
	display: inline-block;
	padding-left: 10px;
	vertical-align: top;
}

.sircon-enabler + .enabler ~ * {
	height: 0;
	min-height: 0;
	visibility:hidden;
	pointer-events: none;
	overflow:hidden;
	position:absolute;
}
.sircon-enabler:checked + .enabler ~ * {
	height: auto;
	visibility: visible;
	pointer-events: auto;
	overflow: visible;
	position: static;
}
.sircon-enabler:checked + .enabler {
	margin-bottom:10px;
}

.formfield .tooltip,
.sircon-enabler:checked + .enabler ~ .tooltip {
    height: 15px;
    width: 15px;
    margin-left: 15px;
    padding-left: 15px;
    background: none;
	position: relative;
	display: inline-block;
	vertical-align: top;
	z-index: 1;
}

.formfield .tooltip::before{
	content: "?";
	display: block;
	position: absolute;
	top: 5px;
	left: 0;
	height: 13px;
	width: 13px;
	border-radius: 50%;
	background: #000;
	border: 1px solid #555;
	color: #fff;
	text-align: center;
	font-size: 13px;
	line-height: 1;
	cursor: pointer;
}
.formfield .tooltip > .tooltip-content{
	display: none;
	position: absolute;
	top: 20px;
	right: -50px;
	left: -50px;
	padding: 5px;
	background: #FFF;
	border: 1px solid #333;
	z-index: 1;
}
.formfield .tooltip:hover > .tooltip-content{
	display:block;
}

.formfield.fieldtype-radio .sircon-radio::after {
    content: '';
    display: table;
    clear: both;
}