.update-card-container {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  display: grid;
  place-items: center; }
  .update-card-container.hidden {
    display: none; }
  .update-card-container > div {
    min-height: 288px;
    background: white;
    width: 320px;
    padding: 42px;
    border-radius: 16px; }
    @media only screen and (min-width: 600px) {
      .update-card-container > div {
        width: 400px; } }
    .update-card-container > div header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px; }
      .update-card-container > div header h3 {
        font-weight: 500;
        font-size: 18px;
        margin: 0; }
      .update-card-container > div header button {
        height: fit-content;
        border: none;
        background: #eef1f6;
        padding: 7px; }
    .update-card-container > div p {
      font-style: normal;
      font-weight: 400;
      font-size: 15px;
      line-height: 25px;
      font-family: Averta-Regular; }
    .update-card-container > div .action-group {
      margin-top: 24px; }
    .update-card-container > div #action {
      width: 125px;
      height: 51px;
      border: 1px none #4b5563;
      border-radius: 4px;
      background: #000000;
      color: white;
      display: grid;
      place-items: center;
      text-decoration: none; }
      .update-card-container > div #action:hover {
        background: #4b5563; }
