﻿.navigationWrapper {
    position: relative;
    width: 100%;
}

.imagePreviewNormal {
    display: inline-block;
    box-sizing: border-box;
    width: 62px;
    height: 80px;
    position: relative;
    max-width: 100%;
    border: 1px solid #e1e1e1;
    cursor: pointer;
    margin-right: 10px;
}

.imagePreviewNormal img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.imagePreviewActive {
    display: inline-block;
    box-sizing: border-box;
    width: 62px;
    height: 80px;
    position: relative;
    max-width: 100%;
    border: 2px solid #5c8baf;
    cursor: pointer;
    margin-right: 10px;
}

.imagePreviewActive img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.keenSlider {
    overflow: hidden;
    position: relative;
    display: flex;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.keenSlider_slide {
    overflow: hidden;
    position: relative;
}

@media (max-width: 640px) {
    .imagePreviewNormal {
        width: 40px;
        height: 60px;
    }

    .imagePreviewActive {
        width: 40px;
        height: 60px;
    }
}
