.invoices-leave-popup {
  position: fixed;
  display: none;
  inset: 0;
  z-index: 1001;
}

.invoices-leave-popup .backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.60);
  z-index: 0;
}

.invoices-leave-popup .close-btn {
  position: absolute;
  top: 2rem;
  right: 3rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-size: 2.4rem;
  background-color: #ffffff;
  color: var(--fourth-blue);
}

.invoices-leave-popup .popup-content {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 67rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 5.5rem 5rem;
  border-radius: 3.8rem;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding-left: calc(67rem * 0.35 + 5rem);
}

.invoices-leave-popup .popup-content .invoices-popup-image {
  position: absolute;
  left: calc(-65%);
  top: 0;
  height: 100%;
  width: 100%;
}

.invoices-leave-popup .popup-content .title {
  line-height: 125%;
  font-size: 4rem;
  color: var(--fourth-blue);
  margin-bottom: 1.6rem;
}

.invoices-leave-popup .popup-content .text {
  font-size: 1.6rem;
  line-height: 125%;
  text-align: left;
  color: var(--fifth-blue);
}

.invoices-leave-popup .popup-content .description {
  margin-bottom: 2.4rem;
}

.invoices-leave-popup .popup-content .btn-form {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 1.2rem 2.4rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 11.2rem;
  background-color: var(--fourth-blue);
  text-transform: uppercase;
  -webkit-transition: 0.1s ease-in background-color;
  -o-transition: 0.1s ease-in background-color;
  transition: 0.1s ease-in background-color;
}

.invoices-leave-popup .popup-content .btn-form:hover {
  opacity: 0.8;
}

.invoices-leave-popup .popup-content .text--small {
  font-size: 1.2rem;
  margin-top: 1.2rem;
  line-height: 125%;
  color: var(--fifth-blue);
}

@media (max-width: 650px) {
  .invoices-leave-popup .popup-content {
    padding-left: calc(100% * 0.35 + 2rem);
    margin: auto 2rem;
  }
}

@media (max-width: 500px) {
  .invoices-leave-popup .popup-content {
    padding: 2.5rem 2rem;
    margin: auto 2rem;
  }
  .invoices-leave-popup .popup-content .invoices-popup-image {
    display: none;
  }
  .invoices-leave-popup .popup-content .title {
    font-size: 3.5rem;
  }
  .invoices-leave-popup .popup-content .popup-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .invoices-leave-popup .popup-content .btn-form {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
}