carousel{
    width: auto;
    max-width: 720px;
    overflow-x: clip;
    display: block;
    position: relative;
}
carousel > .film{
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.25s ease-in;
    right: 0px;
}
carousel > .film > img{
    max-width: 720px;
    min-width: -webkit-fill-available;
    min-width: -moz-available;
}
carousel > .arrow{
    background-color: #0000005c;
    position: absolute;
    border-radius: 12px;
    top: calc(50% - 20px);
    color: #ffffff;
    padding: 10px;
    font-size: 18pt;
    cursor: pointer;
    width: 20px;
    text-align: center;
}
carousel > .arrow-left{
    content: "\f104";
    left: 20px;
}
carousel > .arrow-right{
    content: "\f105";
    right: 20px;
}
carousel > .map{
    position: relative;
    display: block;
    width: fit-content;
    margin: 10px auto 0px auto;
}
carousel > .map > .dots{
    width: 15px;
    height: 15px;
    border-radius: 40px;
    background-color: #8f8f8f;
    display: inline-block;
    margin: 0px 2px;
    transition: 0.25s ease-in;
    cursor: pointer;
}
carousel > .map > .current{
    width: 25px;
    background-color: #ccc;
    transition: 0.25s ease-in;
}