  .toast {
    background-color: var(--darkBlue);
    display: flex;
    justify-content: space-between;
    width: fit-content;
    align-items: center;
    font-weight: var(--font-semiBold);
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: var(--border-sm);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .toast-position{
    position: fixed;
    bottom: 20px; 
    right:45%
  }

  .toast-msg {
    margin-right: 2rem;
  }
  
  .toast-btn {
    background-color: transparent;
    color: var(--white);
    margin-top: 0.2rem;
    font-size: 1.5rem;
  }

  .toast-btn:focus{
    color: var(--lightGrey);
  }
  