.c-swipe {
    overflow: hidden
}

.c-swipe-wrapper {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.c-swipe-item {
    width: 100%;
    height: 100%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.c-swipe-pagination {
    position: relative;
    height: 0
}

.c-swipe-pagination-bar {
    position: absolute;
    left: 0;
    right: 0;
    top: -15px;
    bottom: 0;
    height: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.c-swipe-pagination-item {
    display: block;
    width: 8px;
    height: 4px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 3px;
    transition: all .1s
}

.c-swipe-pagination-item.active {
    width: 20px;
    background-color: #48a3f1
}
