

.list {
    margin: 0 auto;
    width: 600px;
}

.list-create {
    margin-bottom: 10px;
    width: calc(100% - 2px);
    border: 1px solid #B3FCE6;
    height: 50px;
    position: relative;
}

.list-create > label {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.list-create > label > img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.list-create > label > svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.list-create > .text {
    width: calc(100% - 50px);
    height: 100%;
    float: left;
}

.list-create > .text > input {
    width: 100%;
    height: 100%;
    font-size: 18px;
    text-indent: 60px;
}

.list-create > .text > input::placeholder {
    color: #0088FF;
}

.list-create > .button {
    width: 50px;
    height: 50px;
    float: left;
    position: relative;
}

.list-create > .button > .icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    left: 10px;
}



.list-items {
    width: 100%;
}

.list-item {
    margin-bottom: 4px;
    width: calc(100% - 2px);
    height: 40px;
    border: 1px solid #B3FCE6;
}

.list-item > .image {
    margin: 5px;
    width: 30px;
    height: 30px;
    float: left;
    position: relative;
}

.list-item > .image > .image-view {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


.list-item > .image > svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.list-item > .text {
    width: calc(100% - 80px);
    height: 100%;
    font-size: 16px;
    text-indent: 10px;
    line-height: 40px;
    float: left;
}

.list-item > .text:hover {
    color: #0088FF;
}

.list-item > .button {
    width: 40px;
    height: 40px;
    float: left;
    position: relative;
}

.list-item > .button > .icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
}

