/**
 * swapimagesonhover - v1.0.0 - 2018-04-16
 * https://github.com/chigozieorunta/swapimagesonhover
 *
 * Copyright (c) 2018 Chigozie Orunta
 * Licensed MIT <https://github.com/chigozieorunta/swapimagesonhover/blob/master/LICENSE>
 *
 * Updated (c) 2020 Alexey Grigoriev lelik1973@inbox.ru
 * @version 2.0.25
**/

.swim-container {
    display: block;
    position: relative;
}

.swim-container img {
    position: absolute;
    top: 0; left: 0;
}

.swim-container > img:first-child {
    opacity: 1;
    transition: all 0.5s;
    z-index: 100;
}

.swim-container:hover > img:first-child {
    opacity: 0;
    transition: all 0.5s;
}

/*img.swim.off {
    opacity: 0;
}

img.swim.on, img.swim.on.off{
    opacity: 1;
    transition: all 0.7s;
}
*/
/*img.swim {
    opacity: 1;
    transition: all 0.7s;
    
}

img.swim:hover {
    opacity: 1;
    transition: all 0.7s;
}*/
