@font-face {
  font-display: swap;
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.woff2");
}
@font-face {
  font-display: swap;
  font-family: "IBM Plex Serif";
  font-weight: 400;
  src: url("../fonts/IBMPlexSerif-Italic.woff2");
}
@font-face {
  font-display: swap;
  font-family: "IBM Plex Serif";
  font-weight: 500;
  src: url("../fonts/IBMPlexSerif-MediumItalic.woff2");
}
:root {
  --black: #2B2B2B;
  --white: #fff;
  --blue: #008AC8;
  --font-family-1: "Inter", Arial, sans-serif;
  --font-family-2: "IBM Plex Serif", Arial, sans-serif;
  --radius: 12px;
  --common-gap: 32px;
  --padding: 24px;
  --block-padding: 120px;
}

@media (max-width: 991px) {
  :root {
    --common-gap: 24px;
    --padding: 16px;
    --block-padding: 80px;
  }
}
@media (max-width: 767px) {
  :root {
    --common-gap: 16px;
    --block-padding: 64px;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1240px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-right: 8px;
    padding-left: 8px;
  }
  .container .row {
    margin-right: -8px;
    margin-left: -8px;
  }
  .container .row .col-12 {
    padding-right: 8px;
    padding-left: 8px;
  }
}
header, nav, menu, main, section, article, aside, address, footer, noscript {
  display: block;
}

p, ul, ol, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3 {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration: underline;
  /*color: var(--color-font-grey);*/
}
a:hover {
  /*text-decoration: none;		
  color: var(--color-font-grey);*/
}
a:active, a:hover, a:focus {
  /*outline: none !important;*/
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3 {
  font-style: normal;
  font-weight: 600;
  color: var(--black);
  font-family: var(--font-family-1);
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, .h1 span, .h2 span, .h3 span {
  font-style: italic;
}

h1, .h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -3.6px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  h1, .h1 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 40px;
    letter-spacing: normal;
  }
}

h2, .h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.96px;
  text-align: center;
}
h2 span, .h2 span {
  color: var(--blue);
}
@media (max-width: 1199px) {
  h2, .h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
}

h3, .h3 {
  font-size: 32px;
  line-height: normal;
}
@media (max-width: 991px) {
  h3, .h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 22px;
  }
}

