.mdx-lic-hero {
	background-color: #f2f4f6;
	overflow:         hidden;
	position:         relative;
}

.mdx-lic-hero__inner {
	display:     flex;
	align-items: center;
	gap:         40px;
	flex-wrap:   wrap;
	padding:     24px 0 40px;
}

.mdx-lic-hero__text {
	flex:      1 1 420px;
	min-width: 0;
}

.mdx-lic-hero .breadcrumbs {
	display:       flex;
	align-items:   center;
	gap:           10px;
	flex-wrap:     wrap;
	font-size:     14px;
	font-weight:   300;
	margin-bottom: 30px;
	min-width:     0;
}

.mdx-lic-hero .breadcrumbs__inner,
.mdx-lic-hero .breadcrumbs__curr-page {
	display:     flex;
	align-items: center;
	gap:         10px;
	margin:      0;
	padding:     0;
}

.mdx-lic-hero .breadcrumbs__inner::after {
	content: "—";
}

.mdx-lic-hero .breadcrumbs__link {
	color:                 #007a8f;
	text-decoration:       underline;
	text-underline-offset: 2px;
}

.mdx-lic-hero .breadcrumbs__curr-page {
	color: #6e7677;
}

.mdx-lic-hero__title {
	font-size:   40px;
	font-weight: 500;
	line-height: 1.3;
	margin:      0 0 18px;
}

.mdx-lic-hero__lead {
	max-width:   640px;
	font-size:   18px;
	font-weight: 300;
	line-height: 1.6;
	margin:      0 0 14px;
}

.mdx-lic-hero__lead strong {
	font-weight: 500;
	color:       #007c8e;
}

.mdx-lic-hero__note {
	max-width:   640px;
	font-size:   18px;
	font-weight: 300;
	line-height: 1.6;
	margin:      0;
	color:       #6e7677;
}

.mdx-lic-stats {
	flex:             0 0 auto;
	display:          flex;
	align-items:      center;
	gap:              28px;
	padding:          26px 32px;
	background-color: #fff;
	border-radius:    20px;
	flex-wrap:        wrap;
}

.mdx-lic-stats__item {
	display:         flex;
	flex-direction:  column;
	align-items:     center;
	gap:             4px;
	min-width:       90px;
}

.mdx-lic-stats__n {
	font-size:   32px;
	font-weight: 500;
	color:       #007c8e;
	line-height: 1;
}

.mdx-lic-stats__label {
	font-size:   13px;
	font-weight: 300;
	color:       #6e7677;
	text-align:  center;
}

.mdx-lic-navbar {
	position:         -webkit-sticky;
	position:         sticky;
	top:              var(--mdx-lic-nav-top, 173px);
	z-index:          500;
	background:       #fff;
	border-bottom:    1px solid #e1e5ea;
	margin-bottom:    30px;
}

.mdx-lic-navbar__row {
	display:           flex;
	gap:               50px;
	overflow-x:        auto;
	scrollbar-width:   none;
	-ms-overflow-style: none;
}

.mdx-lic-navbar__row::-webkit-scrollbar {
	display: none;
}

.mdx-lic-navbar__link {
	display:      flex;
	align-items:  center;
	min-height:   48px;
	padding:      0 2px;
	white-space:  nowrap;
	font-size:    20px;
	font-weight:  400;
	flex-shrink:  0;
	color:        #6e7677;
	box-shadow:   none;
	transition:   color 200ms, box-shadow 200ms;
}

.mdx-lic-navbar__link.is-active {
	font-weight: 500;
	color:       #0e3449;
	box-shadow:  inset 0 -2px 0 0 #007a8f;
}

.mdx-lic-section {
	margin-bottom: 85px;
}

.mdx-lic-h2 {
	font-size:   32px;
	font-weight: 500;
	line-height: 1.3;
	margin:      0 0 30px;
}

.mdx-lic-grid {
	display:               grid;
	gap:                   30px;
	grid-template-columns: repeat(12, minmax(0, 1fr));
}

.mdx-lic-grid__cell {
	grid-column: span 4;
}

.mdx-lic-card {
	display:        flex;
	flex-direction: column;
	height:         100%;
	border:         1px solid #e1e5ea;
	border-radius:  16px;
	padding:        24px;
}

.mdx-lic-card__name {
	font-size:   18px;
	font-weight: 500;
	line-height: 1.3;
	margin:      0 0 10px;
}

