/* Main order container */
.success_container {
  padding-top: 70px;
  padding-bottom: 70px;
  height: 100vh;
  position: relative;
}

/* Order header container */
.success_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header logo */
.success_header a:first-child img {
  width: 125px;
  height: 40px;
}

/* Block icon */
.success_header a:last-child img {
  width: 22px;
  height: 22px;
}

/* Success div */
.success_div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Successful payment message */
.success_div .body3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Success image */
.success_div > img {
  margin-bottom: 40px;
}

/* Success title */
.success_div > .h2 {
  color: var(--green1);
  margin-bottom: 9px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  /* Main order container */
  .success_container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 767px) {
  /* Main order container */
  .success_container {
    padding: 50px 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  /* Header logo */
  .success_header a:first-child img {
    width: 94px;
    height: 30px;
  }

  /* Block icon */
  .success_header a:last-child img {
    width: 16px;
    height: 16px;
  }

  /* Order header container */
  .success_header {
    margin-bottom: 50px;
  }

  /* Success div */
  .success_div {
    position: unset;
    transform: unset;
  }

  /* Success image */
  .success_div > img {
    height: 60px;
    width: 60px;
    margin-bottom: 30px;
  }

  /* Success title */
  .success_div > .h2 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  /* Successful payment message */
  .success_div .body3 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
  }

  /* Go back to user profile button */
  #success-go-back {
    height: 45px;
    width: 310px;
  }
}
