.auction_site .row {
    margin: 0 auto;
    justify-content: center;
    height: 500px;
    border: 1px solid;
    background-color: rgba(200, 200, 200, 0.5);
    width: 100%;
}

    .auction_site .row .item {
        display: none;
        height: calc(100% - 50px);
        width: 70%;
        position: relative;
        padding: 0;
        transition: width 2s;
    }

        .auction_site .row .item:hover {
            width: 100%;
        }

        .auction_site .row .item img {
            height: 100%;
            width: 100%;
        }

        .auction_site .row .item p {
            position: absolute;
            bottom: 5px;
            left: 5px;
            right: 5px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
            color: #fff;
            font-weight: 600;
        }

    .auction_site .row .number_site {
        display: flex;
        flex-wrap: nowrap;
        border-top: 1px solid;
        background-color: rgba(80, 80, 80, 0.8);
        width: 100%;
        height: 50px;
        justify-content: center;
    }

        .auction_site .row .number_site .number {
            cursor: pointer;
            height: 50px;
            width: 50px;
            display: flex;
            align-items: center;
            background-color: rgba(5, 4, 75, 0.85);
            color: white;
            border: 1px solid;
            justify-content: center;
        }

            .auction_site .row .number_site .number img {
                height: 100%;
                width: 100%;
            }

            .auction_site .row .number_site .number:hover {
                opacity: 0.7;
            }

.animated {
    animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both
}

.animatedFade {
    opacity: 0
}

@keyframes fadeLR {
    from {
        transform: translate3d(100px, 0, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes fadeLR {
    from {
        transform: translate3d(100px, 0, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.fadeLR {
    opacity: 0;
    animation-name: fadeLR;
    -webkit-animation-name: fadeLR;
}


@media only screen and (max-width: 768px) {
    @keyframes fadeLR {
        from {
            transform: translate3d(50px, 0, 0)
        }

        to {
            transform: translate3d(0, 0, 0);
            opacity: 1
        }
    }

    @-webkit-keyframes fadeLR {
        from {
            transform: translate3d(50px, 0, 0)
        }

        to {
            transform: translate3d(0, 0, 0);
            opacity: 1
        }
    }
}