.mdx-lic-card__meta {
	display:         flex;
	align-items:     center;
	justify-content: space-between;
	gap:             12px;
	flex-wrap:       wrap;
	margin-bottom:   18px;
}

.mdx-lic-card__status {
	display:     inline-flex;
	align-items: center;
	gap:         7px;
	font-size:   13px;
	font-weight: 500;
	width:       fit-content;
}

.mdx-lic-card__dot {
	display:          inline-block;
	width:            7px;
	height:           7px;
	border-radius:    50%;
	background-color: #18d379;
	flex-shrink:      0;
	animation:        mdxPulseDot 1.8s ease-in-out infinite;
}

@keyframes mdxPulseDot {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(24, 211, 121, 0.55);
	}
	50% {
		box-shadow: 0 0 0 5px rgba(24, 211, 121, 0);
	}
}

.mdx-lic-card__dot--inactive {
	background-color: #bdbdbd;
	animation:        none;
}

.mdx-lic-card__warning {
	font-size:     13px;
	font-weight:   300;
	line-height:   1.4;
	color:         #6e7677;
	margin:        0 0 18px;
}

.mdx-lic-card__warning a {
	color:                 #007a8f;
	text-decoration:       underline;
	text-underline-offset: 2px;
}

.mdx-lic-card__positions {
	font-size:   13px;
	font-weight: 500;
	color:       #007a8f;
}

.mdx-lic-card__fields {
	display:        flex;
	flex-direction: column;
	gap:            10px;
	font-size:      14px;
	margin-bottom:  20px;
}

.mdx-lic-card__label {
	font-weight:   300;
	color:         #6e7677;
	margin-bottom: 2px;
}

.mdx-lic-card__value {
	font-weight: 500;
}

.mdx-lic-card__btn {
	display:         flex;
	align-items:     center;
	justify-content: center;
	gap:             10px;
	cursor:          pointer;
	width:           100%;
	min-height:      44px;
	border:          1px solid #e1e5ea;
	border-radius:   30px;
	background:      transparent;
	font-weight:     500;
	color:           #007a8f;
	margin-bottom:   18px;
	transition:      border-color 200ms;
}

.mdx-lic-card__btn:hover {
	border-color: #007c8e;
}

.mdx-lic-card__btn svg {
	width:       13px;
	height:      16px;
	fill:        #007c8e;
	flex-shrink: 0;
}

.mdx-lic-card__divider {
	height:           1px;
	background-color: #e1e5ea;
	margin-bottom:    16px;
}

.mdx-lic-card__links {
	display:        flex;
	flex-direction: column;
	gap:            10px;
	margin-top:     auto;
}

.mdx-lic-card__link {
	display:               flex;
	align-items:           center;
	min-height:            44px;
	font-weight:           500;
	color:                 #007a8f;
	text-decoration:       underline;
	text-underline-offset: 2px;
}

.mdx-lic-registry__h2 {
	margin-bottom: 14px;
}

.mdx-lic-registry__lead {
	max-width:   760px;
	font-size:   18px;
	font-weight: 300;
	line-height: 1.5;
	margin:      0 0 20px;
}

.mdx-lic-search {
	display:       flex;
	align-items:   center;
	gap:           10px;
	border:        1px solid #e1e5ea;
	border-radius: 30px;
	padding:       6px 8px 6px 22px;
	margin-bottom: 14px;
}

.mdx-lic-search__icon {
	width:       20px;
	height:      20px;
	fill:        #007c8e;
	flex-shrink: 0;
}

.mdx-lic-search__input {
	flex:        1 1 auto;
	min-width:   0;
	height:      44px;
	border:      0;
	outline:     none;
	font-size:   16px;
	font-weight: 300;
	background:  transparent;
}

.mdx-lic-search__input::-webkit-search-cancel-button,
.mdx-lic-search__input::-webkit-search-decoration {
	-webkit-appearance: none;
	appearance:         none;
	display:            none;
}

.mdx-lic-search__input::-ms-clear {
	display: none;
	width:   0;
	height:  0;
}

.mdx-lic-search__clear {
	display:         none;
	align-items:     center;
	justify-content: center;
	width:           44px;
	height:          44px;
	cursor:          pointer;
	flex-shrink:     0;
	border:          0;
	background:      transparent;
}

