@keyframes PopUpIn {
  from {
    height: 0;
  }
}

@keyframes PopUpOut {
  to {
    height: 0;
  }
}

@keyframes PopUpOpacityIn {
  from {
    opacity: 0;
  }
}

@keyframes PopUpOpacityOut {
  to {
    opacity: 0;
  }
}

.#{$ns}PopUp {

  // Jay
  &.round {
    border-radius: 13px 13px 0 0;
  }

  #amis-action-sheet-btn-wrapper.action-sheet-btn-wrapper {
    border-bottom: 2px solid #f2f2f2;
    text-align: center;

    &:nth-child(1) {
      padding-top: 5px;
    }

    &.is-touch {
      background-color: #f6f6f6;
    }

    .#{$ns}Button--default,
    .#{$ns}Button--link {
      color: #3b3b3b;
    }

    .#{$ns}Button--default,
    .#{$ns}Button--primary {
      background-color: transparent;
    }

    .#{$ns}Button--primary {
      color: var(--link-color);
    }

    .#{$ns}Button {
      display: flex;
      justify-content: center;
      width: 100%;
      // padding: 12px 0;
      height: 48px; // Aug 使用pading无法统一高度，直接设置height
      border: none;
      border-radius: 0;
      font-size: 15px;
      align-items: center;
      font-weight: 600;
    }
  }

  // Jay
  // width: 100%;
  // height: px2rem(400px);
  width: 100vw;
  height: auto;

  position: fixed;
  background: var(--PopOver-bg);
  left: 0;
  bottom: 0;
  z-index: $zindex-top;
  padding: 0;
  margin: 0;
  font-weight: var(--fontWeightNormal);
  letter-spacing: normal;
  line-height: var(--lineHeightBase);
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: var(--fontSizeBase);
  box-shadow: var(--boxShadow);
  border: var(--borderWidth) solid var(--borderColor);
  border-radius: var(--borderRadius);
  overflow: hidden;

  &.in,
  &.out {
    animation-duration: var(--animation-duration);
    animation-fill-mode: both;
  }

  &.in {
    animation-name: PopUpIn;

    .#{$ns}PopUp-overlay {
      animation-name: PopUpOpacityIn;
    }
  }

  &.out {
    animation-name: PopUpOut;

    .#{$ns}PopUp-overlay {
      animation-name: PopUpOpacityOut;
    }
  }

  &-inner {
    position: relative;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
    background: var(--saas-main-bg);
    display: flex;
    flex-direction: column;
    border-radius: 13px 13px 0 0;
  }

  &-closeWrap {
    position: relative;
    text-align: center;
    height: px2rem(48px);
    line-height: px2rem(48px);
  }

  &-closeWrap &-close {
    position: absolute;
    z-index: 1;
    color: var(--icon-color);
    cursor: pointer;
    top: px2rem(15px);
    right: px2rem(15px);
  }

  &-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: px2rem(60px);
  }

  &-title {
    font-size: var(--fontSizeMd);
  }

  &-cancel {
    color: var(--PopUp-cancelAction-color);
    margin-left: var(--gap-sm);
  }

  &-confirm {
    margin-right: var(--gap-sm);
    line-height: 1;
  }

  &-content {
    overflow-y: auto;
    height: 100%;
    display: flex;
    flex: 1;

    &::-webkit-scrollbar {
      width: 0;
    }
  }

  &-scroll {
    display: block;
    max-height: 90vh;
  }

  &>* {
    position: relative;
    z-index: 2;
  }

  &-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    animation-duration: var(--animation-duration);
    animation-fill-mode: both;
  }

  &--leftBottomLeftTop {
    margin-top: px2rem(4px);
  }

  &--leftTopLeftBottom {
    margin-top: px2rem(-4px);
  }

  &-safearea {
    height: px2rem(32px);
  }
}

