/* <<< LMU Styles - Потом нужно перенести в основной CSS */
.por {
	position: relative !important;
}
.mt0 {
	margin-top: 0 !important;
}
.mb0 {
	margin-bottom: 0 !important;
}
.mr0 {
	margin-right: 0 !important;
}
.ml0 {
	margin-left: 0 !important;
}
.mt3px {
	margin-top: 3px !important;
}
.mt4px {
	margin-top: 4px !important;
}
.mt-gap {
	margin-top: var(--gap) !important;
}
.mr-gap {
	margin-right: var(--gap) !important;
}
.mb-gap {
	margin-bottom: var(--gap) !important;
}
.ml-gap {
	margin-left: var(--gap) !important;
}
.mt-gap-s {
	margin-top: var(--gap-small) !important;
}
.mr-gap-s {
	margin-right: var(--gap-small) !important;
}
.mb-gap-s {
	margin-bottom: var(--gap-small) !important;
}
.ml-gap-s {
	margin-left: var(--gap-small) !important;
}

.pt0 {
	padding-top: 0 !important;
}
.pb0 {
	padding-bottom: 0 !important;
}
.pr0 {
	padding-right: 0 !important;
}
.pl0 {
	padding-left: 0 !important;
}

.pts {
	padding-top: var(--padding-small) !important;
}
.prs {
	padding-right: var(--padding-small) !important;
}
.pbs {
	padding-bottom: var(--padding-small) !important;
}
.pls {
	padding-left: var(--padding-small) !important;
}
.pxs {
	padding-right: var(--padding-small) !important;
	padding-left: var(--padding-small) !important;
}
.pys {
	padding-top: var(--padding-small) !important;
	padding-bottom: var(--padding-small) !important;
}

.ptl {
	padding-top: var(--padding-large) !important;
}
.prl {
	padding-right: var(--padding-large) !important;
}
.pbl {
	padding-bottom: var(--padding-large) !important;
}
.pll {
	padding-left: var(--padding-large) !important;
}
.pxl {
	padding-right: var(--padding-large) !important;
	padding-left: var(--padding-large) !important;
}
.pyl {
	padding-top: var(--padding-large) !important;
	padding-bottom: var(--padding-large) !important;
}

/* Display */
.lmu-block {
	display: block !important;
}
.lmu-flex {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: var(--gap);
}
.lmu-grid {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 1fr;
	gap: var(--gap);
}

.lmu-flex-left {
	justify-content: left;
}

.lmu-flex-between {
	justify-content: space-between;
}

.lmu-flex-vcenter {
	align-items: center;
}

/* Containers */
.lmu-container {
	max-width: 1200px;
    margin: 0 auto;
}
.lmu-clearfix {
	flex-basis: 100%;
	grid-column: none;
	clear: both;
}

/* Flex */
.lmu-flex.no-gap {
	gap: 0;
}

/* Grid */
.lmu-grid.no-gap {
	gap: 0;
}
.gr-a{grid-area: a;}.gr-b{grid-area: b;}.gr-c{grid-area: c;}.gr-d{grid-area: d;}.gr-e{grid-area: e;}.gr-f{grid-area: f;}.gr-g{grid-area: g;}

/* Blocks */
.lmu-card {
	display: block;
	background: var(--bg-grey-0);
	border-radius: var(--border-radius-m);
	padding: var(--padding-small);
}

.lmu-card-white {
	display: block;
	background: var(--bg-white);
	border-radius: var(--border-radius-m);
	padding: var(--padding-default);
}
.lmu-card-cookie {
	display: block;
	background: var(--color-grey-0);
	border-radius: var(--border-radius-m);
	padding: var(--padding-default);
	margin-left: var(--margin-negative-small);
	margin-right: var(--margin-negative-small);
}
.lmu-card-shadow {
	box-shadow: var(--shadow-m);
	transition: var(--tr-linear);
}
.lmu-card-shadow:not(.no-hover):hover, .lmu-card-shadow:not(.no-hover):active, .lmu-card-shadow:not(.no-hover):focus {
	box-shadow: var(--shadow-hm);
}


/* Text */
.lmu-text-small {
    font-size: var(--text-size-small);
	line-height: var(--text-line-small);
}
.lmu-text-meidum {
    font-size: var(--text-size-meidum);
	line-height: var(--text-line-meidum);
}
.lmu-semibold {
    font-weight: 600;
}
.lmu-notetext {
	display: block;
	padding: 30px 20px;
	border-radius: 6px;
	box-shadow: var(--shadow-l);
	margin-bottom: var(--gap);
}
.lmu-info-text {
	border: 1.40px solid #2e766e;
	background: #eaf1f1;
}
.lmu-no-border {
	border-color: transparent;
}
.lmu-danger-text {
	border: 1.40px solid #a92424;
	background: #eed3d3;
}
.lmu-text-center {
	text-align: center;
}
.lmu-text-center > * {
	margin-left: auto;
	margin-right: auto;
}
/* >>> */

