/*!*******************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/accordion-only/accordion-only.scss ***!
  \*******************************************************************************************************************************************************************************************************/
accordion-only {
  --hover-transition-duration: .2s;
  --expand-transition-duration: .5s;
  --gap: 20px;
  background: var(--bg-color);
}
accordion-only .subtitle {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
accordion-only .flex-wrapper {
  display: flex;
  gap: var(--gap);
}
accordion-only .accordion-column {
  width: calc(50% - var(--gap) / 2);
}
accordion-only .accordion-column > *:not(:last-child) {
  margin-bottom: 20px;
}
accordion-only .primary-block {
  width: 100%;
  background: var(--block-primary-bg-color);
  border-radius: var(--block-primary-border-radius);
  box-shadow: var(--block-primary-box-shadow);
  cursor: pointer;
  transition: all var(--hover-transition-duration) ease;
}
accordion-only .primary-block:hover, accordion-only .primary-block.expand {
  background-color: var(--block-primary-bg-hover-color);
}
accordion-only .primary-block .visible-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}
accordion-only .primary-block .visible-content .title {
  margin-bottom: 0;
  transition: color var(--hover-transition-duration) ease;
}
accordion-only .primary-block .visible-content .icon {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
accordion-only .primary-block .visible-content .icon svg {
  width: 16px;
  height: auto;
  transition: transform var(--hover-transition-duration) linear;
}
accordion-only .primary-block .visible-content .icon svg path {
  stroke: var(--h-color);
  transition: stroke var(--hover-transition-duration) ease;
}
accordion-only .primary-block .expandable-wrapper {
  max-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: max-height var(--expand-transition-duration) ease;
}
accordion-only .primary-block .expandable-wrapper .content {
  padding: 20px 15px;
}
accordion-only .primary-block .expandable-wrapper .content .text, accordion-only .primary-block .expandable-wrapper .content li {
  font-size: var(--text-font-size);
  font-weight: var(--text-font-weight);
  color: var(--block-primary-text-color);
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: inherit;
}
accordion-only .primary-block .expandable-wrapper .content ul {
  padding-top: 10px;
  padding-left: 18px;
  list-style: disc;
}
accordion-only .primary-block .expandable-wrapper .content ol {
  padding-top: 10px;
  padding-left: 18px;
  list-style: decimal;
}
accordion-only .primary-block.expand .expandable-wrapper {
  max-height: 200px;
}
accordion-only .primary-block.expand .icon svg {
  transform: rotate(180deg);
}
accordion-only .primary-block.overflow .expandable-wrapper {
  overflow: auto;
}
accordion-only .primary-block:hover .title, accordion-only .primary-block.expand .title {
  color: var(--block-primary-accent-color);
}
accordion-only .primary-block:hover .icon svg path, accordion-only .primary-block.expand .icon svg path {
  stroke: var(--block-primary-accent-color);
}
@media screen and (max-width: 800px) {
  accordion-only .flex-wrapper {
    flex-direction: column;
  }
  accordion-only .accordion-column {
    width: 100%;
  }
}
/*!***********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/button-component/button-component.scss ***!
  \***********************************************************************************************************************************************************************************************************/
button-component .btn {
  color: var(--button-primary-normal-font-color);
  border-radius: var(--button-primary-border-radius);
  border: 1px solid;
  background-color: var(--button-primary-normal-fill-color);
  border-color: var(--button-primary-normal-border-color);
  padding: 20px 25px;
  cursor: pointer;
  font-weight: var(--button-primary-font-weight);
  transition: all 0.2s ease;
}
button-component .btn:hover {
  color: var(--button-primary-hover-font-color);
  background-color: var(--button-primary-hover-fill-color);
  border-color: var(--button-primary-hover-border-color);
}
button-component .btn.empty {
  color: var(--button-secondary-normal-font-color);
  border-radius: var(--button-secondary-border-radius);
  background-color: var(--button-secondary-normal-fill-color);
  border-color: var(--button-secondary-normal-border-color);
  font-weight: var(--button-secondary-font-weight);
}
button-component .btn.empty:hover {
  color: var(--button-secondary-hover-font-color);
  background-color: var(--button-secondary-hover-fill-color);
  border-color: var(--button-secondary-hover-border-color);
}
button-component a {
  display: block;
}
/*!*****************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/cookies-popup/cookies-popup.scss ***!
  \*****************************************************************************************************************************************************************************************************/
cookies-popup {
  display: none;
}
cookies-popup.show {
  display: block;
  background-color: #10182F;
  padding: 15px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all 1s ease;
}
cookies-popup.show.hide {
  bottom: -100%;
}
cookies-popup.show .cross {
  cursor: pointer;
  margin-left: 15px;
}
cookies-popup.show .flex_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
cookies-popup.show .text {
  color: #fff;
  font-size: 16px;
  line-height: 25px;
}
cookies-popup.show .text a {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  text-decoration: underline;
  transition: all 0.2s ease;
}
cookies-popup.show .text a:hover {
  color: #00BFD6;
}
cookies-popup.show .flex-wrapper {
  gap: 15px;
  align-items: center;
}
cookies-popup.show .text-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
}
cookies-popup.show .text-wrapper .text.mobile {
  display: none;
}
cookies-popup.show .text-wrapper a {
  font-size: 18px;
  text-decoration: none;
}
cookies-popup.show .text-wrapper a:hover {
  color: #D9D9D9;
}
cookies-popup.show .text-wrapper svg {
  min-width: 60px;
}
cookies-popup.show .btn {
  font-size: 18px;
  cursor: pointer;
  padding: 10px 25px;
  color: #10182F;
  border-radius: 5px;
  background-color: #fff;
  border: 2px solid transparent;
  transition: all 0.3s ease-in;
}
cookies-popup.show .btn:hover {
  color: #fff;
  background-color: #10182F;
  border-color: #fff;
}
cookies-popup.show .btn.empty {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
cookies-popup.show .btn.empty:hover {
  color: #10182F;
  background-color: #fff;
  border-color: #10182F;
}

@media screen and (max-width: 950px) {
  cookies-popup.show .flex_wrap .text.desktop {
    display: none;
  }
  cookies-popup.show .flex_wrap .text.mobile {
    display: block;
  }
}
@media screen and (max-width: 675px) {
  cookies-popup.show .container {
    padding: 0 15px;
  }
  cookies-popup.show .btn {
    padding: 8px 20px;
  }
}
@media screen and (max-width: 620px) {
  cookies-popup.show .flex_wrap {
    flex-direction: column;
    gap: 15px;
  }
  cookies-popup.show .text-wrapper {
    justify-content: center;
    width: 100%;
    gap: 15px;
  }
}
/*!*********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/edit-mode/edit-mode.scss ***!
  \*********************************************************************************************************************************************************************************************/
body.edit-mode-enabled [gh-id]:hover {
  outline: 1px solid #2b61fa;
}

.tox-tinymce-inline .tox-editor-header {
  position: absolute !important;
  top: -15px !important;
  left: 0;
  z-index: 1000 !important;
  width: max-content;
}

edit-mode {
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
edit-mode .edit-mode-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
edit-mode .edit-mode-switch {
  height: 0;
  width: 0;
  visibility: hidden;
}
edit-mode .edit-mode-label {
  cursor: pointer;
  text-indent: -9999px;
  width: 60px;
  height: 30px;
  background: #dbdbdb;
  display: block;
  border-radius: 100px;
  position: relative;
}
edit-mode .edit-mode-label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}
edit-mode .edit-mode-switch:checked + .edit-mode-label {
  background: #2b61fa;
}
edit-mode .edit-mode-switch:checked + .edit-mode-label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}
edit-mode .edit-mode-label:active:after {
  width: 36px;
}
edit-mode p {
  font-size: 24px;
  color: #fff;
}
/*!******************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/edit-mode/gudhub-login-popup.scss ***!
  \******************************************************************************************************************************************************************************************************/