button,
.btn {
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 15px;
}
@media (max-width: 991px) {
  button,
  .btn {
    /*height: 100%;*/
    min-height: 1px;
  }
}
@media (max-width: 767px) {
  button,
  .btn {
    padding: 8px;
  }
}
@media (max-width: 767px) {
  button:has(img),
  .btn:has(img) {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
button:hover,
.btn:hover {
  /*color: var(--white);		
  border: 0.5px solid #8934AD;
  background: linear-gradient(98deg, #251B3A 6.85%, #AF62D0 40.38%, #8934AD 68.83%, #251B3A 95.28%, #251B3A 99.31%);
  box-shadow: 0 0 10px 0 #AF62D0 inset, 0 10px 20px 0 rgba(0, 0, 0, 0.20);*/
}
button:focus,
.btn:focus {
  outline: none;
}
@media (max-width: 991px) {
  button,
  .btn {
    /*font-size: 18px;
    padding: 22px var(--padding);*/
  }
}
@media (max-width: 767px) {
  button,
  .btn {
    /*padding: 16px;
    font-size: 16px;		
    */
  }
}

button.type2,
.btn.type2 {
  color: var(--black);
  background: linear-gradient(0deg, #61CEFF 0%, #FFF 100%), #FFF;
  box-shadow: 0 0 20px 0 #FFF inset, 0 40px 80px 0 rgba(0, 138, 200, 0.3);
}
button.type2:hover,
.btn.type2:hover {
  /*border: 0.5px solid var(--white);
  background: linear-gradient(95deg, #111 -3.99%, #2B2B2B 7.18%, #2B2B2B 27.12%, #999 64.71%, #2B2B2B 95.13%, #111 115.67%);
  box-shadow: 0 0 10px 0 #FFF inset, 0 10px 20px 0 rgba(0, 0, 0, 0.20);*/
}

.swiper-horizontal {
  position: relative;
  height: 100%;
}

html {
  height: 100%;
  width: 100%;
  /*scroll-behavior: auto !important;	*/
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  height: 100%;
  width: 100%;
  background: #f7f7f7;
  font-family: var(--font-family-1);
  font-feature-settings: "liga" off, "clig" off;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  color: var(--grey);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-synthesis: none !important;
}

body.mm_active {
  overflow: hidden;
}

/*
body.active, 
body.search,
body.filter {
	overflow: hidden;
}

body.filter:after {

}
*/
.page_wrapper {
  display: flex;
  flex-direction: column;
  height: calc(100% - 84px);
}
@media (max-width: 767px) {
  .page_wrapper {
    height: calc(100% - 94px);
  }
}
.block_header {
  margin: 0 0 64px;
}
.block_header h2 {
  max-width: 1008px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .block_header {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .block_header {
    margin-bottom: 32px;
  }
}

.block_header_text_2 {
  color: var(--blue);
  margin: 24px auto 0;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.72px;
}
@media (max-width: 991px) {
  .block_header_text_2 {
    font-size: 18px;
    line-height: 130%;
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .block_header_text_2 {
    margin-top: 16px;
    font-size: 18px;
    line-height: 130%;
  }
}

.block_header_text {
  margin: 24px auto 0;
  color: var(--black);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.6px;
  max-width: 1008px;
}
@media (max-width: 991px) {
  .block_header_text {
    font-size: 18px;
    line-height: 130%;
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .block_header_text {
    margin-top: 16px;
    font-size: 16px;
  }
}

.block_footer {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block_footer > * {
  min-width: 592px;
}
@media (max-width: 767px) {
  .block_footer > * {
    min-width: 1px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .block_footer {
    margin-top: 32px;
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--padding);
  margin: 0;
}

.form_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.form_wrapper > *.form_row {
  width: 25%;
}
@media (max-width: 767px) {
  .form_wrapper > *.form_row {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .form_wrapper {
    flex-direction: column;
  }
}
.form_wrapper label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
}
.form_wrapper label input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 32px;
  height: 32px;
}
.form_wrapper label input[type=checkbox]:checked + span:after {
  background-image: url("../img/checkbox_filled.svg");
}
.form_wrapper label span {
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  display: block;
  opacity: 0.8;
  padding-left: 40px;
  /*display: flex;	
  align-items: center;
  gap: 4px;*/
}
.form_wrapper label span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: url("../img/checkbox_empty.svg") center no-repeat;
  background-size: contain;
}
.form_wrapper label span a {
  color: var(--white);
  /*display: inline-block;				*/
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.form_wrapper label span a:hover {
  text-decoration: none;
}

/*.modal {
	.form_wrapper {
		label {
			input[type=checkbox] {
				border-color: var(--grey);
			}
			span {
				color: var(--grey);
				a {
					color: var(--grey);
				}
			}
		}
	}
}

	.form_row {
		width: 25%;

		@include _767 {
			width: 100%;
		}
	}*/
textarea,
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
}

textarea,
input[type=text],
input[type=tel],
input[type=password],
input[type=email] {
  width: 100%;
  border-radius: 4px;
  background: var(--white);
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  outline: none;
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  textarea,
  input[type=text],
  input[type=tel],
  input[type=password],
  input[type=email] {
    padding: 8px;
  }
}

.modal textarea,
.modal input[type=text],
.modal input[type=tel],
.modal input[type=password],
.modal input[type=email] {
  box-shadow: none;
  border: 0.5px solid rgba(94, 94, 94, 0.3);
}

input[type=submit].btn {
  padding: 15.5px 16px;
  width: 100%;
}
@media (max-width: 991px) {
  input[type=submit].btn {
    /*padding: 16px 20px;*/
  }
}

textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=email]::-moz-placeholder {
  color: #1D1D1B;
  opacity: 0.6;
}

textarea::placeholder,
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder {
  color: #1D1D1B;
  opacity: 0.6;
}

label {
  display: flex;
  align-items: center;
  gap: 8px;
}
label span {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.064px;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0;
  top: auto;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  padding: 0;
  width: 100%;
  gap: 16px;
  position: relative;
}
.swiper-pagination.swiper-pagination-bullets:not(:has(.swiper-pagination-bullet:only-child)) {
  height: 16px;
}
@media (max-width: 1199px) {
  .swiper-pagination {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .swiper-pagination {
    gap: 8px;
    height: 12px;
  }
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #5E5E5E;
  opacity: 0.3;
  margin: 0;
}
@media (max-width: 767px) {
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url("../img/bullet_active.svg") center no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  /*opacity: 1;
  position: static;*/
  width: 100px;
  height: 100px;
  top: 50%;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 64px;
    height: 64px;
  }
}

.swiper-button-prev {
  left: calc(33.333333% - var(--common-gap) - 8px);
  background-image: url("../img/round_arrow_prev.svg");
}
@media (max-width: 991px) {
  .swiper-button-prev {
    left: 0;
  }
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: 0;
  }
}

.swiper-button-next {
  right: calc(33.333333% - var(--common-gap) - 8px);
  background-image: url("../img/round_arrow_next.svg");
}
@media (max-width: 991px) {
  .swiper-button-next {
    right: 0;
  }
}
@media (max-width: 767px) {
  .swiper-button-next {
    right: 0;
  }
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none;
  }
}

.visible-xs {
  display: none;
}
@media (max-width: 767px) {
  .visible-xs {
    display: flex;
  }
}

.line_left:before {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  left: -13px;
}

.line_right {
  position: relative;
}
@media (max-width: 767px) {
  .line_right img {
    height: 36px;
  }
}
.line_right:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  right: -13px;
}

.block_preheader_text {
  margin-bottom: 24px;
  text-align: center;
}
.block_preheader_text span {
  color: var(--blue);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.6px;
  display: inline-block;
  padding: 10px 36.5px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 30px 0 rgba(97, 206, 255, 0.6);
}
.block_preheader_text.type2 span {
  background: #181A20;
}

header {
  /*position: absolute;	
  top: 0;
  left: 0;
  width: 100%;*/
  min-height: 64px;
  z-index: 2;
}
header.shadow {
  /*border-bottom: 1px solid #A9A9A9;
  box-shadow: 0 0 8px 5px rgba(0, 0, 0, .25);*/
}
@media (max-width: 767px) {
  header {
    min-height: 44px;
  }
}

.header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 0 0;
}
@media (max-width: 767px) {
  .header_wrapper {
    border-radius: 8px;
    padding: 8px 0 0;
  }
}

.mm_active .header_wrapper {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

.hw_logo a {
  display: block;
}
.hw_logo a img {
  width: 160px;
}
@media (max-width: 991px) {
  .hw_logo a img {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .hw_logo a img {
    width: 90px;
  }
}
.hw_wrapper {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  gap: var(--common-gap);
}
@media (max-width: 1199px) {
  .hw_wrapper {
    right: -50%;
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .hw_wrapper {
    right: -66%;
  }
}

.mm_active .hw_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  flex-grow: 0;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--white);
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.5);
  padding: var(--common-gap);
  transition: right 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .mm_active .hw_wrapper {
    width: 66%;
  }
}
.mm_active .hw_wrapper .hw_menu {
  display: flex;
  flex-grow: 0;
}
.mm_active .hw_wrapper .hw_menu ul {
  align-items: flex-end;
  gap: 8px;
}
.mm_active .hw_wrapper .hw_menu ul li {
  font-size: 16px;
}
.mm_active .hw_wrapper .hw_menu ul li a {
  color: var(--black);
  opacity: 0.8;
}
.mm_active .hw_wrapper .hw_social {
  display: flex;
}
.mm_active .hw_wrapper .hw_phone a {
  color: var(--black);
}
.mm_active .mm_trigger {
  display: none;
}
.mm_active .mm_close {
  display: flex;
  justify-content: flex-end;
}

/*.mm_active .hw_wrapper {
	right: 0;
	opacity: 1;
	pointer-events: all;
	transition: right $transition, opacity $transition;
}*/
.mm_close {
  display: none;
}
.mm_close a {
  display: block;
  width: 32px;
  height: 32px;
  background: url("../img/popup_close_icon_dark.svg") center no-repeat;
  background-size: contain;
}

.hw_menu {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 1199px) {
  .hw_menu {
    display: none;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
  }
}
.hw_menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 4px;
}
@media (max-width: 1199px) {
  .hw_menu ul {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .hw_menu ul {
    gap: 16px;
  }
}
.hw_menu ul li {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  position: relative;
}
@media (max-width: 1399px) {
  .hw_menu ul li {
    font-size: 14px;
  }
}
.hw_menu ul li a {
  padding: 8px;
  color: var(--white);
  text-decoration: none;
}
@media (max-width: 1399px) {
  .hw_menu ul li a {
    padding: 4px;
  }
}
@media (max-width: 991px) {
  .hw_menu ul li a {
    /*color: var(--black);*/
  }
}
.hw_menu ul li a:hover {
  /*text-decoration: underline;*/
  border-radius: 8px;
  outline: 1px solid rgba(255, 255, 255, 0.2);
}
.hw_menu ul li span {
  padding: 8px;
  color: var(--blue);
}

.hw_social {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .hw_social {
    display: none;
  }
}
.hw_social a {
  display: block;
}
.hw_social a img {
  width: 28px;
}

.hw_phone {
  font-size: 20px;
  line-height: normal;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.hw_phone a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.hw_phone a span {
  font-weight: 400;
  opacity: 0.6;
}
.hw_phone a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
}
@media (max-width: 767px) {
  .hw_phone {
    font-size: 16px;
  }
}

.mm_trigger {
  /*
  display: none;
  width: 32px;
  height: 32px;

  @include _1199 {					
  	display: flex;
  	flex-direction: column;
  	width: 32px;
  	height: 24px;
  	justify-content: space-between;
  	cursor: pointer;
  }

  @include _767 {	
  	width: 22px;
  	height: 16px;			
  }

  span {
  	display: block;
  	width: 100%;
  	height: 2px;
  	border-radius: 2px;
  	background: var(--white);
  	opacity: .8
  }
  	*/
}

.hw_logout a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hw_logout a img {
  height: 40px;
}
@media (max-width: 767px) {
  .hw_logout a img {
    height: 32px;
  }
}

.thanks_page .page_wrapper {
  height: 100%;
}

main {
  position: relative;
  z-index: 0;
  flex-grow: 1;
  overflow-x: hidden;
  padding: 24px 0 16px;
}
@media (max-width: 767px) {
  main {
    padding: 24px 0 8px;
  }
}

.ai_1 {
  height: 100%;
}
.ai1_notice {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: absolute;
  left: 0;
  top: -24px;
  width: 100%;
  height: 16px;
  font-size: 14px;
  line-height: 1;
  color: #212529;
}
@media (max-width: 767px) {
  .ai1_notice {
    font-size: 12px;
    top: -20px;
  }
}
.ai1_notice img {
  height: 16px;
}
@media (max-width: 767px) {
  .ai1_notice img {
    height: 12px;
  }
}
.ai1_notice.active {
  display: flex;
}

.ai_1 .container,
.ai_1 .row,
.ai_1 .col-12 {
  height: inherit;
}
@media (max-width: 767px) {
  .ai_1 .container,
  .ai_1 .row,
  .ai_1 .col-12 {
    /* height: auto; */
  }
}

.ai_1 .col-12 {
  position: relative;
}

.ai1_wrapper {
  height: inherit;
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .ai1_wrapper {
    flex-direction: column;
    gap: 8px;
  }
}

.ai1w_left {
  width: 360px;
  padding: 16px;
  border: 1px solid #aaa;
  /*height: inherit;*/
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 991px) {
  .ai1w_left {
    width: 290px;
  }
}
@media (max-width: 767px) {
  .ai1w_left {
    width: 100%;
    padding: 8px;
    height: 50%;
    flex-shrink: 0;
    /*overflow: scroll;*/
  }
}
.ai1w_left ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: calc(100% - 91px - 16px);
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .ai1w_left ul {
    height: 100%;
  }
}
.ai1w_left ul li {
  display: none;
  position: relative;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .ai1w_left ul li {
    padding: 0;
  }
}
.ai1w_left ul li.visible {
  display: block;
}
.ai1w_left ul li.active {
  background: #ddd;
  cursor: default;
}
.ai1w_left ul li.active:hover {
  background: #ddd;
}
.ai1w_left ul li:hover {
  background: #eaeaea;
}
.ai1w_left ul li:after {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ccc;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.ai1wl_filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid #aaa;
}
@media (max-width: 767px) {
  .ai1wl_filter {
    padding: 8px;
  }
}

