@charset "UTF-8";
.itc-modal {
  --itc-modal-margin: 0.5rem;
}

@media (min-width: 576px) {
  .itc-modal {
    --itc-modal-margin: 1.75rem;
  }
}
.itc-modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease-in;
  pointer-events: none;
}

.itc-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: var(--itc-modal-margin);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-in;
}

@media (min-width: 1440px) {
  .itc-modal-content {
    max-width: 1420px;
    margin: var(--itc-modal-margin) auto;
  }
}
.itc-modal-show .itc-modal-backdrop,
.itc-modal-show .itc-modal-content {
  z-index: 1050;
  overflow-y: auto;
  opacity: 1;
  pointer-events: auto;
}

.itc-modal-scrollable {
  height: calc(100% - var(--itc-modal-margin) * 2);
  max-height: 100%;
  overflow: hidden;
}

.itc-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eceeef;
}

.itc-modal-title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
}

.itc-modal-btn-close {
  float: right;
  color: #000;
  font-weight: 700;
  font-size: 24px;
  font-family: sans-serif;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.itc-modal-btn-close:focus,
.itc-modal-btn-close:hover {
  cursor: pointer;
  opacity: 0.75;
}

.itc-modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
  overflow-y: auto;
  overflow-wrap: anywhere;
}

.itc-modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

input,
textarea {
  font-size: 18px;
  font-weight: 400;
  background: none;
  border: 0;
  outline: 0;
}

.hidden {
  opacity: 0;
  height: 0 !important;
  color: transparent !important;
  position: relative !important;
  z-index: -10 !important;
  margin: 0 !important;
}
.hidden > * {
  display: none;
}

.alert {
  display: inline-flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: rgba(88, 130, 255, 0.2);
  color: #5882ff;
  font-size: 16px;
  font-weight: 500;
  transition: all 2s;
}
.alert.success {
  background: #5656FC;
  color: #fff;
}
.alert.alert-danger {
  background: rgb(252, 86, 86);
  color: #ffffff;
}

body > .alert {
  position: absolute;
  z-index: 1200;
  top: 10px;
  right: 10px;
  width: auto;
  max-width: calc(100vw - 20px);
}

.d-none {
  display: none !important;
}

.input,
.datepicker {
  display: flex;
  width: 100%;
  height: 56px;
  padding: 13px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #9595b1;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.02);
  color: #9595b1;
  font-size: 20px;
  font-weight: 500;
}
.input:focus,
.datepicker:focus {
  border: 1px solid #5656fc;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.02);
  color: #5656fc;
}

.datepicker {
  flex-direction: row;
  color: #757575;
  justify-content: space-between;
  align-items: center;
  font-family: "Open Sauce Sans" !important;
  font-weight: 500;
}
.datepicker input {
  color: #9595b1;
}
.datepicker input[type=text]::placeholder {
  color: #757575;
  font-family: "Open Sauce Sans";
  font-size: 20px;
  font-weight: 500;
}
.datepicker input[type=text]::-webkit-input-placeholder {
  color: #757575;
  font-family: "Open Sauce Sans";
  font-size: 20px;
  font-weight: 500;
}
.datepicker input[type=text]::-moz-placeholder {
  color: #757575;
  font-family: "Open Sauce Sans";
  font-size: 20px;
  font-weight: 500;
}
.datepicker input[type=text]:-moz-placeholder {
  color: #757575;
  font-family: "Open Sauce Sans";
  font-size: 20px;
  font-weight: 500;
}
.datepicker input[type=text]:-ms-input-placeholder {
  color: #757575;
  font-family: "Open Sauce Sans";
  font-size: 20px;
  font-weight: 500;
}

.tempus-dominus-widget {
  box-shadow: none !important;
  background: #fff !important;
  padding: 15px !important;
}

.btn-outline {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 15.5px 42px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #5656fc;
  background: #fff;
  color: #5656fc;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}
.btn-outline.full-btn {
  width: 100%;
}

.btn-fill {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 15.5px 42px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #5656fc;
  background: #5656fc;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}
.btn-fill.disabled {
  opacity: 0.35;
  cursor: default;
}

.btn-purple {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 15.5px 42px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #5656fc;
  background: #5656fc;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}
.btn-purple.disabled {
  opacity: 0.35;
  cursor: default;
}
.btn-purple.full-btn {
  width: 100%;
}

.section-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: url("/assets/img/main-bg.svg") no-repeat;
  background-size: contain;
  background-position: left bottom;
  width: 100%;
  align-items: center;
}
.section-main .main-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 36px;
}
.section-main .main-block p,
.section-main .main-block h1 {
  width: 600px;
  max-width: 100vw;
}

.itc-modal-btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  color: transparent;
  opacity: 1;
  text-shadow: none;
  background: url("/assets/img/close.svg");
  width: 24px;
  height: 24px;
  border-radius: 50px;
}