/* Buttons */
.lmu-btn {
    display: inline-block;
    padding: 10px 16px;
    margin: 6px 6px 0;
    border: none;
    border-radius: 6px;
    font-size: var(--text-size-default);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--tr-linear);
    -webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
    cursor: pointer;
	min-height: 44px;
    line-height: 24px;
    box-sizing: border-box;
}
.lmu-btn-small {
    padding: 3px 12px;
	font-size: var(--text-size-small);
	font-weight: 600;
	min-height: 30px;
}
.lmu-btn-medium {
    padding: 8px 15px;
	font-size: var(--text-size-default);
	font-weight: 600;
	min-height: 40px;
}
.lmu-btn:first-child {
	margin-left: 0;
}
.lmu-btn:last-child {
	margin-right: 0;
}
.lmu-btn:hover, .lmu-btn:active {
    text-decoration: none !important;
}
.lmu-btn-block {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
}
.lmu-btn-normal {
	--text-color: #fafafa;
    color: var(--text-color) !important;
    background-color: #EA6120 !important;
    outline: 1px solid transparent !important;
}
.lmu-btn-normal:hover {
    background-color: #D3571D !important;
    outline: 1px solid transparent !important;
}
.lmu-btn-normal:active {
    background-color: #A44416 !important;
    outline: 1px solid transparent !important;
}
.lmu-btn-normal:focus {
    outline: 2px solid #F2A079 !important;
}
.lmu-btn-normal.lmu-btn-arrow-right {
	background-image: url("data:image/svg+xml,%3Csvg width='17' height='13' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.65682 7.72362H13.2494L9.94753 11.0219C9.8498 11.1136 9.77151 11.224 9.71731 11.3465C9.66311 11.469 9.6341 11.6011 9.63202 11.735C9.62994 11.8689 9.65482 12.0019 9.70519 12.126C9.75555 12.2501 9.83038 12.3628 9.92521 12.4575C10.02 12.5522 10.133 12.6268 10.2573 12.6771C10.3815 12.7273 10.5147 12.752 10.6487 12.7499C10.7828 12.7477 10.915 12.7186 11.0376 12.6644C11.1602 12.6102 11.2706 12.5319 11.3623 12.4342L16.3432 7.45876C16.3532 7.44876 16.3672 7.44676 16.3772 7.43677C16.3872 7.42677 16.3922 7.39579 16.4072 7.3788C16.5097 7.26212 16.5828 7.12264 16.6203 6.97201C16.6312 6.93163 16.6392 6.89055 16.6443 6.84907C16.6681 6.69833 16.6563 6.54414 16.6099 6.39874C16.5635 6.25335 16.4838 6.12076 16.3772 6.0115C16.3662 6.00051 16.3522 5.99751 16.3412 5.98752L11.3623 1.01408C11.1724 0.839415 10.9221 0.744872 10.664 0.750215C10.4059 0.755557 10.1598 0.860371 9.97723 1.04274C9.79466 1.22511 9.68973 1.47092 9.68438 1.72878C9.67904 1.98664 9.77368 2.23658 9.94853 2.42635L13.2504 5.72465H1.65682C1.39145 5.72465 1.13695 5.82995 0.949308 6.01739C0.761665 6.20483 0.65625 6.45906 0.65625 6.72414C0.65625 6.98922 0.761665 7.24344 0.949308 7.43088C1.13695 7.61832 1.39145 7.72362 1.65682 7.72362Z' fill='white'/%3E%3C/svg%3E");
	background-position: calc(100% - 14px) center;
	background-repeat: no-repeat;
	padding-right: 44px;
}
.lmu-btn-second {
	color: var(--text-color-grey);
	background-color: var(--color-grey-second);
    outline: 1px solid transparent !important;
}
.lmu-btn-second:hover {
	color: var(--text-color);
    background-color: var(--color-grey-hover) !important;
    outline: 1px solid transparent !important;
}
.lmu-btn-second:active {
	color: var(--text-color);
    background-color: var(--color-grey-active) !important;
    outline: 1px solid transparent !important;
}
.lmu-btn-second:focus {
	color: var(--text-color);
    outline: 2px solid var(--color-grey-hover) !important;
}
.lmu-btn-second.lmu-btn-arrow-right {
	background-image: url("data:image/svg+xml,%3Csvg width='17' height='13' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.65682 7.72362H13.2494L9.94753 11.0219C9.8498 11.1136 9.77151 11.224 9.71731 11.3465C9.66311 11.469 9.6341 11.6011 9.63202 11.735C9.62994 11.8689 9.65482 12.0019 9.70519 12.126C9.75555 12.2501 9.83038 12.3628 9.92521 12.4575C10.02 12.5522 10.133 12.6268 10.2573 12.6771C10.3815 12.7273 10.5147 12.752 10.6487 12.7499C10.7828 12.7477 10.915 12.7186 11.0376 12.6644C11.1602 12.6102 11.2706 12.5319 11.3623 12.4342L16.3432 7.45876C16.3532 7.44876 16.3672 7.44676 16.3772 7.43677C16.3872 7.42677 16.3922 7.39579 16.4072 7.3788C16.5097 7.26212 16.5828 7.12264 16.6203 6.97201C16.6312 6.93163 16.6392 6.89055 16.6443 6.84907C16.6681 6.69833 16.6563 6.54414 16.6099 6.39874C16.5635 6.25335 16.4838 6.12076 16.3772 6.0115C16.3662 6.00051 16.3522 5.99751 16.3412 5.98752L11.3623 1.01408C11.1724 0.839415 10.9221 0.744872 10.664 0.750215C10.4059 0.755557 10.1598 0.860371 9.97723 1.04274C9.79466 1.22511 9.68973 1.47092 9.68438 1.72878C9.67904 1.98664 9.77368 2.23658 9.94853 2.42635L13.2504 5.72465H1.65682C1.39145 5.72465 1.13695 5.82995 0.949308 6.01739C0.761665 6.20483 0.65625 6.45906 0.65625 6.72414C0.65625 6.98922 0.761665 7.24344 0.949308 7.43088C1.13695 7.61832 1.39145 7.72362 1.65682 7.72362Z' fill='%23232323'/%3E%3C/svg%3E");
	background-position: calc(100% - 14px) center;
	background-repeat: no-repeat;
	padding-right: 44px;
}
.lmu-btn-second.order-check {
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.7333 6.53335C8.9306 6.53335 7.46667 7.99728 7.46667 9.80002C7.46667 11.6027 8.9306 13.0667 10.7333 13.0667C12.5361 13.0667 14 11.6027 14 9.80002C14 7.99728 12.5361 6.53335 10.7333 6.53335ZM10.7333 7.46668C12.0213 7.46668 13.0667 8.51202 13.0667 9.80002C13.0667 11.088 12.0213 12.1333 10.7333 12.1333C9.44533 12.1333 8.4 11.088 8.4 9.80002C8.4 8.51202 9.44533 7.46668 10.7333 7.46668ZM9.23673 10.1299L10.1701 11.0633C10.3521 11.2458 10.6479 11.2458 10.8299 11.0633L12.2299 9.66328C12.4119 9.48128 12.4119 9.18542 12.2299 9.00342C12.0479 8.82142 11.7521 8.82142 11.5701 9.00342L10.5 10.0735L9.8966 9.47008C9.7146 9.28808 9.41873 9.28808 9.23673 9.47008C9.05473 9.65208 9.05473 9.94795 9.23673 10.1299ZM0.933333 4.20002H13.0667V6.06668C13.0667 6.32428 13.2757 6.53335 13.5333 6.53335C13.7909 6.53335 14 6.32428 14 6.06668V2.33335C14 1.56055 13.3728 0.93335 12.6 0.93335H1.4C0.6272 0.93335 0 1.56055 0 2.33335V9.80002C0 10.5728 0.6272 11.2 1.4 11.2H6.53333C6.79093 11.2 7 10.9909 7 10.7333C7 10.4757 6.79093 10.2667 6.53333 10.2667H1.4C1.1424 10.2667 0.933333 10.0576 0.933333 9.80002V4.20002ZM5.13333 8.40002H2.33333C2.07573 8.40002 1.86667 8.60908 1.86667 8.86668C1.86667 9.12428 2.07573 9.33335 2.33333 9.33335H5.13333C5.39093 9.33335 5.6 9.12428 5.6 8.86668C5.6 8.60908 5.39093 8.40002 5.13333 8.40002ZM3.73333 6.53335H2.33333C2.07573 6.53335 1.86667 6.74242 1.86667 7.00002C1.86667 7.25762 2.07573 7.46668 2.33333 7.46668H3.73333C3.99093 7.46668 4.2 7.25762 4.2 7.00002C4.2 6.74242 3.99093 6.53335 3.73333 6.53335ZM13.0667 3.26668V2.33335C13.0667 2.07575 12.8576 1.86668 12.6 1.86668H1.4C1.1424 1.86668 0.933333 2.07575 0.933333 2.33335V3.26668H13.0667Z' fill='%23424242'/%3E%3C/svg%3E");
	background-position: 14px center;
	background-repeat: no-repeat;
	padding-left: 32px;
}
.lmu-btn-second.order-check:hover, .lmu-btn-second.order-check:active, .lmu-btn-second.order-check:focus {
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.7333 6.53335C8.9306 6.53335 7.46667 7.99728 7.46667 9.80002C7.46667 11.6027 8.9306 13.0667 10.7333 13.0667C12.5361 13.0667 14 11.6027 14 9.80002C14 7.99728 12.5361 6.53335 10.7333 6.53335ZM10.7333 7.46668C12.0213 7.46668 13.0667 8.51202 13.0667 9.80002C13.0667 11.088 12.0213 12.1333 10.7333 12.1333C9.44533 12.1333 8.4 11.088 8.4 9.80002C8.4 8.51202 9.44533 7.46668 10.7333 7.46668ZM9.23673 10.1299L10.1701 11.0633C10.3521 11.2458 10.6479 11.2458 10.8299 11.0633L12.2299 9.66328C12.4119 9.48128 12.4119 9.18542 12.2299 9.00342C12.0479 8.82142 11.7521 8.82142 11.5701 9.00342L10.5 10.0735L9.8966 9.47008C9.7146 9.28808 9.41873 9.28808 9.23673 9.47008C9.05473 9.65208 9.05473 9.94795 9.23673 10.1299ZM0.933333 4.20002H13.0667V6.06668C13.0667 6.32428 13.2757 6.53335 13.5333 6.53335C13.7909 6.53335 14 6.32428 14 6.06668V2.33335C14 1.56055 13.3728 0.93335 12.6 0.93335H1.4C0.6272 0.93335 0 1.56055 0 2.33335V9.80002C0 10.5728 0.6272 11.2 1.4 11.2H6.53333C6.79093 11.2 7 10.9909 7 10.7333C7 10.4757 6.79093 10.2667 6.53333 10.2667H1.4C1.1424 10.2667 0.933333 10.0576 0.933333 9.80002V4.20002ZM5.13333 8.40002H2.33333C2.07573 8.40002 1.86667 8.60908 1.86667 8.86668C1.86667 9.12428 2.07573 9.33335 2.33333 9.33335H5.13333C5.39093 9.33335 5.6 9.12428 5.6 8.86668C5.6 8.60908 5.39093 8.40002 5.13333 8.40002ZM3.73333 6.53335H2.33333C2.07573 6.53335 1.86667 6.74242 1.86667 7.00002C1.86667 7.25762 2.07573 7.46668 2.33333 7.46668H3.73333C3.99093 7.46668 4.2 7.25762 4.2 7.00002C4.2 6.74242 3.99093 6.53335 3.73333 6.53335ZM13.0667 3.26668V2.33335C13.0667 2.07575 12.8576 1.86668 12.6 1.86668H1.4C1.1424 1.86668 0.933333 2.07575 0.933333 2.33335V3.26668H13.0667Z' fill='%23232323'/%3E%3C/svg%3E");
}
.lmu-btn-normal.order-check {
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.7333 6.53335C8.9306 6.53335 7.46667 7.99728 7.46667 9.80002C7.46667 11.6027 8.9306 13.0667 10.7333 13.0667C12.5361 13.0667 14 11.6027 14 9.80002C14 7.99728 12.5361 6.53335 10.7333 6.53335ZM10.7333 7.46668C12.0213 7.46668 13.0667 8.51202 13.0667 9.80002C13.0667 11.088 12.0213 12.1333 10.7333 12.1333C9.44533 12.1333 8.4 11.088 8.4 9.80002C8.4 8.51202 9.44533 7.46668 10.7333 7.46668ZM9.23673 10.1299L10.1701 11.0633C10.3521 11.2458 10.6479 11.2458 10.8299 11.0633L12.2299 9.66328C12.4119 9.48128 12.4119 9.18542 12.2299 9.00342C12.0479 8.82142 11.7521 8.82142 11.5701 9.00342L10.5 10.0735L9.8966 9.47008C9.7146 9.28808 9.41873 9.28808 9.23673 9.47008C9.05473 9.65208 9.05473 9.94795 9.23673 10.1299ZM0.933333 4.20002H13.0667V6.06668C13.0667 6.32428 13.2757 6.53335 13.5333 6.53335C13.7909 6.53335 14 6.32428 14 6.06668V2.33335C14 1.56055 13.3728 0.93335 12.6 0.93335H1.4C0.6272 0.93335 0 1.56055 0 2.33335V9.80002C0 10.5728 0.6272 11.2 1.4 11.2H6.53333C6.79093 11.2 7 10.9909 7 10.7333C7 10.4757 6.79093 10.2667 6.53333 10.2667H1.4C1.1424 10.2667 0.933333 10.0576 0.933333 9.80002V4.20002ZM5.13333 8.40002H2.33333C2.07573 8.40002 1.86667 8.60908 1.86667 8.86668C1.86667 9.12428 2.07573 9.33335 2.33333 9.33335H5.13333C5.39093 9.33335 5.6 9.12428 5.6 8.86668C5.6 8.60908 5.39093 8.40002 5.13333 8.40002ZM3.73333 6.53335H2.33333C2.07573 6.53335 1.86667 6.74242 1.86667 7.00002C1.86667 7.25762 2.07573 7.46668 2.33333 7.46668H3.73333C3.99093 7.46668 4.2 7.25762 4.2 7.00002C4.2 6.74242 3.99093 6.53335 3.73333 6.53335ZM13.0667 3.26668V2.33335C13.0667 2.07575 12.8576 1.86668 12.6 1.86668H1.4C1.1424 1.86668 0.933333 2.07575 0.933333 2.33335V3.26668H13.0667Z' fill='%23fafafa'/%3E%3C/svg%3E");
	background-position: 14px center;
	background-repeat: no-repeat;
	padding-left: 32px;
}
.lmu-btn-normal.order-check:hover, .lmu-btn-normal.order-check:active, .lmu-btn-normal.order-check:focus {
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.7333 6.53335C8.9306 6.53335 7.46667 7.99728 7.46667 9.80002C7.46667 11.6027 8.9306 13.0667 10.7333 13.0667C12.5361 13.0667 14 11.6027 14 9.80002C14 7.99728 12.5361 6.53335 10.7333 6.53335ZM10.7333 7.46668C12.0213 7.46668 13.0667 8.51202 13.0667 9.80002C13.0667 11.088 12.0213 12.1333 10.7333 12.1333C9.44533 12.1333 8.4 11.088 8.4 9.80002C8.4 8.51202 9.44533 7.46668 10.7333 7.46668ZM9.23673 10.1299L10.1701 11.0633C10.3521 11.2458 10.6479 11.2458 10.8299 11.0633L12.2299 9.66328C12.4119 9.48128 12.4119 9.18542 12.2299 9.00342C12.0479 8.82142 11.7521 8.82142 11.5701 9.00342L10.5 10.0735L9.8966 9.47008C9.7146 9.28808 9.41873 9.28808 9.23673 9.47008C9.05473 9.65208 9.05473 9.94795 9.23673 10.1299ZM0.933333 4.20002H13.0667V6.06668C13.0667 6.32428 13.2757 6.53335 13.5333 6.53335C13.7909 6.53335 14 6.32428 14 6.06668V2.33335C14 1.56055 13.3728 0.93335 12.6 0.93335H1.4C0.6272 0.93335 0 1.56055 0 2.33335V9.80002C0 10.5728 0.6272 11.2 1.4 11.2H6.53333C6.79093 11.2 7 10.9909 7 10.7333C7 10.4757 6.79093 10.2667 6.53333 10.2667H1.4C1.1424 10.2667 0.933333 10.0576 0.933333 9.80002V4.20002ZM5.13333 8.40002H2.33333C2.07573 8.40002 1.86667 8.60908 1.86667 8.86668C1.86667 9.12428 2.07573 9.33335 2.33333 9.33335H5.13333C5.39093 9.33335 5.6 9.12428 5.6 8.86668C5.6 8.60908 5.39093 8.40002 5.13333 8.40002ZM3.73333 6.53335H2.33333C2.07573 6.53335 1.86667 6.74242 1.86667 7.00002C1.86667 7.25762 2.07573 7.46668 2.33333 7.46668H3.73333C3.99093 7.46668 4.2 7.25762 4.2 7.00002C4.2 6.74242 3.99093 6.53335 3.73333 6.53335ZM13.0667 3.26668V2.33335C13.0667 2.07575 12.8576 1.86668 12.6 1.86668H1.4C1.1424 1.86668 0.933333 2.07575 0.933333 2.33335V3.26668H13.0667Z' fill='%23fafafa'/%3E%3C/svg%3E");
}
.lmu-btn-second-info {
    color: #2E766E !important;
    background-color: #EAF1F1 !important;
    outline: 1px solid transparent !important;
}
.lmu-btn-second-info:hover {
    color: #20534D !important;
    outline: 1px solid transparent !important;
}
.lmu-btn-second-info:active {
    color: #173B37 !important;
    outline: 1px solid transparent !important;
}
.lmu-btn-second-info:focus {
    outline: 2px solid #C0D6D4 !important;
}

