/* SELECT */
.jcf-select {
	border: 1px #ccc solid!important;
	height: auto;
	padding: 9px 0px;
}
.jcf-select.jcf-drop-active {
	border: 1px #000080 solid!important;
	color: #000080!important;
	
	-webkit-border-radius: 5px 5px 0px 0px;
	   -moz-border-radius: 5px 5px 0px 0px;
			border-radius: 5px 5px 0px 0px;
}
.jcf-select.jcf-drop-flipped.jcf-drop-active {
	-webkit-border-radius: 0px 0px 5px 5px!important;
	   -moz-border-radius: 0px 0px 5px 5px!important;
			border-radius: 0px 0px 5px 5px!important;
}
.jcf-select .jcf-select-text {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4rem;
	margin: 0px 35px 0px 10px;
}
.jcf-select .jcf-select-opener {
	background: url(images/arrow-select-1.png) no-repeat center center!important;
}
.jcf-select-drop {
	min-width: 200px;
	width: auto!important;
}
.jcf-select-drop .jcf-select-drop-content {
	background: #fff;
	border: 1px #000080 solid;
	min-width: 150px;
	width: auto!important;
}
.jcf-select-drop .jcf-select-drop-content .jcf-scrollable-wrapper,
.jcf-select-drop .jcf-select-drop-content .jcf-list-content {
	width: 100%!important;
}
.jcf-list-content ul {
	margin: 0px!important;
	padding: 0px!important;
}
.jcf-list-content li {
	background: none!important;
	padding: 0px!important;
}
.jcf-select-drop .jcf-select-drop-content .jcf-list-content li:last-child .jcf-option,
.jcf-select-drop .jcf-select-drop-content {	
	-webkit-border-radius: 0px 0px 5px 5px;
	   -moz-border-radius: 0px 0px 5px 5px;
			border-radius: 0px 0px 5px 5px;
}
.jcf-select-drop .jcf-select-drop-content .jcf-list-content li:first-child .jcf-option,
.jcf-select-drop.jcf-drop-flipped .jcf-select-drop-content {
	-webkit-border-radius: 5px 5px 0px 0px;
	   -moz-border-radius: 5px 5px 0px 0px;
			border-radius: 5px 5px 0px 0px;
}
.jcf-list {
    background: none;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4rem;
    position: relative;
}
.jcf-list .jcf-option {
    background: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4rem;
	padding: 5px 20px 5px 10px;
	white-space: normal;
}
.jcf-list .jcf-option:hover {
    background: #eee;
}
.jcf-select-form-select {
	border: 1px solid #ccc;
	margin: 0px;
	
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}
.jcf-select-form-select .jcf-selected {
	background: #000080!important;
	color: #fff!important;
}
/*  */
.jcf-radio {
	background: #fff;
	border: 1px #ccc solid;
	border-radius: 20px;
	display: inline-block;
	position: relative;
	cursor: default;
	margin: 0px 5px 0px 0px;
	height: 20px;
	vertical-align: top;
	width: 20px;

	-webkit-transition: all .2s linear;
			transition: all .2s linear;
}
.jcf-radio.jcf-focus {
	border-color: #000080;
	box-shadow: 0 0 4px #89bfef;
}

.jcf-radio.jcf-focus span {
	background: #000080;
}
.jcf-radio span {
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	background: #00aeef;
	border-radius: 20px;
	display: none;
}

.jcf-radio .jcf-disabled {
	background: none !important;
}

.jcf-radio .jcf-disabled:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #f1f1f1;
	border-radius: 100%;
}

.jcf-radio .jcf-disabled span {
	background: #c7c7c7;
}

.jcf-radio input[type="radio"] {
	position: absolute;
	height: 100%;
	width: 100%;
	border: 0;
	margin: 0;
	left: 0;
	top: 0;
}

.jcf-radio.jcf-checked span {
	display: block;
}

.jcf-checkbox {
	background: #fff;
	border: 1px #ccc solid;
	border-radius: 5px;
	cursor: default;
	display: inline-block;
	height: 20px;
	margin: 0px 5px 0px 0px;
	position: relative;
	vertical-align: top;
	width: 20px;

	-webkit-transition: all .2s linear;
			transition: all .2s linear;
}

.jcf-radio + label,
.jcf-checkbox + label{
	cursor: pointer;
	position: relative;
	top: -3px;
}

.jcf-radio.jcf-disabled + label,
.jcf-checkbox.jcf-disabled + label{
	cursor: default;
}

/*
.jcf-checkbox.jcf-focus {
	border-color: #000080;
	box-shadow: 0 0 4px #89bfef;
}

.jcf-checkbox.jcf-focus span {
	border-color: #000080;
}
*/

.jcf-checkbox span {
	position: absolute;
	height: 6px;
	width: 10px;
	top: 50%;
	left: 50%;
	margin: -7px 0 0 -6px;
	border: 1px solid #00aeef;
	border-width: 0 0 2px 2px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	display: none;
}

.jcf-checkbox.jcf-disabled span {
	border-color: #00aeef;
}