.ai1wlf_top {
  display: flex;
  gap: 8px;
}
.ai1wlf_top > * {
  width: 50%;
}
@media (max-width: 767px) {
  .ai1wlf_top > * {
    width: 100%;
  }
}
.ai1wlf_top select {
  width: 100%;
  height: 24px;
  border: 1px solid #aaa;
  font-size: 14px;
  line-height: normal;
  outline: none;
  border-radius: 4px;
}
.ai1wlf_bottom input {
  padding: 2.5px 5px;
}

.ai1wl_row {
  display: flex;
  gap: 8px;
  font-size: 14px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .ai1wl_row {
    font-size: 12px;
    line-height: normal;
  }
}

.ai1wlr_user {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.ai1wlru_name,
.ai1wrh_name {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 767px) {
  .ai1wlru_name,
  .ai1wrh_name {
    gap: 4px;
  }
}

.ai1wlrun_status,
.ai1wrhn_status {
  display: flex;
  gap: 2px;
  align-items: center;
}
.ai1wlrun_name {
  flex-grow: 1;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .ai1wlrun_name {
    font-weight: 500;
  }
}

.ai1wlru_msg {
  opacity: 0.5;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ai1wlr_data {
  width: 105px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-weight: 500;
  font-size: 12px;
}
@media (max-width: 767px) {
  .ai1wlr_data {
    font-size: 10px;
  }
}

.ai1w_right {
  flex-grow: 1;
  padding: 16px;
  border: 1px solid #aaa;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /*height: inherit;*/
}
@media (max-width: 767px) {
  .ai1w_right {
    /* height: auto; */
    height: 50%;
    padding: 8px;
    gap: 8px;
    /*overflow: auto;					*/
  }
}

.ai1wr_header {
  padding: 16px;
  border: 1px solid #aaa;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 767px) {
  .ai1wr_header {
    padding: 8px;
  }
}

.ai1wrh_name a {
  color: #212529;
}

.ai1wrhn_name {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .ai1wrhn_name {
    font-size: 14px;
    font-weight: 600;
  }
}

.ai1wrh_status {
  display: flex;
  gap: 16px;
}

.ai1wrhs_current {
  font-size: 14px;
}
.ai1wrhs_current span {
  font-weight: 500;
}

.ai1wrhs_list {
  position: relative;
}

.ai1wrhsl_trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3px;
  width: 24px;
  height: 19px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .ai1wrhsl_trigger {
    gap: 2px;
    width: 20px;
    height: 17px;
  }
}
.ai1wrhsl_trigger span {
  width: 100%;
  height: 3px;
  display: block;
  background: #000;
  opacity: 0.8;
}

.ai1wrhsl_wrapper {
  position: absolute;
  top: 24px;
  right: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 8px;
  width: 200px;
  display: none;
  z-index: 1;
}
.ai1wrhsl_wrapper.active {
  display: block;
}
.ai1wrhsl_wrapper form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ai1wrhsl_wrapper form label {
  display: block;
  padding: 2px;
}
.ai1wrhsl_wrapper form label span {
  font-size: 12px;
  color: #000;
  opacity: 0.8;
}
.ai1wr_body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  max-height: calc(100% - 74px);
}
@media (max-width: 767px) {
  .ai1wr_body {
    max-height: none;
    /*height: calc(100% - 42px);*/
    overflow: hidden;
    gap: 8px;
  }
}

