.btn-primary {
  border: none;
  padding: 16px 56px;
  background-color: #DF4133;
  color: #FFF;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  position: relative;
  text-transform: uppercase;
  transition: 200ms ease;
  font-weight: 500;
  cursor: pointer;
  line-height: normal;
  text-align: center;
}
@media all and (max-width: 767px) {
  .btn-primary {
    padding: 16px 48px;
  }
}

.btn-secondary {
  border: none;
  padding: 16px 56px;
  background-color: #DF4133;
  color: #FFF;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  position: relative;
  text-transform: uppercase;
  transition: 200ms ease;
  font-weight: 500;
  cursor: pointer;
  line-height: normal;
  text-align: center;
}
@media all and (max-width: 767px) {
  .btn-secondary {
    padding: 16px 48px;
  }
}

.calculator-success {
  display: none;
  position: fixed;
  justify-content: center;
  right: 0;
  width: 100%;
  top: 0;
  max-height: 100vh;
  height: 100%;
  z-index: 999999;
  align-items: center;
}
.calculator-success .container {
  align-items: center;
  justify-content: center;
}
.calculator-success .container .inner {
  padding: 48px 24px 24px;
  background-color: #FFF;
  height: 100%;
  position: relative;
  display: flex;
  max-height: 100vh;
  align-items: flex-start;
  justify-content: flex-end;
  max-width: 496px;
  width: 100%;
}
@media all and (max-width: 1200px) {
  .calculator-success .container .inner {
    width: 100%;
  }
}
.calculator-success .container .inner .close {
  position: absolute;
  height: 20px;
  width: 20px;
  top: 14px;
  cursor: pointer;
  background-image: url("../img/sidebar-close.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.calculator-success .container .inner .inner-wrap {
  height: 100%;
  overflow-y: auto;
  max-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.calculator-success .container .inner .inner-wrap .wrap {
  margin: 16px 0;
  text-align: center;
}
.calculator-success .container .inner .inner-wrap .message {
  color: #DF4133;
  margin-bottom: 16px;
  display: none;
}
.calculator-success .container .inner .inner-wrap .heading {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.calculator-success .container .inner .inner-wrap .heading::after {
  content: "";
  width: 56px;
  height: 1px;
  background-color: #DF4133;
  margin-top: 16px;
}
.calculator-success .container .inner .inner-wrap .input-wrap {
  border-top: none;
  width: 400px;
}
@media all and (max-width: 767px) {
  .calculator-success .container .inner .inner-wrap .input-wrap {
    width: 100%;
  }
}