@import '../../lib/commonStyles/colors.scss';

$avatarWidth: 38px;
$avatarMargin: 10px;

.confirmMergeModal {
  .contentText {
    font-weight: bold;

    span {
      font-weight: normal;
    }
  }

  .footer {
    display: none;

    .cancelBtn,
    .confirmBtn {
      display: none;
    }
  }

  .content {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 0;

    .avatar {
      width: $avatarWidth;
      margin-right: $avatarMargin;
    }
    .contentText {
      flex-grow: 1;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
      overflow: hidden;

      svg {
        width: 100%;
      }

      span {
        font-weight: normal;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: calc(100% - 39px);
      }
    }

    .webphoneButton {
      .mergeButton {
        width: 26px;
        circle {
          fill: $snow;
          stroke: $primary-color;
          stroke-width: 15px;
        }
        g,
        path {
          fill: $primary-color;
        }
      }
    }

    &::after {
      clear: both;
    }
  }
}