.ai1wrb_messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* max-height: calc(100% - 49px - 16px); */
  overflow-y: scroll;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .ai1wrb_messages {
    height: calc(100% - 43px);
    /*overflow: hidden;*/
  }
}

.ai1wrbm_row {
  display: flex;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 8px;
  background: #f1f1f1;
  border-radius: 4px;
}
.ai1wrbm_row.answer {
  margin-left: 48px;
}
@media (max-width: 991px) {
  .ai1wrbm_row.answer {
    margin-left: 24px;
  }
}
@media (max-width: 767px) {
  .ai1wrbm_row.answer {
    margin-left: 12px;
  }
}
@media (max-width: 767px) {
  .ai1wrbm_row {
    gap: 4px;
  }
}

.ai1wrbmr_img {
  width: 24px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .ai1wrbmr_img {
    width: 16px;
    display: flex;
    align-items: baseline;
  }
}
.ai1wrbmr_img img {
  width: 100%;
}

.ai1wrbmr_msg {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
  overflow: hidden;
}

.ai1wrbmrm_text {
  font-size: 14px;
  opacity: 0.6;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  .ai1wrbmrm_text {
    font-size: 12px;
    line-height: normal;
  }
}

.ai1wrbmrm_time {
  text-align: right;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .ai1wrbmrm_time {
    font-size: 10px;
    line-height: 1;
  }
}