.mdx-lic-search__clear.is-visible {
	display: flex;
}

.mdx-lic-search__clear svg {
	width:  14px;
	height: 14px;
	fill:   #6e7677;
}

.mdx-lic-search__submit {
	display:          flex;
	align-items:      center;
	justify-content:  center;
	height:           48px;
	padding:          0 30px;
	background-color: #007c8e;
	color:            #fff;
	font-weight:      600;
	border-radius:    30px;
	white-space:      nowrap;
}

.mdx-lic-registry__count {
	font-size:     14px;
	font-weight:   300;
	color:         #6e7677;
	margin-bottom: 20px;
}

.mdx-lic-registry__box {
	background-color: #f2f4f6;
	border-radius:    16px;
	padding:          24px 28px 8px;
}

.mdx-lic-row {
	padding:       6px 0;
	border-bottom: 1px solid #e1e5ea;
}

.mdx-lic-row.is-last,
.mdx-lic-row:last-child {
	border-bottom: none;
}

.mdx-lic-row.is-hidden {
	display: none;
}

.mdx-lic-row__btn {
	display:         flex;
	align-items:     center;
	justify-content: space-between;
	gap:             16px;
	width:           100%;
	min-height:      48px;
	cursor:          pointer;
	text-align:      left;
	font-weight:     500;
	line-height:     1.3;
	border:          0;
	background:      transparent;
	font-size:       inherit;
	color:           inherit;
}

.mdx-lic-row__icon {
	display:          inline-flex;
	align-items:      center;
	justify-content:  center;
	width:            36px;
	height:           36px;
	border-radius:    50%;
	background-color: #fff;
	flex-shrink:      0;
	transition:       transform 300ms, background-color 250ms;
	transform:        none;
}

.mdx-lic-row__icon svg {
	width:            13px;
	height:           8px;
	fill:             none;
	stroke:           #0e3449;
	stroke-width:     2;
	stroke-linecap:   round;
}

.mdx-lic-row.is-open .mdx-lic-row__icon {
	background-color: #007c8e;
	transform:        rotate(180deg);
}

.mdx-lic-row.is-open .mdx-lic-row__icon svg {
	stroke: #fff;
}

.mdx-lic-row__chips {
	display:   none;
	flex-wrap: wrap;
	gap:       8px;
	padding:   4px 0 14px;
}

.mdx-lic-row.is-open .mdx-lic-row__chips {
	display: flex;
}

.mdx-lic-chip {
	display:          inline-flex;
	align-items:      center;
	min-height:       44px;
	padding:          6px 14px;
	border-radius:    20px;
	background-color: #fff;
	font-size:        13px;
	font-weight:      500;
	line-height:      1.3;
	overflow-wrap:    anywhere;
	transition:       background-color 200ms;
}

.mdx-lic-chip:hover {
	background-color: #e1e5ea;
}

.mdx-lic-registry__empty {
	display:     none;
	font-weight: 300;
	color:       #6e7677;
	padding:     18px 0 0;
}

.mdx-lic-registry__empty.is-visible {
	display: block;
}

.mdx-lic-more {
	display:     none;
	padding-top: 18px;
	text-align:  center;
}

.mdx-lic-more.is-visible {
	display: block;
}

.mdx-lic-more__btn {
	display:          inline-flex;
	align-items:      center;
	justify-content:  center;
	height:           44px;
	padding:          0 28px;
	border-radius:    30px;
	border:           1px solid #dbe2ea;
	background-color: #fff;
	font-weight:      500;
	cursor:           pointer;
	transition:       background-color 200ms;
}

.mdx-lic-more__btn:hover {
	background-color: #e1e5ea;
}

.mdx-lic-nspv {
	background-color: #f2f4f6;
	border-radius:    16px;
	padding:          20px 22px;
	margin-top:       20px;
}

.mdx-lic-nspv__title {
	font-weight:   500;
	margin-bottom: 8px;
}

.mdx-lic-nspv__text {
	font-weight:   300;
	color:         #6e7677;
	line-height:   1.5;
	margin-bottom: 12px;
}

.mdx-lic-nspv__text a {
	color:                 #007a8f;
	text-decoration:       underline;
	text-underline-offset: 2px;
}

.mdx-lic-nspv__list {
	font-weight: 300;
	line-height: 1.6;
	margin:      0;
}

