.channel {
    width: 100%;
    margin: 0px auto;
}

.channel ul {
    padding: 0;
    list-style: none;
}

.channel li {
    width: 105px;
    height: 100px;
    text-align: center;
    display: inline-block;
    margin: 25px 2px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.channel li img {
    width: 100px;
    height: 65px;
}


.channel li div {
    display: table;
    height: 100%;
    width: 100%;
}

.channel li span {
    display: table-cell;
    vertical-align: middle;
}

.channel li:hover {
    background: #ddd;
}


/* Tooltip container */

.tool-tip {
    position: relative;
}


/* Tooltip text */

.tooltiptext {
    /*visibility: hidden;*/
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 50px;

    /* Position the tooltip text */
    /*position: absolute;
    z-index: 1;
    bottom: 110%;
    left: 50%;
    margin-left: -60px;*/
    /* Fade in tooltip */
    /* opacity: 0;
    transition: opacity 1s;*/
}


/* Tooltip arrow */


/*.tool-tip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}*/


/* Show the tooltip text when you mouse over the tooltip container */


/*.tool-tip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}*/