:root {
  --blank-value: 80px;
}

.success {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}
.success__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 90px 155px 130px 155px;
  width: 100%;
  max-width: 1280px;
  height: calc(100vh - 260px);
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}
.success__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  width: 100%;
}
.success__item svg {
  margin: 0 0 30px 0;
}
.success__item h1 {
  width: 100%;
  max-width: 205px;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 35.2px;
  line-height: 2.2rem;
  font-weight: 600;
  text-align: center;
}
.success__item__button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0 0;
  width: 100%;
  max-width: 200px;
  height: 46px;
  background-color: white;
  border: 1px solid #dbdddf;
  color: #181818;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-weight: 600;
  transition: background-color 0.4s, color 0.4s;
  cursor: pointer;
  text-decoration: none;
}
.success__item__button:hover {
  background-color: #bdc7d1;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  :root {
    --blank-value: 50px;
  }
  .success__container {
    flex-direction: column-reverse;
    align-items: center;
    padding: 67px;
    border: 0;
  }
}
@media only screen and (max-width: 639px) {
  .success__container {
    padding: 67px 24px 67px 24px;
  }
}