/* color variable for primary #00703c */
:root {
  --primary-color: #00703c;
  --secondary-color: #f0f0f0;
  --text-color: #333333;
}

.alert-message-box {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--secondary-color);

  .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem 0 6rem;
    display: grid;
    position: relative;

    button {
      position: absolute;
      top: 10px;
      right: 20px;
      background-color: transparent;
      border: none;
      font-size: 30px;
      line-height: 18px;
      cursor: pointer;
      display: none;
    }
  }
  .alert-message {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 30px;

    .heading {
      font-size: 24px;
      font-weight: 700;
      line-height: 1.2;
    }
  }
}

@media (max-width: 1000px) {
  .alert-message-box .container {
    padding: 0;
  }
}
