/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

a {
    text-decoration: none !important;
}
.site-header {
    display: none;
}
.page-header {
	display: none;
}

.flare-button .elementor-button-link {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.flare-button .elementor-button-link:before {
	content: "";
	background-color: rgba(255, 255, 255, 0.5);
	height: 100%;
	width: 3em;
	display: block;
	position: absolute;
	top: 0;
	left: -4.5em;
	-webkit-transform: skewX(-45deg) translateX(0);
	transform: skewX(-45deg) translateX(0);
	-webkit-transition: none;
	transition: none;
	webkit-animation: moving 3s ease-in-out infinite;
	-moz-animation: moving 3s ease-in-out infinite;
	-ms-animation: moving 3s ease-in-out infinite;
	-o-animation: moving 3s ease-in-out infinite;
	animation: moving 3s ease-in-out infinite;
}


@keyframes moving {
	30% {
		webkit-transform: skewX(-45deg) translateX(33.5em);
		transform: skewX(-45deg) translateX(33.5em);
		
	}
	
	100% {
		webkit-transform: skewX(-45deg) translateX(33.5em);
		transform: skewX(-45deg) translateX(33.5em);
		
	}
}

@-webkit-keyframes animate-circle {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes animate-circle {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}


::-webkit-scrollbar {
    width: 12px;
    background: #2E3134;
}
::-webkit-scrollbar-thumb {
    background: #ffffff;
    -webkit-border-radius: 12px;
    writing-mode: vertical-rl;
    -webkit-border-after: 2px solid #2E3134;
    -webkit-border-before: 2px solid #2E3134;
}
.elementor-button:focus, .elementor-button:hover, .elementor-button:visited {
    border-radius: 9px !important;
}
.grecaptcha-badge {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.recaptcha_v3-bottomright {
    display: none !important;
}
.limiter {
  max-height: 95px;
  overflow: hidden;
  position: relative;
}
.read-more-checker {
  opacity: 0;
  position: absolute;
}
.read-more-checker:checked ~ .limiter {
  max-height: none;
}
.read-more-checker:checked ~ .limiter .bottom {
  opacity: 0;
  transition: 0.3s;
}
.read-more-checker ~ .read-more-button:before {
  content: "Показать все";
}
.read-more-checker:checked ~ .read-more-button:before {
  content: "Скрыть";
}
.read-more-button {
  cursor: pointer;
    display: inline-block;
    font-family: "Rubik", Sans-serif;
    font-size: 14px;
    color: #FC4607;
    padding: 15px 0;
    font-weight: 400;
}
.limiter {
	color: #1C1C1C;
    font-family: "Rubik", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.9em;
}
.limiter h2 {
	font-family: "Montserrat", Sans-serif;
    font-size: 14px;
	color: #2c373d;
}
.privacy-policy {
    color: #037ad9 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #5a5a5a;
    padding-bottom: 2px;
}
.callback {
    border-bottom: 1px dashed #ffffff;
    padding-bottom: 3px;
}
.chat-widget {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 9999;
}

.chat-toggle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #155D48;
  border: none;
  position: relative;
  cursor: pointer;
  overflow: visible;
  transition: background 0.3s ease;
}

.chat-toggle:hover {
  background: #155d48c4;
}

.chat-widget.open .chat-toggle {
  background: #155d48c4;
}

.chat-toggle img {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.chat-icon {
  opacity: 1;
}

.close-icon {
  opacity: 0;
}

.chat-widget.open .chat-icon {
  opacity: 0;
}

.chat-widget.open .close-icon {
  opacity: 1;
}

.pulse {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #155D48;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.chat-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 75px;
  right: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.chat-widget.open .chat-links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-link {
  margin: 5px 0;
  transition: transform 0.3s;
	width: 50px;
    height: 50px;
}

.chat-link img {
  width: 50px;
  height: 50px;
}
.jet-switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: flex-start !important;
}
.jet-switcher.jet-switcher--disable > .jet-switcher__control-wrapper .jet-switcher__control-instance {
    z-index: 999 !important;
}
.sub-pl {
    font-size: 20px;
}
.sub-pl-1 {
    font-size: 20px;
}
.jet-switcher > .jet-switcher__control-wrapper {
    z-index: 999;
}
/* Поле + кнопка в один ряд; чекбокс всегда ниже */
.form-inline-consent .elementor-form-fields-wrapper{
  display: flex;            /* Elementor и так flex, но явно укажем */
  flex-wrap: wrap;
  gap: 12px;                /* межэлементный зазор; можно убрать */
}

/* ВАЖНО: названия групп взяты из вашего HTML */
.form-inline-consent .elementor-field-group-field_a0b1ecc { order: 1; }
.form-inline-consent .e-form__buttons                         { order: 2; }
.form-inline-consent .elementor-field-group-consent           { order: 3; flex-basis: 100%; }

/* Тянем кнопку на всю свою колонку и выравниваем по высоте поля */
.form-inline-consent .e-form__buttons { display: flex; }
.form-inline-consent .e-form__buttons .elementor-button { width: 100%; }

/* Мобайл: всё в столбик */
@media (max-width: 767px){
  .form-inline-consent .elementor-field-group-field_a0b1ecc,
  .form-inline-consent .e-form__buttons,
  .form-inline-consent .elementor-field-group-consent{
    order: initial; flex-basis: 100%;
  }
}

/* Лейбл только у согласия */
.form-inline-consent .elementor-field-group-consent label{
  font-family: "Gilroy", Sans-serif;
    font-size: 12px !important;
    font-weight: 400;
}
/* Ссылка на Политику только у согласия */
.form-inline-consent .elementor-field-group-consent a{
  color: #155d48;
  text-decoration: underline;
}
.form-inline-consent .elementor-field-group-consent a:hover{
  text-decoration: none;
}

.form-inline-consent .elementor-field-group-consent .elementor-acceptance-field{
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #000000;
  border-radius: 50px;
  background: #fff;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.form-inline-consent .elementor-field-group-consent .elementor-acceptance-field:checked{
  background: #181a1c;
}
.form-inline-consent .elementor-field-group-consent .elementor-acceptance-field:checked::after{
  content: "";
  position: absolute;
  left: 6px; top: 2px;
  width: 5px; height: 10px;
  border: 2px solid #155d48;
  border-top: 0; border-left: 0;
  transform: rotate(45deg);
}
.form-inline-consent .elementor-field-group-consent .elementor-acceptance-field:focus-visible{
  outline: 2px solid #6AA6E8;
  outline-offset: 2px;
}
.elementor-field-group .elementor-field:not(.elementor-select-wrapper) {
    background-color: var(--e-global-color-secondary);
    border-color: var(--e-global-color-secondary);
    border-width: 1px 1px 1px 1px;
    border-radius: 8px 8px 8px 8px;
    margin: 0 15px 0px 0;
}