

/* Start:/bitrix/templates/svdom_new/components/vhoruzhenko/forms.simple/zvonok_top/style.css?17707946055940*/
.modal-ring .form-simple-consent{
    margin-top: 0px;
    padding: 0px;
}
.main-user-consent-request-announce-link{
font-size: 9px;
    line-height: 1.2;
}

/* Обертка компонента */
.form-simple-modal-wrapper {
    display: inline-block;
}

/* Кнопка открытия модального окна */
.form-simple-modal-button {
    font-size: 14px;
    line-height: 15px;
    padding: 9px 20px 11px;
    white-space: nowrap;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
     background: #0e6131;
    color: #ffffff;
}

.form-simple-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Модальное окно */
.form-simple-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.form-simple-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-simple-modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-simple-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.form-simple-modal-close:hover {
    color: #000;
}

/* Заголовок в модальном окне */
.form-simple-modal-title {
    margin: 0 0 20px 0;
    font-size: 1.5rem;
    color: #333;
}

/* Форма */
.form-simple {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-simple-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-simple-field {
    display: flex;
    flex-direction: column;
}

.form-simple-label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-simple-required {
    color: #e74c3c;
}

.form-simple-input,
.form-simple-textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-simple-input:focus,
.form-simple-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-simple-input.error,
.form-simple-textarea.error {
    border-color: #e74c3c;
}

.form-simple-error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    min-height: 18px;
    opacity: 0;
    transition: opacity 0.3s;
    display: block;
}

.form-simple-error-message.show {
    opacity: 1;
}

.form-simple-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Кнопка отправки */
.form-simple-submit {
    margin-top: 10px;
}

.form-simple-button {
    width: 100%;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: #0e6131;
    color: #ffffff;
}

.form-simple-button:hover {
    background: #0d9956;
}

/* Сообщения об ошибках */
.form-simple-errors {
    background-color: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.form-simple-error {
    color: #c33;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-simple-error:last-child {
    margin-bottom: 0;
}

/* Сообщение об успехе */
.form-simple-success {
    background-color: #efe;
    border: 1px solid #cfc;
    border-radius: 8px;
    padding: 15px;
    color: #3c3;
    font-size: 14px;
}

/* User Consent Styling */
.form-simple-consent {
    margin-top: 15px;
    padding: 10px 0;
}

.form-simple-consent .main-user-consent-request {
    font-size: 13px;
    line-height: 1.4;
}

.form-simple-consent .main-user-consent-request a {
    color: #667eea;
    text-decoration: underline;
}

.form-simple-consent .main-user-consent-request a:hover {
    color: #764ba2;
}

.form-simple-consent-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    opacity: 0;
    transition: opacity 0.3s;
}

.form-simple-consent-error.show {
    opacity: 1;
}

.form-simple-consent .main-user-consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-simple-consent .main-user-consent-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

/* Уведомление */
.form-simple-notification {
    display: none;
    position: fixed;
    top: 30px;
    right: 30px;
    background: #0e6131;
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    animation: slideInRight 0.5s;
}

.form-simple-notification.show {
    display: block;
}

.form-simple-notification p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .form-simple-modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .form-simple-notification {
        left: 20px;
        right: 20px;
        top: 20px;
    }

    .form-simple-modal-title {
        font-size: 1.25rem;
    }
}

/* End */


/* Start:/bitrix/components/bitrix/main.userconsent.request/templates/.default/user_consent.css?17707963094416*/
.main-user-consent-request a {
	cursor: pointer;
}

.main-user-consent-request-popup {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,0.5);
	overflow: hidden;
	z-index: 9000;
}

.main-user-consent-request-popup-cont {
	min-height: 290px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0 auto;
	padding: 20px;
	min-width: 320px;
	width: 100%;
	max-width: 600px;
	background: #fff;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-y: auto;
}

.main-user-consent-request-popup-header {
	margin: 0 0 10px 0;
	font: normal 18px var(--ui-font-family-primary, var(--ui-font-family-helvetica));
	color: #000;
	text-align: left;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	max-width: 260px;
}