.mdx-lic-nspv__list span {
	display:      inline-block;
	margin-right: 4px;
}

.mdx-lic-faq__head {
	display:         flex;
	align-items:     baseline;
	justify-content: space-between;
	gap:             20px;
	flex-wrap:       wrap;
	margin-bottom:   30px;
}

.mdx-lic-faq__head .mdx-lic-h2 {
	margin: 0;
}

.mdx-lic-faq__toggle {
	display:               flex;
	align-items:           center;
	min-height:            44px;
	cursor:                pointer;
	color:                 #007a8f;
	font-weight:           500;
	text-decoration:       underline;
	text-underline-offset: 3px;
	border:                0;
	background:            transparent;
	font-size:             inherit;
}

.mdx-lic-faq__item {
	height:        100%;
	border:        1px solid #e1e5ea;
	border-radius: 14px;
	padding:       26px 28px;
	transition:    border-color 250ms;
}

.mdx-lic-faq__item.is-open {
	border-color: #007c8e;
}

.mdx-lic-faq__btn {
	display:         flex;
	align-items:     center;
	justify-content: space-between;
	gap:             16px;
	width:           100%;
	min-height:      48px;
	cursor:          pointer;
	text-align:      left;
	font-size:       20px;
	font-weight:     500;
	line-height:     1.3;
	border:          0;
	background:      transparent;
	color:           inherit;
}

.mdx-lic-faq__icon {
	display:          inline-flex;
	align-items:      center;
	justify-content:  center;
	width:            40px;
	height:           40px;
	border-radius:    50%;
	background-color: #f2f4f6;
	flex-shrink:      0;
	transition:       transform 400ms, background-color 250ms;
	transform:        none;
}

.mdx-lic-faq__icon svg {
	width:          13px;
	height:         8px;
	fill:           none;
	stroke:         #0e3449;
	stroke-width:   2;
	stroke-linecap: round;
}

.mdx-lic-faq__item.is-open .mdx-lic-faq__icon {
	background-color: #007c8e;
	transform:        rotate(180deg);
}

.mdx-lic-faq__item.is-open .mdx-lic-faq__icon svg {
	stroke: #fff;
}

.mdx-lic-faq__answer {
	display:     none;
	padding-top: 14px;
	font-weight: 300;
	line-height: 1.5;
	color:       #6e7677;
}

.mdx-lic-faq__item.is-open .mdx-lic-faq__answer {
	display: block;
}

.mdx-lic-modal {
	position:         fixed;
	inset:            0;
	z-index:          1300;
	display:          none;
	align-items:      center;
	justify-content:  center;
	background-color: rgba(14, 52, 73, 0.55);
	padding:          20px;
}

.mdx-lic-modal.is-open {
	display: flex;
}

.mdx-lic-modal__dialog {
	width:            min(480px, calc(100vw - 32px));
	max-height:       90vh;
	overflow-y:       auto;
	background-color: #fff;
	border-radius:    20px;
	padding:          32px;
}

.mdx-lic-modal__head {
	display:         flex;
	align-items:     flex-start;
	justify-content: space-between;
	gap:             16px;
	margin-bottom:   4px;
}

.mdx-lic-modal__title {
	font-size:   20px;
	font-weight: 500;
	line-height: 1.3;
	margin:      0;
}

.mdx-lic-modal__close {
	display:         flex;
	align-items:     center;
	justify-content: center;
	width:           44px;
	height:          44px;
	flex-shrink:     0;
	cursor:          pointer;
	border-radius:   50%;
	border:          0;
	background:      transparent;
	transition:      background-color 200ms;
}

.mdx-lic-modal__close:hover {
	background-color: #f2f4f6;
}

.mdx-lic-modal__close svg {
	width:  14px;
	height: 14px;
	fill:   #6e7677;
}

.mdx-lic-modal__sub {
	font-weight:   300;
	color:         #6e7677;
	margin:        0 0 20px;
}

.mdx-lic-modal__fields {
	display:               grid;
	gap:                   14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	font-size:             14px;
	margin-bottom:         20px;
}

.mdx-lic-modal__field--wide {
	grid-column: 1 / -1;
}

