.comments-text-container{
    position: relative;
}
.fish-tank {
    position: absolute;
    display: flex;
    z-index: 1;
    justify-content: center;
    gap: 5rem;
    top: -12rem;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    padding-top: 5rem;
    width: 100%;
}
.right-fish{
    transform: translate(50%, 0%);
}
.left-fish{
    transform: translateX(-50%);
}
.left-fish, .right-fish {
    display: flex;
    position: relative;
}
.left-fish .fish{
    display: flex;
    background: url(../../../assets/img/svg/right-fish.svg);
    width: 253px;
    height: 120px;
    background-repeat: no-repeat;
}
.right-fish .fish{
    display: flex;
    background: url(../../../assets/img/svg/left-fish.svg);
    width: 302px;
    height: 103px;
    background-repeat: no-repeat;
}
.left-fish .bla{
    display: flex;
    background: url(../../../assets/img/svg/bla-right.svg);
    width: 79px;
    height: 66px;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}
.right-fish .bla{
    display: flex;
    background: url(../../../assets/img/svg/left-bla.svg);
    width: 57px;
    height: 63px;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}
.comments-mobile-text-container{
    display: flex;
    flex-direction: column;
    padding: 0 calc(var(--container-space)/ 2);
}
.btn-pass-wrapper{
    padding: 0 calc(var(--container-space)/ 2);
}
.comments-desktop-text-container{
    display: none;
}
.fish, .bla{
    opacity: 0;
}
.single .left-fish .fish{
    background: url(../../../assets/img/svg/grey-right-fish.svg) no-repeat;

}
.single .right-fish .fish{
    background: url(../../../assets/img/svg/grey-left-fish.svg) no-repeat;
}
.single .left-fish .bla{
    background: url(../../../assets/img/svg/grey-bla-left.svg) no-repeat;
}
.single .right-fish .bla{
    background: url(../../../assets/img/svg/grey-bla-right.svg) no-repeat;
}
.single .comments-text-container .btn-pass-wrapper{
    display: flex;
    width: 100%;
    justify-content: center;
}
.single .comments-text-container .btn-pass {
    cursor: pointer;
    color: var(--wp--preset--color--blanc);
    background-color: var(--wp--preset--color--rouge);
    border: 1px solid var(--wp--preset--color--rouge);
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 40px;
}
@media (min-width: 821px) {
    .fish-tank {
        position: relative;
        display: flex;
        z-index: 1;
        justify-content: center;
        gap: 5rem;
        top: initial;
        left: initial;
        transform: initial;
        overflow: visible;
        padding-top: 0;
        width: 100%;
    }
    .comments-mobile-text-container{
        display: none;
    }
    .comments-desktop-text-container{
        display: flex;
        flex-direction: column;
    }
    .comments-text-container .btn-pass-wrapper{
        display: flex;
        justify-content: center;
    }
    .comments-text-container{
        overflow: visible;
        padding: 0 calc(var(--container-space)* 2);
    }
    .single .comments-text-container{
        padding: 0;
    }
    .comment-fixed-text{
        margin: 0 calc(var(--container-space)* 2);
    }
    .comment-form{
        margin: 0 calc(var(--container-space)* 2);
    }

    .comment-fixed-text{
        margin:unset;
        padding-bottom: 0;
    }

    .comment-form{
       padding: 1em 4em;
    }
}