.jcf-checkbox input[type="checkbox"] {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 0;
	margin: 0;
	left: 0;
	top: 0;
}

.jcf-checkbox.jcf-checked span {
	display: block;
}

:root .jcf-checkbox span {
	margin: -4px 0 0 -5px;
}

.jcf-label-active {
	font-weight: 800;
}

.jcf-button {
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	border: 1px solid #777;
	background: #fff;
	margin: 0 10px 10px 0;
	padding: 5px 10px;
}

.jcf-button .jcf-real-element {
	position: absolute;
	min-height: 100%;
	min-width: 100%;
	outline: none;
	opacity: 0;
	padding: 0;
	margin: 0;
	border: 0;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}

.jcf-file {
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	background: none;
}

.jcf-real-element{outline: none;}

.jcf-file .jcf-real-element {
	position: absolute;
	font-size: 200px;
	height: 200px;
	margin: 0;
	right: 0;
	top: 0;
}

.jcf-file .jcf-fake-input {
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: top;
	overflow: hidden;
	border: 1px solid #fff;
	border-radius: 4px 0 0 4px;
	padding: 5px 15px;
	line-height: 30px;
	color: #fff;
	background: rgba(255, 255, 255, .05);
	height: 43px;
	width: 270px;
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}

.jcf-file:hover .jcf-fake-input {
	color: #6fa0cb;
	border-color: #6fa0cb;
}

.mac .columns-holder .column .jcf-file .jcf-fake-input {
	padding: 7px 15px 3px;
}

.jcf-file.jcf-disabled {
	background: none !important;
}

.jcf-file.jcf-disabled .jcf-fake-input {
	color: #fff;
}
.jcf-file.jcf-disabled:hover .jcf-fake-input {
	border-color: #fff;
}
.jcf-file .jcf-upload-button {
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
	overflow: hidden;
	border-radius: 0 4px 4px 0;
	margin: 0 0 0 -2px;
	padding: 7px 16px;
	line-height: 30px;
	color: #0078a4;
	height: 43px;
	background: rgba(255, 255, 255, .9);
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}

/* SCROLLABLE */
.jcf-scrollable-wrapper {
	position: relative;
}
.jcf-scrollbar-vertical {
	position: absolute;
	cursor: default;
	background: rgba(255, 255, 255, .3);
	border-radius: 4px;
	width: 10px;
	bottom: 0;
	right: 0px;
	top: 0;
}
.jcf-select-drop-content .jcf-scrollbar-vertical .jcf-scrollbar-dec:before,
.jcf-select-drop-content .jcf-scrollbar-vertical .jcf-scrollbar-inc:before {
	color: #00aeef;
}

.jcf-scrollbar-vertical .jcf-scrollbar-dec,
.jcf-scrollbar-vertical .jcf-scrollbar-inc {
	position: absolute;
	display: none;
	height: 5px;
	width: 10px;
	left: 0;
	top: 0px;
}

.jcf-scrollbar-vertical .jcf-scrollbar-dec:before,
.jcf-scrollbar-vertical .jcf-scrollbar-inc:before {
	content: "\e606";
	display: block;
	height: 5px;
	width: 10px;
	font-size: 5px;
	color: #fff;
	font-family: "icomoon";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity: .5;
}

.jcf-scrollbar-vertical .jcf-scrollbar-inc {
	top: auto !important;
	bottom: 0px;
}

.jcf-scrollbar-vertical .jcf-scrollbar-inc:before {
	content: "\e605";
}

.jcf-select-drop-content .jcf-scrollbar-vertical .jcf-scrollbar-handle {
	background: #5aaab6;
}

.jcf-select-drop-content .jcf-scrollbar-vertical .jcf-scrollbar-slider {
	background: #cfe5e8;
	border-radius: 4px;
}

.jcf-scrollbar-vertical .jcf-scrollbar-handle {
	background: rgba(255, 255, 255, .71);
	height: 1px;
	border-radius: 4px;
	width: 10px;
	max-height: 100%;
}

.jcf-scrollbar-vertical .jcf-scrollbar-slider {
	height: 100% !important;
}

.jcf-scrollbar-horizontal {
	position: absolute;
	background: #e3e3e3;
	right: auto;
	top: auto;
	left: 0;
	bottom: 0;
	width: 1px;
	height: 10px;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-dec,
.jcf-scrollbar-horizontal .jcf-scrollbar-inc {
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	background: #fff;
	height: 10px;
	width: 10px;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-inc {
	left: auto;
	right: 0;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-slider {
	display: inline-block;
	position: relative;
	height: 10px;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-handle {
	position: absolute;
	background: #888;
	height: 10px;
}

.jcf-scrollbar.jcf-inactive .jcf-scrollbar-handle {
	visibility: hidden;
}

.jcf-scrollbar.jcf-inactive .jcf-scrollbar-dec,
.jcf-scrollbar.jcf-inactive .jcf-scrollbar-inc {
	background: #e3e3e3;
}

/* FOCUS */
.jcf-focus,
.jcf-focus * {
	border-color: #000080!important;
	color: #000080!important;
}