.payment .tab li.Selectbox {
  margin: 0 100px 0 -150px;
}
.payment .tab li.Selectbox select {
  display: inline;
}
.payment .tab li {
  cursor: pointer;
}

[q-invoice-form-show][hidden] {
  display: none !important;
}
[data-error] {
  position: relative;
}
.q-show-error:after {
  content: attr(data-error);
  color: var(--orange);
  position: absolute;
  right: 16px;
  top: 0;
  line-height: 50px;
  z-index: 2;
  font-size: 14px;
  pointer-events: none;
}
.q-show-error.no-error-text:after {
  display: none !important;
}

[q-page-back] {
  background: #f2f2f2;
  border: 1px solid #ccc;
  margin-right: 20px;
}

[q-page-back].fullwidth {
  margin: 10px 0;
}

.Alertfy {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease;
}
.Alertfy.Alertfy__Active {
  visibility: visible;
  opacity: 1;
}

.Alertfy__Out {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.Alertfy__In {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 600px;
  line-height: 1.7em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  padding: 40px;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #979797;
  background-color: #ffffff;
  box-sizing: border-box;
  transition: all 0.25s ease;
  transform: scale(0.9) translateY(15px);
  border-radius: 40px;
}
.Alertfy__In__New {
  min-width: 560px;
  padding: 32px;
  border-radius: 24px;
}
.Alertfy__Active .Alertfy__In {
  transform: scale(1) translateY(0);
}

.Alertfy__Title,
.Confirm__Title {
  font-weight: bold;
  font-size: 1.284em;
}
.Alertfy__Content {
  padding: 16px 0;
  max-height: 500px;
  min-width: 150px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Alertfy__Content__New {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6em;
}

.Alertfy__Close {
  /* align-self: flex-end; */
  /* margin-right: 10px; */
  background: url(/assets/images/icon-close-eb7cd1adc602c10d8e9da5ba3df70a10.svg) no-repeat 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}

.Alertfy__Title .sad-icon {
  width: 56px;
  height: 56px;
}

.mainHead .btn {
  width: auto;
}

main {
  transition: all 0.3s ease;
}
.HIDE_PAGE {
  transition: all 0s;
  visibility: hidden;
  opacity: 0;
}

.Loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease;
}
.Loading.Loading__Active {
  visibility: visible;
  opacity: 1;
}
.Loading__Out {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}
.Loading__In {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 30px;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #979797;
  background-color: #ffffff;
  box-sizing: border-box;

  transition: all 0.25s ease;
  transform: scale(0.9) translateY(15px);
}
.Loading__Active .Loading__In {
  transform: scale(1) translateY(0);
}

.Loading__Active .Loading__In__New {
  border-radius: 24px;
}

.Loading__Content {
  padding: 20px 0;
  max-height: 500px;
  min-width: 150px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Loading__Text {
  margin-top: 40px;
}

.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #888;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.LockPackageUpgrade [q-payment-tabbtn]:not(.DoNotLock),
.LockPackageUpgrade [q-page-back="packetselection"] {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
}

input.btn {
  color: #000;
  border: 0;
}
.notify {
  text-align: center;
  padding: 10px 0;
}
.notify.negative {
  color: red;
}
.notify.success {
  color: green;
}

.form > p {
  position: relative;
}
div.input-error {
  color: var(--orange);
  font-size: 13px;
  position: absolute;
  right: 10px;
  top: 0;
  line-height: var(--space_xxxxlarge);
  pointer-events: none;
}

div.input-error#city-error {
  right: var(--space_xxxlarge);
}

/*[q-page-back="packetselection"] {
  left: calc(50% - 500px) !important;
  transform: translateY(10px);
}*/


.Confirm {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease;
}
.Confirm.Confirm__Active {
  visibility: visible;
  opacity: 1;
}

.Confirm__Out {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.Confirm__In {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 30px;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #979797;
  background-color: #ffffff;
  box-sizing: border-box;
  max-width: 600px;

  transition: all 0.25s ease;
  transform: scale(0.9) translateY(15px);
}
.Confirm__Active .Confirm__In {
  transform: scale(1) translateY(0);
}

.Confirm__Content {
  padding: 16px 0;
  max-height: 500px;
  min-width: 150px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* .Confirm__Content p {margin-bottom: 20px} */
.Confirm__Content p:last-child {margin-bottom: 0}

.Confirm__Close {
  align-self: flex-end;
  margin-right: 10px;
  background: url(/assets/images/icon-close-eb7cd1adc602c10d8e9da5ba3df70a10.svg) no-repeat right 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px
}

.Confirm__Buttons .btn:not(:last-child) {
  margin-right: 10px;
}

.Confirm__Buttons .btn.negative {
  background-color: #eee;
}

.Confirm__Content__New {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6em;
}
.Confirm__Title__New {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6em;
}
.Confirm__In__New {
  min-width: 560px;
  border-radius: 24px;
  padding: 32px;
}
.Confirm__Buttons__Button {
    margin-top: 10px;
}

@media only screen and (max-width: 480px) {
  .Confirm__In__New,
  .Alertfy__In__New {
    min-width: 342px;
    max-width: 342px;
    padding: 16px;
  }
}

/* Tablets and larger smartphones */
@media only screen and (max-width: 768px) and (min-width: 481px) {
  .Confirm__In__New,
  .Alertfy__In__New {
    min-width: 382px;
    max-width: 382px;
    padding: 24px;
  }
}

.payment .tabContent .scope li {
  position: relative;
  padding-left: 35px;
}

.payment .tabContent.for-basic .scope {
  background-color: #D6E33B;
  color: #3B4150;
}

.payment .tabContent.for-premium .scope {
  background-color: #EF863C;
  color: #3B4150;
}

.payment .tabContent.for-professional .scope {
  background-color: #FFC200;
  color: #3B4150;
}

.payment .tabContent.fx-basic .scope {
  background-color: #5296D6;
}

.payment .tabContent.fx-pro .scope {
  background-color: #59BA9D;
}

.payment .tabContent.fx-premium .scope {
  background-color: #DE754C;
}

.payment .tabContent .scope li:before {
  float: none;
  position: absolute;
  left: 0;
}

.Spinner {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 99;
}

.Spinner__Container {
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.Spinner__Item {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px solid #666;
  border-top-color: rgba(0, 0, 0, 0.2);
  animation-name: Spinner;
  animation-duration: .75s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.Spinner__Text {
  margin-top: 1.5rem;
}

@keyframes Spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

[q-payment-package-content-notes-mobile] {
  margin-top: 5px;
  display: block;
}

.formBottom label {
  width: 100%;
}

.apply-discount-btn{
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 540px) {
  .apply-discount-btn .btn{
    width: 100%;
    text-align: center;
  }
}

.multiple-price{
  display: flex !important;
  flex-direction: column;
}
.payment-card-total .main-total.not-active > strong {
  text-decoration: line-through !important;
  color: #dc1212 !important;
}
.hidden {
  display: none !important;
}

.multiple-price strong {
  white-space:nowrap !important;
}

.Alertfy__Content .result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
