.hover-img-add:after {
    content: "";
    display: table;
    clear: both;
}

.hover-img-add img {
    position: relative;
    display: none;
    top: 0;
    left: 0;
}

.hover-img-add img:first-child {
    display: block;
}

.tmb-wrap {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.tmb-wrap .tmb-wrap-table {
    display: flex;
    height: 100%;
    width: 100%;
    gap: 1px;
}

.tmb-wrap-table div {
    position: relative;
    opacity: 0;
    flex: 1;
}

.tmb-wrap-table div:after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    background-color: #ccc;
    bottom: 0;
    left: 0;
}

.tmb-wrap-table div.active:after {
    background-color: #333;
}

.tmb-wrap .tmb-wrap-table:hover div {
    opacity: 1;
}

.tmb-wrap-table div:first-child:last-child.active:after {
    background-color: transparent;
}