html,
body {
	overscroll-behavior: none;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}

:root {
	--medium: 500;
	--semibold: 600;
	--bold: 700;

	--font-family-primary: "Inter", sans-serif;

	--color-primary: #2d66e4;
	--color-dark: #0b0d11;
	--color-white: #ffffff;
	--color-bg-light: #dee8fc;
	--color-bg-very-light: #eaf1ff;
	--color-bg-ultra-light: #f1f6ff;
	--color-text-muted: #8593ae;
	--color-focus-light: #d7e2f8;
	--color-error: #fd5e3e;
	--color-success: #62c546;

	--const-green: #edffe8;
	--const-red: #ffdace;
	--const-blue: #d9f0ff;
	--const-light: #f5f8ff;
}

body {
	font-family: var(--font-family-primary);
	font-weight: var(--medium);
	font-optical-sizing: auto;
	font-style: normal;
	line-height: 1;
	letter-spacing: -0.01rem;
	background-color: var(--color-white);
	text-decoration-skip-ink: none;
}

body.overflow_hidden {
	overflow: hidden;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
	outline: none;
}
button {
	background-color: transparent;
	outline: none;
	padding: 0;
	margin: 0;
	border: none;
	cursor: pointer;
}
#notification-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
}
.notification {
	color: var(--color-dark);
	font-size: 16px;
	line-height: 1.4;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	width: max-content;
	border-radius: 16px;
	background-color: var(--color-white);
	z-index: 10;
	opacity: 0;
	transform: translateX(100%);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.table-sidebar {
	/* Для Firefox */
	scrollbar-width: none;

	/* Для IE/Edge (старые версии) */
	-ms-overflow-style: none;
}

/* Для Chrome/Safari/Edge (новые) */
.table-sidebar::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

/* Скрыть полосу прокрутки, но оставить возможность скроллить */
.table-sidebar::-webkit-scrollbar {
	width: 0;
	height: 0;
	background: transparent;
}

/* Или более короткий вариант */
.table-sidebar::-webkit-scrollbar {
	display: none;
}
.table-sidebar {
	scrollbar-width: none; /* Скрывает полосу прокрутки */
}

.notification.error {
	border: 1px solid var(--color-error);
}

.notification.success {
	border: 1px solid var(--color-success);
}

.notification.visible {
	opacity: 1;
	transform: translateX(0);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="tel"],
textarea,
input[type="password"] {
	border-radius: 8px;
	background-color: var(--color-bg-ultra-light);
	width: 100%;
	height: 42px;
	outline: none;
	border: none;
	padding: 0px 12px;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
	color: var(--color-dark);
	border: 1px solid transparent;
	font-family: var(--font-family-primary);
	-webkit-text-size-adjust: 100%;
	text-align: left;
}
input[type="text"]:hover,
input[type="email"]:hover,
input[type="number"]:hover,
input[type="date"]:hover,
input[type="tel"]:hover,
textarea:hover,
input[type="password"]:hover {
	border: 1px solid var(--color-focus-light);
}

input[type="text"]:active,
input[type="email"]:active,
input[type="number"]:active,
input[type="date"]:active,
input[type="tel"]:active,
textarea:active,
input[type="password"]:active {
	border: 1px solid var(--color-primary);
}
input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="number"]:disabled,
input[type="date"]:disabled,
input[type="tel"]:disabled,
textarea:disabled,
input[type="password"]:disabled {
	color: #a9b9d8;
	cursor: no-drop;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="number"]::placeholder,
