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

.root {
  display: flex;
  align-items: center;
  margin: 0 20px 15px 42px;
  height: 36px;
  line-height: 34px;
  padding: 0 15px;
  background: $egg;
  border-radius: 100px;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 16px;
}

.confirmDeleteModal {
  min-width: 260px;
  // height: 133px;

  .contentText {
    margin-top: 5px;
  }
  .cancelBtn {
    width: 70px;
    // height: 28px;
    border-radius: 100px;
    border: solid 1px $primary-color;
  }
}
.button {
  display: block;
  float: left;
}
.button:not(:last-child) {
  margin-right: 18px;
}
.closeBtn {
  margin-top: 10px;
  margin-right: 11px;
  text-align: right;
}
.svgBtn {
  position: relative;
  svg {
    vertical-align: middle;
  }
}
.svgFillIcon {
  path {
    fill: $primary-color;
  }
  &:hover {
    path {
      fill: $primary-color-highlight;
    }
  }
  &.disabled {
    path {
      fill: $coin;
    }
    a {
      cursor: not-allowed;
    }
  }
}
.unmarked {
  path {
    stroke: $primary-color;
  }
  &:hover {
    path {
      stroke: $primary-color-highlight;
    }
  }
  &.disabled {
    path {
      stroke: $coin;
    }
  }
}

.clickToSmsButton,
.clickToDialButton {
  font-size: 16px;
}
