input[type="checkbox"] {
  opacity: 0;
}

input[type="checkbox"]:checked + div {
  background-image: url(../../img/groupMember/checkmark-000.svg), -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background-image: url(../../img/groupMember/checkmark-000.svg), linear-gradient(to right, #fff, #fff);
}

.checkBox {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: solid 2px #eb6868;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background-image: linear-gradient(to right, #fff, #fff);
  background-size: contain, 100%;
}

.navbar_icon {
  margin-left: auto;
}

#todolist {
  font-weight: bold;
  font-size: 14px;
}

#todolist hr {
  border-top: 2px solid #eb6868;
  margin: 30px 0;
}

#todolist .title {
  color: #eb6868;
  font-size: 25px;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

#todolist .control-area {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

@media screen and (max-width: 576px) {
  #todolist .control-area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#todolist .control-area .control-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  font-size: 16px;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
  color: #eb6868;
  margin: 0 10px;
  padding: 10px 20px;
  margin-bottom: 20px;
  cursor: pointer;
}

#todolist .control-area .control-btn:last-child {
  margin-left: 0;
}

@media screen and (max-width: 576px) {
  #todolist .control-area .control-btn:last-child {
    margin-left: 10px;
  }
}

#todolist .tab-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
}

@media screen and (max-width: 576px) {
  #todolist .tab-area {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

#todolist .tab-area a {
  text-decoration: none;
}

#todolist .tab-area .tab {
  background-color: #fff;
  color: #999;
  text-align: center;
  padding: 13px 0;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin: 0 15px;
  width: 180px;
  font-size: 20px;
}

@media screen and (max-width: 576px) {
  #todolist .tab-area .tab {
    width: 100%;
    font-size: 18px;
    margin: 0 10px;
  }
}

#todolist .tab-area .tab.active {
  background-color: #eb6868;
  color: white;
}

#todolist .todolist {
  padding: 20px;
  margin: 20px 0 30px 0;
  border-radius: 16px;
  -webkit-box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 576px) {
  #todolist .todolist {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 20px 0;
  }
}

#todolist .todolist table {
  text-align: center;
  border-collapse: separate;
  border-radius: 8px;
  border-spacing: 0;
  line-height: 1.2;
  letter-spacing: 0;
}

#todolist .todolist table th,
#todolist .todolist table td {
  font-weight: bold;
  padding: 5px 0;
  vertical-align: inherit;
  border: solid 1px #eb6868;
}

#todolist .todolist table th:first-child,
#todolist .todolist table td:first-child {
  border-left: solid 2px #eb6868;
}

#todolist .todolist table th:last-child,
#todolist .todolist table td:last-child {
  border-right: solid 2px #eb6868;
}

#todolist .todolist table th a,
#todolist .todolist table td a {
  text-decoration: none;
  color: unset;
  white-space: nowrap;
}

#todolist .todolist table th {
  background-color: #eb6868;
  color: #fff;
  white-space: nowrap;
}

#todolist .todolist table thead tr th:first-child {
  border-top-left-radius: 5px;
}

#todolist .todolist table thead tr th:last-child {
  border-top-right-radius: 5px;
}

#todolist .todolist table tbody:nth-child(odd) {
  background-color: #f7e1dc;
}

#todolist .todolist table tbody:last-child tr td {
  border-bottom: solid 2px #eb6868;
}

#todolist .todolist table tbody:last-child tr td:first-child {
  border-bottom-left-radius: 5px;
}

#todolist .todolist table tbody:last-child tr td:last-child {
  border-bottom-right-radius: 5px;
}

#todolist .todolist table .btn {
  padding: 3px 10px;
  font-weight: bold;
  color: #eb6868;
  background: #fff;
  display: inline-block;
  border-radius: 4px;
  cursor: pointer;
  margin: 5px 0;
  font-size: 14px;
  white-space: nowrap;
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
}

#todolist .todolist .sort {
  display: inline-block;
  color: #fff;
  background-color: #999;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 25px;
  text-align: center;
}

#todolist .todolist .sort.replace {
  background-color: #f6993f;
}

#todolist .todolist .sort.sign {
  background-color: #56bdb7;
}

#todolist .job-list-mb {
  font-size: 16px;
  line-height: 1.4em;
}

#todolist .job-list-mb .card {
  border: solid 2px #eb6868;
  border-radius: 8px;
  -webkit-box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.2);
}

#todolist .job-list-mb .card + .card {
  margin-top: 20px;
}

#todolist .job-list-mb .card:nth-child(even) .tr {
  background-color: #f7e1dc;
  color: #eb6868;
}

