﻿.wt-list {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.wt-list-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    height: 75px;
    padding: 0px 20px;
    border-radius: 8px;
    cursor: pointer;
    background-color: #fff;
}

    .wt-list-item:hover {
        background-color: rgba(251,244,212,.5);
    }

.wt-list-item-cell.content {
    width: 80%;

}

.wt-list-item-cell.check {
    width: 20%;
}