.lmu-btn-second-warning {
    color: var(--color-orange) !important;
    background-color: var(--color-orange-1) !important;
    outline: 1px solid transparent !important;
}
.lmu-btn-second-warning:hover {
    color: var(--color-orange-3) !important;
    outline: 1px solid transparent !important;
}
.lmu-btn-second-warning:active {
    color: var(--color-orange-4) !important;
    outline: 1px solid transparent !important;
}
.lmu-btn-second-warning:focus {
    outline: 2px solid var(--color-orange-2) !important;
}

.lmu-btn-second-info.lmu-btn-arrow-right {
	background-image: url("data:image/svg+xml,%3Csvg width='17' height='13' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.65682 7.72362H13.2494L9.94753 11.0219C9.8498 11.1136 9.77151 11.224 9.71731 11.3465C9.66311 11.469 9.6341 11.6011 9.63202 11.735C9.62994 11.8689 9.65482 12.0019 9.70519 12.126C9.75555 12.2501 9.83038 12.3628 9.92521 12.4575C10.02 12.5522 10.133 12.6268 10.2573 12.6771C10.3815 12.7273 10.5147 12.752 10.6487 12.7499C10.7828 12.7477 10.915 12.7186 11.0376 12.6644C11.1602 12.6102 11.2706 12.5319 11.3623 12.4342L16.3432 7.45876C16.3532 7.44876 16.3672 7.44676 16.3772 7.43677C16.3872 7.42677 16.3922 7.39579 16.4072 7.3788C16.5097 7.26212 16.5828 7.12264 16.6203 6.97201C16.6312 6.93163 16.6392 6.89055 16.6443 6.84907C16.6681 6.69833 16.6563 6.54414 16.6099 6.39874C16.5635 6.25335 16.4838 6.12076 16.3772 6.0115C16.3662 6.00051 16.3522 5.99751 16.3412 5.98752L11.3623 1.01408C11.1724 0.839415 10.9221 0.744872 10.664 0.750215C10.4059 0.755557 10.1598 0.860371 9.97723 1.04274C9.79466 1.22511 9.68973 1.47092 9.68438 1.72878C9.67904 1.98664 9.77368 2.23658 9.94853 2.42635L13.2504 5.72465H1.65682C1.39145 5.72465 1.13695 5.82995 0.949308 6.01739C0.761665 6.20483 0.65625 6.45906 0.65625 6.72414C0.65625 6.98922 0.761665 7.24344 0.949308 7.43088C1.13695 7.61832 1.39145 7.72362 1.65682 7.72362Z' fill='%232E766E'/%3E%3C/svg%3E");
	background-position: calc(100% - 14px) center;
	background-repeat: no-repeat;
	padding-right: 44px;
}
.lmu-btn-second-info.lmu-btn-arrow-right:hover {
	background-image: url("data:image/svg+xml,%3Csvg width='17' height='13' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.65682 7.72362H13.2494L9.94753 11.0219C9.8498 11.1136 9.77151 11.224 9.71731 11.3465C9.66311 11.469 9.6341 11.6011 9.63202 11.735C9.62994 11.8689 9.65482 12.0019 9.70519 12.126C9.75555 12.2501 9.83038 12.3628 9.92521 12.4575C10.02 12.5522 10.133 12.6268 10.2573 12.6771C10.3815 12.7273 10.5147 12.752 10.6487 12.7499C10.7828 12.7477 10.915 12.7186 11.0376 12.6644C11.1602 12.6102 11.2706 12.5319 11.3623 12.4342L16.3432 7.45876C16.3532 7.44876 16.3672 7.44676 16.3772 7.43677C16.3872 7.42677 16.3922 7.39579 16.4072 7.3788C16.5097 7.26212 16.5828 7.12264 16.6203 6.97201C16.6312 6.93163 16.6392 6.89055 16.6443 6.84907C16.6681 6.69833 16.6563 6.54414 16.6099 6.39874C16.5635 6.25335 16.4838 6.12076 16.3772 6.0115C16.3662 6.00051 16.3522 5.99751 16.3412 5.98752L11.3623 1.01408C11.1724 0.839415 10.9221 0.744872 10.664 0.750215C10.4059 0.755557 10.1598 0.860371 9.97723 1.04274C9.79466 1.22511 9.68973 1.47092 9.68438 1.72878C9.67904 1.98664 9.77368 2.23658 9.94853 2.42635L13.2504 5.72465H1.65682C1.39145 5.72465 1.13695 5.82995 0.949308 6.01739C0.761665 6.20483 0.65625 6.45906 0.65625 6.72414C0.65625 6.98922 0.761665 7.24344 0.949308 7.43088C1.13695 7.61832 1.39145 7.72362 1.65682 7.72362Z' fill='%2320534D'/%3E%3C/svg%3E");
}
.lmu-btn-second-info.lmu-btn-arrow-right:active {
	background-image: url("data:image/svg+xml,%3Csvg width='17' height='13' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.65682 7.72362H13.2494L9.94753 11.0219C9.8498 11.1136 9.77151 11.224 9.71731 11.3465C9.66311 11.469 9.6341 11.6011 9.63202 11.735C9.62994 11.8689 9.65482 12.0019 9.70519 12.126C9.75555 12.2501 9.83038 12.3628 9.92521 12.4575C10.02 12.5522 10.133 12.6268 10.2573 12.6771C10.3815 12.7273 10.5147 12.752 10.6487 12.7499C10.7828 12.7477 10.915 12.7186 11.0376 12.6644C11.1602 12.6102 11.2706 12.5319 11.3623 12.4342L16.3432 7.45876C16.3532 7.44876 16.3672 7.44676 16.3772 7.43677C16.3872 7.42677 16.3922 7.39579 16.4072 7.3788C16.5097 7.26212 16.5828 7.12264 16.6203 6.97201C16.6312 6.93163 16.6392 6.89055 16.6443 6.84907C16.6681 6.69833 16.6563 6.54414 16.6099 6.39874C16.5635 6.25335 16.4838 6.12076 16.3772 6.0115C16.3662 6.00051 16.3522 5.99751 16.3412 5.98752L11.3623 1.01408C11.1724 0.839415 10.9221 0.744872 10.664 0.750215C10.4059 0.755557 10.1598 0.860371 9.97723 1.04274C9.79466 1.22511 9.68973 1.47092 9.68438 1.72878C9.67904 1.98664 9.77368 2.23658 9.94853 2.42635L13.2504 5.72465H1.65682C1.39145 5.72465 1.13695 5.82995 0.949308 6.01739C0.761665 6.20483 0.65625 6.45906 0.65625 6.72414C0.65625 6.98922 0.761665 7.24344 0.949308 7.43088C1.13695 7.61832 1.39145 7.72362 1.65682 7.72362Z' fill='%23173B37'/%3E%3C/svg%3E");
}

