.general-msg {
  width: 100%;
  position: relative;
  max-width: 650px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
.general-msg.show {
  padding: 1rem 2rem;
  margin: 1rem auto 0.5rem;
  visibility: visible;
  opacity: 1;
}
.general-msg.success {
  color: #00a71a;
}
.general-msg.error {
  color: #e40101;
}

.form-base {
  width: 100%;
  max-width: 650px;
  height: auto;
  max-height: 100%;
  position: relative;
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  z-index: 2;
}
.form-base.form-loading {
  min-height: 150px;
  max-height: 500px;
  overflow: hidden !important;
  border-radius: 5px;
}
.form-base::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
.form-base.loading::after {
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
.form-base .span-block {
  display: block;
  font-weight: 500;
  color: #333333;
  text-align: center;
  margin: 35px 0 20px 0;
}
.form-base .title-icon-text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: #333333;
  word-break: break-word;
  text-transform: uppercase;
}
.form-base .title-icon-text::after {
  content: "";
  width: calc(100% - 2rem - 5px);
  height: 2px;
  border-radius: 2px;
  background-color: #e83687;
  left: calc(2rem + 5px);
  bottom: -5px;
  position: absolute;
}
.form-base .title-icon-text img {
  width: 2rem;
  height: 2rem;
  position: relative;
  margin-right: 5px;
}
.form-base .title-block {
  display: block;
  color: #333333;
  text-align: center;
  margin: 70px 0 30px 0;
}
.form-base .input-label {
  display: block;
  font-size: 16px;
  margin: 0 0 12px 0;
}
.form-base .input-base {
  width: 100%;
  font-size: 16px;
  color: #333333;
  padding: 18px 22px;
  border-radius: 4px;
  outline: none;
  border: 1px solid #d9deea;
  resize: none;
}
.form-base .input-base.textarea {
  width: 100%;
  max-width: 650px;
  height: 200px;
}
.form-base .input-base.textarea:not(:-moz-placeholder):invalid {
  border: 1px solid #ff0000;
}
.form-base .input-base.textarea:not(:placeholder-shown):invalid {
  border: 1px solid #ff0000;
}
.form-base .input-base.textarea::-webkit-scrollbar {
  width: 8px;
  border-radius: 0 0 0 5px;
  background-color: #f1f1f1;
}
.form-base .input-base.textarea::-webkit-scrollbar-thumb {
  border-radius: 0 0 0 5px;
  background-color: #d9deea;
}
.form-base .input-base::-moz-placeholder {
  color: #7b87a3;
}
.form-base .input-base::placeholder {
  color: #7b87a3;
}
.form-base .input-base:focus:invalid {
  border: 1px solid #ff0000;
}
.form-base .input-base[data-invalid=true] {
  border: 1px solid #ff0000;
}
.form-base .input-base::-ms-reveal {
  display: none;
}
.form-base .item-captcha {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-base .selected {
  order: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: transparent !important;
  z-index: 1;
}
.form-base .select-box {
  display: flex;
  cursor: pointer;
  position: relative;
  flex-direction: column;
}
.form-base .select-box::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/images/arrow-down.png?c3de48cd5efff6778a027aeea4b51118);
  transform: rotate(0);
  transition: 0.4s transform ease-in-out;
  width: 25px;
  height: 25px;
  top: 15px;
  right: 1vw;
  position: absolute;
  z-index: 0;
}
.form-base .select-box .options-list {
  order: 1;
  width: 100%;
  font-size: 16px;
  color: #333333;
  border-radius: 0 0 5px 5px;
  background-color: #fff;
  border: 1px solid #d9deea;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: 0.5s opacity, 0.5s max-height;
  left: 0;
  top: 56px;
  z-index: 2;
  position: absolute;
}
.form-base .select-box .options-list.active {
  opacity: 1;
  overflow-y: scroll;
  max-height: 380px;
}
.form-base .select-box .options-list::-webkit-scrollbar {
  width: 8px;
  border-radius: 0 0 0 5px;
  background-color: #f1f1f1;
}
.form-base .select-box .options-list::-webkit-scrollbar-thumb {
  border-radius: 0 0 0 5px;
  background-color: #d9deea;
}
.form-base .select-box .option {
  cursor: pointer;
  visibility: visible;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.form-base .select-box .option.hide {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.form-base .select-box .option > label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 24px;
  cursor: pointer;
}
.form-base .select-box .option > input[type=radio] {
  left: 0;
  position: absolute !important;
  opacity: 0;
  z-index: -1;
}
.form-base .select-box .option:hover {
  background-color: #fff5f5;
}
.form-base .select-box .input-wrapper-group {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #7b87a3 !important;
  display: flex;
  flex-flow: row;
  align-items: stretch;
  justify-content: center;
}
.form-base .select-box .input-wrapper-group > label {
  padding: 16px 12px;
  background-color: #f2f2f2;
  border-right: 1px #7b87a3 solid;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  cursor: pointer;
}
.form-base .select-box .input-wrapper-group > label.label-sm {
  min-width: 8rem;
}
.form-base .select-box .input-wrapper-group > label.label-md {
  min-width: 12rem;
}
.form-base .select-box .input-wrapper-group > label.label-lg {
  min-width: 16rem;
}
.form-base .select-box .input-wrapper-group textarea,
.form-base .select-box .input-wrapper-group .custom-select,
.form-base .select-box .input-wrapper-group .options-list,
.form-base .select-box .input-wrapper-group multi-input,
.form-base .select-box .input-wrapper-group input:not(input[type=checkbox]):not(input[type=radio]):not(input[type=range]):not(.options-searcher):not(.multi-select):not(.option-radio) {
  border: none !important;
}
.form-base .select-box .input-wrapper-group multi-input {
  margin-bottom: 0;
}
.form-base .select-box.active::after {
  transform: rotate(180deg);
}
.form-base .input-group {
  display: flex;
  align-items: center;
}
.form-base .input-group[data-grow="70/30"] > *:first-child {
  width: 70%;
}
.form-base .input-group[data-grow="70/30"] > *:last-child {
  width: 30%;
}
.form-base .input-group[data-grow="30/70"] > *:first-child {
  width: 30%;
}
.form-base .input-group[data-grow="30/70"] > *:last-child {
  width: 70%;
}
.form-base .input-group[data-grow="40/60"] > *:first-child {
  width: 40% !important;
}
.form-base .input-group[data-grow="40/60"] > *:last-child {
  width: 60% !important;
}
.form-base .input-group[data-grow="60/40"] > *:first-child {
  width: 60% !important;
}
.form-base .input-group[data-grow="60/40"] > *:last-child {
  width: 40% !important;
}
.form-base .input-group.select-and-input .input-wrapper {
  width: 100%;
}
.form-base .input-group.togheter {
  flex-direction: row;
  gap: 0;
  margin: 0;
}
.form-base .input-group.togheter > .input-wrapper, .form-base .input-group.togheter > .input-base, .form-base .input-group.togheter > .custom-select {
  width: 50%;
  margin: 0;
}
.form-base .input-group.togheter > .input-wrapper:first-child, .form-base .input-group.togheter > .input-base:first-child, .form-base .input-group.togheter > .custom-select:first-child {
  border-radius: 4px 0px 0px 4px !important;
}
.form-base .input-group.togheter > .input-wrapper:last-child, .form-base .input-group.togheter > .input-base:last-child, .form-base .input-group.togheter > .custom-select:last-child {
  border-width: 1px 1px 1px 0 !important;
  border-radius: 0px 4px 4px 0px !important;
}
.form-base .input-group.grid {
  gap: 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.form-base .input-group .check {
  display: flex;
  align-items: center;
}
.form-base .input-group .check input[type=checkbox] {
  margin-right: 10px;
}
.form-base .input-group .check label {
  cursor: pointer;
}
.form-base .input-group .group-wrap {
  flex-wrap: wrap;
}
.form-base .input-group .group-column {
  flex-flow: column;
}
.form-base .input-group label {
  cursor: pointer;
}
.form-base .input-wrapper,
.form-base .select-wrapper {
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
  background-color: #fff;
}
.form-base .input-wrapper.mb-0,
.form-base .select-wrapper.mb-0 {
  margin-bottom: 0;
}
.form-base .input-wrapper .m-error,
.form-base .input-wrapper .m-success,
.form-base .select-wrapper .m-error,
.form-base .select-wrapper .m-success {
  margin: 10px 0 0 0;
  align-items: center;
  transition: 0.8s ease;
  display: none;
}
.form-base .input-wrapper .m-error > img,
.form-base .input-wrapper .m-success > img,
.form-base .select-wrapper .m-error > img,
.form-base .select-wrapper .m-success > img {
  margin-right: 5px;
}
.form-base .input-wrapper .m-error.show,
.form-base .input-wrapper .m-success.show,
.form-base .select-wrapper .m-error.show,
.form-base .select-wrapper .m-success.show {
  display: flex;
  animation: show-message 1s 1 normal 0s ease-out both;
}
.form-base .input-wrapper .m-error,
.form-base .select-wrapper .m-error {
  width: 100%;
  color: #ff0000;
}
.form-base .input-wrapper .m-success,
.form-base .select-wrapper .m-success {
  font-weight: 900;
  color: #00994e;
}
.form-base .select-wrapper .input-wrapper {
  margin-bottom: 0;
}
.form-base .input-wrapper.search::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/images/search.png?f5f6958a3e48c5b7b8ff994823748b4c);
  transform: rotate(0);
  transition: 0.4s transform ease-in-out;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 1vw;
  position: absolute;
}
.form-base .min-characters {
  display: block;
  font-size: 14px;
  margin-top: 10px;
  text-align: right;
}
.form-base .show-password {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  right: 13px;
  /* Hight Input - Hight Icon / 2 */
  top: 20.5px;
}
.form-base #accepting,
.form-base .accepting {
  margin-left: 5px;
  margin-top: 3px;
}
.form-base #accepting a,
.form-base .accepting a {
  display: inline;
  font-weight: bold;
  color: #e83687;
}
.form-base .btn-action {
  border: 0;
  outline: none;
  display: flex;
  cursor: pointer;
  align-items: center;
  background-color: transparent;
  color: #333;
}
.form-base .btn-action span {
  margin: 0 0 0 10px;
  font-size: 30px;
  font-weight: 400;
  z-index: -1;
}
.form-base .btn-submit {
  margin-top: 24px;
  text-transform: uppercase;
}
.form-base .button {
  margin: 40px 0 0 0;
  gap: 10px;
}
.form-base input[type=checkbox],
.form-base input[type=radio] {
  cursor: pointer;
  margin-right: 5px;
  position: relative;
  width: 22px;
  height: 22px;
}
.form-base input[type=checkbox]::before,
.form-base input[type=radio]::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: -1px;
  left: 0;
  border-radius: 4px;
  background-color: #fff;
  border: 2px solid #95a1bb;
}
.form-base input[type=checkbox]:checked:before,
.form-base input[type=radio]:checked:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 0;
  left: 0;
  border-radius: 4px;
  background-color: #e83687;
  border: 2px solid #e83687;
}
.form-base input[type=checkbox]:checked:after,
.form-base input[type=radio]:checked:after {
  content: "";
  width: 5px;
  height: 12px;
  border: solid white;
  border-width: 0px 4px 4px 0;
  transform: rotate(45deg);
  top: 2px;
  left: 8px;
  position: absolute;
}
@keyframes show-message {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.form-base .group-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.form-base .group-tag .icon-tag {
  margin-right: 5px;
}
.form-base .group-tag .label-tag-pink:hover {
  background-color: #e83687;
}
.form-base .group-tag .label-tag.centered {
  flex: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-base .group-tag input[type=checkbox],
.form-base .group-tag input[type=radio] {
  display: none !important;
}
.form-base .group-tag input[type=checkbox]:checked + .label-tag,
.form-base .group-tag input[type=radio]:checked + .label-tag {
  background-color: #333333;
}
.form-base .group-tag input[type=checkbox]:checked + .label-tag-pink,
.form-base .group-tag input[type=radio]:checked + .label-tag-pink {
  background-color: #e83687;
}
.form-base .group-tag input[type=checkbox]:not(:checked) + .label-tag,
.form-base .group-tag input[type=radio]:not(:checked) + .label-tag {
  background-color: #7b87a3 !important;
}
.form-base .group-tag input[type=checkbox]:not(:checked) + .label-tag-pink,
.form-base .group-tag input[type=radio]:not(:checked) + .label-tag-pink {
  background-color: #7b87a3 !important;
}

.all-phones,
.all-tariff {
  width: 100%;
}

.password_validate_details {
  width: 100%;
  height: auto;
  max-height: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.5s ease-in-out;
}
.password_validate_details.show {
  max-height: 100%;
}
.password_validate_details .validation_list {
  width: 100%;
  position: relative;
  padding-left: 2rem;
  gap: 5px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
}
.password_validate_details .validation_list_item {
  width: 100%;
  position: relative;
}
.password_validate_details .validation_list_item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(/images/icon-checkbox-unmarked.png?7a551c9dfbcaa08b4de45c68ecb104ed);
  background-size: contain;
  background-repeat: no-repeat;
}
.password_validate_details .validation_list_item.error {
  color: #ff0000;
}
.password_validate_details .validation_list_item.error::before {
  background-image: url(/images/icon-error.png?0a217d83a8e33bcfb7dd4b77ae0e19f1);
}
.password_validate_details .validation_list_item.success {
  color: #00994e;
}
.password_validate_details .validation_list_item.success::before {
  background-image: url(/images/icon-success.png?2870ce2e2ac9353aeb40594e6fa70adc);
}

@media screen and (max-width: 767px) {
  .form-base .input-group[data-grow="70/30"] > *:first-child {
    width: 100%;
  }
  .form-base .input-group[data-grow="70/30"] > *:last-child {
    width: 100%;
  }
  .form-base .input-group[data-grow="30/70"] > *:first-child {
    width: 100%;
  }
  .form-base .input-group[data-grow="30/70"] > *:last-child {
    width: 100%;
  }
  .form-base .input-group[data-grow="40/60"] > *:first-child {
    width: 100% !important;
  }
  .form-base .input-group[data-grow="40/60"] > *:last-child {
    width: 100% !important;
  }
  .form-base .input-group[data-grow="60/40"] > *:first-child {
    width: 100% !important;
  }
  .form-base .input-group[data-grow="60/40"] > *:last-child {
    width: 100% !important;
  }
}
@media screen and (max-width: 576px) {
  .form-base .title-block {
    margin: 20px 0;
  }
  .group-tag label {
    padding: 10px;
    height: auto;
    flex: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