.gudhub-login-popup__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}
.gudhub-login-popup__bg.active {
  display: flex;
}
.gudhub-login-popup__bg gudhub-login form {
  background: #ffffff;
  margin-top: 0px;
  padding: 15px;
  font-family: Helvetica;
}
.gudhub-login-popup__bg gudhub-login form h2 {
  font-family: Helvetica;
  color: #2b60fa;
}
.gudhub-login-popup__bg gudhub-login form .change-auth-form {
  display: none;
}
.gudhub-login-popup__bg gudhub-login form .auth__button {
  background: #2b60fa;
  font-family: Helvetica;
}
.gudhub-login-popup__bg gudhub-login form .login-form__item label {
  font-family: Helvetica;
}
.gudhub-login-popup__bg gudhub-login form .login-form__item input {
  font-family: Helvetica;
}
/*!***********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/edit-mode/edit-mode-notifications.scss ***!
  \***********************************************************************************************************************************************************************************************************/
edit-mode-notifications {
  position: fixed;
  left: 25px;
  top: 25px;
  z-index: 99999;
}
edit-mode-notifications .notification {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 10px 20px;
  color: #fff;
  font-family: Helvetica;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}
/*!*************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/get-in-touch-form/get-in-touch-form.scss ***!
  \*************************************************************************************************************************************************************************************************************/