.lmu-btn-outline {
    color: #EA6120 !important;
    background-color: transparent !important;
    outline: 1px solid #EA6120 !important;
}
.lmu-btn-outline:hover {
    color: #D3571D !important;
    outline: 1px solid #D3571D !important;
}
.lmu-btn-outline:active {
    color: #A44416 !important;
    outline: 1px solid #A44416 !important;
}
.lmu-btn-outline:focus {
    outline: 2px solid #F2A079 !important;
}
.lmu-btn-outline.lmu-btn-arrow-right {
	background-image: url("data:image/svg+xml,%3Csvg width='17' height='13' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.65682 7.72362H13.2494L9.94753 11.0219C9.8498 11.1136 9.77151 11.224 9.71731 11.3465C9.66311 11.469 9.6341 11.6011 9.63202 11.735C9.62994 11.8689 9.65482 12.0019 9.70519 12.126C9.75555 12.2501 9.83038 12.3628 9.92521 12.4575C10.02 12.5522 10.133 12.6268 10.2573 12.6771C10.3815 12.7273 10.5147 12.752 10.6487 12.7499C10.7828 12.7477 10.915 12.7186 11.0376 12.6644C11.1602 12.6102 11.2706 12.5319 11.3623 12.4342L16.3432 7.45876C16.3532 7.44876 16.3672 7.44676 16.3772 7.43677C16.3872 7.42677 16.3922 7.39579 16.4072 7.3788C16.5097 7.26212 16.5828 7.12264 16.6203 6.97201C16.6312 6.93163 16.6392 6.89055 16.6443 6.84907C16.6681 6.69833 16.6563 6.54414 16.6099 6.39874C16.5635 6.25335 16.4838 6.12076 16.3772 6.0115C16.3662 6.00051 16.3522 5.99751 16.3412 5.98752L11.3623 1.01408C11.1724 0.839415 10.9221 0.744872 10.664 0.750215C10.4059 0.755557 10.1598 0.860371 9.97723 1.04274C9.79466 1.22511 9.68973 1.47092 9.68438 1.72878C9.67904 1.98664 9.77368 2.23658 9.94853 2.42635L13.2504 5.72465H1.65682C1.39145 5.72465 1.13695 5.82995 0.949308 6.01739C0.761665 6.20483 0.65625 6.45906 0.65625 6.72414C0.65625 6.98922 0.761665 7.24344 0.949308 7.43088C1.13695 7.61832 1.39145 7.72362 1.65682 7.72362Z' fill='%23EA6120'/%3E%3C/svg%3E");
	background-position: calc(100% - 14px) center;
	background-repeat: no-repeat;
	padding-right: 44px;
}
.lmu-btn-outline.lmu-btn-arrow-right:hover {
	background-image: url("data:image/svg+xml,%3Csvg width='17' height='13' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.65682 7.72362H13.2494L9.94753 11.0219C9.8498 11.1136 9.77151 11.224 9.71731 11.3465C9.66311 11.469 9.6341 11.6011 9.63202 11.735C9.62994 11.8689 9.65482 12.0019 9.70519 12.126C9.75555 12.2501 9.83038 12.3628 9.92521 12.4575C10.02 12.5522 10.133 12.6268 10.2573 12.6771C10.3815 12.7273 10.5147 12.752 10.6487 12.7499C10.7828 12.7477 10.915 12.7186 11.0376 12.6644C11.1602 12.6102 11.2706 12.5319 11.3623 12.4342L16.3432 7.45876C16.3532 7.44876 16.3672 7.44676 16.3772 7.43677C16.3872 7.42677 16.3922 7.39579 16.4072 7.3788C16.5097 7.26212 16.5828 7.12264 16.6203 6.97201C16.6312 6.93163 16.6392 6.89055 16.6443 6.84907C16.6681 6.69833 16.6563 6.54414 16.6099 6.39874C16.5635 6.25335 16.4838 6.12076 16.3772 6.0115C16.3662 6.00051 16.3522 5.99751 16.3412 5.98752L11.3623 1.01408C11.1724 0.839415 10.9221 0.744872 10.664 0.750215C10.4059 0.755557 10.1598 0.860371 9.97723 1.04274C9.79466 1.22511 9.68973 1.47092 9.68438 1.72878C9.67904 1.98664 9.77368 2.23658 9.94853 2.42635L13.2504 5.72465H1.65682C1.39145 5.72465 1.13695 5.82995 0.949308 6.01739C0.761665 6.20483 0.65625 6.45906 0.65625 6.72414C0.65625 6.98922 0.761665 7.24344 0.949308 7.43088C1.13695 7.61832 1.39145 7.72362 1.65682 7.72362Z' fill='%23D3571D'/%3E%3C/svg%3E");
}
.lmu-btn-outline.lmu-btn-arrow-right:active {
	background-image: url("data:image/svg+xml,%3Csvg width='17' height='13' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.65682 7.72362H13.2494L9.94753 11.0219C9.8498 11.1136 9.77151 11.224 9.71731 11.3465C9.66311 11.469 9.6341 11.6011 9.63202 11.735C9.62994 11.8689 9.65482 12.0019 9.70519 12.126C9.75555 12.2501 9.83038 12.3628 9.92521 12.4575C10.02 12.5522 10.133 12.6268 10.2573 12.6771C10.3815 12.7273 10.5147 12.752 10.6487 12.7499C10.7828 12.7477 10.915 12.7186 11.0376 12.6644C11.1602 12.6102 11.2706 12.5319 11.3623 12.4342L16.3432 7.45876C16.3532 7.44876 16.3672 7.44676 16.3772 7.43677C16.3872 7.42677 16.3922 7.39579 16.4072 7.3788C16.5097 7.26212 16.5828 7.12264 16.6203 6.97201C16.6312 6.93163 16.6392 6.89055 16.6443 6.84907C16.6681 6.69833 16.6563 6.54414 16.6099 6.39874C16.5635 6.25335 16.4838 6.12076 16.3772 6.0115C16.3662 6.00051 16.3522 5.99751 16.3412 5.98752L11.3623 1.01408C11.1724 0.839415 10.9221 0.744872 10.664 0.750215C10.4059 0.755557 10.1598 0.860371 9.97723 1.04274C9.79466 1.22511 9.68973 1.47092 9.68438 1.72878C9.67904 1.98664 9.77368 2.23658 9.94853 2.42635L13.2504 5.72465H1.65682C1.39145 5.72465 1.13695 5.82995 0.949308 6.01739C0.761665 6.20483 0.65625 6.45906 0.65625 6.72414C0.65625 6.98922 0.761665 7.24344 0.949308 7.43088C1.13695 7.61832 1.39145 7.72362 1.65682 7.72362Z' fill='%23A44416'/%3E%3C/svg%3E");
}

