﻿.navigationWrapperTouch {
    position: relative;
    width: 100%;
}

.slideWrapperTouch {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 60px;
}

.imagePreviewNormalTouch {
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    max-width: 100%;
    border: 1px solid #e1e1e1;
    cursor: pointer;
}

.imagePreviewNormalTouch img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.imagePreviewActiveTouch {
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    max-width: 100%;
    border: 2px solid #5c8baf;
    cursor: pointer;
}

.imagePreviewActiveTouch img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 640px) {
    .slideWrapperTouch {
        height: 60px;
        width: 40px;
    }
}
