﻿/* filmstrip area */
.filmstrip-wrapper {
    position: relative;
}

.filmstrip-title {
    font-weight: bold;
    padding-left: 0.5rem;
    color: var(--color-text-dark);
}

.filmstrip-container {
    display: flex;
    overflow-x: scroll;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: transparent transparent;
}
    .filmstrip-container img {
        cursor: pointer;
    }
    .filmstrip-container.grabbing * {
        cursor: grabbing;
    }

.filmstrip-item {
    padding: 4px;
    flex: 0 0 auto;
    flex: 0 0 180px;
    text-align: left;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.filmstrip-arrow {
    top: 50%;
    border: 0;
    width: 48px;
    height: 48px;
    color: white;
    font-size: 24px;
    display: inherit;
    position: absolute;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    transform: translateY(-50%);
    font-family: Arial, sans-serif;
}
    .filmstrip-arrow.left {
        left: 0;
    }
    .filmstrip-arrow.right {
        right: 0;
    }
    .filmstrip-arrow[disabled] {
        opacity: 0.3;
    }

@media (min-width: 960px) {
    .filmstrip-item {
        flex: 0 0 calc(100% / 4);
    }
}

@media (min-width: 1260px) {
    .filmstrip-item {
        flex: 0 0 calc(100% / 5);
    }
}
