.hscroll-lite {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 20px;
    margin-bottom: -20px;
    overflow-x: scroll;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.hscroll-lite::-webkit-scrollbar {
    display: none;
}

.hscroll-lite:after {
    content: "|";
    display: block;
    opacity: 0;
}

@media screen and (min-width: 240px) {
    .hscroll-lite {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }

    .hscroll-lite > *:first-child {
        margin-left: 0.75rem;
    }

    .hscroll-lite:after {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 0.75rem;
        flex: 0 0 0.75rem;
    }
}

@media screen and (min-width: 360px) {
    .hscroll-lite {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .hscroll-lite > *:first-child {
        margin-left: 1rem;
    }

    .hscroll-lite:after {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 1rem;
        flex: 0 0 1rem;
    }
}

@media screen and (min-width: 480px) {
    .hscroll-lite {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
    }

    .hscroll-lite > *:first-child {
        margin-left: 1.25rem;
    }

    .hscroll-lite:after {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 1.25rem;
        flex: 0 0 1.25rem;
    }
}

@media screen and (min-width: 768px) {
    .hscroll-lite {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .hscroll-lite > *:first-child {
        margin-left: 1.5rem;
    }

    .hscroll-lite:after {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 1.5rem;
        flex: 0 0 1.5rem;
    }
}

.hscroll__block {
    height: 100%;
    overflow: hidden;
}

.hscroll__block .hscroll__track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 20px;
    margin-bottom: -20px;
    overflow-x: scroll;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.hscroll__block .hscroll__track::-webkit-scrollbar {
    display: none;
}

.hscroll__block .hscroll__track > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
}

.hscroll__block .hscroll__track > *:last-child {
    margin-right: 0 !important;
}

.hscroll__block.faded:before,
.hscroll__block.faded:after {
    content: " ";
    display: none;
    height: 100%;
    top: 0;
    position: absolute;
    z-index: 100;
    pointer-events: none;
}

.hscroll__block.faded:before {
    left: 0;
    -webkit-box-shadow: 0 0 24px #000000;
    box-shadow: 0 0 24px #000000;
}

.hscroll__block.faded:after {
    right: 0;
    -webkit-box-shadow: 0 0 24px #000000;
    box-shadow: 0 0 24px #000000;
}

.hscroll__block.faded.left-hidden:before {
    display: block;
}

.hscroll__block.faded.right-hidden:after {
    display: block;
}

.hscroll__block:not(.arrowed) .hscroll__arrow {
    display: none;
}

.hscroll.hscroll--w-arrows,
.hscroll.hscroll--w-pagination {
    position: relative;
    padding-bottom: 64px;
}

.hscroll__arrow {
    position: absolute;
    display: block;
    z-index: 999;
    bottom: 0;
    cursor: pointer;
}

.hscroll__arrow[disabled] {
    cursor: default;
}

.hscroll__arrow.hscroll__arrow--left {
    right: 40px;
}

.hscroll__arrow.hscroll__arrow--right {
    right: 0;
}

.hscroll__arrow--default {
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
    background-color: #ddd;
    color: #000;
    transition: background-color 100ms ease;
}

.hscroll__arrow--default[disabled] {
    opacity: 0.33;
}

.hscroll__arrow--default:not([disabled]):hover {
    background-color: #eee;
}

.hscroll__pagination {
    position: absolute;
    bottom: 0;
    left: 72px;
    right: 72px;
    display: flex;
    height: 32px;
    justify-content: center;
    align-items: center;
}

.hscroll__pagination > *:not(:first-child) {
    margin-left: 12px;
}

.hscroll__pagination span {
    display: block;
    height: 4px;
    width: 100%;
    max-width: 32px;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 100ms ease;
}

.hscroll__pagination span.active {
    background-color: #000;
}

.hscroll__pagination span:not(.active):hover {
    background-color: #eee;
}

.hscroll-placeholder > * {
    opacity: 0;
}