/* Inputs */
.lmu-input.disabled, .lmu-input[disabled='disabled'], .lmu-input[readonly='readonly'] {
	background-color: var(--color-grey-input) !important;
	/* outline: var(--color-grey-border-input) !important; */
	color: var(--color-grey-active) !important;
}
/* Textarea input */
textarea.lmu-input {
	display: inline-block;
	background: var(--color-white) !important;
	outline: var(--border-input) !important;
	border-radius: var(--border-radius-s) !important;
	border: none !important;
	padding: var(--padding-xxs) var(--padding-xs) !important;
	color: var(--text-color-grey) !important;
	font-size: var(--text-size-medium-small) !important;
	line-height: var(--line-height-medium-small) !important;
	transition: var(--tr-linear) !important;
}
textarea.lmu-input:focus {
	outline: var(--border-input-focus) !important;
	border: none !important;
}
/* Text input */
input.lmu-input[type='text'] {
	display: inline-block;
	background: var(--color-white);
	outline: var(--border-input);
	border-radius: var(--border-radius-s);
	border: none;
	padding: var(--padding-xxs) var(--padding-xs);
	color: var(--text-color-grey);
	font-size: var(--text-size-medium-small);
	line-height: var(--line-height-medium-small);
	transition: var(--tr-linear);
	height: 30px;
}
input.lmu-input[type='text']::-webkit-input-placeholder, 
input.lmu-input[type='text']:-moz-placeholder, 
input.lmu-input[type='text']::-moz-placeholder, 
input.lmu-input[type='text']:-ms-input-placeholder, 
input.lmu-input[type='text']::-ms-input-placeholder, 
input.lmu-input[type='text']::placeholder {
    color: var(--text-color-light-grey);
}
input.lmu-input[type='text']:focus {
	outline: var(--border-input-focus) !important;
	border: none !important;
}
/* Radio button */
.lmu-input input[type='radio'] {
	display: none;
}
.lmu-input:has(input[type='radio']) > label {
	padding-left: 24px;
	margin-left: 8px;
    cursor: pointer;
    font-size: var(--text-size-medium-small);
    color: var(--text-color-light-medium-grey);
	display: block;
	position: relative;
}
.lmu-input.lmu-input-inline:has(input[type='radio']) > label {
	display: inline-block;
}
.lmu-input:has(input[type='radio']) > label:after {
	content: '';
	position: absolute;
    left: 0;
    top: 50%;
	transform: translateY(-50%);
    width: 14px;
	height: 14px;
	border-radius: 50%;
	background: transparent;
	border: var(--border-default);
	border-color: var(--border-color-default);
	transition: var(--tr-linear);
}
.lmu-input input[type='radio']:checked + label:after {
	border-color: var(--text-color-orange);
}
.lmu-input:has(input[type='radio']) > label:before {
	content: '';
	position: absolute;
    left: 8px;
    top: 50%;
	transform: translate(-50%, -50%);
    width: 0px;
	height: 0px;
	border-radius: 50%;
	background: var(--border-color-default);
	border: none;
	border-color: var(--border-color-default);
	transition: var(--tr-linear);
}
.lmu-input input[type='radio']:hover + label:before, .lmu-input input[type='radio']:focus + label:before {
    width: 8px;
	height: 8px;
}
.lmu-input input[type='radio']:checked + label:before {
    width: 8px;
	height: 8px;
	background: var(--text-color-orange);
}
/* Range */
/* === range theme and appearance === */
.lmu-input input[type="range"] {
	font-size: 16px;
	width: 100%;
}
.lmu-input.lmu-input-double input[type="range"]:first-of-type {
  width: var(--this-width-min);
}
.lmu-input.lmu-input-double input[type="range"]:last-of-type {
  width: var(--this-width-max);
}

.lmu-input input[type="range"] {
  --thumb-color: #EA6120;
	--thumb-height: 12px;
	--track-height: 4px;
	--track-color: #EDEDED;
	background: transparent;
}

/* === range commons === */
.lmu-input input[type="range"] {
	position: relative;
	overflow: hidden;
  cursor: pointer;
}

.lmu-input input[type="range"]:active {
	cursor: grabbing;
}

.lmu-input input[type="range"]:disabled {
	filter: grayscale(1);
	opacity: 0.3;
	cursor: not-allowed;
}

/* === WebKit specific styles === */
.lmu-input input[type="range"],
.lmu-input input[type="range"]::-webkit-slider-runnable-track,
.lmu-input input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	height: var(--thumb-height);
}

.lmu-input input[type="range"]::-webkit-slider-runnable-track,
.lmu-input input[type="range"]::-webkit-slider-thumb {
	position: relative;
}

.lmu-input input[type="range"]::-webkit-slider-thumb {
	width: var(--thumb-height);
  top: calc(((var(--thumb-height) - var(--track-height)) / 2) * (-1));
	background-color: var(--thumb-color);
	box-shadow: 9911px 0 0 9900px var(--track-color);
	border-radius: 50%;
  clip-path: polygon(
    0 0, 11px 0, 12px 4px, 100vmax 4px, 
    100vmax 8px, 12px 8px, 11px 100%, 0 100%
  );
}

.lmu-input input[type="range"]:hover::-webkit-slider-thumb {
	cursor: grab;
}

.lmu-input input[type="range"]:active::-webkit-slider-thumb {
	cursor: grabbing;
}

.lmu-input input[type="range"]::-webkit-slider-runnable-track {
	background: var(--thumb-color);
  height: var(--track-height);
}

.lmu-input input[type="range"]:disabled::-webkit-slider-thumb {
	cursor: not-allowed;
}

/* === Firefox specific styles === */
.lmu-input input[type="range"],
.lmu-input input[type="range"]::-moz-range-track,
.lmu-input input[type="range"]::-moz-range-thumb {
	appearance: none;
	height: var(--thumb-height);
}

.lmu-input input[type="range"]::-moz-range-thumb {
	background: var(--thumb-color);
	border: 0;
	width: var(--thumb-height);
	border-radius: 50%;
	cursor: grab;
}

.lmu-input input[type="range"]:active::-moz-range-thumb {
	cursor: grabbing;
}

.lmu-input input[type="range"]::-moz-range-track {
	width: 100%;
	background: var(--track-color);
}

.lmu-input input[type="range"]::-moz-range-progress {
	appearance: none;
	background: var(--thumb-color);
}

.lmu-input input[type="range"]::-moz-range-track,
.lmu-input input[type="range"]::-moz-range-progress {
	height: var(--track-height);
	border-radius: 0px;
}

.lmu-input input[type="range"]:disabled::-moz-range-thumb {
	cursor: not-allowed;
}

