section.section {
    background-color: #333333 !important;
}

.h-60 {
    height: 60%!important
}

.h-70 {
    height: 70%!important
}

.h-75 {
    height: 75%!important
}

.h-80 {
    height: 80%!important
}

.h-90 {
    height: 90%!important
}

.scrollable {
    overflow: hidden;
    position: relative;
    width: 100%
}

.scrollable .scrollable-content {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 37px 0 0;
    overflow-x: hidden;
    overflow-y: scroll;
    outline: none
}

.scrollable .scrollable-content::-webkit-scrollbar {
    visibility: hidden
}

.scrollable .scrollable-pane {
    bottom: 0;
    opacity: .01;
    position: absolute;
    right: 5px;
    top: 0;
    transition: all .2s ease 0s;
    width: 4px
}

.scrollable .scrollable-slider {
    border-radius: 5px;
    background: none repeat scroll 0 0 #ccc;
    margin: 0;
    position: relative;
    transition: opacity .2s ease 0s;
    opacity: 0;
    color: #f00;
}

.scrollable.scrollable-padding .scrollable-content {
    padding: 10px 24px 10px 10px
}

.scrollable:hover .scrollable-slider,
.scrollable.visible-slider .scrollable-slider {
    opacity: 1
}

