.loader {
    display: none;
    position: fixed;
    z-index: 9999999;
    background: #ffffffd1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
  }
  .loader.on{
    transition: 1s;
    display: flex;
  }

  .successOrder {
    display: flex;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .successOrder h1 {
  color: #88B04B;
  font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
  font-weight: 900;
  font-size: 40px;
  }
  .successOrder p {
  color: #404F5E;
  font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
  font-size:20px;
  margin: 0;
  }
  .successOrder i {
    color: #9ABC66;
    font-size: 100px;
    background: var(--custom-color-2);
    padding: 0 51.8px;
    border-radius: 100%;
  }
  .successOrder > div {
    background: var(--custom-color-5);
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 2px 3px #C8D0D8;
    display: inline-block;
    margin: 0 auto;
  }
  
  