input[type="date"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder,
input[type="password"]::placeholder {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: var(--color-text-muted);
	font-family: var(--font-family-primary);
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	position: relative;
}
.form-group label,
.form-group .label {
	font-size: 14px;
	line-height: 1;
}
.form-group.error .select-wrap,
.form-group.error input {
	border: 1px solid #fd5e3e;
}
textarea {
	height: 115px;
	padding: 11px 12px;
}

.select-wrap {
	height: 42px;
	border-radius: 8px;
	padding: 0px 12px;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.4;
	color: var(--color-dark);
	background-color: var(--color-bg-ultra-light);
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid transparent;
	cursor: pointer;
}

.select-ul {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background-color: white;
	border: 1px solid var(--color-focus-light);
	border-radius: 8px;
	box-shadow: 0 6px 12px rgba(178, 187, 206, 0.15);
	max-height: 200px;
	overflow-y: auto;
	display: none;
	z-index: 1000;
	padding: 8px;
	box-sizing: border-box;
	flex-direction: column;
}

.select-ul li {
	padding: 4px 8px 6px 8px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border-radius: 4px;
	color: var(--color-dark);
	font-size: 14px;
	line-height: 1.4;
	display: flex;
}

.select-ul li:hover,
.select-ul li.selected {
	background-color: var(--color-bg-ultra-light);
}

.select-wrap:hover {
	border: 1px solid var(--color-focus-light);
}

.select-wrap:active {
	border: 1px solid var(--color-primary);
}

.select-ul.show + .select-ul li {
	border: 1px solid var(--color-focus-light);
}
.icon-for-select {
	position: absolute;
	right: 10px;
	bottom: 6px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 0;
}

.btn-primary {
	width: 100%;
	height: 46px;
	background-color: #2d66e4;
	color: #fff;
	border-radius: 8px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7.5px;
}
.btn-primary:hover {
	background-color: #1a55d6;
	transition: all 0.3s ease;
}
.btn-primary:active {
	background-color: #0e46bf;
	transition: all 0.3s ease;
}
.btn-primary:disabled {
	color: #a9b9d8;
	background-color: #dee8fc;
	transition: all 0.3s ease;
}
.disabled-modal {
	opacity: 0.4;
	cursor: no-drop !important;
	pointer-events: none;
}
.btn-muted {
	width: 100%;
	height: 46px;
	background-color: #f1f6ff;
	color: #0b0d11;
	border-radius: 8px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7.5px;
}
.btn-muted:hover {
	background-color: #dde7fa;
	transition: all 0.3s ease;
}
.btn-muted:active {
	background-color: #cad8f1;
	transition: all 0.3s ease;
}
.btn-muted:disabled {
	color: #a9b9d8;
	background-color: #dee8fc;
	transition: all 0.3s ease;
	cursor: no-drop;
}
.btn-black {
	width: 100%;
	height: 46px;
	background-color: #0b0d11;
	color: #ffffff;
	border-radius: 8px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7.5px;
}
.btn-black:hover {
	background-color: #2d3340;
	transition: all 0.3s ease;
}
.btn-black:active {
	background-color: #475062;
	transition: all 0.3s ease;
}
.btn-white {
	max-width: 250px;
	width: 100%;
	height: 46px;
	background-color: #fff;
	color: #0b0d11;
	border-radius: 8px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	font-weight: 500;
	font-family: var(--font-family-primary);
	font-size: 14px;
	line-height: 1.4;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d7e2f8;
	gap: 7.5px;
	margin: 0 auto;
}
.btn-white:hover {
	background-color: #eaf1ff;
	border: 1px solid #eaf1ff;
	transition: all 0.3s ease;
}
.btn-white:active {
	background-color: #0e46bf;
	border: 1px solid #0e46bf;
	color: #fff;
	transition: all 0.3s ease;
}
.btn-white path {
	transition: all 0.3s ease;
}
.btn-white:active path {
	transition: all 0.3s ease;
	fill: #fff;
}
.btn-white:disabled {
	opacity: 0.5;
	transition: all 0.3s ease;
}

@viewport {
	width: device-width;
	initial-scale: 1;
	maximum-scale: 1;
	user-scalable: no;
}

.custom-dropdown {
	position: relative;
	width: 100%;
}
.dropdown-selected {
	height: 42px;
	border-radius: 8px;
	padding: 0px 12px;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.4;
	color: var(--color-dark);
	background-color: var(--color-bg-ultra-light);
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid transparent;
}
.dropdown-options {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background-color: white;
	border: 1px solid var(--color-focus-light);
	border-radius: 8px;
	box-shadow: 0 6px 12px rgba(178, 187, 206, 0.15);
	max-height: 200px;
	overflow-y: auto;
	display: none;
	z-index: 1000;
	padding: 8px;
	box-sizing: border-box;
}

.dropdown-options.show {
	display: block;
}

.dropdown-option {
	padding: 4px 8px 6px 8px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border-radius: 4px;
	color: var(--color-dark);
	font-size: 14px;
	line-height: 1.4;
}

.dropdown-option:hover,
.dropdown-option.selected {
	background-color: var(--color-bg-ultra-light);
}

.dropdown-selected:hover {
	border: 1px solid var(--color-focus-light);
}

.dropdown-selected:active {
	border: 1px solid var(--color-primary);
}

.dropdown-options.show + .dropdown-selected {
	border: 1px solid var(--color-focus-light);
}

.header-cell.green {
	background-color: var(--const-green);
	color: #0b0d11;
}
.header-cell.red {
	background-color: var(--const-red);
	color: #c63a0f;
}
.header-cell.blue {
	background-color: var(--const-blue);
	color: #0765a3;
}
.header-cell.const-light {
	background-color: var(--const-light);
	color: #0b0d11;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 46px;
	height: 24px;
	box-sizing: border-box;
}

.toggle-input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #a9b9d8;
	border: 1px solid #a9b9d8;
	transition: 0.4s;
	border-radius: 23px;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 1px;
	bottom: 1px;
	background-color: #fff;
	transition: 0.4s;
	border-radius: 50%;
	z-index: 20;
}

