.main {
    width: 100%;
    /* padding-bottom: 100%; */
    background-color: #0f0f0f;
}

.reals-conatiner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.iframe-play {
    width: 315px;
    height: 520px;
    margin: 0 auto;
    background: #000;
}

.d-flex {
    display: flex;
}

.action-container {
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.action-container span {
    font-size: 13px;
    color: #fff;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2%;
    display: flex;
    flex-direction: column;
}

.btn-action {
    display: block;
}

.scroll-btn .btn-prev,
.button-container {
    margin-bottom: 1rem;
}

.scroll-btn .btn-prev,
.scroll-btn .btn-next,
.btn-action {
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
    background-color: #272727;
    color: #fff;
    border-radius: 50%;
}

.show-mobile {
    display: none;
}

.like.active,
.dislike.active {
    background-color: #1b79f5;
}

@media (max-width: 575.98px) {
    .main {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
    }

    .reals-conatiner {
        width: 100%;
        height: 100%;
    }

    .reals-content {
        width: 100%;
        height: 100%;
    }

    .iframe-play {
        width: 100%;
        height: 100%;
    }

    .action-container {
        position: absolute;
        top: 90%;
        right: 0;
        transform: translateY(-90%);
        padding: .3rem;
    }

    .btn-action {
        background-color: transparent;
        font-size: 25px;
    }

    .btn-next,
    .btn-prev {
        border: 1px solid #fff;
        line-height: 40px;
        font-size: 14px;
    }

    .scroll-btn {
        display: none;
    }

    .show-mobile {
        display: block;
    }
}