.poster-wrapper{
    width: max-content;
    height: 350px;
    background: cadetblue;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    left: calc(-100% + calc(calc(100% - 1280px) * 1.5));
    transition: 0.5s;
}
.poster{
    height: 350px;
    width: 1280px;
    background: rgb(164, 255, 255);
    margin: 0 auto;
    float: left;
    background-size: cover !important;
    filter:brightness(0.3);
    transition: 0.2s;

}
.poster-con{
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 350px;
    user-select: none;
}
.poster-but{
    position: absolute;
    color: white;
    top: 125px;
    background: rgba(255, 255,255, 0.35);
    padding: 15px;
    border-radius: 500px;
    width: 30px;
    height: 30px;
    line-height: 20px;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
}
.poster-con:hover .poster-but{
    opacity: 1;
    transition: 0.3s;
}
.poster-left{
    left: 15px;
}
.poster-right{
    right: 15px;
    
}
.poster-left-con{
    position: absolute;
    width: calc(calc(100% - 1280px) / 2);
    height: 350px;
    left: 0px;
    cursor: pointer;
}
.poster-right-con{
    position: absolute;
    width: calc(calc(100% - 1280px) / 2);
    height: 350px;
    cursor: pointer;
    right: 0px;
}
.poster-but-con{
    
}
.poster-but-con:hover .poster-but{ 
    background: rgba(255, 255, 255, 0.5);
}
.poster-but svg g{
    fill: white;
}
.poster-but svg{
    height: 30px;
    width: 30px;
    fill: white;
}
.poster-active{
    filter:brightness(1);
}
.poster-dots{
    position: absolute;
    bottom: 0px;
    left: 0px;
    overflow: hidden;
    width: 100%;
}
.poster-dot{
    width: 7px;
    height: 7px;
    transition: 0.5s;
    float: left;
    background: rgb(180, 180, 180);
    cursor: pointer;
    border-radius: 100px;
}
.poster-dots-wrapper{
    margin: 4px auto;
    overflow: hidden;
    width: fit-content;
}
.poster-dot-active{
    background: white;
}
.poster-dot-wrapper{
    float: left;
    cursor: pointer;
    padding: 5px;
}