/* Burger */
.lmu-burger-checkbox {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}
.lmu-burger {
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	border: none;
	background: transparent;
	width: 16px;
	height: 14px;
}
.lmu-burger::before,
.lmu-burger::after {
	content: '';
	left: 0;
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background: var(--text-color);
}
.lmu-burger::before {
	top: 0;
	box-shadow: 0 6px 0 var(--text-color);
	transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.lmu-burger::after {
	bottom: 0;
	transition: bottom .3s .15s, transform .3s;
}
.lmu-burger-checkbox:checked + .lmu-burger::before, .lmu-burger-checkbox:checked ~ * .lmu-burger::before {
	top: 6px;
	transform: rotate(45deg);
	box-shadow: 0 6px 0 transparent;
	transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.lmu-burger-checkbox:checked + .lmu-burger::after, .lmu-burger-checkbox:checked ~ * .lmu-burger::after {
	bottom: 6px;
	transform: rotate(-45deg);
	transition: bottom .3s, transform .3s .15s;
}

/* icons */
i.i-grf {
	/* --fill-color: %23c2c2c2; */
	display: inline-block;
	vertical-align: text-bottom;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-size: contain;
	padding-right: 3px;
}
i.i-grf.i-info {
	width: 24px;
	height: 24px;
	line-height: 24px;
	padding-right: 6px;
	/* background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg id='i_info' viewBox='0 0 60 60' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cpath id='circle1' d='M 30 1 A 29 29 0 0 0 1 30 A 29 29 0 0 0 30 59 A 29 29 0 0 0 59 30 A 29 29 0 0 0 30 1 z M 30 8 A 6 6 0 0 1 36 14 A 6 6 0 0 1 30 20 A 6 6 0 0 1 24 14 A 6 6 0 0 1 30 8 z M 33.929688 25.003906 C 34.508687 24.962906 35 25.420001 35 26 L 35 45 C 35 46.104999 35.895001 47 37 47 L 38 47 C 38.551999 47 39 47.448001 39 48 L 39 50 C 39 50.551999 38.551999 51 38 51 L 22 51 C 21.448001 51 21 50.551999 21 50 L 21 48 C 21 47.448001 21.448001 47 22 47 L 23 47 C 24.104999 47 25 46.104999 25 45 L 25 31.859375 C 25 30.697376 24.014468 29.781234 22.855469 29.865234 L 22.072266 29.921875 C 21.493266 29.963875 21 29.505781 21 28.925781 L 21 26.857422 C 21 26.332422 21.405688 25.896375 21.929688 25.859375 L 33.929688 25.003906 z ' style='fill:%23888888' /%3E%3C/svg%3E%0A"); */
	background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 0C9.62663 0 7.30655 0.703788 5.33316 2.02236C3.35977 3.34094 1.8217 5.21508 0.913451 7.4078C0.00519943 9.60051 -0.232441 12.0133 0.230582 14.3411C0.693605 16.6689 1.83649 18.807 3.51472 20.4853C5.19295 22.1635 7.33115 23.3064 9.65892 23.7694C11.9867 24.2324 14.3995 23.9948 16.5922 23.0865C18.7849 22.1783 20.6591 20.6402 21.9776 18.6668C23.2962 16.6935 24 14.3734 24 12C24 8.8174 22.7357 5.76515 20.4853 3.51472C18.2348 1.26428 15.1826 0 12 0ZM12 22C10.0222 22 8.08879 21.4135 6.4443 20.3147C4.79981 19.2159 3.51809 17.6541 2.76121 15.8268C2.00433 13.9996 1.8063 11.9889 2.19215 10.0491C2.578 8.10929 3.53041 6.32746 4.92894 4.92893C6.32746 3.53041 8.10929 2.578 10.0491 2.19215C11.9889 1.80629 13.9996 2.00433 15.8268 2.7612C17.6541 3.51808 19.2159 4.79981 20.3147 6.4443C21.4135 8.08879 22 10.0222 22 12C22 14.6522 20.9464 17.1957 19.0711 19.0711C17.1957 20.9464 14.6522 22 12 22Z" fill="%239E9E9E"/><path d="M12 0C9.62663 0 7.30655 0.703788 5.33316 2.02236C3.35977 3.34094 1.8217 5.21508 0.913451 7.4078C0.00519943 9.60051 -0.232441 12.0133 0.230582 14.3411C0.693605 16.6689 1.83649 18.807 3.51472 20.4853C5.19295 22.1635 7.33115 23.3064 9.65892 23.7694C11.9867 24.2324 14.3995 23.9948 16.5922 23.0865C18.7849 22.1783 20.6591 20.6402 21.9776 18.6668C23.2962 16.6935 24 14.3734 24 12C24 8.8174 22.7357 5.76515 20.4853 3.51472C18.2348 1.26428 15.1826 0 12 0ZM12 22C10.0222 22 8.08879 21.4135 6.4443 20.3147C4.79981 19.2159 3.51809 17.6541 2.76121 15.8268C2.00433 13.9996 1.8063 11.9889 2.19215 10.0491C2.578 8.10929 3.53041 6.32746 4.92894 4.92893C6.32746 3.53041 8.10929 2.578 10.0491 2.19215C11.9889 1.80629 13.9996 2.00433 15.8268 2.7612C17.6541 3.51808 19.2159 4.79981 20.3147 6.4443C21.4135 8.08879 22 10.0222 22 12C22 14.6522 20.9464 17.1957 19.0711 19.0711C17.1957 20.9464 14.6522 22 12 22Z" fill="%232E766E"/><path d="M12 9.7C11.7348 9.7 11.4804 9.80536 11.2929 9.99289C11.1054 10.1804 11 10.4348 11 10.7V17.5C11 17.7652 11.1054 18.0196 11.2929 18.2071C11.4804 18.3946 11.7348 18.5 12 18.5C12.2652 18.5 12.5196 18.3946 12.7071 18.2071C12.8946 18.0196 13 17.7652 13 17.5V10.7C13 10.4348 12.8946 10.1804 12.7071 9.99289C12.5196 9.80536 12.2652 9.7 12 9.7ZM12 5.6C11.7293 5.61018 11.4727 5.72362 11.2831 5.91703C11.0934 6.11044 10.9849 6.36914 10.98 6.64V6.8C10.9795 6.93047 11.0062 7.05961 11.0584 7.17921C11.1105 7.2988 11.187 7.40623 11.283 7.49464C11.3789 7.58306 11.4922 7.65054 11.6157 7.69278C11.7391 7.73502 11.87 7.7511 12 7.74C12.2621 7.7301 12.5107 7.62156 12.6961 7.43613C12.8816 7.2507 12.9901 7.00205 13 6.74V6.5C13.0008 6.3729 12.9746 6.24708 12.9233 6.13082C12.872 6.01455 12.7966 5.91048 12.7021 5.82546C12.6076 5.74044 12.4962 5.67638 12.3752 5.63752C12.2542 5.59866 12.1263 5.58588 12 5.6Z" fill="%239E9E9E"/><path d="M12 9.7C11.7348 9.7 11.4804 9.80536 11.2929 9.99289C11.1054 10.1804 11 10.4348 11 10.7V17.5C11 17.7652 11.1054 18.0196 11.2929 18.2071C11.4804 18.3946 11.7348 18.5 12 18.5C12.2652 18.5 12.5196 18.3946 12.7071 18.2071C12.8946 18.0196 13 17.7652 13 17.5V10.7C13 10.4348 12.8946 10.1804 12.7071 9.99289C12.5196 9.80536 12.2652 9.7 12 9.7ZM12 5.6C11.7293 5.61018 11.4727 5.72362 11.2831 5.91703C11.0934 6.11044 10.9849 6.36914 10.98 6.64V6.8C10.9795 6.93047 11.0062 7.05961 11.0584 7.17921C11.1105 7.2988 11.187 7.40623 11.283 7.49464C11.3789 7.58306 11.4922 7.65054 11.6157 7.69278C11.7391 7.73502 11.87 7.7511 12 7.74C12.2621 7.7301 12.5107 7.62156 12.6961 7.43613C12.8816 7.2507 12.9901 7.00205 13 6.74V6.5C13.0008 6.3729 12.9746 6.24708 12.9233 6.13082C12.872 6.01455 12.7966 5.91048 12.7021 5.82546C12.6076 5.74044 12.4962 5.67638 12.3752 5.63752C12.2542 5.59866 12.1263 5.58588 12 5.6Z" fill="%232E766E"/></svg>');
}
i.i-grf.i-rule {
	width: 28px;
	height: 28px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg version='1.1' id='i_rule' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cpath id='path1' d='M 166,46 C 74.467092,46 0,106.56107 0,181 V 346.00391 C 0,412.49284 68.175083,466 151,466 h 346 c 8.28399,0 15,-6.71601 15,-15 V 301 c 0,-8.28399 -6.71601,-15 -15,-15 H 331 V 181 C 331,104.80208 255.46191,46 166,46 Z m 0,30 c 74.43893,0 135,47.10306 135,105 0,57.89694 -60.56107,105 -135,105 C 129.24104,286 94.703927,274.66964 68.751953,254.09766 43.761978,234.28868 30,208.32897 30,181 30,122.73006 92.288074,76 166,76 Z m 0,30 c -56.91594,0 -105,34.34604 -105,75 0,40.65396 48.08406,75 105,75 56.91594,0 105,-34.34604 105,-75 0,-40.65396 -48.08406,-75 -105,-75 z m 0,30 c 42.23796,0 75,24.19002 75,45 0,20.80998 -32.76204,45 -75,45 -42.23796,0 -75,-24.19002 -75,-45 0,-20.80998 32.76204,-45 75,-45 z m -30,30 c -8.28399,0 -15,6.71601 -15,15 0,8.28399 6.71601,15 15,15 h 60 c 8.28399,0 15,-6.71601 15,-15 0,-8.28399 -6.71601,-15 -15,-15 z M 30,258.31641 C 60.04797,293.16737 109.80406,316 166,316 H 166.002 482 v 120 h -31 v -75 c 0,-8.28399 -6.71601,-15 -15,-15 -8.28399,0 -15,6.71601 -15,15 v 75 h -30 v -45 c 0,-8.28399 -6.71601,-15 -15,-15 -8.28399,0 -15,6.71601 -15,15 v 45 h -30 v -75 c 0,-8.28399 -6.71601,-15 -15,-15 -8.28399,0 -15,6.71601 -15,15 v 75 h -30 v -45 c 0,-8.28399 -6.71601,-15 -15,-15 -8.28399,0 -15,6.71601 -15,15 v 45 h -30 v -75 c 0,-8.28399 -6.71601,-15 -15,-15 -8.28399,0 -15,6.71601 -15,15 v 75 h -30 v -45 c 0,-8.28399 -6.71601,-15 -15,-15 -8.28399,0 -15,6.71601 -15,15 v 42.18359 c -10.50699,-2.01599 -20.57901,-5.09702 -30,-9.16601 V 361 c 0,-8.28399 -6.716008,-15 -15,-15 -8.283992,0 -15,6.71601 -15,15 v 44.80273 C 40.97802,389.19075 30,368.09188 30,346.00391 Z m 271,0.48242 V 286 h -31.14258 c 3.994,-2.649 7.86108,-5.4586 11.58008,-8.43359 7.28199,-5.826 13.80951,-12.10959 19.5625,-18.76758 z' style='fill:%23888888;' /%3E%3C/svg%3E%0A");
}
i.i-grf.i-manager {
	width: 28px;
	height: 28px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3C!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='i_manager' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cpath id='path1' d='M 279.26172 0.20703125 C 253.67087 0.66565579 226.61713 7.2663564 201.16016 19.902344 C 180.88318 16.754347 161.17695 21.493402 146.29297 33.275391 C 134.16298 42.879381 119.69922 61.672332 119.69922 96.654297 C 119.69922 126.62327 132.71525 178.22813 134.90625 186.70312 C 138.93125 225.32309 152.04186 258.50693 172.96484 282.87891 L 172.96484 313.55078 C 172.96484 324.67977 163.90924 333.73242 152.78125 333.73242 L 129.12305 333.73242 L 129.10547 333.73242 L 93.679688 333.73242 C 42.025739 333.73142 1.8947787e-14 375.75711 0 427.41406 L 0 495.12305 C 0 504.34304 7.4743217 511.82031 16.695312 511.82031 L 495.30469 511.82031 C 504.52468 511.82031 512.00195 504.34404 512.00195 495.12305 L 512.00195 427.41406 C 512.00095 375.75711 469.97531 333.73242 418.31836 333.73242 L 383.58008 333.73242 L 383.51172 333.73242 L 360.10547 333.73242 C 348.97748 333.73242 339.92188 324.67682 339.92188 313.54883 L 339.92188 281.80664 C 360.17685 257.70966 372.94386 225.22792 377.00586 187.50195 C 383.13085 166.56197 391.98917 123.6033 392.32617 98.986328 C 392.80617 63.803363 377.27472 34.816264 348.59375 17.363281 C 328.98227 5.4307932 304.85257 -0.25159329 279.26172 0.20703125 z M 279.96484 33.658203 C 299.26707 33.304953 317.18084 37.339087 331.23633 45.892578 C 349.93831 57.272567 359.2595 74.983227 358.9375 98.533203 C 358.7795 110.10819 356.14018 127.82688 352.86719 144.50586 L 331.78711 115.83008 C 324.47512 105.88409 312.74438 99.949219 300.40039 99.949219 L 300.38086 99.949219 L 220.36328 99.984375 L 220.36328 47.746094 L 220.36523 47.746094 C 239.97171 38.750603 260.66261 34.011453 279.96484 33.658203 z M 186.97461 52.451172 L 186.97461 108.82031 C 184.45561 110.87731 182.17375 113.24897 180.21875 115.91797 L 159.4375 144.27539 C 156.1445 128.00341 153.09375 109.46833 153.09375 96.652344 C 153.09275 79.531361 157.90949 66.670071 167.02148 59.455078 C 172.35648 55.232082 179.36762 52.841171 186.97461 52.451172 z M 300.39844 133.33984 L 300.40039 133.33984 C 302.16439 133.33984 303.83981 134.18742 304.88281 135.60742 L 343.35938 187.94336 C 336.73938 239.43331 307.2009 289.21094 256.00195 289.21094 C 204.889 289.21094 175.37392 239.84501 168.66992 188.16406 L 207.15039 135.6543 C 208.19439 134.2303 209.86972 133.38086 211.63672 133.38086 L 300.39844 133.33984 z M 306.53125 309.55859 L 306.53125 313.54883 C 306.53125 320.78582 307.98175 327.68724 310.59375 333.99023 L 256.27539 388.30859 L 202.19922 334.23438 C 204.87522 327.86638 206.35742 320.87877 206.35742 313.55078 L 206.35742 310.04492 C 221.65641 318.26591 238.51702 322.60156 256 322.60156 C 273.82298 322.60156 290.99627 318.09259 306.53125 309.55859 z M 332.41211 359.39258 C 338.3611 362.99957 345.06557 365.47806 352.22656 366.53906 L 304.66992 436.1543 L 280.16016 411.64453 L 332.41211 359.39258 z M 180.26172 359.51758 L 232.38867 411.64453 L 208.28906 435.74414 L 160.64258 366.54297 C 167.72657 365.49697 174.35972 363.05957 180.26172 359.51758 z M 93.681641 367.12305 L 120.50391 367.12305 L 192.16211 471.19922 C 194.97411 475.28321 199.45754 477.90542 204.39453 478.35742 C 204.89453 478.40342 205.39363 478.42673 205.89062 478.42773 L 33.390625 478.42773 L 33.390625 427.41406 C 33.390625 394.1701 60.437674 367.12305 93.681641 367.12305 z M 392.26367 367.12305 L 418.31836 367.12305 C 451.56133 367.12305 478.60742 394.1701 478.60742 427.41406 L 478.60742 478.42773 L 310.92578 478.42773 C 314.95278 477.47874 318.52077 475.07628 320.88477 471.61328 L 392.26367 367.12305 z M 384 422.77539 C 374.78001 422.77539 367.30469 430.24971 367.30469 439.4707 C 367.30469 448.69169 374.77901 456.16797 384 456.16797 L 428.52148 456.16797 C 437.74148 456.16797 445.21875 448.69169 445.21875 439.4707 C 445.21875 430.24971 437.74148 422.77539 428.52148 422.77539 L 384 422.77539 z M 256.27539 434.98047 L 295.29492 474 C 297.51292 476.218 300.28649 477.72274 303.27148 478.42773 L 205.93945 478.42773 L 205.93945 478.42578 C 210.33745 478.41978 214.58075 476.67515 217.71875 473.53516 L 256.27539 434.98047 z ' style='fill:%23888888;' /%3E%3C/svg%3E%0A");
}
i.i-grf.i-video {
	width: 28px;
	height: 28px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg class='svg-icon' style='overflow:hidden;fill:currentColor' viewBox='0 0 512 512' version='1.1' id='i-video' width='512' height='512' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cpath d='m 310.63342,268.50177 -83.3451,62.50883 c -6.92188,5.15609 -16.66902,3.74347 -21.89575,-3.10778 -2.04831,-2.68401 -3.10778,-6.00368 -3.10778,-9.39399 V 193.49118 c 0,-8.61704 6.99251,-15.60955 15.60955,-15.60955 3.3903,0 6.63935,1.1301 9.39398,3.10778 l 83.3451,62.50883 c 6.92188,5.15609 8.33451,14.97386 3.10779,21.89575 -0.84758,1.1301 -1.90705,2.18957 -3.10779,3.10778 z M 68.50883,37.254415 h 374.98234 c 34.53878,0 62.50883,27.97005 62.50883,62.50883 V 412.23676 c 0,34.53877 -27.97005,62.50882 -62.50883,62.50882 H 68.50883 C 33.97005,474.74558 6,446.77553 6,412.23676 V 99.763245 c 0,-34.53878 28.04068,-62.50883 62.50883,-62.50883 z m 312.47351,31.28973 H 131.01766 V 443.52649 H 380.98234 Z M 37.28973,162.27208 H 99.79856 V 68.544145 h -31.2191 c -17.23407,0 -31.2191,13.98503 -31.2191,31.2191 v 62.508835 z m 437.42054,0 V 99.763245 c 0,-17.23407 -13.98503,-31.2191 -31.2191,-31.2191 h -31.2191 V 162.27208 Z M 37.28973,349.72793 v 62.50883 c 0,17.23406 13.98503,31.2191 31.2191,31.2191 h 31.2191 v -93.72793 z m 0,-31.21911 H 99.79856 V 193.49118 H 37.28973 Z m 437.42054,31.21911 h -62.50883 v 93.72793 h 31.2191 c 17.23407,0 31.2191,-13.98504 31.2191,-31.2191 v -62.50883 z m 0,-31.21911 V 193.49118 h -62.50883 v 125.01765 z' id='path1' style='fill:%23FF0000' /%3E%3C/svg%3E");
}
i.i-grf.i-video-play {
	width: 28px;
	height: 28px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg class='svg-icon' style='overflow:hidden;fill:currentColor' viewBox='0 0 512 512' version='1.1' id='i-video-play' width='512' height='512' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cpath d='M 102.07946,11.251633 C 79.492407,-2.9364572 50.117707,13.292213 50.117707,39.959121 V 472.04105 c 0,26.66617 29.3747,42.89557 51.961753,28.70734 L 446.00877,284.70728 c 21.1647,-13.29264 21.1647,-44.12205 0,-57.41469 z' fill='%23ffffff' id='path112' /%3E%3C/svg%3E%0A");
}

/* Dropdown */
.lmu-dropdown {
    --bg-dropdown-description: var(--bg-grey-0);
    --margin-top-dropdown: var(--gap);
    --dropdown-koef: 2;
}
.lmu-dropdown-target {
    position: relative !important;
}
.lmu-dropdown-target * {
    position: unset;
}
.lmu-dropdown-wrap {
	visibility: hidden;
	position: absolute;
	z-index:99;
	width: fit-content;
    min-width: 360px;
    max-width: calc(100vw - (var(--padding-default) * 2));
    top: 100%;
}
.lmu-dropdown-wrap * {
	position: relative;
}

.lmu-dropdown-check:checked,
.lmu-dropdown-check:not(:checked){
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.lmu-dropdown-link {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.lmu-dropdown-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
    width: 0px;
    height: 0px;
    box-sizing: border-box;
    border-top: none;
    border-left: calc(var(--margin-top-dropdown) / var(--dropdown-koef)) solid transparent;
    border-right: calc(var(--margin-top-dropdown) / var(--dropdown-koef)) solid transparent;
    border-bottom: calc(var(--margin-top-dropdown) / var(--dropdown-koef)) solid var(--bg-dropdown-description);
	transition: var(--tr-linear);
	z-index: 999;
	visibility: hidden;
	opacity: 0;
}
.lmu-dropdown-check:checked ~ .lmu-dropdown-link::after {
	bottom: calc(-1 * var(--margin-top-dropdown));
	visibility: visible;
	opacity: 1;
}

.lmu-dropdown-check:checked ~ .lmu-dropdown-wrap {
	visibility: visible;
}
.lmu-dropdown-left {
    left: calc(0px - var(--gap));
}
.lmu-dropdown-right {
    right: calc(0px - var(--gap));
}
.lmu-dropdown-center {
    left: 50%;
    transform: translateX(-50%);
}
.lmu-dropdown-fullwith {
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	left: 0px;
}
.lmu-dropdown-description {
    position: relative;
	box-shadow: var(--shadow-hl);
	background: var(--bg-dropdown-description);
	border-radius: 6px;
    opacity: 0;
	transition: var(--tr-linear);
    margin-top: 0;
    padding: var(--padding-small);
}
.lmu-dropdown-fullwith .lmu-dropdown-description {
	border-radius: 0px;
	padding: var(--padding-small) var(--padding-default);
}
.lmu-dropdown-check:checked ~ .lmu-dropdown-wrap .lmu-dropdown-description {
	margin-top: var(--margin-top-dropdown);
	opacity: 1;
}
@media (min-width: 950px) {
	.lmu-dropdown:hover .lmu-dropdown-link::after {
		bottom: calc(-1 * var(--margin-top-dropdown));
		visibility: visible;
		opacity: 1;
	}
	.lmu-dropdown-link:hover ~ .lmu-dropdown-wrap, .lmu-dropdown-wrap:hover {
		visibility: visible;
	}
	.lmu-dropdown-link:hover ~ .lmu-dropdown-wrap .lmu-dropdown-description, .lmu-dropdown-wrap:hover .lmu-dropdown-description {
		margin-top: var(--margin-top-dropdown);
		opacity: 1;
	}
}

/* Tooltips */
.lmu-tooltip:hover + .lmu-tooltip-description{
	display:block;
}
.lmu-tooltip-description {
	content: '';
	display: none;
	left: -14px;
	position: absolute;
	/* border: 1px solid #cad3df; */
	box-shadow: var(--shadow-hl);
	background: var(--bg-grey-0);
	border-radius: 6px;
	top: 30px;
	width:410px;
	z-index:99;
}
.lmu-tooltip-description:before{
	content: '';
	position: absolute;
	left: 50px;
	top: -20px;
	border: 10px solid transparent;
    border-bottom-width: 10px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
	border-bottom: 10px solid var(--bg-grey-0);
}
.lmu-tooltip-description::after{
	content: '';
	position: absolute;
	left: 50px;
	top: -19px;
	border: 10px solid transparent;
    border-bottom-width: 10px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
	border-bottom: 10px solid var(--bg-grey-0);
}

.lmu-tooltip-description div.tooltip-header{
	padding-left:17px;
	padding-right:17px;
	padding-top:32px;
	padding-bottom:28px;
}
.lmu-tooltip-description div.tooltip-content{
	padding-left:40px;
	padding-right:40px;
	padding-top:24px;
	padding-bottom:30px;
}

.tooltip-description-header-grey,
.tooltip-description-header-dark{
	font-size: 18px;
	/* font-family: "Roboto-Condensed"; */
	font-stretch: condensed;
	letter-spacing: 0.2px;
	display: inline;

	display: block;
	line-height: 16px;
	height: 16px;
	text-transform: uppercase;
	display: block;
}
.tooltip-description-header-grey{
	color: var(--text-color-light-grey);
	float: left;
	margin-right: 6px;
}
.tooltip-description-header-dark{
	color: var(--text-color-grey);
}

.tooltip-content .message{
	/* font-family: "Roboto"; */
	font-stretch: expanded;
	font-weight: 300;
	font-size: 14px;
	padding-bottom:26px;
	color: var(--text-color-medium-grey);
	display: inline-block;
}
.tooltip-content div.schedule{
	padding-left:17px;
	border-left:3px solid var(--color-orange); 
}

.tooltip-content div.schedule .schedule-item{
	display: inline-block;
	/* font-family: "Roboto"; */
	font-stretch: expanded;
	margin-bottom:6px;
	font-weight: 400;
	font-size:14px;
}
.tooltip-content div.schedule .schedule-item:last-child{
	margin-bottom:0px;
}

/* on keyframes */
@media (max-width: 469px){
	.lmu-hxs {
		display: none !important;
	}
}
@media (min-width: 470px) and (max-width: 767px){
	.lmu-hs {
		display: none !important;
	}
}
@media (min-width: 768px) and (max-width: 949px){
	.lmu-hm {
		display: none !important;
	}
}
@media (min-width: 950px) and (max-width: 1199px){
	.lmu-hl {
		display: none !important;
	}
}
@media (min-width: 1200px){
	.lmu-hxl {
		display: none !important;
	}
}

