
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

* {
  box-sizing: border-box;
}

.title {
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #0E254E;
}

.list {
  margin: 0 auto;
  width: 100%;
  max-width: 380px;
  user-select: none;
}
.list__item {
  transition: box-shadow 200ms ease-out, opacity 200ms ease-out;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  display: flex;
}
.list__item:not(:last-child) {
  margin-bottom: 7px;
}
.list__item.is-dragging {
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}
.list__item-content {
  width: calc(100% - 40px - 40px);
  padding: 10px 15px;
}
.list__item-title, .list__item-description {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list__item-title {
  font-size: 15px;
  color: #0E254E;
}
.list__item-description {
  font-size: 13px;
  color: #66748E;
}
.list__item-handle {
  position: relative;
  width: 40px;
  cursor: pointer;
}
.list__item-handle:before, .list__item-handle:after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 50%;
  height: 1px;
  background: #c2cada;
}
.list__item-handle:before {
  transform: translateY(-4px);
}
.list__item-handle:after {
  transform: translateY(4px);
}

.list__item-close {
  position: relative;
  width: 40px;
  cursor: pointer;
}
.list__item-close:after {
  content: "X";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 30%;
  height: 0px;
  background: #c2cada;
}
.list__item-close:after {
  transform: translateY(0px);
}

.list__item-close:hover {
  background-color: #f44336;
  color: white;
}

.triangle{
  position: absolute;
  top: 1px;
  right: 5px;
  cursor: default;
}

.add-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.99992 1.33325C4.31992 1.33325 1.33325 4.31992 1.33325 7.99992C1.33325 11.6799 4.31992 14.6666 7.99992 14.6666C11.6799 14.6666 14.6666 11.6799 14.6666 7.99992C14.6666 4.31992 11.6799 1.33325 7.99992 1.33325ZM7.33325 4.66658V7.33325H4.66658V8.66658H7.33325V11.3333H8.66658V8.66658H11.3333V7.33325H8.66658V4.66658H7.33325ZM2.66659 7.99992C2.66659 10.9399 5.05992 13.3333 7.99992 13.3333C10.9399 13.3333 13.3333 10.9399 13.3333 7.99992C13.3333 5.05992 10.9399 2.66659 7.99992 2.66659C5.05992 2.66659 2.66659 5.05992 2.66659 7.99992Z' fill='%23757575'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  cursor: pointer;
  color: transparent;
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  background-color: #ffffff;
}
