.move_me_wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.move_me_wrap .move_me {
    position: absolute;
    /* this isn't needed, and firefox can't handle it anyway */
    /* transition: .1s all;*/
}
.move_me {
    width: 600px;
    height: 200px;
    display: inline-block;
    background-color: gray;
    vertical-align: top;
}






.move_me_wrap.thumb-slider {
    height: 300px;
}
.move_me_wrap.thumb-slider .move_me {
    width: auto;
    height: 300px;
    display: inline-block;
    font-size: 0px;
    overflow: hidden;
    white-space: nowrap;
}
.move_me_wrap.thumb-slider .thumb {
    width: 200px;
    height: 300px;
    background-color: #2196f3;
    display: inline-block;
    white-space: nowrap;
}
.move_me_wrap.thumb-slider .thumb:nth-child(odd) {
    background-color: #3da7fa;
}
.move_me_wrap.thumb-slider .thumb > div {
    
}

.flex-type .move_me_wrap.thumb-slider {
    height: auto;
}
.flex-type .move_me_wrap.thumb-slider .move_me {
    display: inline-flex;
    flex-direction: row;
    position: relative;
    height: auto;
}
.flex-type .move_me_wrap.thumb-slider[dir="rtl"] .move_me {
    flex-direction: row-reverse;
    text-align: left;
}
.flex-type .move_me_wrap.thumb-slider .thumb {
    height: auto;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    font-size: 22px;
    background-color: silver;
}
.flex-type .move_me_wrap.thumb-slider .thumb:nth-child(odd) {
    background-color: gray;
}
.flex-type .move_me_wrap.thumb-slider .thumb > div {
    padding-bottom: 150%;
    height: auto;
}