#comments>#c {
    position: initial;
    height: auto;
}

#c>.item {    
    opacity: 0;
    text-align: center;
    transition: 1s opacity;
}

#c .active {
    opacity: 1;
}

/*=============================================
MEDIA QUERIES
=============================================*/

@media (min-width: 576px) {   
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {  
    
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    #comments>#c {
        position: relative;
        height: 350px;
    }

    #c>.item {
        position: absolute;        
    }
    
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  
   
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 
   
}