.ai1wrb_input {
  flex-shrink: 0;
}
.ai1wrb_input form {
  display: flex;
  gap: 16px;
  flex-direction: row;
}
@media (max-width: 767px) {
  .ai1wrb_input form {
    gap: 8px;
  }
}
.ai1w_login {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai1w_login form {
  width: 100%;
  max-width: 600px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 16px;
}
.ai1w_login .ai1wl_row {
  flex-direction: column;
}

.ai1wl_row {
  /*display: flex;
  flex-direction: column;
  gap: 8px;*/
}
.ai1wl_row span {
  display: block;
  font-size: 14px;
  color: #000;
  opacity: 0.8;
}
.ai1wl_row.error_row {
  display: none;
}
.ai1wl_row.error_row.active {
  display: flex;
}
.ai1wl_row.error_row span {
  font-size: 16px;
  font-weight: 700;
  color: #dd4b39;
  opacity: 1;
  margin-bottom: 16px;
}

footer {
  padding: 16px 0;
}
@media (max-width: 991px) {
  footer {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 8px 0;
  }
}

.f_wrapper {
  display: flex;
  justify-content: space-between;
  gap: var(--common-gap);
}
@media (max-width: 767px) {
  .f_wrapper {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .fw_left img {
    height: 36px;
  }
}

.fw_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
@media (max-width: 767px) {
  .fw_right p {
    font-size: 12px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .fw_right {
    gap: 0;
    align-items: flex-start;
  }
}

.modal-fullscreen .modal-body {
  overflow: unset;
}

.modal-content {
  background: rgba(0, 0, 0, 0.8);
  /*padding-right: 17px;*/
  height: auto;
  min-height: 100%;
}
@media (max-width: 767px) {
  .modal-content {
    padding: 0;
  }
}

.modal-fullscreen .modal-content {
  height: auto;
  min-height: 100%;
}

.modal-body {
  padding: 120px 0;
  flex: none;
}
@media (min-width: 1400px) {
  .modal-body .container {
    max-width: 1440px;
  }
}
@media (max-width: 1199px) {
  .modal-body {
    padding: 64px 0;
  }
}
@media (max-width: 1199px) {
  .modal-body {
    padding: 48px 0;
  }
}
@media (max-width: 767px) {
  .modal-body {
    padding: 16px 0;
  }
}
@media (max-width: 767px) {
  .modal-body .container {
    padding: 0 16px;
  }
}
.modal_content {
  position: relative;
  z-index: 1;
  padding: 90px 64px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1440px;
  background: url("../img/popup_bg.jpg") center top no-repeat;
  background-size: cover;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .modal_content {
    padding: 64px 52px;
  }
}
@media (max-width: 991px) {
  .modal_content {
    padding: 48px 32px 32px;
  }
}
@media (max-width: 767px) {
  .modal_content {
    width: 100%;
    padding: 48px 16px 32px;
  }
}

#thanks .modal_content {
  padding: 144px var(--padding);
}

.mb_close {
  position: absolute;
  top: 48px;
  right: 48px;
  width: 64px;
  height: 64px;
  background: url("../img/popup_close_icon.svg") center no-repeat;
  background-size: contain;
  z-index: 2;
}
@media (max-width: 1199px) {
  .mb_close {
    top: 24px;
    right: 24px;
  }
}
@media (max-width: 991px) {
  .mb_close {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
}
.mc_title {
  color: var(--white);
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.96px;
  margin-bottom: 24px;
  padding: 0 60px;
}
@media (max-width: 991px) {
  .mc_title {
    font-size: 32px;
    margin-bottom: 16px;
    letter-spacing: -1px;
  }
}
@media (max-width: 767px) {
  .mc_title {
    font-size: 24px;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    padding: 0;
  }
}

.mc_text {
  color: var(--white);
  text-align: center;
  max-width: 1008px;
  margin: 0 auto 32px;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 991px) {
  .mc_text {
    font-size: 16px;
    line-height: 130%;
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .mc_text {
    font-size: 14px;
    gap: 6px;
    margin-bottom: 16px;
  }
}

#thanks .mc_text {
  margin: 0 auto var(--common-gap);
  max-width: 540px;
}

.modal .form_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 592px;
  margin: 0 auto;
}
.modal .form_wrapper > *.form_row {
  width: 100%;
}
@media (max-width: 991px) {
  .modal .form_wrapper {
    padding: 0;
  }
}
.modal .form_wrapper .form_row input[type=submit],
.modal .form_wrapper .form_row button[type=submit] {
  margin-top: 8px;
  width: 100%;
}
@media (max-width: 991px) {
  .modal .form_wrapper .form_row input[type=submit],
  .modal .form_wrapper .form_row button[type=submit] {
    padding: 10px;
  }
}/*# sourceMappingURL=styles.css.map */