@charset "utf-8";
.dt-sc-image-flip img {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.dt-sc-image-flip {
    clear: both;
    float: left;
    width: 100%;
    position: relative;
}

.dt-sc-image-flip img:last-child {
    position: absolute;
    left: 0;
    top: 0;
}

.dt-sc-image-flip img:last-child {
    opacity: 0;
}

.dt-sc-image-flip:hover img:last-child {
    opacity: 1;
}

.dt-sc-image-flip:hover img:first-child {
    opacity: 0;
}

.aligncenter .dt-sc-image-flip img:last-child {
    right: 0;
    margin: auto;
}

@media only screen and (max-width:767px) {
    .dt-sc-image-flip {
        text-align: center;
    }
    .dt-sc-image-flip img {
        display: block;
        margin: 0 auto;
    }
    .dt-sc-image-flip img:last-child {
        right: 0;
    }
}