.toggle-input:checked + .toggle-slider {
	background-color: #2d66e4;
	border: 1px solid #2d66e4;
	box-sizing: border-box;
}

.toggle-input:checked + .toggle-slider:before {
	transform: translateX(22px);
	background-color: #fff;
}

.toggle-input:focus + .toggle-slider {
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -100000;
	opacity: 0;
	max-width: 100%;
	width: 100%;
	height: 100%;
	background-color: rgba(18, 45, 99, 0.5);
	align-items: center;
	justify-content: center;
	overflow-y: scroll;
}

.modal.active {
	opacity: 1;
	z-index: 100000;
}

.modal-content {
	padding: 30px 16px;
	box-sizing: border-box;
	max-width: 100%;
	width: 100%;
	height: auto;
	min-height: 100vh;
	background-color: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0px auto;
	/* На странице каталога рационов нажимаю на создать копию 
	и в открывшейся модалке не видно весь выпадающий список питомцев */
	/* overflow: auto; */
}
.close-modal {
	position: absolute;
	top: 12px;
	right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.title-modal {
	font-size: 24px;
	font-weight: 700;
	color: #0b0d11;
	text-align: center;
	margin-bottom: 16px;
}
.description-modal {
	color: #0b0d11;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 32px;
	line-height: 1.4;
}
.description-modal a {
	color: #2d66e4;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
}
.btn-modal-container {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.modal-content .form-group {
	margin-bottom: 24px;
}

.modal-content .open-pdf-doc {
	width: auto;
	display: none;
	gap: 8px;
	align-items: center;
	padding: 8px;
	height: 32px;
	box-sizing: border-box;
	border: 1px solid #d7e2f8;
	border-radius: 8px;
	justify-content: center;
	transition: all 0.3s ease;
	color: #0b0d11;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.01rem;
}
.modal-content .open-pdf-doc.active {
	display: flex;
}
.modal-content .open-pdf-doc:hover {
	transition: all 0.3s ease;
	background-color: #f5f8ff;
}
.modal-content .open-pdf-doc:active {
	transition: all 0.3s ease;
	background-color: #eaf1ff;
}
.modal-content .open-pdf-doc:disabled {
	transition: all 0.3s ease;
	background-color: #ffffff;
	cursor: no-drop;
}
.modal-content .open-pdf-doc:disabled span {
	color: #a9b9d8;
}
.modal-content .open-pdf-doc:disabled path {
	fill: #a9b9d8;
}

.radio-block-pdf {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}
.radio-block-pdf .list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.checkbox-block-pdf {
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}
.checkbox-block-pdf.active {
	opacity: 1;
	height: auto;
	margin-bottom: 24px;
}

.checkbox-block-pdf .list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.custom-radio,
.custom-checkbox {
	position: relative;
	cursor: pointer;
	padding-left: 25px;
}
input[type="checkbox"],
input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}

.custom-radio span:before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	box-sizing: border-box;
	border-radius: 50%;
	border: 1px solid #d7e2f8;
	position: absolute;
	left: 0;
	top: 0px;
}

.dots_pet {
	display: none;
}

.custom-radio input[type="radio"]:checked + span:before {
	border: 1px solid #2d66e4;
}
.custom-radio input[type="radio"]:checked + span:after {
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-color: #2d66e4;
	position: absolute;
	top: 3.5px;
	left: 3.5px;
}

.custom-radio span,
.custom-checkbox span {
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	height: 20px;
	display: flex;
	align-items: center;
}

.custom-checkbox span:before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	box-sizing: border-box;
	border-radius: 4px;
	border: 1px solid #d7e2f8;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 0px;
}
.custom-checkbox input[type="checkbox"]:checked + span:before {
	border: 1px solid #2d66e4;
	background-color: #2d66e4;
}
.custom-checkbox input[type="checkbox"]:checked + span:after {
	content: "";
	display: inline-block;
	width: 3px;
	height: 7px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	margin-right: 10px;
	position: absolute;
	top: 5px;
	left: 8px;
}