.mdx-lic-modal__preview {
	position:         relative;
	height:           420px;
	border-radius:    14px;
	overflow:         hidden;
	background-image: repeating-linear-gradient(45deg, #e1e5ea 0 12px, #f2f4f6 12px 24px);
	margin-bottom:    20px;
}

.mdx-lic-modal__preview-fallback {
	display:         flex;
	align-items:     center;
	justify-content: center;
	width:           100%;
	height:          100%;
}

.mdx-lic-modal__preview-fallback:hover {
	background-image: repeating-linear-gradient(45deg, #d0dfe4 0 12px, #e1e5ea 12px 24px);
}

.mdx-lic-modal__preview iframe {
	position: absolute;
	inset:    0;
	width:    100%;
	height:   100%;
	border:   0;
	display:  block;
}

.mdx-lic-modal__preview-inner {
	display:        flex;
	flex-direction: column;
	align-items:    center;
	gap:            10px;
}

.mdx-lic-modal__preview-inner svg {
	width:  21px;
	height: 26px;
	fill:   #007c8e;
}

.mdx-lic-modal__filename {
	font-family:   ui-monospace, Menlo, Consolas, monospace;
	font-size:     13px;
	color:         #6e7677;
	background:    #fff;
	padding:       6px 12px;
	border-radius: 6px;
}

.mdx-lic-modal__actions {
	display:       flex;
	gap:           12px;
	flex-wrap:     wrap;
	margin-bottom: 16px;
}

.mdx-lic-modal__download {
	display:          flex;
	align-items:      center;
	justify-content:  center;
	gap:              10px;
	flex:             1 1 200px;
	height:           48px;
	background-color: #007c8e;
	color:            #fff;
	font-weight:      600;
	border-radius:    30px;
	transition:       background-color 200ms;
}

.mdx-lic-modal__download:hover {
	background-color: #0e3449;
}

.mdx-lic-modal__download svg {
	width:  16px;
	height: 17px;
	fill:   #fff;
}

.mdx-lic-modal__open {
	display:          flex;
	align-items:      center;
	justify-content:  center;
	flex:             1 1 200px;
	height:           48px;
	background-color: #f2f4f6;
	font-weight:      600;
	border-radius:    30px;
	transition:       background-color 200ms;
}

.mdx-lic-modal__open:hover {
	background-color: #e1e5ea;
}

.mdx-lic-modal__disclaimer {
	font-size:   13px;
	font-weight: 300;
	color:       #6e7677;
	line-height: 1.4;
	margin:      0;
}

@media only screen and (max-width: 1199.9px) {
	.mdx-lic-navbar {
		top: var(--mdx-lic-nav-top, 178px);
	}

	.mdx-lic-grid__cell {
		grid-column: span 6;
	}
}

@media only screen and (max-width: 767.9px) {
	.mdx-lic-navbar {
		top:           0;
		margin-bottom: 20px;
	}

	html.mdx-chdr-on .mdx-lic-navbar {
		top: calc(56px + env(safe-area-inset-top));
	}

	.mdx-lic-navbar__row {
		gap: 20px;
	}

	.mdx-lic-navbar__link {
		font-size: 17px;
	}

	.mdx-lic-hero__inner {
		gap:     20px;
		padding: 18px 0 26px;
	}

	.mdx-lic-hero .breadcrumbs {
		margin-bottom: 20px;
	}

	.mdx-lic-hero__title {
		font-size:   28px;
		line-height: 1.2;
	}

	.mdx-lic-hero__lead,
	.mdx-lic-hero__note,
	.mdx-lic-registry__lead {
		font-size: 16px;
	}

	.mdx-lic-stats {
		gap: 20px;
	}

	.mdx-lic-section {
		margin-bottom: 44px;
	}

	.mdx-lic-h2 {
		font-size:     24px;
		margin-bottom: 20px;
	}

	.mdx-lic-faq__head {
		margin-bottom: 20px;
	}

	.mdx-lic-grid {
		gap: 16px;
	}

	.mdx-lic-grid__cell {
		grid-column: span 12;
	}

	.mdx-lic-card {
		padding: 20px;
	}

	.mdx-lic-search {
		padding: 4px 6px 4px 16px;
	}

	.mdx-lic-registry__box {
		padding: 16px 16px 4px;
	}

	.mdx-lic-faq__item {
		padding: 18px 20px;
	}

	.mdx-lic-faq__btn {
		font-size: 17px;
	}

	.mdx-lic-modal__dialog {
		padding: 24px 20px;
	}

	.mdx-lic-modal__preview {
		height: 280px;
	}
}