.#{$ns}TplPop {
  .ant-popover-inner {
    border-radius: 6px;
  }

  .ant-popover-title {
    border-bottom: none;
    padding: 12px 12px 6px;

    .#{$ns}Title-tplPop {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: var(--saas-Title-Text);
      font-weight: 600;
    }
  }

  .ant-popover-content {
    .ant-popover-inner-content {
      padding: 5px 12px;
      font-size: 13px;
      color: var(--saas-Title-Text);

      .#{$ns}PlainField {
        padding: 5px;
        background-color: var(--saas-Background-Header);
      }

      .#{$ns}TplPopover {
        background-color: var(--saas-Background-Header);
        margin-right: 0;
        width: 476px;
        height: 214px;
      }

      .#{$ns}Footer-tplPop {
        text-align: right;
        margin-top: 5px;
        margin-bottom: 8px;
      }

      .#{$ns}Footer-tplPop-top,
      .#{$ns}Footer-tplPop-bottom,
      .#{$ns}Footer-tplPop-left,
      .#{$ns}Footer-tplPop-right {
        position: absolute;
      }

      .#{$ns}Footer-tplPop-bottom,
      .#{$ns}Footer-tplPop-top {
        left: 0;
        right: 0;
        height: 2px;
      }

      .#{$ns}Footer-tplPop-right,
      .#{$ns}Footer-tplPop-left {
        top: 0;
        bottom: 0;
        width: 2px;
      }

      .#{$ns}Footer-tplPop-top {
        top: 0;
        cursor: n-resize;
      }

      .#{$ns}Footer-tplPop-bottom {
        bottom: 0;
        cursor: s-resize;
      }

      .#{$ns}Footer-tplPop-left {
        left: 0;
        cursor: e-resize;

      }

      .#{$ns}Footer-tplPop-right {
        right: 0;
        cursor: w-resize;
      }
    }
  }

  @include media-breakpoint-down(sm) {
    .ant-popover-content {
      .ant-popover-inner-content {
        width: 300px;

        .#{$ns}TplPopover {
          width: 276px;

          p {
            min-width: auto
          }
        }
      }
    }
  }
}

