.btn-primary {
  border: 1px solid #DF4133;
  padding: 16px 48px;
  background-color: #FFF;
  color: #DF4133;
  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-primary:disabled {
  border: 1px solid #DF4133;
  padding: 16px 48px;
  background-color: #BDBDBD;
  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;
  border-color: #BDBDBD;
  cursor: default;
}
@media all and (max-width: 767px) {
  .btn-primary:disabled {
    padding: 16px 48px;
  }
}
.btn-primary:disabled:hover {
  color: #FFF;
  background-color: #BDBDBD;
  cursor: default;
}
.btn-primary:hover {
  color: #FFF;
  background-color: #DF4133;
}

.btn-small {
  border: 1px solid #DF4133;
  padding: 16px 48px;
  background-color: #FFF;
  color: #DF4133;
  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;
  font-size: 12px;
  white-space: nowrap;
}
@media all and (max-width: 767px) {
  .btn-small {
    padding: 16px 48px;
  }
}
.btn-small:disabled {
  border: 1px solid #DF4133;
  padding: 16px 48px;
  background-color: #BDBDBD;
  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;
  border-color: #BDBDBD;
  cursor: default;
}
@media all and (max-width: 767px) {
  .btn-small:disabled {
    padding: 16px 48px;
  }
}
.btn-small:disabled:hover {
  color: #FFF;
  background-color: #BDBDBD;
  cursor: default;
}
.btn-small:hover {
  color: #FFF;
  background-color: #DF4133;
}

.btn-secondary {
  border: 1px solid #DF4133;
  padding: 16px 48px;
  background-color: transparent;
  color: #BDBDBD;
  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;
  border-color: #BDBDBD;
}
@media all and (max-width: 767px) {
  .btn-secondary {
    padding: 16px 48px;
  }
}
.btn-secondary:hover {
  color: #000;
}

.save-popup, .price-popup, .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;
}
.save-popup .container, .price-popup .container, .calculator-success .container {
  align-items: center;
  justify-content: center;
}
.save-popup .container .inner, .price-popup .container .inner, .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) {
  .save-popup .container .inner, .price-popup .container .inner, .calculator-success .container .inner {
    width: 100%;
  }
}
.save-popup .container .inner .close, .price-popup .container .inner .close, .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;
}
.save-popup .container .inner .inner-wrap, .price-popup .container .inner .inner-wrap, .calculator-success .container .inner .inner-wrap {
  height: 100%;
  overflow-y: auto;
  max-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.save-popup .container .inner .inner-wrap .wrap, .price-popup .container .inner .inner-wrap .wrap, .calculator-success .container .inner .inner-wrap .wrap {
  margin-top: 16px;
  text-align: center;
}
.save-popup .container .inner .inner-wrap .message, .price-popup .container .inner .inner-wrap .message, .calculator-success .container .inner .inner-wrap .message {
  color: #DF4133;
  margin-bottom: 16px;
  display: none;
}
.save-popup .container .inner .inner-wrap .heading, .price-popup .container .inner .inner-wrap .heading, .calculator-success .container .inner .inner-wrap .heading {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.save-popup .container .inner .inner-wrap .heading::after, .price-popup .container .inner .inner-wrap .heading::after, .calculator-success .container .inner .inner-wrap .heading::after {
  content: "";
  width: 56px;
  height: 1px;
  background-color: #DF4133;
  margin-top: 16px;
}
.save-popup .container .inner .inner-wrap .input-wrap, .price-popup .container .inner .inner-wrap .input-wrap, .calculator-success .container .inner .inner-wrap .input-wrap {
  border-top: none;
  width: 400px;
}
@media all and (max-width: 767px) {
  .save-popup .container .inner .inner-wrap .input-wrap, .price-popup .container .inner .inner-wrap .input-wrap, .calculator-success .container .inner .inner-wrap .input-wrap {
    width: 100%;
  }
}