/* List */
li.changeItem.defaultList {
    width: 100%;
    padding: 0;
}
li.changeItem.defaultList a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    padding: 15px;
    position: relative;
    align-items: center;
    text-decoration: none;
    border-top: solid 1px #000000;
    padding-right: 10px;
    cursor: pointer;
}
li.changeItem.defaultList:last-child a {
    width: 100%;
    border-bottom: solid 1px#000000;
}
li.changeItem.defaultList a:hover {
    background: #fafafa;
}

