.thumbify-outer {
    overflow: hidden;
    position: relative;
}

.thumbify-stage {
    overflow: hidden;
    max-height: 420px;
}

.thumbify-item{
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
	height: auto;
}
.thumbify-navigator-container {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 16px;
    z-index: 100;
}
.thumbify-navigator {
       margin: auto;
    min-width: 30px;
    text-align: center;
    display: table;
    height: 8px;
    padding: 4px;
    bottom: 8px;
    background-color: #fff;
    -ms-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.thumbify-navigator-step {
       position: relative;
    display: table-cell;
    width: 15px;
    height: 8px;
}
.thumbify-navigator-step:after {
    content: "";
    position: absolute;
    top: 0;
    left: 18%;
    display: block;
    width: 8px;
    height: 8px;
    background-color: #d8d8d8;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.thumbify-navigator-step.active:after {
    background-color: #ff7100;
}

