.story-card{
    width: 270px;
    height: 460px;
    border-radius: 5px;
    padding-bottom: 0;
    overflow: hidden;
}
.story-card__back{
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.story-card__content{
    border-radius: inherit;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    background: rgba(0, 0, 0, 0.2);
}
.story-card_no-title .story-card__content{
    background: rgba(0, 0, 0, 0);
}
/* Это для баннерной позиции */
/*
.story-card__content{
    background: rgba(0, 0, 0, 0) !important;
}
.story-card__lead{
    display: none;
}
*/
.story-card__lead{
    width: 100%;
    padding: 15px;
    position: absolute;
    top: 60%;
    bottom: 15px;
	text-align: center;
}
.story-card__title{
    text-transform: uppercase;
    font: 700 18px/22px 'Oswald', Arial, sans-serif;
    color: white;
}

.deck-card{
    transform: translate3d(0, 0, 0);
    will-change: transform;
}
.deck-card__body{
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    will-change: transform;
}

.deck-card_transition{
    transition: transform 0.6s ease;
}

.deck-card_current .deck-card__body{
    transform: translate3d(0, 0, 0);
}
.deck-card_next-1 .deck-card__body{
    transform: translate3d(10px, 10px, 0);
}
.deck-card_next-2 .deck-card__body,
.deck-card_next .deck-card__body{
    transform: translate3d(20px, 20px, 0);
}
.deck-card_drop .deck-card__body{

}

.deck{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.deck__list{
    position: relative;
}
.deck__list .deck-card{
    position: absolute;
    top: 0;
}
.deck__list .deck-card:first-child{
    position: relative;
}