#todolist .job-list-mb .card:nth-child(even) .tr:nth-child(even) {
  background-color: #fff;
  color: #000;
}

#todolist .job-list-mb .card:nth-child(even) .tr.btn-area {
  background-color: #fff;
}

#todolist .job-list-mb .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 2px #eb6868;
}

#todolist .job-list-mb .tr .td,
#todolist .job-list-mb .tr .th {
  text-align: center;
  width: 100%;
  padding: 5px;
}

#todolist .job-list-mb .tr:nth-child(odd) {
  background-color: #eb6868;
  color: #fff;
}

#todolist .job-list-mb .tr:nth-child(odd).middle-content {
  background-color: #fff;
  color: black;
  border-bottom: none;
}

#todolist .job-list-mb .tr .td:nth-child(2) {
  border-left: 2px solid #eb6868;
}

#todolist .job-list-mb .empty {
  border: none;
}

#todolist .job-list-mb .middle-content .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-style: solid;
  border-width: 0 2px 0 0;
  border-color: #eb6868;
}

#todolist .job-list-mb .middle-content .left .sort {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 26px;
}

#todolist .job-list-mb .middle-content .right {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

#todolist .job-list-mb .middle-content .right .tr:last-child {
  border-bottom: none;
}

#todolist .job-list-mb .collapse-content .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

#todolist .job-list-mb .collapse-content .btn-area .btn {
  padding: 2px 7px;
  font-weight: bold;
  color: #eb6868;
  background: #fff;
  display: inline-block;
  border-radius: 4px;
  cursor: pointer;
  margin: 5px;
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
}

#todolist .job-list-mb .collapse-btn-area {
  border-bottom: none;
}

#todolist .job-list-mb .collapse-btn-area .collapse_btn {
  width: 20px;
  height: 20px;
  border: solid 2px #82cbc6;
  border-radius: 50%;
  color: black;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#todolist .job-list-mb .collapse-btn-area .collapse_btn i {
  width: 100%;
  height: 16px;
  text-align: center;
  position: relative;
  right: -1px;
}

@media (max-width: 400px) {
  #todolist .job-list-mb .collapse-btn-area .collapse_btn i {
    top: 2px;
  }
}

#todolist .job-30-list-mb {
  font-size: 16px;
  line-height: 1.4em;
}

#todolist .job-30-list-mb .card {
  border: solid 2px #eb6868;
  border-radius: 8px;
  -webkit-box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.2);
}

#todolist .job-30-list-mb .card + .card {
  margin-top: 20px;
}

#todolist .job-30-list-mb .card:nth-child(even) .tr {
  background-color: #f7e1dc;
  color: #eb6868;
}

#todolist .job-30-list-mb .card:nth-child(even) .tr:nth-child(even) {
  background-color: #fff;
  color: #000;
}

#todolist .job-30-list-mb .card:nth-child(even) .tr.btn-area {
  background-color: #fff;
}

#todolist .job-30-list-mb .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 2px #eb6868;
}

#todolist .job-30-list-mb .tr .td,
#todolist .job-30-list-mb .tr .th {
  text-align: center;
  width: 100%;
  padding: 5px;
}

#todolist .job-30-list-mb .tr:nth-child(odd) {
  background-color: #eb6868;
  color: #fff;
}

#todolist .job-30-list-mb .tr:nth-child(odd).middle-content {
  background-color: #fff;
  color: black;
  border-bottom: none;
}

#todolist .job-30-list-mb .tr .td:nth-child(2) {
  border-left: 2px solid #eb6868;
}

#todolist .job-30-list-mb .middle-content .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-style: solid;
  border-width: 0 2px 0 0;
  border-color: #eb6868;
}

#todolist .job-30-list-mb .middle-content .left .sort {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 26px;
}

#todolist .job-30-list-mb .middle-content .right {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

#todolist .job-30-list-mb .middle-content .right .tr:last-child {
  border-bottom: none;
}

#todolist .job-30-list-mb .collapse-content .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

#todolist .job-30-list-mb .collapse-content .btn-area .btn {
  padding: 2px 25px;
  font-weight: bold;
  color: #eb6868;
  background: #fff;
  display: inline-block;
  border-radius: 4px;
  cursor: pointer;
  margin: 5px;
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
}

#todolist .job-30-list-mb .collapse-btn-area {
  border-bottom: none;
}

