.custom-border {
  border: 1px solid rgb(220, 220, 220);
  border-radius: 1%;
}
/* Reset default margin and padding */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

/* Ensure the body takes up full height */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "HelveticaNeue", "Helvetica Neue", Arial, sans-serif;
  margin: auto;
}
.container {
  margin-top: 48px;
  width: 673px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 80%;

  .icon {
    width: 117px;
    height: 117px;
    margin-top: 48px;
  }

  .zero-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin-bottom: 48px;

    .heading {
      font-size: 32px;
      font-weight: 500;
      line-height: 40px;
      margin-top: 24px;
    }

    .description {
      margin-top: 16px;
      font-size: 14px;
      font-weight: 400;
      line-height: 22px;
      text-align: center;
      color: #54545c;
    }
    .supportPlaceHolder {
      font-weight: 400;
      font-size: 14px;
      color: #222222;
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      max-width: 100%;
      overflow-wrap: break-word;
    }
    .supportMailID {
      color: #1e8ae7;
      text-decoration: none;
    }
  }
}

/* Example content */
.content {
  text-align: center;
}

/* Header */
.header {
  display: flex;
  box-shadow: 0px 6px 8px 0px #0000001a;
  width: 100%;
  height: 64px;
  align-items: center;
  gap: 16px;
}
.header-logo {
  height: 23px;
  margin-left: 16px;
  cursor: pointer;
  width: 108px;
  background-size: contain;
  background-image: url(./images/Thermo-Fisher-logo.svg);
  background-repeat: no-repeat;
}
.branding {
  font-size: 14px;
  cursor: pointer;
  color: #2b2b30;
  font-weight: 400;
  line-height: 22px;
}
/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid rgb(220, 220, 220);
  background-color: #fff;
  color: #2b2b30;
  font-size: 12px;
  font-weight: 500;
  height: 24px;
  display: flex;
  gap: 12px;
  padding: 8px 32px 8px;
  align-items: center;

  .divider {
    width: 0px;
    height: 24px;
    border: 0.5px solid rgba(229, 229, 229, 1);
  }
  .footer-link {
    color: #1e8ae7;
    text-decoration: none;
  }
}

/* media queries for small devices 414px */
@media only screen and (max-width: 414px) {
  .footer {
    padding: 8px 16px 8px;
    font-size: 10px;
    height: 20px;
    gap: 8px;
  }
}
