.afisha-vidget {
    padding: 10px;
    /*background: #ffffff;*/
    color: #828282;
    /*box-shadow: 0 5px 15px 0 rgb(0 0 0 / 10%);*/
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    overflow: hidden;
}
.afisha-vidget__title {
    text-align: center;
}
.afisha-vidget__link {
    color: #428bca;
    font-family: -apple-system, 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
}
.afisha-vidget__title:hover .afisha-vidget__link {
    color: #ff0000;
    text-decoration: none;
}
.afisha-mini {
    position: relative;
    width: 260px;
    height: 233px;
    margin: 5px auto;
    transform-style: preserve-3d;
}
.afisha-mini__item {
    position: absolute;
    display: none;
    width: 160px;
    height: 220px;
    background-image: url('/images/Rectangle.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    box-shadow: 0 4px 8px 1px rgba(0, 0, 0, .25);
}
.afisha-mini__item:nth-child(1) {
    display: block;
    left: 18%;
    animation: item-1 10s ease infinite;
    -webkit-animation: item-1 10s ease infinite;
}
.afisha-mini__item:nth-child(2) {
    display: block;
    left: 0;
    animation: item-2 9s ease infinite;
    -webkit-animation: item-2 9s ease infinite;
}
.afisha-mini__item:nth-child(3) {
    display: block;
    right: 0;
    animation: item-3 8s ease infinite;
    -webkit-animation: item-3 8s ease infinite;
}

@keyframes item-1 {
    0%, 100% {
        transform: translate3d(2px,-2px,1px);
        -webkit-transform: translate3d(2px,-2px,1px);
        -moz-transform: translate3d(2px,-2px,1px);
        -ms-transform: translate3d(2px,-2px,1px);
        -o-transform: translate3d(2px,-2px,1px);
}
    50% {
        transform: translate3d(-2px,2px,1px);
        -webkit-transform: translate3d(-2px,2px,1px);
        -moz-transform: translate3d(-2px,2px,1px);
        -ms-transform: translate3d(-2px,2px,1px);
        -o-transform: translate3d(-2px,2px,1px);
}
}
@keyframes item-2 {
    0%, 100% {
        transform: translate3d(-2px,2px,0px) scale(.9);
        -webkit-transform: translate3d(-2px,2px,0px) scale(.9);
        -moz-transform: translate3d(-2px,2px,0px) scale(.9);
        -ms-transform: translate3d(-2px,2px,0px) scale(.9);
        -o-transform: translate3d(-2px,2px,0px) scale(.9);
}
    50% {
        transform: translate3d(2px,-2px,0px) scale(.9);
        -webkit-transform: translate3d(2px,-2px,0px) scale(.9);
        -moz-transform: translate3d(2px,-2px,0px) scale(.9);
        -ms-transform: translate3d(2px,-2px,0px) scale(.9);
        -o-transform: translate3d(2px,-2px,0px) scale(.9);
}
}
@keyframes item-3 {
    0%, 100% {
        transform: translate3d(2px,2px, -1px) scale(.8);
        -webkit-transform: translate3d(2px,2px, -1px) scale(.8);
        -moz-transform: translate3d(2px,2px, -1px) scale(.8);
        -ms-transform: translate3d(2px,2px, -1px) scale(.8);
        -o-transform: translate3d(2px,2px, -1px) scale(.8);
}
    50% {
        transform: translate3d(-2px,2px,-1px) scale(.8);
        -webkit-transform: translate3d(-2px,2px,-1px) scale(.8);
        -moz-transform: translate3d(-2px,2px,-1px) scale(.8);
        -ms-transform: translate3d(-2px,2px,-1px) scale(.8);
        -o-transform: translate3d(-2px,2px,-1px) scale(.8);
}
}