#todolist .job-30-list-mb .collapse-btn-area .collapse_btn {
  width: 20px;
  height: 20px;
  border: solid 2px #82cbc6;
  border-radius: 50%;
  color: black;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#todolist .job-30-list-mb .collapse-btn-area .collapse_btn i {
  width: 100%;
  height: 16px;
  text-align: center;
  position: relative;
  right: -1px;
}

@media (max-width: 400px) {
  #todolist .job-30-list-mb .collapse-btn-area .collapse_btn i {
    top: 2px;
  }
}

#todolist .duty {
  border-radius: 15px;
  padding: 0 30px;
  padding-bottom: 20px;
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  #todolist .duty {
    padding: 30px;
  }
}

#todolist .duty .collapse-btn-area {
  margin-top: 15px;
  border-bottom: none;
}

#todolist .duty .collapse-btn-area .collapse_btn {
  width: 20px;
  height: 20px;
  border: solid 2px #82cbc6;
  border-radius: 50%;
  color: black;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#todolist .duty .collapse-btn-area .collapse_btn i {
  width: 100%;
  height: 15px;
  text-align: center;
  position: relative;
  right: -1px;
}

@media (max-width: 400px) {
  #todolist .duty .collapse-btn-area .collapse_btn i {
    top: 2px;
  }
}

#todolist .duty .icon_rotate {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

#todolist .duty .todo_input .dateInput {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #C4C3C3;
  position: relative;
}

#todolist .duty .todo_input .dateInput input {
  text-align: center;
  padding-right: 32px;
}

#todolist .duty .todo_input .dateInput .icon {
  border: 2px solid #C4C3C3;
  margin-right: -2px;
  padding: 5px;
  position: absolute;
  right: 0;
  z-index: -1;
}

#todolist .duty .todo_input .right + .calendar_modle {
  right: 0 !important;
  left: unset !important;
}

#todolist .duty .todo_input .calendar_modle {
  width: 50vw;
}

@media (max-width: 576px) {
  #todolist .duty .todo_input .calendar_modle {
    width: 85vw;
  }
}

#todolist .duty .collapse-input {
  position: relative;
}

#todolist .duty .collapse-input .info {
  width: 100%;
  border: 2px solid #C4C3C3;
  color: #999999;
  font-size: 16px;
  font-weight: bold;
  padding: 7px 15px;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#todolist .duty .collapse-input .info .info-icon-top {
  margin: 0 5px;
}

#todolist .duty .collapse-input .info-icon {
  padding: 17px;
  border: 2px solid #C4C3C3;
  position: absolute;
  right: 0;
  top: 0;
}

#todolist .duty .collapse-input .info-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
  position: absolute;
  right: 12px;
  top: 15px;
}

#todolist .duty .title {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  #todolist .duty .title {
    font-size: 14px;
  }
}

#todolist .duty input {
  width: 100%;
  border: 2px solid #C4C3C3;
  font-size: 16px;
  font-weight: bold;
  padding: 2px 5px;
  padding-right: 0;
  letter-spacing: 1.8px;
  background-color: transparent;
}

@media (max-width: 576px) {
  #todolist .duty input {
    padding: 3px 10px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0;
  }
}

#todolist .duty .type_select {
  position: relative;
  padding-left: 0;
}

#todolist .duty .type_select::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
  position: absolute;
  top: 12px;
  right: 10px;
}

#todolist .duty .type_select select {
  width: 100%;
  font-size: 16px;
  position: relative;
  padding: 4px;
  border: 2px solid #C4C3C3;
  letter-spacing: 0;
}

@media (max-width: 576px) {
  #todolist .duty .type_select select {
    color: unset;
    font-size: 14px;
    padding: 5px;
  }
}

#todolist .duty .type_select .select-center {
  text-align: center;
  text-align-last: center;
}

#todolist .duty .type_select .select-center option {
  text-align: left;
}

#todolist .duty .search input {
  width: 100%;
  border: 2px solid #C4C3C3;
  color: #4D4D4D;
  font-size: 16px;
  font-weight: bold;
  padding: 3px 10px;
  letter-spacing: 1.8px;
}

@media (max-width: 576px) {
  #todolist .duty .search input {
    color: unset;
    text-align: center;
    letter-spacing: 0;
    padding: 3px 5px;
  }
}

#todolist .duty .search .dateInput {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #C4C3C3;
  position: relative;
}

#todolist .duty .search .dateInput input {
  text-align: center;
}

#todolist .duty .search .dateInput .icon {
  border: 2px solid #C4C3C3;
  margin-right: -1px;
  padding: 5px;
  position: absolute;
  right: 0;
  z-index: -1;
}

#todolist .duty .search .right + .calendar_modle {
  right: 0 !important;
  left: unset !important;
}