.itc-modal-small {
  height: auto;
  margin-top: 20% !important;
}

.itc-modal-header {
  padding: 0;
}

.itc-modal-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: initial;
}

.itc-modal-show .itc-modal-backdrop {
  border-radius: 0;
}

.itc-modal-show .itc-modal-content {
  border-radius: 16px;
  background: #f9faff;
  color: #000;
  margin: auto;
  margin-top: 20px;
}

.itc-modal-header {
  border: 0;
}

.itc-modal-backdrop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12.5px);
}

.itc-modal-content {
  width: 460px;
  max-width: 100%;
  height: fit-content;
  margin: 0 !important;
  border-radius: 24px;
  background: #f9faff;
  box-shadow: 0px 10px 20px 0px rgba(86, 86, 252, 0.06);
}

.modal-title {
  color: #000;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

.modal-description {
  color: #9595b1;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 36px;
}

.modal-btn {
  margin-top: 36px;
}

.span-primary {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: #5882ff;
  color: #161922;
  font-size: 26px;
  font-weight: 500;
}

.span-secondary {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: rgba(88, 130, 255, 0.1);
  color: #5882ff;
  font-size: 26px;
  font-weight: 500;
}

:root {
  --button-background: #0075ff;
  --button-color: white;
  --dropdown-highlight: #0075ff;
  --dropdown-width: 180px;
  --dropdown-background: white;
  --dropdown-color: #9595b1;
}

.dropdown a.button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 15.5px 42px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #0075ff;
  background: #fff;
  color: #0075ff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

/* Dropdown styles */
.dropdown {
  position: relative;
  padding: 0;
  margin-right: 1em;
  border: none;
}

.dropdown a.text-primary {
  color: #0075ff !important;
}
.dropdown a.text-primary:hover {
  color: #fff !important;
}
.dropdown a.text-primary:hover svg,
.dropdown a.text-primary:hover svg path {
  fill: #fff !important;
}

.dropdown a.text-black {
  color: #f3ba2f !important;
  background: #000 !important;
}

.dropdown summary {
  list-style: none;
  list-style-type: none;
}

.dropdown > summary::-webkit-details-marker {
  display: none;
}

.dropdown summary:focus {
  outline: none;
}

.dropdown summary:focus {
  outline: none;
}

.dropdown ul {
  position: absolute;
  margin: 20px 0 0 0;
  width: var(--dropdown-width);
  left: 50%;
  margin-left: calc(var(--dropdown-width) / 2 * -1);
  box-sizing: border-box;
  z-index: 2;
  box-shadow: 0px 10px 20px 0px rgba(86, 86, 252, 0.12);
  border-radius: 10px;
  background: #fff;
  list-style: none;
  overflow: hidden;
}

.dropdown ul li {
  padding: 0;
  margin: 0;
}

.dropdown ul li a:link,
.dropdown ul li a:visited {
  display: inline-flex;
  padding: 10px 0.8rem;
  width: 100%;
  box-sizing: border-box;
  color: var(--dropdown-color);
  text-decoration: none;
  text-align: center;
  align-items: center;
  gap: 10px;
}

.dropdown ul li a:hover {
  background-color: var(--dropdown-highlight);
  color: var(--dropdown-background);
}
.dropdown ul li a:hover svg,
.dropdown ul li a:hover svg path {
  fill: #fff !important;
}

/* Close the dropdown with outside clicks */
.dropdown > summary::before {
  display: none;
}

.dropdown[open] > summary::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.site-header .site-control {
  gap: 10px;
}

.itc-modal-show .itc-modal-content {
  background: #1c1c1c;
  color: #fff;
}

.modal-title {
  color: #fff;
}

/* md-размер (<=991px) */
@media (max-width: 991px) {
  /* CSS для ширины от 768px до 991px */
  .section-risks .risks-block .risks-card {
    flex: 1 0 350px;
  }
}
/* sm-размер (<=768px) */
@media (max-width: 767px) {
  .itc-modal-show .itc-modal-content {
    width: 100%;
    margin: 0;
    height: 100%;
    border-radius: 0;
  }
  .itc-modal-show .itc-modal-content .span-primary {
    font-size: 10px !important;
  }
}
/* xs-размер (<=575px) */
@media (max-width: 575px) {
  /* CSS для ширины до 575px (включительно) */
}/*# sourceMappingURL=new_index.css.map */