.move-to {
  &-wrapper {
    width: 500px;
  }

  &-header {
    font-size: 14px;
    margin: 0 40px 20px;
    font-weight: 600;
    color: #666666;
  }

  &-body {
    margin: 0 40px;

    &-tree {
      position: relative;
      background-color: #f6f6f6;
      width: 420px;
      height: 354px;
      margin-bottom: 2px;
      padding: 10px 0 0 10px;
      overflow-y: scroll;
    }

    &-new {
      @include align-center-both;
      width: 420px;
      height: 35px;
      background-color: #ffffff;
      border: solid 1px #bbbbbb;
      font-size: 13px;
      font-weight: 600;
      color: #666666;
    }
  }

  &-footer {
    display: flex;
    flex-direction: row-reverse;
    z-index: -1;
    padding-bottom: 25px;
    margin-top: 15px;

    &__cancel {
      @include button;
      color: $color-primary-text;
      margin-right: 20px;
    }
    &__move {
      @extend .move-to-footer__cancel;
      color: $color-accent-text;
      margin-right: 35px;
    }
  }

  &-folder-item {
    display: inline-flex;
    height: 30px;
    width: 100%;
    align-items: center;

    &-row {
      width: 420px;
      height: 30px;
      left: 0;
      position: absolute;
      &--selected{
        @extend .move-to-folder-item-row;
      }
      &:hover {
        @extend .move-to-folder-item-row;
        background-color: rgba(153, 153, 153, 0.1)
      }
    }

    &-wrapper {
      padding-left: 20px;
      width: 100%;

      &:first-child {
        padding-left: 0;
      }
    }

    &-icon {
      @include contents-folder-list;
      width: 19px;
      height: 15px;
      object-fit: contain;
      margin-left: 10px;
      float: left;

      &--selected {
        @extend .move-to-folder-item-icon;
        @include contents-folder-list-selected;
      }
    }

    &-arrow {
      background-image: none;
      @include size(12px, 18px);
      float: left;
    }

    &-arrow--opened {
      @include tree-arrow-opened;
      @include size(12px, 18px);
      z-index: 1;
      float: left;
    }

    &-arrow--closed {
      @include tree-arrow-closed;
      @include size(12px, 18px);
      z-index: 1;
      float: left;
    }

    &-name {
      margin-left: 10px;
      font-size: 13px;
      color: #333333;
      float: left;

      &--selected {
        @extend .move-to-folder-item-name;
        font-weight: 600;
        color: #2e3ab1;
      }

      &--opened {
        @extend .move-to-folder-item-name;
        font-weight: 600;
      }
    }
  }
}