@bixi-blue-lighter: #E7F1FD;
@bixi-blue: #107cee;

.icon-actions {
  display: flex;
  justify-content: flex-end;
  padding-right: 24px;

  .btn-opt {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    padding: 0 16px 0 10px;
    color: @bixi-blue;
    line-height: 40px;
    background-color: @bixi-blue-lighter;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all .2s ease-in-out;

    &:hover {
      color: #fff;
      background: @bixi-blue;
    }
  }
}

.color-download {
  display: flex;
  justify-content: space-between;
  height: 100%;
  min-height: 100px;
  padding: 16px 16px 8px;
  overflow: hidden;
  .color-preview {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-right: 24px;
    border: 1px solid #f0f0f0;
    border-radius: 2px;
  }

  .color-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    .color-value {
      display: flex;
      flex-grow: 1;
      justify-content: space-between;
      color: #162a48;
      font-weight: 600;
      font-size: 18px;
      line-height: 1.5;
    }
    .color-detail {
      display: flex;
      border-radius: 2px;
      .command {
        flex-grow: 1;
        // width: 360px;
        padding: 5px 12px;
        overflow: hidden;
        color: #022f61;
        white-space: nowrap;
        text-overflow: ellipsis;
        border: 1px solid #f0f0f0;
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
      }
      .copy {
        display: flex;
        align-items: center;
        padding: 0 12px;
        color: #107cee;
        font-weight: 600;
        font-size: 12px;
        border: 1px solid #f0f0f0;
        border-left: none;
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.5, 0, 0.5, 1);
      }
    }
  }
}
