@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto/Roboto-Regular.ttf") format("ttf"), url("/assets/fonts/Roboto/Roboto-Regular.woff2") format("woff2"), url("/assets/fonts/Roboto/Roboto-Regular.woff") format("woff"), local("Roboto");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto/Roboto-Medium.ttf") format("ttf"), url("/assets/fonts/Roboto/Roboto-Medium.woff2") format("woff2"), url("/assets/fonts/Roboto/Roboto-Medium.woff") format("woff"), local("Roboto");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto/Roboto-Semibold.ttf") format("ttf"), url("/assets/fonts/Roboto/Roboto-Semibold.woff2") format("woff2"), url("/assets/fonts/Roboto/Roboto-Semibold.woff") format("woff"), local("Roboto");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto/Roboto-Bold.ttf") format("ttf"), url("/assets/fonts/Roboto/Roboto-Bold.woff2") format("woff2"), url("/assets/fonts/Roboto/Roboto-Bold.woff") format("woff"), local("Roboto");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.landing-section *,
.modal-modern * {
  box-sizing: border-box;
}

.fade {
  transition: opacity 0.15s linear;
}

.fade:not(.show) {
  opacity: 0;
}

.icon {
  fill: currentColor;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.landing-section .container-fluid,
.modal-modern .container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.button-new {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  outline: 0 !important;
  border: 0 !important;
  font-weight: 400;
  letter-spacing: 0;
  transition: color 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  min-height: 64px;
  font-size: 20px;
  line-height: 26px;
  background-color: hsl(47, 100%, 52%);
  color: #1E1E1E;
  padding: 12px 24px;
}

.button-new:hover {
  color: #1E1E1E;
  background-color: hsl(47, 100%, 69%);
}

.button-new:active {
  color: #1E1E1E;
  background-color: hsl(47, 100%, 76%);
}

.button-new span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.button-new .icon {
  width: 24px;
  height: 24px;
}

.button-new[disabled] {
  pointer-events: none;
}

.button-new--theme-secondary {
  background-color: #333B8C;
  color: #fff;
}

.button-new--theme-secondary:hover {
  color: #fff;
  background-color: hsl(235, 47%, 48%);
}

.button-new--theme-secondary:active {
  color: #fff;
  background-color: hsl(235, 47%, 56%);
}

.button-new--size-md {
  min-height: 56px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 23px;
}

.landing-section {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}

.landing-section .container-fluid {
  max-width: 1334px;
}

.landing-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}

.landing-section__title {
  font-size: 32px;
  line-height: 38px;
  color: #1E1E1E;
  font-weight: 700;
  font-family: "Roboto";
  margin: 0;
}

.landing-section__header,
.landing-section__body {
  margin-bottom: 50px;
}

.landing-section__header:last-child,
.landing-section__body:last-child {
  margin-bottom: 0;
}

.landing-section__body {
  display: flex;
  flex-direction: column;
}

.landing-section__footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.landing-section__footer .button-new {
  min-width: 326px;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.landing-grid--faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landing-faq {
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.landing-faq__ad {
  width: 480px;
  flex-shrink: 0;
}

.landing-accordion {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background-color: #F5F6FA;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.landing-accordion:not(.is-open) {
  cursor: pointer;
}

.landing-accordion:not(.is-open):hover {
  background-color: #DFDFF6;
}

.landing-accordion:not(.is-open):hover .landing-accordion__header .icon {
  color: #41418F;
}

.landing-accordion:not(.is-open):active {
  background-color: hsl(0, 0%, 89%);
}

.landing-accordion:not(.is-open):active .landing-accordion__header .icon {
  color: #197DD1;
}

.landing-accordion__header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-radius: 12px;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  transition: background-color 0.3s ease;
}

.landing-accordion__header .icon {
  width: 24px;
  height: 24px;
  transition: color 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.landing-accordion.is-open .landing-accordion__header .icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.landing-accordion.is-open .landing-accordion__header:hover {
  background-color: #DFDFF6;
}

.landing-accordion__header:hover .landing-accordion__title {
  color: #41418F;
}

.landing-accordion.is-open .landing-accordion__header:hover .icon {
  color: #41418F;
}

.landing-accordion.is-open .landing-accordion__header:active {
  background-color: hsl(0, 0%, 89%);
}

.landing-accordion.is-open .landing-accordion__header:active .icon {
  color: #197DD1;
}

.landing-accordion__title {
  font-size: 20px;
  line-height: 23px;
  font-weight: 700;
  color: #1E1E1E;
  margin: 0;
  font-family: "Roboto";
}

.landing-accordion__body {
  height: 0;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.77, 0, 0.38, 1);
}

.landing-accordion__content {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 8px 16px;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.landing-accordion.is-open .landing-accordion__content {
  opacity: 1;
}

.landing-accordion__text {
  font-size: 18px;
  line-height: 26px;
  color: #1E1E1E;
  margin: 0;
}

.landing-callback-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #1E1E1E;
  padding-right: 32px;
  padding-left: 32px;
}

.landing-callback-banner__image {
  display: flex;
  width: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 24px;
  max-width: 100%;
}

.landing-callback-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: inherit;
  object-fit: inherit;
}