@include media-breakpoint-down(sm) {
  .#{$ns}PopUp {
    height: 100%;
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;

    &-inner {
      // height: 60%;
      height: 60vh;
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
    }

    &-overlay {
      height: 100%;
      top: auto;
      bottom: 2px;
    }

    &-closeWrap {
      height: 60px;
      display: flex;
      align-items: center;


      .#{$ns}TransferDropDown-header {
        padding: 0 16px;
        font-size: 16px;
        color: var(--saas-Title-Text);
        text-align: left;
        font-weight: 500;
        overflow: hidden;

        .#{$ns}PopUp-content-title {
          white-space: nowrap;
          font-size: 14px;
          color: rgba(0, 0, 0, 0.4);
          text-align: center;
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden;

          span {
            display: inline-block;
          }

          .#{$ns}PopUp-content-name {
            flex: 1;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
          }

          .#{$ns}PopUp-content-size {
            white-space: nowrap;
            overflow: hidden;
          }
        }
      }

      .#{$ns}PopUp-cancel-danger {
        border: none;
        color: red;
        font-size: 16px !important;
        background: transparent;
        box-shadow: unset;
        
        &:not(:disabled):not(.is-disabled):hover {
          color: red;
          background: transparent;
          box-shadow: unset;
        }
      }

      &-icon {
        width: 24px;
        height: 24px;
        display: inline-block;
        border-radius: 50%;
        background: var(--them-bg-color);
        font-size: 16px;
        color: var(--saas-Title-Text);
        position: absolute;
        top: 0.9375rem;
        right: 12px;
        z-index: 1;

        .#{$ns}PopUp-close {
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 12px;
          color: var(--saas-Title-Text);
        }
      }
    }

    &-popOverHeat {
      border-bottom: 1px solid var(--them-bg-color);
    }

    &-content {
      position: relative;
      overflow-y: hidden;

      .#{$ns}TransferDropDown-content {
        height: 100%;
        overflow-y: hidden;

        .#{$ns}Transfer-search {
          padding-top: 0;

          .#{$ns}InputBox {
            border: none;
            background: var(--saas-Background-Header);
            border-radius: 6px;
            height: 44px;
            align-items: center;
            font-size: 15px;
            input {
              color: var(--saas-font-size-black);
            }
            .#{$ns}Transfer-SeachCancel {
              display: inline-block;
              width: 16px;
              height: 16px;
              background: rgba(0, 0, 0, 0.26);
              color: #fff;
              font-size: 10px;
              border-radius: 50%;

              svg {
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
              }
            }

            >svg {
              top: 0;
              font-size: 14px;
              height: 22px;
              width: 22px;
              color: #DCDCDC;
            }
          }

          .#{$ns}InputBox.is-focused {
            border-color: transparent;
            box-shadow: none;
          }
        }


        .#{$ns}GroupedSelection {
          max-height: none;
          overflow-y: auto;
          flex: 1;
          padding: 0;

          &::-webkit-scrollbar {
            width: 0px;
            height: 0;
          }

          >.#{$ns}GroupedSelection-group {
            >.#{$ns}GroupedSelection-itemLabel {
              background: var(--them-bg-color);
              border-radius: 0px 6px 6px 0;
              padding-left: 16px;
              height: 32px;
              width: 98%;
              font-size: 15px;
              color: var(--saas-Secondary-Text);
              border-color: transparent;
            }
          }

          .#{$ns}GroupedSelection-item {
            height: 44px;
            font-size: 16px;
            color: var(--saas-Title-Text);
            display: flex;
            align-items: center;
            padding: 0 16px;
            position: relative;
            overflow: hidden;

            &:hover {
              background-color: transparent;
            }

            &::before {
              content: "";
              position: absolute;
              width: 100%;
              height: 1px;
              border-bottom: 1px solid var(--saas-Border-Dividers);
              bottom: 0;
            }

            &:nth-last-child(1) {
              &::before {
                border-bottom: 1px solid transparent;
              }
            }
          }

          .#{$ns}GroupedSelection-item.is-active {
            color: var(--saas-Primary-Color);

            .#{$ns}GroupedSelection-itemLabel {
              display: flex;
              align-items: center;
              justify-content: space-between;
            }
          }
        }

        .#{$ns}TableSelection {
          padding: 0 16px;
          max-height: none;

          .#{$ns}Table-content {
            border: none;
            overflow: auto;
            height: 100%;

            &::-webkit-scrollbar {
              width: 0 !important;
              height: 0 !important;
            }

            .#{$ns}Table-table {
              border: none;

              tr {
                .#{$ns}Table-checkCell {
                  padding: 0;
                  height: 100%;
                  z-index: 4;

                  .#{$ns}Checkbox {
                    i {
                      width: 22px !important;
                      height: 22px !important;
                      border-radius: 50%;
                      z-index: 1;
                    }
                  }
                }

                th {
                  height: 44px;
                }

                td {
                  padding: 0 0 0 10px;

                  >span {
                    display: block;
                    height: 44px;
                    line-height: 44px;
                  }
                }
              }

              thead {
                tr {

                  th {
                    background: none;
                    border: none;
                    font-size: 16px !important;
                    color: var(--saas-Title-Text);
                    font-weight: 600;
                    border-bottom: var(--borderWidth) solid var(--borderColor);
                  }

                  th {
                    position: sticky;
                    top: 0;
                    padding-left: 10px;
                    background-color: #fff;
                    z-index: 3;
                  }

                  .#{$ns}Table-sticky {
                    left: 29px;
                    z-index: 4;
                    padding-left: 2px;
                  }

                  th:nth-child(1) {
                    left: -1px;
                    width: 30px;
                    z-index: 4;
                    padding-right: 6px;
                    padding-left: 2px;
                  }
                }
              }

              tbody {
                tr {

                  td {
                    font-size: 16px !important;
                    text-align: left;
                  }

                  .#{$ns}Table-sticky {
                    position: sticky;
                    left: 29px;
                    background-color: #fff;
                    z-index: 2;
                    padding-right: 6px;
                    padding-left: 2px;
                    // text-align: center;
                  }

                  td:nth-child(1) {
                    min-width: 30px;
                    left: -1px;
                  }
                }

                tr.is-active {
                  color: var(--saas-Primary-Color);
                }
              }
            }
          }
        }

        .#{$ns}ChainedSelection-isModle {
          flex-direction: column;

          .#{$ns}ChainedSelection-Tabs {
            .ant-tabs {
              .ant-tabs-nav {
                margin: 0;
                padding: 0 16px;

                .ant-tabs-nav-wrap {
                  .ant-tabs-nav-list {
                    .ant-tabs-tab {
                      font-size: 15px;
                      color: var(--saas-Title-Text);
                      padding: 6px 0;
                    }
                  }
                }
              }
            }
          }

          .#{$ns}ChainedSelection-Checked {
            display: flex;
            flex-wrap: nowrap;
            flex: 1;
            overflow: hidden;
            position: relative;

            .#{$ns}ChainedSelection-col {
              min-width: 100%;
              overflow: auto;

              &::-webkit-scrollbar {
                width: 0;
                height: 0;
              }

              .#{$ns}ChainedSelection-item {
                height: 44px;
                font-size: 16px;
                color: var(--saas-Title-Text);
                display: flex;
                align-items: center;
                padding: 0 16px;
                position: relative;
                overflow: hidden;

                &:hover {
                  background-color: transparent;
                }

                &::before {
                  content: "";
                  position: absolute;
                  width: 100%;
                  height: 1px;
                  border-bottom: 1px solid var(--them-bg-color);
                  bottom: 0;
                }

                &:nth-last-child(1) {
                  &::before {
                    border-bottom: 1px solid transparent;
                  }
                }

                .#{$ns}Checkbox {
                  i {
                    width: 22px !important;
                    height: 22px !important;
                    border-radius: 50%;
                    z-index: 1;
                  }
                }
              }

              .#{$ns}ChainedSelection-item.is-active {
                color: var(--saas-Primary-Color);

                .#{$ns}ChainedSelection-itemLabel {
                  display: flex;
                  align-items: center;
                  justify-content: space-between;
                }
              }
            }

            .#{$ns}ChainedSelection-Content {
              position: sticky;
              right: 0;
              top: 0;
              min-width: 33%;
              height: 100%;
              border-left: 1px solid var(--them-bg-color);
              background-color: #fff;
              overflow-y: scroll;

              &::-webkit-scrollbar {
                width: 0;
                height: 0;
              }

              .#{$ns}ChainedSelection-value {
                height: 44px;
                font-size: 16px;
                color: var(--saas-Secondary-Text);
                padding: 0 13px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                position: relative;

                .#{$ns}ChainedSelection-label {
                  flex: 1;
                  @include ellipsis();
                }

                .#{$ns}ChainedSelection-Icon {
                  width: 17px;
                  height: 17px;
                  display: inline-block;
                  border-radius: 50%;
                  font-size: 16px;
                  background-color: #fff;
                  z-index: 1;
                  color: #e6e8eb;

                  .anticon {
                    vertical-align: top;
                  }
                }
              }
            }
          }

          .#{$ns}ChainedSelection-Multiple {
            .#{$ns}ChainedSelection-col {
              .#{$ns}ChainedSelection-item {
                min-width: calc(100% - 33%);
                max-width: calc(100% - 33%);
              }
            }
          }
        }

        .#{$ns}TreeSelection {
          max-height: none;

          &::-webkit-scrollbar {
            width: 0 !important;
            height: 0 !important;
          }

          .#{$ns}TreeSelection-sublist {
            &::before {
              left: -15px;
            }
          }

          .#{$ns}TreeSelection-item {
            &::before {
              top: 21px;
              left: -14px;
            }

            .#{$ns}TreeSelection-itemInner {
              padding: 0 12px;
              height: 44px;
              .#{$ns}Table-expandBtn {
                width: 25px;
                height: 25px;

                .icon {
                  width: 14px;
                  height: 14px;
                }
              }

              .#{$ns}TreeSelection-itemLabel {
                height: 32px;
                line-height: 32px;
                font-size: 16px;
                color: var(--saas-Title-Text);
              }

              .#{$ns}Checkbox {
                i {
                  width: 22px !important;
                  height: 22px !important;
                  border-radius: 50%;
                  z-index: 1;
                }
              }
            }
          }
        }
      }

      .#{$ns}Tree {
        border-top: 1px solid var(--them-bg-color);

        .#{$ns}Tree-list {
          .#{$ns}Tree-item {

            .#{$ns}Tree-itemLabel {
              border-bottom: 1px solid #e7e7e7;

              .#{$ns}Tree-itemArrow {
                width: 25px;
                height: 25px;
                align-items: center;

                .icon {
                  width: 14px;
                  height: 14px;
                }
              }

              .#{$ns}Checkbox {
                i {
                  width: 22px !important;
                  height: 22px !important;
                  border-radius: 50%;
                  z-index: 1;
                }
              }

              .#{$ns}Tree-itemText {
                height: 44px;
                line-height: 44px;
                font-size: 16px;
                color: var(--saas-Title-Text);
                padding: 0;
              }
            }
          }
        }
      }

      .#{$ns}ImageControl-upload {
        height: 100%;
        display: flex;
        flex-direction: column;

        .#{$ns}ImageControl-upload-body {
          flex: 1;
          // padding: 24px 0 24px 8px;
          padding: 8px;

          .#{$ns}ImageControl-upload-url-input {
            display: flex;
            .add-url {
              flex: 1
            }
          }
          .#{$ns}ImageControl-upload-content {
            width: 100%;
            overflow: hidden;

            .#{$ns}ImageControl-upload-ul {
              overflow: auto;
              white-space: nowrap;

              &::-webkit-scrollbar {
                width: 0 !important;
                height: 0 !important;
              }

              .#{$ns}ImageControl-upload-li {
                display: inline-block;
                margin: 0 8px;
                width: 96px;
                height: 96px;
                border: 1px solid var(--them-bg-color);
                border-radius: 8px;
                overflow: hidden;
                color: var(--saas-Title-Text);
                img {
                  width: 100%;
                  height: 100%;
                }
              }

              .#{$ns}ImageControl-upload-li-pdf {
                display: inline-flex;
                flex-direction: column;
                align-items: center;
                justify-content: space-around;
                vertical-align: top;

                img, svg.icon {
                  width: 50px;
                  height: 50px;
                }

                .upload-li-pdf-name {
                  text-align: center;
                  display: -webkit-box;
                  -webkit-line-clamp: 2;
                  -webkit-box-orient: vertical;
                  text-overflow: ellipsis;
                  overflow: hidden;
                  white-space: wrap;
                  width: 100%;
                }
              }
            }
          }

        }

        .#{$ns}ImageControl-upload-button {
          display: flex;
          height: 150px;

          .#{$ns}ImageControl-button-icon {
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin: 0 12px;
            text-align: center;
            font-size: 13px;
            color: var(--saas-Title-Text);

            .ant-btn {
              width: 48px;
              height: 48px;
              font-size: 14px;
              border-radius: 8px;
              background: var(--them-bg-color);
              margin: 0 auto 4px;

              svg {
                font-size: 24px;
                fill: var(--saas-Title-Text)
              }

              svg.image {
                g {
                  path {
                    fill: rgb(24, 144, 255)
                  }
                }
              }

              .file {
                svg {
                  path {
                    fill: var(--saas-Placeholder-Text);

                    &:nth-child(2) {
                      fill: transparent
                    }
                  }

                }
              }
            }
          }
        }
      }

      .is-borderTop {
        border-top: 1px solid var(--saas-Border-Dividers);
      }

      .#{$ns}PopUp-content-BT {
        background: var(--them-bg-color);
        height: 100%;
        overflow: auto;

        &::-webkit-scrollbar {
          width: 0 !important;
          height: 0 !important;
        }

        .#{$ns}PopUp-content-Button {
          height: 54px;
          border-bottom: 1px solid #e7e7e7;
          font-size: 16px;
          color: var(--saas-Title-Text);
          background: #fff;

          .ant-btn {
            width: 100%;
            height: 100%;
          }

          &:nth-last-child(1) {
            border-bottom: none;
          }
        }
      }

      .#{$ns}DatePicker-shortcuts {
        background-color: transparent;
        overflow: auto;
        width: 100%;
        white-space: nowrap;

        &::-webkit-scrollbar {
          width: 0 !important;
          height: 0 !important;
        }

        .#{$ns}DatePicker-shortcut {
          height: 30px;
          line-height: 30px;
          color: var(--saas-Primary-Color);
          background-color: rgb(233, 246, 254);
          text-align: center;
          padding: 0 15px;
          border-radius: 4px;
          margin: 0 6px;
        }


      }

      .rdt {
        .rdtPicker {
          .#{$ns}PickerColumns {
            .#{$ns}PickerColumns-columns {
              .#{$ns}PickerColumns:nth-of-type(1) {
                min-width: 70px;
              }
            }
          }
        }
      }


    }

    &-footer {
      height: 44px;
      border-top: 1px solid #e7e7e7;
      display: flex;
      align-items: center;
      justify-content: right;
      padding: 0 16px;

      .#{$ns}TransferDropDown-footer {
        flex: 1;
        text-align: right;
      }

      .#{$ns}PopUp-content-Button {
        font-size: 16px;
        color: var(--saas-Title-Text);
        width: 100%;
        height: 54px;

        .ant-btn {
          width: 100%;
          height: 100%;
        }
      }
    }
  }

  .#{$ns}PopUp.#{$ns}TreeSelect-popup.isMobile.firstHide.updateChanged {
    height: 100%;
  }

  .#{$ns}PopUp.#{$ns}CalendarMobile-pop {
    background: transparent;

    .#{$ns}PopUp-inner {
      height: auto;
      top: 10%;
    }
  }

  .#{$ns}PopUp.#{$ns}TreeSelect-popup {
    height: 100%;

    .#{$ns}PopUp-inner {
      .#{$ns}PopUp-content {
        overflow: auto;
      }
    }
  }

  .#{$ns}PopUp.advanced_drawer_List_Action,
  .#{$ns}PopUp.#{$ns}Select-popup,
  .#{$ns}PopUp.#{$ns}Popup-ActionSheet {
    .#{$ns}PopUp-inner {
      position: relative;
      height: 100%;
    }
  }

  .#{$ns}PopUp.#{$ns}DatePicker-popup {
    height: 100vh;
    background: transparent;
  }

  .#{$ns}PopUp.#{$ns}DatePicker-mobile {
    .#{$ns}PopUp-inner {
      height: auto;
    }
  }

  .#{$ns}PopUp.#{$ns}Upload {
    .#{$ns}PopUp-inner {
      height: 390px;
    }
  }

  .#{$ns}PopUp.#{$ns}ImgButton {
    .#{$ns}PopUp-inner {
      height: 300px;
    }
  }

  .#{$ns}PopUp.popOverClassName {
    .#{$ns}PopUp-inner {
      height: auto;
    }
  }

  .#{$ns}PopUp.#{$ns}ImgButtonremove {
    .#{$ns}PopUp-inner {
      height: 130px;
    }
  }

  .#{$ns}PopUp.tabs-content-tiled-actions {
    height: 260px !important;
  }

  .#{$ns}PopUp.pop-rotate {
    width: 100vh;
    height: 54px !important;
    transform: rotate(90deg);
    left: calc(-50vh + 27px);
    bottom: calc(50vh - 27px);
    overflow: visible;
    border: 0;

    .#{$ns}PopUp-overlay {
      width: 100vh;
      height: 100vw;
      top: calc(54px - 100vw) !important;
      right: 0 !important;
    }

    .#{$ns}PopUp-inner {
      border-radius: 0;

      .#{$ns}PopUp-content {
        >div {
          display: flex;
          justify-content: flex-end;
          align-items: center;
          height: 100%;
          padding: 0 16px;

          .action-sheet-btn-wrapper {
            padding: 0 !important;
            border: none !important;
            margin-left: 12px;
          }

          .#{$ns}Button {
            width: unset;
            height: 32px !important;
            font-size: 14px !important;
          }
        }
      }
    }

    .#{$ns}PopUp-safearea {
      display: none;
    }
  }
}