.title-save-form,
.title-sub-block {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #0b0d11;
	margin-bottom: 24px;
}
.title-sub-block {
	margin-bottom: 0;
}

.title-save-form-pet {
	padding-top: 24px;
	border-top: 1px solid #d7e2f8;
}

.remove_current_food_diet path {
	transition: all 0.3s ease;
}
.remove_current_food_diet:hover path {
	transition: all 0.3s ease;
	fill: #596e97;
}

*::-webkit-scrollbar {
	height: 2px; /* Высота горизонтального скроллбара */
	width: 2px; /* Ширина вертикального скроллбара */
}

/* Ползунок (движущаяся часть) */
*::-webkit-scrollbar-thumb {
	background: #a9b9d8;
	border-radius: 2px;
}

/* Дорожка (фон скроллбара) */
*::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 0px;
}

/* Кнопки (стрелки) - можно скрыть */
*::-webkit-scrollbar-button {
	display: none;
	width: 0;
	height: 0;
}

/* Общие стили для элемента со скроллом */
* {
	scrollbar-width: thin;
	scrollbar-color: #a9b9d8 #f1f1f1;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

.modal-copy-diet .select-ul li .title-li,
.modal-restore-diet .select-ul li .title-li {
	position: relative;
}
#load-more-catalog path {
	fill: #0b0d11;
}
.modal-copy-diet .select-ul li .count-diet,
.modal-restore-diet .select-ul li .count-diet {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0c3388;
	font-size: 10px;
	line-height: 12px;
	font-weight: 700;
	background-color: rgba(12, 51, 136, 0.1);
	box-sizing: border-box;
	top: -8px;
	right: -25px;
	transition: all 0.3s ease;
}
.disabled-class {
	color: #a9b9d8;
	cursor: no-drop;
	pointer-events: none;
}

.support-widget {
	position: fixed;
	top: 64px;
	right: 30px;
	z-index: 10000;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.support-card {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 300px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px) scale(0.9);
	transition: all 0.3s ease;
	z-index: 10001;
}

.support-widget.active .support-card {
	opacity: 1 !important;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.support-card-header {
	padding: 15px 15px 0;
	display: flex;
	justify-content: flex-end;
}

.support-close-btn {
	background: none;
	border: none;
	color: #999;
	cursor: pointer;
	padding: 5px;
	border-radius: 50%;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.support-close-btn:hover {
	background: #f5f5f5;
	color: #333;
}

.support-card-content {
	padding: 0 20px 20px;
	text-align: center;
	box-sizing: border-box;
}

.support-avatar {
	position: relative;
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
}

.support-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid #f0f0f0;
	object-fit: cover;
}

.online-status {
	position: absolute;
	bottom: 2px;
	right: 2px;
	width: 12px;
	height: 12px;
	background: #4ade80;
	border: 2px solid white;
	border-radius: 50%;
}

.support-name {
	margin: 0 0 5px 0;
	font-size: 1.2em;
	font-weight: 700;
	color: #333;
}

.support-role {
	margin: 0 0 15px 0;
	color: #667eea;
	font-size: 0.9em;
	font-weight: 500;
}

.support-message {
	margin: 0 0 15px 0;
	color: #666;
	line-height: 1.4;
	font-size: 0.95em;
}

.support-features {
	margin-bottom: 20px;
}

.feature {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f8f9ff;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.85em;
	color: #667eea;
}

.feature svg {
	opacity: 0.8;
}

.support-telegram-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #0088cc;
	color: white;
	text-decoration: none;
	padding: 12px 20px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9em;
	transition: all 0.3s ease;
	width: 100%;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
	box-sizing: border-box;
}

.support-telegram-btn:hover {
	background: #0077b3;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
	color: white;
}

.telegram-icon {
	transition: transform 0.3s ease;
}

.support-telegram-btn:hover .telegram-icon {
	transform: scale(1.1);
}

/* Стрелочка к кнопке */
.support-card::before {
	content: "";
	position: absolute;
	top: -8px;
	right: 102px;
	width: 16px;
	height: 16px;
	background: white;
	transform: rotate(45deg);
}

@media (min-width: 768px) {
	.modal-content {
		max-width: 387px;
		height: auto;
		min-height: auto;
		border-radius: 16px;
		padding: 30px;
		margin: 70px auto;
	}
	.modal-content .form-group {
		width: 100% !important;
	}
}