get-in-touch-popup get-in-touch-form {
  background-color: transparent;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
get-in-touch-form .get-in-touch-form {
  position: relative;
  width: 100%;
  max-width: 600px;
  background-color: var(--block-primary-bg-color);
  display: block;
  padding: 30px;
  border-radius: var(--block-primary-border-radius);
}
get-in-touch-form .get-in-touch-form .like_title {
  font-size: var(--h3-font-size);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0em;
  text-align: center;
  color: var(--block-primary-h-color);
  margin-bottom: 20px;
}
get-in-touch-form .get-in-touch-form .subtitle {
  font-size: var(--text-font-size);
  font-weight: var(--text-font-weight);
  line-height: 120%;
  letter-spacing: 0em;
  text-align: center;
  color: var(--subtitle-color);
  margin-bottom: 20px;
}
get-in-touch-form .get-in-touch-form .col-1 {
  width: 8.3333333333%;
}
get-in-touch-form .get-in-touch-form .col-2 {
  width: 16.6666666667%;
}
get-in-touch-form .get-in-touch-form .col-3 {
  width: 25%;
}
get-in-touch-form .get-in-touch-form .col-4 {
  width: 33.3333333333%;
}
get-in-touch-form .get-in-touch-form .col-5 {
  width: 41.6666666667%;
}
get-in-touch-form .get-in-touch-form .col-6 {
  width: 50%;
}
get-in-touch-form .get-in-touch-form .col-7 {
  width: 58.3333333333%;
}
get-in-touch-form .get-in-touch-form .col-8 {
  width: 66.6666666667%;
}
get-in-touch-form .get-in-touch-form .col-9 {
  width: 75%;
}
get-in-touch-form .get-in-touch-form .col-10 {
  width: 83.3333333333%;
}
get-in-touch-form .get-in-touch-form .col-11 {
  width: 91.6666666667%;
}
get-in-touch-form .get-in-touch-form .col-12 {
  width: 100%;
}
get-in-touch-form .get-in-touch-form form {
  width: 100%;
  max-width: 950px;
  margin-right: 24px;
}
get-in-touch-form .get-in-touch-form form .btn_wrapper {
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
get-in-touch-form .get-in-touch-form form .btn_wrapper .btn {
  font-size: 16px;
}
get-in-touch-form .get-in-touch-form form .btn_wrapper .btn:disabled {
  opacity: 0;
}
get-in-touch-form .get-in-touch-form form .form_wrap {
  display: flex;
  flex-wrap: wrap;
}
get-in-touch-form .get-in-touch-form form .input-wrap {
  position: relative;
  padding: 8px;
  flex: 0 0 auto;
}
get-in-touch-form .get-in-touch-form form input {
  font-family: var(--font-family);
  outline: none;
  border-radius: var(--input-border-radius);
  font-size: 14px;
  width: 100%;
  height: 100%;
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-border-color);
  padding: 7px 17px;
  color: var(--input-text-color);
  height: 50px;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}
get-in-touch-form .get-in-touch-form form input:hover, get-in-touch-form .get-in-touch-form form input:focus {
  border-color: var(--input-active-border-color);
}
get-in-touch-form .get-in-touch-form form input::placeholder {
  color: var(--input-placeholder-color);
}
get-in-touch-form .get-in-touch-form form input:-webkit-autofill, get-in-touch-form .get-in-touch-form form input:-webkit-autofill:hover, get-in-touch-form .get-in-touch-form form input:-webkit-autofill:focus, get-in-touch-form .get-in-touch-form form input:-webkit-autofill:active {
  background-color: transparent;
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  -webkit-text-fill-color: var(--input-text-color);
}
get-in-touch-form .get-in-touch-form form input.error + .email-error, get-in-touch-form .get-in-touch-form form input.error + .phone-error {
  color: #FF7D7D;
}
get-in-touch-form .get-in-touch-form form .email-error, get-in-touch-form .get-in-touch-form form .phone-error {
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}
get-in-touch-form .get-in-touch-form form span {
  display: block;
  position: absolute;
  left: 10px;
  bottom: -2px;
  color: transparent;
  transition: all 0.2s ease;
}
get-in-touch-form .get-in-touch-form form textarea {
  width: 100%;
  font-family: var(--font-family);
  height: 145px;
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-border-color);
  padding: 7px 17px;
  color: var(--input-text-color);
  outline: none;
  border-radius: var(--input-border-radius);
  margin-bottom: 10px;
  resize: none;
  font-weight: 300;
  font-size: 14px;
  line-height: 36px;
  transition: all 0.2s ease;
}
get-in-touch-form .get-in-touch-form form textarea::placeholder {
  font-weight: 300;
  font-size: 14px;
  line-height: 36px;
  color: var(--input-placeholder-color);
}
get-in-touch-form .get-in-touch-form form textarea:hover {
  border-color: var(--input-active-border-color);
}
get-in-touch-form .get-in-touch-form form .success_text {
  position: relative;
  top: -50px;
  color: transparent;
  transition: all 0.2s ease;
  display: none;
}
get-in-touch-form .get-in-touch-form form.success .success_text {
  display: block;
  top: -12px;
  color: green;
}
get-in-touch-form .get-in-touch-form .overflow {
  opacity: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: calc(var(--block-primary-border-radius) - 5px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: opacity 0.5s ease;
}
get-in-touch-form .get-in-touch-form .overflow .icon_wrapper {
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  border-bottom: solid 4px var(--accent-color);
}
get-in-touch-form .get-in-touch-form .overflow .icon_wrapper .icon {
  width: 150px;
}
get-in-touch-form .get-in-touch-form .overflow .icon_wrapper .icon svg {
  width: 100%;
  height: auto;
}
get-in-touch-form .get-in-touch-form .overflow .middle {
  max-width: 340px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
get-in-touch-form .get-in-touch-form .overflow .middle .bold {
  font-size: var(--h1-font-size);
  color: var(--accent-color);
}
get-in-touch-form .get-in-touch-form .overflow.success .icon {
  margin-left: 10px;
}
get-in-touch-form .get-in-touch-form .overflow.success .icon svg path {
  fill: var(--accent-color);
}
get-in-touch-form .get-in-touch-form .overflow.success .check_entity span:first-child {
  color: var(--accent-color);
}
get-in-touch-form .get-in-touch-form .overflow.success .check_entity.phone_entity {
  display: none;
}
get-in-touch-form .get-in-touch-form .overflow.success .check_entity.phone_entity.provided {
  display: block;
}
get-in-touch-form .get-in-touch-form .overflow.fail .icon svg path:nth-child(1) {
  fill: var(--accent-color);
}
get-in-touch-form .get-in-touch-form .overflow.fail .icon svg path:nth-child(2) {
  fill: #fff;
}
get-in-touch-form .get-in-touch-form .overflow.fail .restart_button {
  width: 50px;
  transform: scaleX(-1);
  transition: transform 0.4s ease-out;
  cursor: pointer;
}
get-in-touch-form .get-in-touch-form .overflow.fail .restart_button svg {
  transition: all 0.4s ease-in-out;
}
get-in-touch-form .get-in-touch-form .overflow.fail .restart_button svg circle {
  fill: var(--accent-color);
}
get-in-touch-form .get-in-touch-form .overflow.fail .restart_button:hover svg {
  transform: rotate(-180deg);
}
get-in-touch-form[data-in-popup] .get-in-touch-form {
  padding-top: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
get-in-touch-form[data-in-popup] .get-in-touch-form .overflow {
  box-shadow: none;
}
get-in-touch-form[data-in-popup] .get-in-touch-form .overflow .icon {
  width: 100px;
}
get-in-touch-form[data-in-popup] .get-in-touch-form .overflow .bold {
  font-size: 32px;
}
get-in-touch-form.loading .btn_wrapper {
  position: relative;
}
get-in-touch-form.loading .btn_wrapper button[type=submit] {
  opacity: 0;
  transition: none;
  cursor: none;
}
get-in-touch-form.loading .btn_wrapper .loader {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border: 10px solid var(--accent-color);
  border-bottom-color: #fff;
  border-radius: 50%;
  z-index: 11;
  animation: loading 2s linear infinite;
}
get-in-touch-form.success .overflow.success {
  opacity: 1;
  z-index: 1;
}
get-in-touch-form.fail .overflow.fail {
  opacity: 1;
  z-index: 1;
}
@media screen and (max-width: 650px) {
  get-in-touch-form .get-in-touch-form form .input-wrap {
    width: 100%;
    padding: 4px;
  }
  get-in-touch-form .get-in-touch-form form .btn_wrapper .btn {
    width: 100%;
  }
}

popup-container[data-position=bottom-right] .popup_top {
  margin-bottom: 10px;
}
popup-container[data-position=bottom-right] get-in-touch-form .get-in-touch-form {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}
popup-container[data-position=bottom-right] get-in-touch-form .get-in-touch-form .popup_text {
  margin-bottom: 5px;
}
popup-container[data-position=bottom-right] get-in-touch-form .get-in-touch-form .btn {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}
popup-container[data-position=bottom-right] get-in-touch-form .get-in-touch-form .success-overflow .bold {
  font-size: 42px;
}
popup-container[data-position=bottom-right] get-in-touch-form .get-in-touch-form .success-overflow .icon {
  width: 100px;
}
@media screen and (max-width: 400px) {
  popup-container[data-position=bottom-right] get-in-touch-form .get-in-touch-form {
    padding: 15px;
  }
  popup-container[data-position=bottom-right] get-in-touch-form .get-in-touch-form .btn {
    padding: 15px 20px;
  }
}
/*!*************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/popup/popup.scss ***!
  \*************************************************************************************************************************************************************************************/
popup-container .background_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
popup-container input, popup-container textarea {
  border: 1px solid #05183A !important;
}
popup-container .popup_top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  right: 15px;
  top: 15px;
  margin-bottom: 15px;
  z-index: 2;
}
popup-container .popup_top .close {
  cursor: pointer;
}
popup-container .popup {
  background-color: #fff;
  border-radius: var(--block-secondary-border-radius);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  border: 1px solid #efefef;
  margin-top: 200px;
  transition: all 0.3s ease;
}
popup-container.active .background_shadow {
  opacity: 1;
  pointer-events: all;
}
popup-container.active .popup {
  margin-top: 0;
}
popup-container[data-position=bottom-right] .popup {
  width: 360px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  border-radius: 15px;
}
@media screen and (max-width: 650px) {
  popup-container[data-position=bottom-right] .popup {
    right: 50%;
    transform: translate(50%);
  }
}
popup-container[data-no-bg-shadow] .background_shadow {
  height: 0;
  top: 100%;
}

@media screen and (max-width: 400px) {
  popup-container .popup {
    width: 95%;
  }
}
/*!*********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!../../ssg-web-components-library/src/components/text-only/text-only.scss ***!
  \*********************************************************************************************************************************************************************************************/
text-only {
  background-color: var(--bg-color);
}
text-only.centered h2 {
  text-align: center;
}
text-only.centered .content {
  text-align: center;
}
text-only .content {
  font-size: 16px;
  line-height: 25px;
  color: var(--text-color);
}
/*!****************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/custom-form/custom-form.scss ***!
  \****************************************************************************************************************************************************************************/
@charset "UTF-8";
get-in-touch-popup custom-form {
  background-color: transparent;
}

custom-form .get-in-touch-form {
  position: relative;
  width: 100%;
  max-width: 600px;
  background-color: var(--block-primary-bg-color);
  display: block;
  padding: 30px;
  border-radius: var(--block-primary-border-radius);
}
custom-form .get-in-touch-form .like_title {
  font-size: var(--h3-font-size);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0em;
  text-align: center;
  color: var(--block-primary-h-color);
  margin-bottom: 20px;
}
custom-form .get-in-touch-form .subtitle {
  font-size: var(--text-font-size);
  font-weight: var(--text-font-weight);
  line-height: 120%;
  letter-spacing: 0em;
  text-align: center;
  color: var(--subtitle-color);
  margin-bottom: 20px;
}
custom-form .get-in-touch-form .col-1 {
  width: 8.3333333333%;
}
custom-form .get-in-touch-form .col-2 {
  width: 16.6666666667%;
}
custom-form .get-in-touch-form .col-3 {
  width: 25%;
}
custom-form .get-in-touch-form .col-4 {
  width: 33.3333333333%;
}
custom-form .get-in-touch-form .col-5 {
  width: 41.6666666667%;
}
custom-form .get-in-touch-form .col-6 {
  width: 50%;
}
custom-form .get-in-touch-form .col-7 {
  width: 58.3333333333%;
}
custom-form .get-in-touch-form .col-8 {
  width: 66.6666666667%;
}
custom-form .get-in-touch-form .col-9 {
  width: 75%;
}
custom-form .get-in-touch-form .col-10 {
  width: 83.3333333333%;
}
custom-form .get-in-touch-form .col-11 {
  width: 91.6666666667%;
}
custom-form .get-in-touch-form .col-12 {
  width: 100%;
}
custom-form .get-in-touch-form form {
  width: 100%;
  max-width: 950px;
  margin-right: 24px;
}
custom-form .get-in-touch-form form .checkbox_wrap {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
  padding: 8px;
}
custom-form .get-in-touch-form form .checkbox_wrap input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  min-width: 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #696767;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 8px;
  background-color: #fff;
  transition: all 0.2s ease;
}
custom-form .get-in-touch-form form .checkbox_wrap input[type=checkbox]:checked {
  background-color: #B3E920;
  border-color: #B3E920;
}
custom-form .get-in-touch-form form .checkbox_wrap input[type=checkbox]:checked::after {
  content: "✔";
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 3px;
}
custom-form .get-in-touch-form form .checkbox_wrap label {
  font-size: 12px;
  cursor: pointer;
  color: #696767;
}
custom-form .get-in-touch-form form .btn_wrapper {
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
custom-form .get-in-touch-form form .btn_wrapper .btn {
  font-size: 16px;
}
custom-form .get-in-touch-form form .btn_wrapper .btn:disabled {
  opacity: 0;
}
custom-form .get-in-touch-form form .form_wrap {
  display: flex;
  flex-wrap: wrap;
}
custom-form .get-in-touch-form form .input-wrap {
  position: relative;
  padding: 8px;
  flex: 0 0 auto;
}
custom-form .get-in-touch-form form input {
  font-family: var(--font-family);
  outline: none;
  border-radius: var(--input-border-radius);
  font-size: 14px;
  width: 100%;
  height: 100%;
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-border-color);
  padding: 7px 17px;
  color: var(--input-text-color);
  height: 50px;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}
custom-form .get-in-touch-form form input:hover, custom-form .get-in-touch-form form input:focus {
  border-color: var(--input-active-border-color);
}
custom-form .get-in-touch-form form input::placeholder {
  color: var(--input-placeholder-color);
}
custom-form .get-in-touch-form form input:-webkit-autofill, custom-form .get-in-touch-form form input:-webkit-autofill:hover, custom-form .get-in-touch-form form input:-webkit-autofill:focus, custom-form .get-in-touch-form form input:-webkit-autofill:active {
  background-color: transparent;
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  -webkit-text-fill-color: var(--input-text-color);
}
custom-form .get-in-touch-form form input.error + .email-error, custom-form .get-in-touch-form form input.error + .phone-error {
  color: #FF7D7D;
}
custom-form .get-in-touch-form form .email-error,
custom-form .get-in-touch-form form .phone-error {
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}
custom-form .get-in-touch-form form span {
  display: block;
  position: absolute;
  left: 10px;
  bottom: -2px;
  color: transparent;
  transition: all 0.2s ease;
}
custom-form .get-in-touch-form form textarea {
  width: 100%;
  font-family: var(--font-family);
  height: 145px;
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-border-color);
  padding: 7px 17px;
  color: var(--input-text-color);
  outline: none;
  border-radius: var(--input-border-radius);
  margin-bottom: 10px;
  resize: none;
  font-weight: 300;
  font-size: 14px;
  line-height: 36px;
  transition: all 0.2s ease;
}
custom-form .get-in-touch-form form textarea::placeholder {
  font-weight: 300;
  font-size: 14px;
  line-height: 36px;
  color: var(--input-placeholder-color);
}
custom-form .get-in-touch-form form textarea:hover {
  border-color: var(--input-active-border-color);
}
custom-form .get-in-touch-form form .success_text {
  position: relative;
  top: -50px;
  color: transparent;
  transition: all 0.2s ease;
  display: none;
}
custom-form .get-in-touch-form form.success .success_text {
  display: block;
  top: -12px;
  color: green;
}
custom-form .get-in-touch-form .overflow {
  opacity: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: calc(var(--block-primary-border-radius) - 5px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: opacity 0.5s ease;
}
custom-form .get-in-touch-form .overflow .icon_wrapper {
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  border-bottom: solid 4px var(--accent-color);
}
custom-form .get-in-touch-form .overflow .icon_wrapper .icon {
  width: 150px;
}
custom-form .get-in-touch-form .overflow .icon_wrapper .icon svg {
  width: 100%;
  height: auto;
}
custom-form .get-in-touch-form .overflow .middle {
  max-width: 340px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
custom-form .get-in-touch-form .overflow .middle .bold {
  font-size: clamp(50px, 5vw, var(--h1-font-size));
  color: var(--accent-color);
}
custom-form .get-in-touch-form .overflow.success .icon {
  margin-left: 10px;
}
custom-form .get-in-touch-form .overflow.success .icon svg path {
  fill: var(--accent-color);
}
custom-form .get-in-touch-form .overflow.success .check_entity span:first-child {
  color: var(--accent-color);
}
custom-form .get-in-touch-form .overflow.success .check_entity.phone_entity {
  display: none;
}
custom-form .get-in-touch-form .overflow.success .check_entity.phone_entity.provided {
  display: block;
}
custom-form .get-in-touch-form .overflow.fail .icon svg path:nth-child(1) {
  fill: var(--accent-color);
}
custom-form .get-in-touch-form .overflow.fail .icon svg path:nth-child(2) {
  fill: #fff;
}
custom-form .get-in-touch-form .overflow.fail .restart_button {
  width: 50px;
  transform: scaleX(-1);
  transition: transform 0.4s ease-out;
  cursor: pointer;
}
custom-form .get-in-touch-form .overflow.fail .restart_button svg {
  transition: all 0.4s ease-in-out;
}
custom-form .get-in-touch-form .overflow.fail .restart_button svg circle {
  fill: var(--accent-color);
}
custom-form .get-in-touch-form .overflow.fail .restart_button:hover svg {
  transform: rotate(-180deg);
}
custom-form[data-in-popup] .get-in-touch-form {
  padding-top: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
custom-form[data-in-popup] .get-in-touch-form .overflow {
  box-shadow: none;
}
custom-form[data-in-popup] .get-in-touch-form .overflow .icon {
  width: 100px;
}
custom-form[data-in-popup] .get-in-touch-form .overflow .bold {
  font-size: 32px;
}
custom-form.loading .btn_wrapper {
  position: relative;
}
custom-form.loading .btn_wrapper button[type=submit] {
  opacity: 0;
  transition: none;
  cursor: none;
}
custom-form.loading .btn_wrapper .loader {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border: 10px solid var(--accent-color);
  border-bottom-color: #fff;
  border-radius: 50%;
  z-index: 11;
  animation: loading 2s linear infinite;
}
custom-form.success .overflow.success {
  opacity: 1;
  z-index: 1;
}
custom-form.fail .overflow.fail {
  opacity: 1;
  z-index: 1;
}
@media screen and (max-width: 650px) {
  custom-form .get-in-touch-form form .input-wrap {
    width: 100%;
    padding: 4px;
  }
  custom-form .get-in-touch-form form .btn_wrapper .btn {
    width: 100%;
  }
}

popup-container[data-position=bottom-right] .popup_top {
  margin-bottom: 10px;
}
popup-container[data-position=bottom-right] custom-form .get-in-touch-form {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}
popup-container[data-position=bottom-right] custom-form .get-in-touch-form .popup_text {
  margin-bottom: 5px;
}
popup-container[data-position=bottom-right] custom-form .get-in-touch-form .btn {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}
popup-container[data-position=bottom-right] custom-form .get-in-touch-form .success-overflow .bold {
  font-size: 42px;
}
popup-container[data-position=bottom-right] custom-form .get-in-touch-form .success-overflow .icon {
  width: 100px;
}
@media screen and (max-width: 400px) {
  popup-container[data-position=bottom-right] custom-form .get-in-touch-form {
    padding: 15px;
  }
  popup-container[data-position=bottom-right] custom-form .get-in-touch-form .btn {
    padding: 15px 20px;
  }
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*!******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/header/header.scss ***!
  \******************************************************************************************************************************************************************/
.shadow {
  position: fixed;
  top: 0;
  left: -200%;
  background: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  z-index: 11;
  transition: background 0.5s ease;
}

header {
  background-color: transparent;
  height: 90px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}
header .popup_shadow.show_shadow {
  opacity: 1;
  pointer-events: all;
}
header .popup_shadow {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
header .header_center {
  height: 100%;
}
header .logo {
  height: 62px;
}
header .logo.hidden {
  display: none;
}
header .mobileRight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
header nav {
  height: 100%;
}
header nav ul {
  height: 100%;
  list-style: none;
  display: flex;
  align-items: center;
}
header nav ul li {
  position: relative;
}
header nav ul li:last-child {
  margin-right: 0;
}
header nav ul li.megamenu > a, header nav ul li.megamenu > span {
  padding: 0 32px 0 16px;
  cursor: pointer;
}
header nav ul li.megamenu > a::before, header nav ul li.megamenu > span::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 14px;
  width: 10px;
  height: 10px;
  transition: all 0.2s ease;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M1.59998 1L5.09998 4.88889L8.59998 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
}
header nav ul li a, header nav ul li span {
  padding: 0 19px;
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  transition: all 0.2s ease;
}
header nav ul li.menu__item a .icon {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav ul li.menu__item a .arrowIcon {
  display: none;
  margin-top: 3px;
  margin-left: 5px;
}
header nav ul li.menu__item a:hover, header nav ul li.menu__item span:hover {
  text-shadow: 0.5px 0 0 #fff;
  color: var(--accent-color);
}
header nav ul li.menu__item a:hover::after, header nav ul li.menu__item span:hover::after {
  width: calc(100% - 50px);
}
header nav ul li.menu__item a::after, header nav ul li.menu__item span::after {
  content: "";
  position: absolute;
  bottom: 32px;
  left: 25px;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: all 0.2s ease;
}
header nav ul li .child {
  flex-direction: column;
}
header nav ul li .child a:after {
  content: none;
}
header nav ul li .megamenu_wrapper {
  width: fit-content;
  transition: all 0.2s ease;
  max-height: 0;
  position: absolute;
  z-index: 12;
  height: 100%;
  top: 30px;
  left: 0;
  background-color: #fff;
  overflow: hidden;
  padding: 0 20px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
header nav ul li .childs_wrapper ul {
  height: auto;
}
header nav ul li .childs_wrapper .child {
  flex-wrap: wrap;
  align-items: flex-start;
  max-height: 0;
}
header nav ul li .childs_wrapper .child li {
  margin-right: 0;
  width: 50%;
}
header nav ul li .childs_wrapper .child a, header nav ul li .childs_wrapper .child span {
  font-size: 16px;
  line-height: 22px;
  color: var(--block-primary-text-color);
  padding: 10px;
  transition: all 0.2s ease;
}
header nav ul li .childs_wrapper .child a:hover, header nav ul li .childs_wrapper .child span:hover {
  text-shadow: 0.5px 0 0 var(--block-primary-text-color);
}
header button-component .btn {
  font-size: 22px;
  min-width: 160px;
  text-align: center;
}
header button-component .btn.shake {
  animation: buttonShaking 1s infinite;
}

header-component.scrolled .header,
header-component.active .header {
  margin-top: 0;
  border-bottom: 1px solid #F0F0F0;
  background: #FFF;
}
header-component.scrolled .header button-component .btn:hover,
header-component.active .header button-component .btn:hover {
  --button-primary-hover-font-color: #fff;
  --button-primary-hover-fill-color: #0E1011;
  --button-primary-hover-border-color: #0E1011;
}
header-component.scrolled header nav ul li a,
header-component.scrolled header nav ul li span,
header-component.active header nav ul li a,
header-component.active header nav ul li span {
  color: #0E1011;
}
header-component.scrolled header nav ul li.megamenu > a::before, header-component.scrolled header nav ul li.megamenu > span::before,
header-component.active header nav ul li.megamenu > a::before,
header-component.active header nav ul li.megamenu > span::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M1.59998 1L5.09998 4.88889L8.59998 1' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

header-component.scrolled .hamburger::before, header-component.scrolled .hamburger::after, header-component.scrolled .hamburger > div,
header-component.active .hamburger::before,
header-component.active .hamburger::after,
header-component.active .hamburger > div {
  background: #0E1011;
}

.hamburger {
  display: block;
  position: relative;
  z-index: 2;
  width: 25px;
  height: 20px;
  transition: all 0.2s ease;
  padding: 10px 0;
  cursor: pointer;
}
.hamburger::before {
  z-index: 3;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 1px;
  background: #fff;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.hamburger::after {
  content: "";
  position: absolute;
  top: calc(100% - 3px);
  right: 0;
  width: 25px;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
  z-index: 3;
  border-radius: 100px;
}
.hamburger > div {
  border-radius: 100px;
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 25px;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease;
  opacity: 1;
}

@media screen and (max-width: 1350px) {
  header-component header nav ul li a,
  header-component header nav ul li span {
    padding: 0 10px;
  }
  header nav ul li.megamenu > a::before, header nav ul li.megamenu > span::before {
    right: 0;
  }
}
@media screen and (min-width: 1250px) and (max-width: 1350px) {
  header nav ul li.megamenu > span {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1125px) and (max-width: 1250px) {
  header nav ul li a, header nav ul li span {
    padding: 0 16px;
  }
  header-component header nav ul li.megamenu > span,
  header-component header nav ul li.megamenu > a {
    padding: 0 15px 0 10px;
  }
}
@media screen and (min-width: 1125px) {
  header nav ul li.megamenu:hover .megamenu_wrapper {
    max-height: 500px;
    height: auto;
    overflow: visible;
  }
  header nav ul li.megamenu:hover .megamenu_wrapper .child {
    max-height: 100%;
  }
  .hamburger {
    display: none;
  }
  .hamburger_wrapper {
    display: none;
  }
  header nav ul li.megamenu:hover > a::before, header nav ul li.megamenu:hover > span::before {
    transform: rotate(180deg);
    top: calc(50% - 7px);
  }
}
@media screen and (max-width: 1125px) {
  header .container .shared_wrapper.logo_wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  header .container .shared_wrapper.button_wrapper {
    display: flex;
    justify-content: flex-end;
    min-width: 180px;
  }
  header .container {
    position: relative;
    justify-content: space-between;
  }
  header .header_center {
    position: absolute;
    top: 80px;
    left: -200%;
    width: 100%;
    max-width: 500px;
    height: calc(100vh - 68px);
    background: #fff;
    transition: all 0.5s ease;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  header .header_center::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
    background: transparent;
  }
  header .header_center nav {
    padding: 20px;
  }
  header .header_center nav ul {
    align-items: flex-start;
  }
  header .header_center nav ul li {
    height: auto;
    width: 100% !important;
  }
  header .header_center nav ul li a, header .header_center nav ul li span {
    font-size: 20px;
    line-height: 30px;
    padding: 5px 0;
    height: auto;
    border-bottom: solid 1px #D9D9D9;
  }
  header .header_center nav ul li.megamenu.hover .megamenu_wrapper {
    position: static;
    border: none;
    background-color: transparent;
    box-shadow: none;
    overflow: visible;
    height: auto;
    max-height: 100%;
    width: 100%;
  }
  header .header_center nav ul li.megamenu.hover .megamenu_wrapper .child {
    max-height: 100%;
  }
  header .header_center nav ul li.megamenu.hover .megamenu_wrapper .child li {
    border-bottom: solid 1px #D9D9D9;
  }
  header nav ul {
    flex-direction: column;
  }
  .active .shadow {
    background: rgba(0, 0, 0, 0.5);
    left: 0;
  }
  .active header .header_center {
    left: 0;
  }
  .active .hamburger {
    height: 28px;
  }
  .active .hamburger > div {
    opacity: 0;
    right: 100px;
  }
  .active .hamburger::before {
    right: 0;
    top: calc(50% - 1px);
    transform: rotate(-45deg);
  }
  .active .hamburger::after {
    right: 0;
    top: calc(50% - 1px);
    width: 25px;
    transform: rotate(45deg);
  }
  header .mobileRight {
    width: 100%;
    padding-left: 25px;
  }
}
@media screen and (max-width: 650px) {
  header .header_center {
    top: 58px;
  }
  header {
    height: 60px;
  }
  header .container {
    padding: 0 20px;
  }
  header .logo {
    display: block;
    height: 47px;
  }
  header-component header button-component div.btn {
    min-width: 115px;
    font-size: 14px;
    line-height: 16.1px;
    padding: 17px 25px;
    width: fit-content;
    background-color: #0E1011;
    color: #FFF;
    border-color: #0E1011;
  }
  header .container .shared_wrapper.button_wrapper {
    min-width: 150px;
  }
}
@media screen and (max-width: 400px) {
  header .container .shared_wrapper {
    width: auto;
  }
  header .container .shared_wrapper.logo_wrapper {
    display: block;
  }
}
@keyframes buttonShaking {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
/*!******************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/get-in-touch/get-in-touch.scss ***!
  \******************************************************************************************************************************************************************************/
get-in-touch .get_in_touch_block {
  position: relative;
}
get-in-touch .get_in_touch_block image-component img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: bottom;
  height: 100%;
  width: 100%;
  filter: brightness(0.5);
}
get-in-touch .get_in_touch_block .container {
  position: relative;
  z-index: 0;
}
get-in-touch .get_in_touch_block .get_in_touch_top {
  --h-color: #fff;
}
get-in-touch .get_in_touch_block .get_in_touch_top .subtitle {
  --subtitle-color: #FFFFFFCC;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
get-in-touch .get_in_touch_block .get_in_touch_bottom {
  display: flex;
  justify-content: center;
}
get-in-touch .get_in_touch_block get-in-touch-form .get-in-touch-form .like_title {
  font-size: 30px;
  font-weight: 400;
  color: #0E1011;
}
get-in-touch .get_in_touch_block get-in-touch-form .get-in-touch-form .subtitle {
  font-size: 20px;
}
get-in-touch .get_in_touch_block get-in-touch-form .get-in-touch-form .btn_wrapper .btn {
  font-size: 22px;
}
/*!******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/footer/footer.scss ***!
  \******************************************************************************************************************************************************************/
footer {
  background-color: #0E1011;
  color: #CFCFCF;
}
footer .container {
  max-width: 1516px;
}
footer .footer_top {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  padding: 80px 0 50px;
}
footer .footer_top .footer_left {
  display: flex;
  flex-direction: column;
}
footer .footer_top .footer_left .footer_left__top .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: white;
  height: 70px;
  width: fit-content;
  margin-bottom: 30px;
  position: relative;
}
footer .footer_top .footer_left .footer_left__top .logo_main {
  font-size: 32px;
  line-height: 37px;
}
footer .footer_top .footer_left .footer_left__top .logo_sub {
  font-size: 10px;
  line-height: 11.5px;
  position: absolute;
  top: 46px;
  right: -12px;
}
footer .footer_top .footer_left .footer_left__top p.text {
  max-width: 415px;
  font-size: 15px;
  line-height: 21px;
}
footer .footer_top .footer_left .like_a_list {
  display: flex;
  justify-content: left;
  gap: 40px;
  margin-top: 40px;
}
footer .footer_top .footer_left .like_a_list a {
  width: 25px;
  height: 25px;
}
footer .footer_top .footer_left .like_a_list svg path {
  fill: #fff;
}
footer .footer_top .footer_center {
  display: flex;
  gap: 40px;
}
footer .footer_top .footer_center .block__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  color: #FFFFFF;
  margin-bottom: 32px;
}
footer .footer_top .footer_center .block__list_wrapper {
  display: flex;
}
footer .footer_top .footer_center .block__list_wrapper .add-list {
  margin-left: 50px;
}
footer .footer_top .footer_center .block__list_wrapper li a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #CFCFCF;
  width: max-content;
  margin-bottom: 10px;
  max-width: 198px;
}
footer .footer_top .footer_center .block__list_wrapper li a:hover {
  color: #fff;
}
footer .footer_top .footer_right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
footer .footer_top .footer_right .info-block {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer_top .footer_right .info-block__title {
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
}
footer .footer_top .footer_right .info-block__info {
  font-size: 15px;
  width: 200px;
  color: #CFCFCF;
}
footer .footer_top .footer_right .info-block__info:hover {
  color: #C6E76C;
}
footer .footer_bottom {
  border-top: 2px solid #4D555B;
  padding: 30px 0;
}
footer .footer_bottom .bottom_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}
footer .footer_bottom .bottom_flex .left {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .footer_bottom .bottom_flex .left a {
  color: #CFCFCF;
  font-size: 14px;
  letter-spacing: 0.03em;
  width: 200px;
}
footer .footer_bottom .bottom_flex .left a:hover {
  color: #C6E76C;
}
footer .footer_bottom .bottom_flex .left .edit-mode-block {
  width: 100%;
  max-width: 218px;
  display: flex;
  justify-content: space-between;
  padding: 8px 20px;
  background: #1B1B1D;
  align-items: center;
  gap: 30px;
}
footer .footer_bottom .bottom_flex .left .edit-mode-block .edit-mode-subtitle {
  font-size: 10px;
  color: #9698A5;
}
footer .footer_bottom .bottom_flex .left .edit-mode-block p {
  color: #fff;
  font-size: 16px;
}
footer .footer_bottom .bottom_flex .left .edit-mode-block edit-mode {
  background: gray;
  border-radius: 100px;
  cursor: pointer;
  display: block;
  height: 30px;
  position: relative;
  text-indent: -9999px;
  width: 33px;
  height: 20px;
}
footer .footer_bottom .bottom_flex .left .edit-mode-block edit-mode .edit-mode-label {
  width: 33px;
  height: 20px;
}
footer .footer_bottom .bottom_flex .left .edit-mode-block edit-mode .edit-mode-label::after {
  width: 18px;
  height: 18px;
  top: 1px;
  left: 1px;
  box-shadow: 0px 1.94px 5.16px 0px rgba(0, 0, 0, 0.1490196078);
}
footer .footer_bottom .bottom_flex .left .edit-mode-block edit-mode .edit-mode-switch:checked + .edit-mode-label:after {
  left: 32px;
}

@media screen and (max-width: 1350px) and (min-width: 1050px) {
  footer .footer_top .footer_center {
    flex-direction: column;
  }
}
@media screen and (max-width: 1050px) {
  footer .footer_top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
@media screen and (max-width: 775px) {
  footer .footer_top .footer_center {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 775px) {
  footer .footer_bottom .bottom_flex {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  footer .footer_bottom .bottom_flex .left {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
@media screen and (max-width: 550px) {
  footer .footer_top .footer_left__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .footer_top .footer_left .like_a_list {
    justify-content: center;
  }
  footer .footer_top .footer_center .block__title {
    text-align: center;
  }
  footer .footer_top .footer_center .block__list_wrapper {
    flex-direction: column;
    align-items: center;
  }
  footer .footer_top .footer_center .block__list_wrapper .add-list {
    margin-left: 0;
  }
  footer .footer_top .footer_center .block__list_wrapper ul li a {
    width: 100%;
    text-align: center;
  }
  footer .footer_top .footer_right .info-block {
    gap: 36px;
  }
}
@media screen and (max-width: 400px) {
  footer .footer_top .soc_list {
    justify-content: flex-start;
  }
  footer .footer_left {
    margin-bottom: 20px;
  }
  footer .footer_top {
    flex-direction: column;
  }
}
/*!**********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/counter-section-work/counter-section-work.scss ***!
  \**********************************************************************************************************************************************************************************************/
counter-section-work .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
counter-section-work .top_part {
  margin-bottom: 50px;
}
counter-section-work .h2 {
  text-align: center;
}
counter-section-work .subtitle {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
counter-section-work .counters {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 0;
}
counter-section-work .counters:not(:last-child) {
  margin-bottom: 50px;
}
counter-section-work .counters img.arrow {
  margin-bottom: 110px;
}
counter-section-work .counters .counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 300px;
  width: 100%;
  text-align: center;
  position: relative;
}
counter-section-work .counters .counter .step {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #C6E76C;
  color: #0E1011;
  padding: 8px;
}
counter-section-work .counters .counter_top {
  position: relative;
  margin-bottom: 50px;
}
counter-section-work .counters .counter_img {
  width: 230px;
}
counter-section-work .counters .counter_title {
  text-align: left;
  font-size: 22px;
  line-height: 25.3px;
  font-weight: 700;
  margin-bottom: 15px;
}
counter-section-work .counters .counter_text {
  color: #3C3E3F;
  line-height: 24.3px;
}
counter-section-work .counters .counter_bottom {
  text-align: left;
  max-width: 230px;
}
counter-section-work .image-wrapper {
  height: 100%;
  width: 100%;
  margin-top: 20px;
}
counter-section-work .image-wrapper image-component img {
  margin: 0 auto;
}

@media screen and (max-width: 1130px) {
  counter-section .service_counter .counters .counter_item::after {
    right: -25%;
  }
}
@media screen and (max-width: 1080px) {
  counter-section .service_counter .counters {
    justify-content: center;
  }
  counter-section .service_counter .counters .counter_item {
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  counter-section .service_counter .counters .counter_item::after {
    content: none;
  }
  counter-section .service_counter .counters .counter_item .counter_top,
  counter-section .service_counter .counters .counter_item .counter_bottom {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1025px) {
  counter-section-work .service_counter .h2 {
    margin-bottom: 30px;
  }
  counter-section-work .service_counter .counters .counter_item .counter_top {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 8px;
  }
  counter-section-work .service_counter .counters .counter_item {
    margin: 0 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 815px) {
  counter-section-work .top_part {
    margin-bottom: 25px;
  }
  counter-section-work .counters {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  counter-section-work .counters .counter_top {
    margin-bottom: 25px;
  }
  counter-section-work .counters img.arrow {
    margin-bottom: 0;
  }
  counter-section-work .counters img.arrow {
    transform: rotate(90deg);
  }
}
/*!********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/ai-tools-how-to-use/ai-tools-how-to-use.scss ***!
  \********************************************************************************************************************************************************************************************/
ai-tools-how-to-use .container {
  max-width: 940px;
}
ai-tools-how-to-use h2 {
  margin-bottom: 25px;
}
ai-tools-how-to-use .content-wrapper {
  margin-top: 25px;
}
ai-tools-how-to-use .content-wrapper .content {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
ai-tools-how-to-use .content-text {
  font-size: 18px;
  line-height: 150%;
  text-align: center;
}
/*!**********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/ai-tools-guide/ai-tools-guide.scss ***!
  \**********************************************************************************************************************************************************************************/
ai-tools-guide .container {
  max-width: 940px;
}
ai-tools-guide h2 {
  margin-bottom: 25px;
}
ai-tools-guide .content-wrapper {
  margin-top: 25px;
}
ai-tools-guide .content-wrapper .content {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
ai-tools-guide .content-text {
  font-size: 18px;
  line-height: 150%;
}
/*!*********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/ai-image-generator/ai-image-compare/ai-image-compare.scss ***!
  \*********************************************************************************************************************************************************************************************************/
ai-image-compare {
  position: relative;
  display: block;
  overflow: hidden;
}
/*!*********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/ai-image-generator/ai-image-content/ai-image-content.scss ***!
  \*********************************************************************************************************************************************************************************************************/
ai-image-content section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  height: 335px;
  width: 795px;
  font-family: Roboto, sans-serif;
  background: linear-gradient(180deg, rgba(34, 34, 38, 0.9) 0%, rgba(31, 27, 54, 0.9) 100%);
  border-radius: 20px;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
ai-image-content section .flex-wrapper {
  height: 100%;
  align-items: center;
  justify-content: center;
}
ai-image-content section .top {
  text-align: center;
}
ai-image-content section .top h1 {
  font-weight: 900;
  font-size: 50px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 6px;
}
ai-image-content section .top .subtitle {
  font-size: 24px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 60px;
}
ai-image-content section .bottom {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 385px;
}
ai-image-content section .bottom .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  z-index: 0;
  background-color: #8D6CE7;
  box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
ai-image-content section .bottom .btn .btn-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
ai-image-content section .bottom .btn svg {
  height: 24px;
  width: 24px;
}
ai-image-content section .bottom .btn svg path {
  stroke: #fff;
  fill: #fff;
}
ai-image-content section .bottom .btn svg path[stroke-linecap] {
  stroke: #fff;
  fill: transparent;
}
ai-image-content section .bottom .btn:hover {
  background-color: #fff;
  color: #8D6CE7;
}
ai-image-content section .bottom .btn:hover path {
  stroke: #8D6CE7;
  fill: #8D6CE7;
}
ai-image-content section .bottom .btn:hover path[stroke-linecap] {
  stroke: #8D6CE7;
  fill: transparent;
}
ai-image-content section .bottom .btn .hover-effect {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
ai-image-content section .bottom .btn .hover-effect div {
  background: rgb(222, 0, 75);
  background: linear-gradient(90deg, rgb(222, 0, 75) 0%, rgb(191, 70, 255) 49%, rgb(0, 212, 255) 100%);
  border-radius: 40rem;
  width: 10rem;
  height: 10rem;
  transition: 0.4s;
  filter: blur(20px);
  animation: effect infinite 3s linear;
  opacity: 0.5;
}
ai-image-content section .bottom .btn:hover .hover-effect div {
  width: 8rem;
  height: 8rem;
}
@keyframes effect {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1024px) {
  ai-image-content section {
    height: 245px;
    width: 625px;
  }
  ai-image-content section .top h1 {
    font-size: 40px;
  }
  ai-image-content section .top .subtitle {
    font-size: 20px;
    color: #cfcfe0;
    margin-bottom: 30px;
  }
  ai-image-content section .bottom .btn-content > span {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  ai-image-content section {
    height: 225px;
    width: 525px;
  }
  ai-image-content section .top h1 {
    font-size: 30px;
  }
  ai-image-content section .top .subtitle {
    font-size: 18px;
  }
  ai-image-content section .bottom .btn svg {
    height: 22px;
    width: 22px;
  }
}
@media screen and (max-width: 650px) {
  ai-image-content section {
    top: 75%;
    height: 225px;
    width: 375px;
  }
  ai-image-content section .top {
    max-width: 300px;
  }
  ai-image-content section .top h1 {
    font-size: 24px;
  }
  ai-image-content section .top .subtitle {
    font-size: 16px;
  }
  ai-image-content section .bottom .btn {
    width: 100%;
  }
  ai-image-content section .bottom .btn-content > span {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  ai-image-content section {
    top: 80%;
    height: 200px;
    width: 85%;
  }
  ai-image-content section .content {
    margin: 0 25px;
  }
  ai-image-content section .top {
    max-width: 300px;
  }
  ai-image-content section .top .subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }
  ai-image-content section .bottom .btn {
    padding: 12px 22px;
  }
  ai-image-content section .bottom .btn svg {
    height: 20px;
    width: 20px;
  }
}
@media screen and (max-width: 425px) {
  ai-image-content section {
    top: 75%;
  }
}
/*!***************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/ai-image-generator/ai-image-quiz/ai-image-quiz.scss ***!
  \***************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.quiz {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 90px);
  padding: 20px 20px 70px;
  user-select: none;
}
@media (max-width: 650px) {
  .quiz {
    min-height: calc(100vh - 60px);
  }
}
.quiz__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.quiz__back-button {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #9663DD;
  cursor: pointer;
  padding: 5px 10px;
}
.quiz__back-button:hover {
  text-decoration: underline;
}
.quiz__back-button.hidden {
  display: none;
}
.quiz__title {
  font-size: 32px;
  font-weight: bold;
  color: #424242;
  text-align: center;
  flex-shrink: 0;
}
.quiz__progress-bar {
  position: relative;
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.quiz__progress-bar__fill {
  height: 100%;
  width: 0%;
  background: #9663DD;
  border-radius: 3px;
  transition: width 0.2s ease-out;
}
.quiz__list {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  gap: 20px;
  padding: 20px 10px;
  user-select: none;
  cursor: grab;
  scroll-behavior: auto;
  align-items: stretch;
  flex: 1 1 auto;
  justify-content: flex-start;
  scrollbar-width: auto !important;
  scrollbar-color: auto !important;
}
.quiz__list.active {
  cursor: grabbing;
}
.quiz__list::-webkit-scrollbar {
  width: 12px !important;
  height: 12px !important;
  background: transparent !important;
}
.quiz__list::-webkit-scrollbar-track {
  background: transparent !important;
}
.quiz__list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3) !important;
  border-radius: 0 !important;
  border: none !important;
}
.quiz__question {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
  min-height: 100%;
  width: 400px;
  border-radius: 16px;
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.quiz__question:hover {
  color: #9663DD;
}
.quiz__question:hover .question__image {
  background: rgba(150, 99, 221, 0.2509803922);
  transform: scale(0.98);
  padding: 20px;
  border: 3px solid #9663DD;
}
.quiz__question.animating {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.quiz__question.animating.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1200px) {
  .quiz__question {
    width: 320px;
  }
}
@media (max-width: 768px) {
  .quiz__question {
    width: 280px;
  }
}
@media (max-width: 480px) {
  .quiz__question {
    width: 90vw;
    max-width: 240px;
  }
}
.quiz__question .question__checkmark {
  position: absolute;
  top: 40%;
  right: 45%;
  width: 40px;
  height: 40px;
  background: #9663DD;
  border-radius: 50%;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 11;
}
.quiz__question .question__checkmark::before {
  content: "✓";
  color: white;
  font-size: 20px;
  font-weight: bold;
}
.quiz__question.selected .question__checkmark {
  opacity: 1;
  transform: scale(1);
}
.quiz__question .question__image {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  margin-bottom: 30px;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}
.quiz__question .question__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  border-radius: 16px;
  -webkit-user-drag: none;
  user-select: none;
}
.quiz__question .question__description {
  flex: 0 0 auto;
  font-size: 18px;
  padding: 12px;
  text-align: center;
}
@keyframes clickPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
/*!******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/assets/js/components/ai-image-generator/ai-image-generator.scss ***!
  \******************************************************************************************************************************************************************************************/
ai-image-generator section {
  padding: 0px !important;
}
ai-image-generator .container {
  min-width: 100%;
  padding: 0px;
  margin: 0px;
}
ai-image-generator .generator-parts-wrapper {
  position: relative;
  overflow: hidden;
}
ai-image-generator .result {
  position: relative;
}
ai-image-generator .result .images-wrapper {
  position: relative;
  overflow: hidden;
}
ai-image-generator .result .images-wrapper img.placeholder-image {
  display: block;
  width: 100%;
  height: calc(100vh - var(--header-height, 90px));
  max-height: calc(100vh - var(--header-height, 90px));
  object-fit: contain;
  object-position: center center;
  filter: blur(5px);
}
@media screen and (max-width: 650px) {
  ai-image-generator .result .images-wrapper img.placeholder-image {
    height: calc(100vh - var(--mobile-header-height));
    max-height: calc(100vh - var(--mobile-header-height));
  }
}
ai-image-generator .result .images-wrapper .btn {
  position: absolute;
}
ai-image-generator .result .images-wrapper .btn.download {
  top: 15px;
  right: 15px;
  z-index: 10;
  display: flex;
  gap: 8px;
  padding: 12px 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}
ai-image-generator .result .images-wrapper .btn.download svg path {
  stroke: white;
}
ai-image-generator .result .images-wrapper button-component div.btn {
  text-align: center;
  text-transform: capitalize;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  border-color: #9663DD;
  background-color: #9663DD;
  color: #fff;
}
ai-image-generator .result .images-wrapper button-component div.btn:hover {
  background-color: #fff;
  color: #9663DD;
}
ai-image-generator .result .actions-wrapper {
  position: absolute;
  bottom: 3%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}
ai-image-generator .result .actions-wrapper button-component {
  display: flex;
  justify-content: center;
}
ai-image-generator .result .actions-wrapper button-component div.btn {
  text-align: center;
  text-transform: capitalize;
  border-color: #9663DD;
  background-color: #9663DD;
  color: #fff;
}
ai-image-generator .result .actions-wrapper button-component div.btn:hover {
  background-color: #fff;
  color: #9663DD;
}
ai-image-generator .result .actions-wrapper__controls {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: center;
}
ai-image-generator .result .actions-wrapper__controls .input-wrapper {
  max-width: 580px;
  width: 100%;
}
ai-image-generator .result .actions-wrapper__controls .input-wrapper textarea {
  border-radius: 6px;
  border: 1px solid #DADADA;
  resize: none;
  height: 52px;
  width: 100%;
  padding: 7px 16px;
  color: #2B2B2B;
  line-height: 100%;
  font-size: 16px;
}
ai-image-generator .result .actions-wrapper__controls .flex-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 5px;
}
ai-image-generator .result .actions-wrapper__controls .flex-buttons .btn {
  cursor: pointer;
  padding: 14px 35px;
  text-transform: uppercase;
  display: flex;
  gap: 6px;
  align-items: center;
  border: 1px solid transparent;
  border-color: #0E1011;
  transition: all 0.2s ease-in;
  font-size: 20px;
  max-height: 52px;
}
ai-image-generator .result .actions-wrapper__controls .flex-buttons .btn svg {
  height: 24px;
}
ai-image-generator .result .actions-wrapper__controls .flex-buttons .btn svg path {
  transition: all 0.2s ease-in;
}
ai-image-generator .result .actions-wrapper__controls .flex-buttons .btn.primary {
  background-color: #0E1011;
  color: #fff;
}
ai-image-generator .result .actions-wrapper__controls .flex-buttons .btn.primary:hover {
  background-color: #fff;
  color: #0E1011;
}
ai-image-generator .result .actions-wrapper__controls .flex-buttons .btn.empty {
  background-color: #fff;
  color: #0E1011;
}
ai-image-generator .result .actions-wrapper__controls .flex-buttons .btn.empty:hover {
  background-color: #0E1011;
  color: #fff;
}
ai-image-generator .result .actions-wrapper__controls .flex-buttons .btn.empty:hover svg path {
  stroke: #fff;
  fill: #fff;
}
ai-image-generator .result .actions-wrapper__controls .flex-buttons .btn.empty:hover svg path[stroke-linecap] {
  stroke: #fff;
  fill: transparent;
}
ai-image-generator .result .actions-wrapper__controls .flex-buttons.disabled {
  background-color: transparent;
  border-color: #DADADA;
  color: #DADADA;
}
ai-image-generator .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
}
ai-image-generator .loader .spinner-circle {
  width: 100%;
  height: 100%;
  border: 20px solid #DADADA;
  border-top: 20px solid #9663DD;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  width: 140px;
  height: 140px;
}
ai-image-generator .hidden {
  display: none !important;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1050px) {
  ai-image-generator section {
    padding-top: 15px;
  }
  ai-image-generator .flex-wrapper.start {
    align-items: self-start;
    flex-direction: column-reverse;
    gap: 16px;
  }
  ai-image-generator .result .images-wrapper .btn.download {
    top: 5px;
    right: 5px;
  }
  ai-image-generator .result .actions-wrapper {
    flex-direction: column;
    align-items: center;
  }
  ai-image-generator .result .actions-wrapper .flex-buttons {
    gap: 16px;
    width: 100%;
  }
  ai-image-generator .result .actions-wrapper .flex-buttons .btn {
    display: flex;
    justify-content: center;
    flex: 1;
    padding: 14px;
    font-size: 16px;
  }
  ai-image-generator ai-image-content section {
    max-width: 100%;
  }
  ai-image-generator .loader .spinner-circle {
    width: 70px;
    height: 70px;
    border: 8px solid #DADADA;
    border-top: 8px solid #9663DD;
  }
  ai-image-generator button-component div.btn {
    padding: 9px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  ai-image-generator .result .actions-wrapper__controls {
    flex-wrap: wrap;
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  ai-image-generator .result .images-wrapper button-component div.btn {
    width: 80%;
  }
}