.main-user-consent-request-popup-textarea-block {
	margin: 0 0 20px 0;
}

.main-user-consent-request-popup-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.main-user-consent-request-popup-button {
	display: inline-block;
	height: 39px;
	margin: 0 10px 5px 0;
	padding: 0 18px;
	border: none;
	border-radius: 2px;
	font: normal 12px/39px var(--ui-font-family-primary, var(--ui-font-family-helvetica));
	color: #535c69;
	outline: none;
	vertical-align: middle;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: none;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: background-color 0.2s linear, color 0.2s linear;
	transition: background-color 0.2s linear, color 0.2s linear;
	cursor: pointer;
}

.main-user-consent-request-popup-button-acc {
	background: #bbed21;
}

.main-user-consent-request-popup-button-acc:hover {
	background: #d2f95f;
}

.main-user-consent-request-popup-button-rej {
	-webkit-box-shadow: inset 0 0 0 1px #a1a6ac;
	box-shadow: inset 0 0 0 1px #a1a6ac;
	background: none;
}

.main-user-consent-request-popup-button-rej:hover {
	background: #cfd4d8;
}

.main-user-consent-request-popup-text {
	border: 1px solid #999;
	overflow: auto;
	padding: 8px;
	text-align: left;
	color: rgb(84, 84, 84);
}

