/* hide original element */
.jcf-hidden {
    display: block !important;
    position: absolute !important;
    left: -9999px !important; /* change to right: -9999px on RTL sites */
}
/* custom checkbox styles */
.chk-area {
    border: 1px solid #e4e4e4;
    margin: 0 10px 0 0;
    float: left;
    width: 20px;
    height: 20px;
}
.chk-checked {
    background: #fff;
    position: relative;
}
.chk-checked:after{
    position: absolute;
    left: 3px;
    top: -1px;
    content: "\f00c";
    font-family: 'FontAwesome';
    line-height: 20px;
    text-align: center;
    font-size: 13px;
    color: #5FC34C;
}
.chk-focus {
    border-color: #5FC34C;
}
.chk-disabled {
    background: #eee;
}
.jcf-label-disabled {
    color: #ccc;
}
/* custom radio styles */
.rad-area {
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    margin: 0 10px 0 0;
    float: left;
    width: 20px;
    height: 20px;
}
.rad-checked {
    background: #aaf;
    position: relative;
}
.rad-checked:after{
    position: absolute;
    left: 3px;
    top: -1px;
    content: "\f00c";
    font-family: 'FontAwesome';
    line-height: 20px;
    text-align: center;
    font-size: 13px;
    color: #5FC34C;
}
.rad-focus {
    border-color: #5FC34C;
}
.rad-disabled {
    background: #eee;
}
/* custom select styles */
.select-area {
    border: 1px solid #e5e8eb;
    position: relative;
    overflow: hidden;
    cursor: default;
    float: left;
    width: 100% !important;
    font-size: 20px;
    color: #B5B5B5;
    background-color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    height: 50px;
    text-align: left;
    line-height: 50px;
}
.select-focus {
    //border-color: #8cb2b8;
}
.select-area .center {
    white-space: nowrap;
    padding: 3px 10px;
}
.select-disabled {
    background: #eee;
}
.select-area .select-opener {
    background: #fff;
    position: absolute;
    height: 38px;
    width: 20px;
    right: 0;
    top: 0;
}
.select-area .select-opener:before{
    font-family: 'FontAwesome';
    font-size: 15px;
    color: #8cb2b8;
    left: 0;
    content: "\f107";
    position: absolute;
    left: 0;
    top: 0;
}
.select-options {
    position: absolute;
    overflow: hidden;
    background: #fff;
    z-index: 2000;
}
.select-options .drop-holder {
    border: 1px solid #C7C7C7;
    overflow: hidden;
    height: 1%;
    border-top: 0;
}
.select-options ul {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
}
.select-options ul li {
    width: 100%;
    float: left;
}
.select-options ul a {
    text-decoration: none;
    padding: 5px 10px;
    display: block;
    cursor: default;
    color: #000;
    height: 1%;
}
.select-options .item-selected a {
    text-decoration: none;
    background: #d7d7d7;
    color: #545454;
}
/* select options optgroup example styles */
.select-options .optgroup {
    clear: both;
}
.select-options .optgroup strong {
    display: block;
    padding: 5px;
}
.select-options .optgroup ul a {
    padding-left: 30px;
}
/* multiple select styles */
.select-multiple-area {
    border: 1px solid #777;
    clear: both;
}
.select-multiple-area .multiple-list{
    border: none;
    position: static;
}
.select-multiple-area .multiple-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.select-multiple-area .multiple-list li {
    margin: 0;
}
.select-multiple-area .multiple-list a:hover {
    text-decoration: none;
    background: #fff;
    color: #000;
}
.select-multiple-area .multiple-list a {
    display: block;
    cursor: default;
    padding: 5px;
    color: #000;
}
.select-multiple-area .multiple-list .item-selected a {
    background: #007;
    color: #fff;
}
.select-multiple-area .multiple-list .optgroup strong {
    display: block;
    padding: 5px;
}
.select-multiple-area .multiple-list .optgroup a {
    padding-left: 30px;
}
.select-disabled  .multiple-list .item-selected a {
    background: #777;
}
/* textarea example styles (optional) */
.text-block .control-wrapper {
    border: 1px solid #777;
    float: left;
}
.text-block textarea {
    font-size: 12px;
    width: 500px;
    height: 150px;
    float: left;
    border: 0;
    margin: 0;
    padding: 0;
}
/* custom file input */
.file-area .jcf-input-wrapper {
    position: relative;
    overflow: hidden;
    float: left;
}
.file-area .jcf-upload-button {
    border: 1px solid #e7e7e7;
    padding: 10px 15px;
    background: #777;
    color: #fff;
    float: left;
    height: 40px;
}
.file-area .jcf-fake-input {
    border: 1px solid #777;
    padding: 10px 15px;
    float: left;
    margin: 0 5px;
    width: 200px;
    height: 39px;
}
.file-disabled .jcf-upload-button {
    border-color: #eee;
    background-color: #eee;
    color: #777;
}
.file-disabled .jcf-fake-input {
    border-color: #eee;
    color: #aaa;
}
/* custom scrollbars styles */
.scrollable-area-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.scrollable-area-wrapper .hscrollbar,
.scrollable-area-wrapper .vscrollbar {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
}
.scrollable-area-wrapper .hscroll-left,
.scrollable-area-wrapper .vscroll-up,
.scrollable-area-wrapper .hscroll-right,
.scrollable-area-wrapper .vscroll-down {
    background: #777;
    width: 20px;
    height: 20px;
    float: left;
}
.scrollable-area-wrapper .hscroll-line,
.scrollable-area-wrapper .vscroll-line {
    background: #eee;
    width: 20px;
    float: left;
}
.scrollable-area-wrapper .hscroll-slider,
.scrollable-area-wrapper .vscroll-slider {
    background: #ccc;
    width: 20px;
    height: 20px;
}
.scrollable-area-wrapper .hscrollbar {
    position: static;
    height: 20px;
    top: auto;
}
.scrollable-area-wrapper .hscroll-line {
    height: 20px;
    width: auto;
}