#todolist .duty .search .calendar_modle {
  width: 50vw;
}

@media (max-width: 576px) {
  #todolist .duty .search .calendar_modle {
    width: 85vw;
  }
}

#todolist .duty .btns .btn {
  background-color: #56bdb7;
  color: #fff;
  border-radius: 8px;
  margin: 30px 10px 20px 10px;
  min-width: 82px;
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

#todolist .duty .btns .btn .fa-search {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

#todolist .duty .btns .btn .fas {
  color: white;
  margin-right: 5px;
}

#todolist .duty .btns .btn.add-btn {
  margin: 0;
}

#todolist .duty .btns .btn.go-btn {
  margin: 0;
}

#todolist .duty .btns .btn:last-child:hover {
  color: #56bdb7;
}

#todolist .duty .btns .btn:first-child:hover {
  color: white;
}

#todolist .duty .btns .btn-outline {
  background-color: #fff;
  color: #56bdb7;
  border: solid 2px #56bdb7;
}

#todolist .duty .btns .btn-outline .fas {
  color: #56bdb7;
}

#todolist .ResultList, #todolist .ResultList-mb {
  font-size: 16px;
}

#todolist .ResultList .card, #todolist .ResultList-mb .card {
  font-weight: bold;
  border: solid 1px #ec6968;
}

#todolist .ResultList .card:first-of-type, #todolist .ResultList .card:last-of-type, #todolist .ResultList .card:not(:first-of-type):not(:last-of-type), #todolist .ResultList-mb .card:first-of-type, #todolist .ResultList-mb .card:last-of-type, #todolist .ResultList-mb .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 1px solid #ec6968;
  border-radius: 8px;
}

#todolist .ResultList .card:nth-child(even) .th, #todolist .ResultList-mb .card:nth-child(even) .th {
  background-color: #f7e1dc;
  color: #ec6968;
}

#todolist .ResultList .card:nth-child(even) .th.btnArea, #todolist .ResultList-mb .card:nth-child(even) .th.btnArea {
  background-color: #fff;
}

#todolist .ResultList .card .btnArea, #todolist .ResultList-mb .card .btnArea {
  background-color: #fff;
}

#todolist .ResultList .card .btnArea .btn, #todolist .ResultList-mb .card .btnArea .btn {
  font-size: 14px;
  padding: 5px 40px;
  font-weight: bold;
  color: #eb6868;
  background: #fff;
  display: inline-block;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
}

#todolist .ResultList a .card:nth-child(odd), #todolist .ResultList-mb a .card:nth-child(odd) {
  background-color: #eb6868;
}

#todolist .ResultList .label,
#todolist .ResultList .data, #todolist .ResultList-mb .label,
#todolist .ResultList-mb .data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 5px;
  line-height: 1.2;
}

#todolist .ResultList .label .start,
#todolist .ResultList .data .start, #todolist .ResultList-mb .label .start,
#todolist .ResultList-mb .data .start {
  position: relative;
}

#todolist .ResultList .label .start::after,
#todolist .ResultList .data .start::after, #todolist .ResultList-mb .label .start::after,
#todolist .ResultList-mb .data .start::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6.5px;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  right: -10px;
  top: 5px;
}

#todolist .ResultList .data, #todolist .ResultList-mb .data {
  border-right: 1px solid #ec6968;
}

#todolist .ResultList .data:last-child, #todolist .ResultList-mb .data:last-child {
  border-right: none;
}

#todolist .ResultList .th, #todolist .ResultList-mb .th {
  color: #fff;
  background-color: #ec6968;
  padding: 5px 0;
  border-bottom: 1px solid #ec6968;
}

#todolist .ResultList .td, #todolist .ResultList-mb .td {
  background-color: #fff;
  padding: 5px 0;
  border-bottom: 1px solid #ec6968;
}

#todolist .ResultList .collapse_btn, #todolist .ResultList-mb .collapse_btn {
  width: 20px;
  height: 20px;
  border: solid 2px #82cbc6;
  border-radius: 50%;
  color: black;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#todolist .ResultList .collapse_btn i, #todolist .ResultList-mb .collapse_btn i {
  width: 100%;
  height: 16px;
  text-align: center;
  position: relative;
  right: -1px;
}

@media (max-width: 400px) {
  #todolist .ResultList .collapse_btn i, #todolist .ResultList-mb .collapse_btn i {
    top: 2px;
  }
}

#todolist .ResultList .icon_rotate, #todolist .ResultList-mb .icon_rotate {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
/*# sourceMappingURL=todolist.css.map */