.main-user-consent-request-popup-link {
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.main-user-consent-request-popup-link a {
	display: block;
	margin: 20px 0 0 0;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 260px;
}

/** LOADER **/
.main-user-consent-request-loader {
	position: relative;
	height: 100px;
	width: 100px;
	margin: 0 auto;
	-webkit-transform: translate(0, 50%);
	transform: translate(0, 50%);
}

.main-user-consent-request-path {
	stroke: #80868e;
	stroke-dasharray: 100, 200;
}

.main-user-consent-request-loader:before {
	content: '';
	display: block;
	padding-top: 100%;
}

.main-user-consent-request-circular {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: inherit;
	width: inherit;
	-webkit-animation: rotate 1s linear infinite;
	animation: rotate 1s linear infinite;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

.main-user-consent-request-path {
	stroke: #ccc;
	stroke-dasharray: 60, 200;
	stroke-dashoffset: 0;
	-webkit-animation: dash 1.5s ease-in-out infinite;
	animation: dash 1.5s ease-in-out infinite;
	stroke-linecap: round;
}

.main-user-consent-request-announce{
	color: #333;
	font-size:13px;
	line-height: 15px;
}
.main-user-consent-request-announce-link{
	cursor: pointer;
}
.main-user-consent-request-announce-required {
	color: red;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@media (min-width: 1000px) {

	.main-user-consent-request-popup-cont {
		min-height: 400px;
		min-width: 640px;
	}

	.main-user-consent-request-popup-header {
		max-width: 590px;
	}

	.main-user-consent-request-popup-text,
	.main-user-consent-request-popup-link {
		height: 240px;
	}
	.main-user-consent-request-popup-link a {
		max-width: 200px;
	}
}

@media (max-width: 768px) {
	.main-user-consent-request-popup-cont {
		height: 100%;
	}
}
/* End */


/* Start:/local/components/vhoruzhenko/forms.simple/templates/bottom_form/style.css?17707971175755*/
.bottom-form-style.form-simple-wrapper.form-simple-minimal {
    margin: 0 auto;
    max-width: 100%;
    padding: 20px 0;
}



.bottom-form-style .form-simple-fields {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.bottom-form-style .form-simple-field {
    display: flex;
}

.bottom-form-style .form-simple-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    outline: none;
}

.bottom-form-style .form-simple-input{
    height: 50px !important;
    width: 100%;
    border-radius: 50px !important;
    padding: 0 15px;
    border: 1px solid #e4e4e4 !important;
    color: #4f4f4f !important;
    font-size: 14px;
}
 .bottom-form-style select {
    height: 50px !important;
    width: 100%;
    min-width: 250px;
    border-radius: 50px !important;
    padding: 0 15px;
    border: 1px solid #e4e4e4 !important;
    color: #4f4f4f !important;
    color: #4f4f4f !important;
    font-size: 14px;
	background: #fff;
}
.bottom-form-style .select-one{

    font-size: 15px;
opacity: .5;
}
.bottom-form-style .form-simple-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.bottom-form-style .form-simple-input.error {
    border-color: #e74c3c;
}
.bottom-form-style .form-simple-error-message {
    display: none;
}
.bottom-form-style .form-simple-error-message.show {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    margin-left: 16px;
    min-height: 18px;
    transition: opacity 0.3s;
    display: block;
}


.bottom-form-style .form-simple-error-message.show {
    opacity: 1;
}

.bottom-form-style .form-simple-input::placeholder {
    color: #999;
}

.bottom-form-style .form-simple-submit {
    margin-top: 15px;
}

.bottom-form-style .form-simple-button {
    width: 100%;
    padding: 12px 24px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bottom-form-style .form-simple-button{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 0;
    cursor: pointer;
    transition: 300ms;
    width: 187px;
    height: 50px;
    background: #0e6131;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-right: 31px;
}

.bottom-form-style .form-simple-button:hover {
    background-color: #0d9956;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.bottom-form-style .form-simple-button:active {
    transform: translateY(0);
}

.bottom-form-style .form-simple-errors {
    margin-bottom: 15px;
    padding: 12px 16px;
    background-color: #fdecea;
    border-radius: 20px;
    border: 1px solid #e74c3c;
}

.bottom-form-style .form-simple-error {
    color: #c0392b;
    font-size: 13px;
    margin: 3px 0;
}
.bottom-form-style .main-user-consent-request-announce-link{
    font-size: 8px;
}
.bottom-form-style .form-simple-success {
    padding: 15px 20px;
    background-color: #d4edda;
    border-radius: 20px;
    border: 1px solid #28a745;
    color: #155724;
    font-size: 14px;
    text-align: center;
}

/* User Consent Styling */
.bottom-form-style .form-simple-consent {
    margin-top: 0;
    padding: 8px 0;
}

.bottom-form-style .form-simple-consent .main-user-consent-request {
    font-size: 12px;
    line-height: 1.4;
}

.bottom-form-style .form-simple-consent .main-user-consent-request a {
    color: #3498db;
    text-decoration: underline;
}

.bottom-form-style .form-simple-consent .main-user-consent-request a:hover {
    color: #2980b9;
}

.bottom-form-style .form-simple-consent-error {
    color: #e74c3c;
    font-size: 11px;
    margin-top: 5px;
    display: block;
    opacity: 0;
    transition: opacity 0.3s;
}

.bottom-form-style .form-simple-consent-error.show {
    opacity: 1;
}

.bottom-form-style .form-simple-consent .main-user-consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.bottom-form-style .form-simple-consent .main-user-consent-checkbox input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Success notification */
.bottom-form-style .form-simple-notification {
    display: none;
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    animation: slideInRight 0.5s;
}

.bottom-form-style .form-simple-notification.show {
    display: block;
}

.bottom-form-style .form-simple-notification p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .bottom-form-style .form-simple-wrapper.form-simple-minimal {
        padding: 15px;
        max-width: 100%;
    }

    .bottom-form-style .form-simple-input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .bottom-form-style .form-simple-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .bottom-form-style .form-simple-notification {
        left: 20px;
        right: 20px;
        top: 20px;
    }
	.bottom-form-style .form-simple-fields{
	display: flex;
	flex-direction: column;
    }
}
@media (max-width: 768px) {
  .bottom-form-style .form-simple-fields{
	display: flex;
	flex-direction: column;
    }

}

/* End */
/* /bitrix/templates/svdom_new/components/vhoruzhenko/forms.simple/zvonok_top/style.css?17707946055940 */
/* /bitrix/components/bitrix/main.userconsent.request/templates/.default/user_consent.css?17707963094416 */
/* /local/components/vhoruzhenko/forms.simple/templates/bottom_form/style.css?17707971175755 */
