html,body{
    // -webkit-overflow-scrolling : touch !important;
    // overflow: auto !important;
    // height: 100% !important;
}

/* custom scrollbars styles */
.scroll-holder {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.c-dropdown.is-opened .scroll-holder{
    opacity: 1;
    visibility: visible;
}

.c-dropdown .scroll-holder .inner-scroll{
    max-height: 300px;
    overflow-y: auto;
    position: relative;
    border-bottom: 3px solid #30c6e2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 4px 4px;
}

.scroll-holder .inner-scroll .c-select{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.jcf-scrollable-wrapper {
    box-sizing: content-box;
    position: relative;
}

.jcf-scrollbar-vertical {
    position: absolute;
    cursor: default;
    background: #eee;
    width: 5px;
    bottom: 0;
    right: 0;
    top: 0;
    border-radius: 3px;
}

.jcf-scrollbar-vertical .jcf-scrollbar-dec,
.jcf-scrollbar-vertical .jcf-scrollbar-inc {
    background: #bbb;
    height: 14px;
    width: 14px;
    left: 0;
    top: 0;
    display: none;
}

.jcf-scrollbar-vertical .jcf-scrollbar-inc {
    top: auto;
    bottom: 0;
}

.jcf-scrollbar-vertical .jcf-scrollbar-handle {
    background: #cbcbcb;
    height: 1px;
    width: 5px;
    border-radius: 3px;
}

.jcf-scrollbar-horizontal {
    position: absolute;
    background: #e3e3e3;
    right: auto;
    top: auto;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 14px;

}

.jcf-scrollbar-horizontal .jcf-scrollbar-dec,
.jcf-scrollbar-horizontal .jcf-scrollbar-inc {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    background: #bbb;
    height: 14px;
    width: 14px;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-inc {
    left: auto;
    right: 0;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-slider {
    display: inline-block;
    position: relative;
    height: 14px;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-handle {
    position: absolute;
    background: #888;
    height: 14px;
}

.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;
}


/* common custom form elements styles */

.jcf-disabled {
    background: #ddd !important;
}

.jcf-focus,
.jcf-focus * {
    border-color: #f00 !important;
}