.app {
  width: 100%;
  height: 100%;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding-inline: 16px;
  background: #ffffff;

  .header-opt {
    display: flex;
    align-items: center;
  }

  .header-logo {
    > img {
      width: 65px;
      height: 24px;
    }
  }

  .btn {
    padding: 5px 12px;
    height: 28px;
    background: #3274f9;
    border-radius: 3px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    color: #ffffff;
    line-height: 18px;
    cursor: pointer;
  }

  .more-icon {
    font-size: 16px;
    margin-left: 17px;
  }
}

.app-footer {
  background: #171a27;
  padding: 21px 30px;
  .app-footer-content {
    .app-footer-item {
      margin-bottom: 16px;
      .app-footer-item-title {
        font-weight: 400;
        font-size: 10px;
        color: #ffffff;
        line-height: 11px;
      }
      .app-footer-item-menu {
        margin-top: 10px;
        >a,
        >p {
          font-weight: 400;
          font-size: 10px;
          color: #999999;
          line-height: 11px;
        }
        >p:not(:first-child) {
          margin-top: 4px;
        }
      }
      .app-footer-item-menu.dir-row {
        display: flex;
        gap: 30px;
      }
    }
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .app-footer-copyright {
    text-align: center;
    margin-top: 16px;
    >p {
      font-weight: 400;
      font-size: 10px;
      color: #666666;
      line-height: 8px;
    }
    >p:not(:first-child) {
      margin-top: 7px;
    }
  }
}

.root-popover {
  color: var(--adm-color-text);
  position: absolute;
  /* top: 0; */
  /* left: 0; */
  z-index: 99999;
  white-space: normal;
  text-align: left;
  cursor: auto;
  user-select: text;
  animation: none;
}

.root-popover-hidden {
  display: none;
}

.app-product-popover {
  position: absolute;
  top: 46px;
  right: 24px;
}

.app-product-popover-inner {
  background: #ffffff;
  box-shadow: 0px 5px 14px 4px rgba(0, 0, 0, 0.05),
    0px 3px 8px 0px rgba(0, 0, 0, 0.08), 0px 2px 3px -2px rgba(0, 0, 0, 0.12);
  border-radius: 4px;

  .product-list {
    padding-block: 10px;
  }

  .product-item {
    display: block;
    padding: 15px 30px 15px 16px;
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.88);
    line-height: 16px;
  }

  .product-item.active {
    color: #3576fa;
  }
}