.landing-callback-banner__title {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 12px;
}

.landing-callback-banner__subtitle {
  font-size: 18px;
  line-height: 26px;
  opacity: 0.5;
  margin-bottom: 24px;
}

.landing-callback-banner__button {
  width: 100%;
}

.landing-input {
  position: relative;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  outline: none;
  border: none;
  background: none;
  background-color: transparent;
  font-size: 20px;
  line-height: 24px;
  color: #1F1F1F;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.landing-input.disabled,
.landing-input[disabled] {
  opacity: 0.5;
}

.landing-input__wrapper {
  margin: 0;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 20px 24px;
  gap: 12px;
  border-radius: 8px;
  background-color: #FFFFFF;
  color: #1E1E1E;
  box-shadow: inset 0 0 0 1px #E9E9E9;
  transition: color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.landing-input.is-error .landing-input__wrapper {
  box-shadow: inset 0 0 0 1px #FF0000;
}

.landing-input__wrapper:hover {
  box-shadow: inset 0 0 0 1px hsl(0, 0%, 82%);
}

.landing-input__wrapper:active,
.landing-input.is-focused .landing-input__wrapper {
  box-shadow: inset 0 0 0 1px #FFCB08;
}

.landing-input__native {
  width: 100%;
  flex-grow: 1;
  padding: 0 !important;
  resize: none !important;
  outline: none !important;
  border: 0 !important;
  background-color: transparent !important;
  color: inherit !important;
  text-align: inherit;
  text-overflow: ellipsis;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  border-radius: 0 !important;
  transition: none !important;
}

.landing-input__native::-webkit-input-placeholder {
  opacity: 1;
  color: hsla(0, 0%, 12%, 0.5);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.landing-input__native:-ms-input-placeholder {
  opacity: 1;
  color: hsla(0, 0%, 12%, 0.5);
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.landing-input__native::-ms-input-placeholder {
  opacity: 1;
  color: hsla(0, 0%, 12%, 0.5);
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.landing-input__native::placeholder {
  opacity: 1;
  color: hsla(0, 0%, 12%, 0.5);
  transition: color 0.3s ease;
}

.landing-input__message {
  margin-top: 8px;
  display: none;
  color: #1E1E1E;
  font-size: 14px;
  line-height: 18px;
  -webkit-animation: fadeIn 0.3s ease;
  animation: fadeIn 0.3s ease;
}

.landing-input.is-error .landing-input__message {
  display: flex;
  color: #FF0000;
}

.landing-input[disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.landing-checkbox {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  color: #212529;
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}

.landing-checkbox__input {
  display: none;
}

.landing-checkbox__wrapper {
  display: flex;
  align-items: flex-start;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
}

.landing-checkbox__icon-wrapper {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #fff;
  color: #fff;
  box-shadow: 0 0 0 1px #E9E9E9;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.landing-checkbox:hover .landing-checkbox__icon-wrapper {
  box-shadow: 0 0 0 1px #FFCB08;
}

.landing-checkbox:active .landing-checkbox__icon-wrapper {
  box-shadow: 0 0 0 1px #FFCB08;
  background-color: #FFF5CE;
}

.landing-checkbox__input:checked + .landing-checkbox__wrapper .landing-checkbox__icon-wrapper {
  background-color: #FFCB08;
  box-shadow: 0 0 0 1px #FFCB08;
}

.landing-checkbox:hover .landing-checkbox__input:checked + .landing-checkbox__wrapper .landing-checkbox__icon-wrapper {
  background-color: #FFD846;
  box-shadow: 0 0 0 1px #FFCB08;
}

.landing-checkbox:active .landing-checkbox__input:checked + .landing-checkbox__wrapper .landing-checkbox__icon-wrapper {
  background-color: #FFE583;
  box-shadow: 0 0 0 1px #FFCB08;
}

.landing-checkbox[disabled] .landing-checkbox__icon-wrapper {
  opacity: 0.5;
}

.landing-checkbox__icon {
  width: 16px;
  height: 16px;
  opacity: 0;
  will-change: transform;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  transition: opacity 0.3s ease 0.075s, -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.3s ease 0.075s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.3s ease 0.075s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.landing-checkbox__input:checked + .landing-checkbox__wrapper .landing-checkbox__icon {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.landing-checkbox:active .landing-checkbox__input:checked + .landing-checkbox__wrapper .landing-checkbox__icon {
  opacity: 0;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
}

.landing-checkbox__content {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  gap: 10px 5px;
  transition: color 0.3s ease, text-shadow 0.3s ease, letter-spacing 0.3s ease;
}

.landing-checkbox__content a {
  color: #197DD1;
  text-decoration: underline !important;
  border: none !important;
  transition: color 0.3s ease;
}

.landing-checkbox__content a:hover {
  color: hsl(207, 79%, 40%);
}

.landing-checkbox__content a:active {
  color: hsl(207, 79%, 30%);
}

.landing-checkbox__content p {
  font-weight: inherit;
  margin: 0;
}

.landing-checkbox__message {
  margin-top: 8px;
  font-size: 14px;
  line-height: 18px;
  display: none;
  color: hsla(0, 0%, 12%, 0.5);
  -webkit-animation: fadeIn 0.3s ease;
  animation: fadeIn 0.3s ease;
}

.landing-checkbox.is-error .landing-checkbox__message {
  display: flex;
  color: #FF0000;
}

.landing-checkbox[disabled] {
  pointer-events: none;
}

.form-view-loading,
.form-view-success {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.form-view-loading__loader {
  width: 170px;
  height: 170px;
}

.form-view-success {
  gap: 20px;
}

.form-view-success__icon {
  width: 100px;
  height: 100px;
  color: #FFCB08;
}

.form-view-success__title {
  text-align: center;
  margin: 0;
  font-size: 24px;
  line-height: 26px;
  color: #1e1e1e;
  font-weight: 700;
}

.form-view-success__button {
  width: 100%;
}

.modal-modern {
  --bs-modal-zindex: 1050;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: rgba(0, 0, 0, 0.175);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-modern-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
  max-width: 532px;
  min-height: 100%;
  margin-right: auto;
  margin-left: auto;
  border: none;
  border-radius: 0;
}

.modal-modern.fade .modal-modern-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: none !important;
  transform: none !important;
}

.modal-modern.show .modal-modern-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal-modern-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-modern-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  outline: 0;
  margin: 48px 0;
  padding: 40px 48px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #F5F6FA;
}

.modal-modern.fade .modal-modern-content {
  opacity: 0;
  will-change: transform;
  transition: opacity ease, -webkit-transform ease;
  transition: transform ease, opacity ease;
  transition: transform ease, opacity ease, -webkit-transform ease;
  transition-duration: 0.45s;
}

.modal-modern.show .modal-modern-content {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition-duration: 0.6s;
}

.modal-modern-backdrop {
  --bs-backdrop-zindex: 1040;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}

.modal-modern-backdrop.fade {
  opacity: 0;
}

.modal-modern-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-modern-close {
  position: absolute;
  width: 24px;
  height: 24px;
  margin-left: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: 0 !important;
  border: none !important;
  border-radius: 50%;
  background-color: transparent;
  color: hsla(0, 0%, 12%, 0.35);
  transition: background-color 0.3s ease;
  top: 20px;
  right: 20px;
}

.modal-modern-close:hover {
  color: hsla(0, 0%, 12%, 0.45);
}

.modal-modern-close:active {
  color: hsla(0, 0%, 12%, 0.55);
}

.modal-modern__inner {
  position: relative;
  -webkit-animation: fadeIn 0.45s ease;
  animation: fadeIn 0.45s ease;
}

.modal-modern__inner,
.modal-modern__inner > form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden auto;
}

.modal-modern__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 28px;
}

.modal-modern__header:last-child {
  margin-bottom: 0;
}

.modal-modern__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  overflow: hidden auto;
}

.modal-modern__body:last-child {
  margin-bottom: 0;
}

.modal-modern__title {
  font-size: 28px;
  line-height: 33px;
  font-weight: 700;
  font-family: "Roboto";
  margin: 0;
}

.modal-modern__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
}

.modal-callback__grid {
  display: flex;
  flex-direction: column;
}

.modal-callback__grid .landing-input {
  margin-top: 16px;
}

.modal-callback__grid .landing-checkbox {
  margin-top: 14px;
  max-width: 344px;
}

.modal-callback__grid > *:first-child {
  margin-top: 0;
}

.modal-callback__button {
  margin-top: 22px;
}

@media (min-width: 576px) {
  .modal-modern {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

  .modal-modern-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
}

@media only screen and (max-width: 1199px) {
  .landing-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .landing-faq {
    flex-direction: column;
    row-gap: 32px;
  }

  .landing-faq__ad {
    width: 100%;
  }

  .landing-callback-banner__button {
    max-width: 326px;
  }
}

@media only screen and (max-width: 1023px) {
  .landing-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

 

  .landing-section__header,
  .landing-section__body {
    margin-bottom: 40px;
  }

  .landing-section__footer {
    flex-direction: column;
    gap: 20px;
  }

  .landing-section__footer .button-new {
    min-width: auto;
  }

  .landing-callback-banner {
    padding-right: 0;
    padding-left: 0;
  }

  .landing-callback-banner__button {
    max-width: none;
  }
}

@media only screen and (max-width: 767px) {
  .landing-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }



  .landing-section__header {
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
  }

  .landing-section__title {
    font-size: 28px;
    line-height: 33px;
  }

  .landing-section__header,
  .landing-section__body {
    margin-bottom: 32px;
  }

  .modal-modern-content {
    padding: 32px;
  }

  .modal-modern__header {
    padding-right: 24px;
  }

  .modal-modern__title {
    font-size: 24px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 575px) {
  .button-new {
    min-height: 56px;
    padding: 10px 20px;
  }

  .landing-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }



  .landing-section__title {
    font-size: 24px;
    line-height: 28px;
  }

  .landing-section__header,
  .landing-section__body {
    margin-bottom: 24px;
  }

  .landing-grid--faq {
    row-gap: 16px;
  }

  .landing-faq {
    row-gap: 16px;
  }

  .landing-accordion {
    padding: 12px 8px;
  }

  .landing-accordion__header {
    padding: 12px 8px;
  }

  .landing-accordion__content {
    padding: 4px 8px;
  }

  .landing-checkbox__message {
    margin-top: 6px;
  }

  .landing-input {
    font-size: 16px;
    line-height: 19px;
  }

  .landing-input__wrapper {
    padding: 12px 20px;
    min-height: 50px;
    gap: 8px;
  }

  .landing-input__message {
    margin-top: 6px;
  }

  .form-view-loading__loader {
    width: 120px;
    height: 120px;
  }

  .modal-modern-dialog {
    padding-right: 15px;
    padding-left: 15px;
  }

  .modal-modern-content {
    padding: 20px 16px;
  }

  .modal-modern__header {
    padding-right: 40px;
  }

  .modal-modern__title {
    font-size: 20px;
    line-height: 23px;
  }

  .modal-modern__text {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }

  .modal-modern.fade .modal-modern-dialog {
    transition: none;
  }
}

.modal-modern__inner > form {
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.modal-modern__inner.is-loading > form,
.modal-modern__inner.is-success > form {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-callback__loading {
  z-index: 1;
}

.modal-callback__success {
  z-index: 2;
}

.modal-modern__inner.is-loading .modal-callback__loading,
.modal-modern__inner.is-success .modal-callback__success {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.no-padding{

	padding-right: 0px !important;
    padding-left: 0px !important;

}