.utbo-public-catalog {
	--utbo-ink: #15131a;
	--utbo-muted: #5f5966;
	--utbo-border: #e5e1e8;
	--utbo-primary: #c11145;
	--utbo-primary-dark: #a60d3a;
	--utbo-cyan-deep: #005d65;
	--utbo-warning: #8a5200;
	box-sizing: border-box;
	width: min(100%, 1160px);
	margin: 36px auto;
	padding: 0 18px;
	color: var(--utbo-ink);
	font-family: inherit;
	line-height: 1.7;
}

.utbo-public-catalog *,
.utbo-public-catalog *::before,
.utbo-public-catalog *::after {
	box-sizing: border-box;
}

.utbo-public-catalog--home {
	margin-block: 28px 44px;
}

.utbo-public-catalog__head {
	max-width: 760px;
	margin: 0 auto 24px;
	text-align: center;
}

.utbo-public-catalog__head > span {
	color: var(--utbo-primary);
	font-size: 13px;
	font-weight: 800;
}

.utbo-public-catalog__head h2 {
	margin: 5px 0 8px;
	font-size: clamp(27px, 4vw, 40px);
	line-height: 1.25;
}

.utbo-public-catalog__head p,
.utbo-catalog-card header p {
	margin: 0;
	color: var(--utbo-muted);
}

.utbo-catalog-grid {
	display: grid;
	grid-template-columns: repeat(var(--utbo-catalog-columns, 1), minmax(0, 1fr));
	gap: 18px;
}

.utbo-public-catalog--home .utbo-catalog-grid--count-4 {
	--utbo-catalog-columns: 2;
	max-width: 920px;
	margin-inline: auto;
}

.utbo-public-catalog--home .utbo-catalog-card {
	min-height: 390px;
}

.utbo-catalog-grid--count-1 {
	max-width: 560px;
	margin-inline: auto;
}

.utbo-catalog-grid--count-2 {
	--utbo-catalog-columns: 2;
}

.utbo-catalog-grid--count-3 {
	--utbo-catalog-columns: 3;
}

.utbo-catalog-grid--count-4 {
	--utbo-catalog-columns: 4;
}

.utbo-catalog-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: clamp(20px, 3vw, 30px);
	border: 1px solid var(--utbo-border);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(21, 19, 26, .07);
}

.utbo-catalog-card > header {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	margin-bottom: 18px;
}

.utbo-catalog-card > header > span {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	place-items: center;
	border-radius: 12px;
	background: #eafbfc;
	color: var(--utbo-cyan-deep);
	font-weight: 900;
}

.utbo-catalog-card h3 {
	margin: 0;
}

.utbo-catalog-rule {
	display: grid;
	gap: 9px;
	margin: 16px 0 0;
}

.utbo-catalog-rule > div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-top: 1px solid var(--utbo-border);
}

.utbo-catalog-rule dt {
	color: var(--utbo-muted);
}

.utbo-catalog-rule dd {
	margin: 0;
	font-weight: 900;
}

.utbo-catalog-rule > .utbo-catalog-rule__charge {
	margin-inline: -12px;
	padding-inline: 12px;
	border-radius: 10px;
	background: #fff1f5;
}

.utbo-catalog-rule__charge dd {
	color: var(--utbo-primary-dark);
}

.utbo-catalog-card footer {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: auto;
	padding-top: 18px;
}

.utbo-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border: 1px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	text-decoration: none !important;
	transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.utbo-button:focus-visible {
	outline: 3px solid rgba(104, 200, 208, .4);
	outline-offset: 2px;
}

.utbo-button--primary {
	background: var(--utbo-primary);
	color: #fff !important;
}

.utbo-button--primary:hover {
	background: var(--utbo-primary-dark);
	transform: translateY(-1px);
}

.utbo-catalog-card footer .utbo-button {
	width: auto;
	min-height: 44px;
	padding: 9px 17px;
}

.utbo-alert {
	margin: 0 0 16px;
	padding: 12px 15px;
	border-radius: 9px;
	font-size: 14px;
}

.utbo-alert--warning {
	background: #fff3d6;
	color: var(--utbo-warning);
}

.utbo-alert a {
	color: var(--utbo-primary-dark);
	font-weight: 800;
}

@media (max-width: 920px) {
	.utbo-catalog-grid--count-3,
	.utbo-catalog-grid--count-4 {
		--utbo-catalog-columns: 2;
	}
}

@media (max-width: 700px) {
	.utbo-public-catalog {
		margin: 24px auto;
		padding: 0 10px;
	}

	.utbo-public-catalog--home {
		padding-inline: 10px;
	}

	.utbo-catalog-grid--count-2,
	.utbo-catalog-grid--count-3,
	.utbo-catalog-grid--count-4 {
		--utbo-catalog-columns: 1;
	}

	.utbo-public-catalog--home .utbo-catalog-grid--count-4 {
		--utbo-catalog-columns: 1;
	}

	.utbo-catalog-card footer {
		align-items: stretch;
		flex-direction: column;
	}

	.utbo-catalog-card footer .utbo-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.utbo-button {
		transition: none;
	}

	.utbo-button--primary:hover {
		transform: none;
	}
}

/* Utubeat 0.5 premium catalogue and live configurator. */
.utbo-public-catalog,
.utbo-quick-order {
	--utbo-burgundy: #721d2d;
	--utbo-burgundy-dark: #4b111d;
	--utbo-charcoal: #202428;
	--utbo-ivory: #fbf7ef;
	--utbo-ivory-deep: #f1e9dc;
	--utbo-teal: #177b78;
	--utbo-teal-soft: #dff0ec;
	--utbo-line: rgba(32, 36, 40, .13);
	--utbo-shadow: 0 22px 64px rgba(45, 31, 30, .1);
	color: var(--utbo-charcoal);
	font-family: inherit;
}

.utbo-public-catalog *,
.utbo-public-catalog *::before,
.utbo-public-catalog *::after,
.utbo-quick-order *,
.utbo-quick-order *::before,
.utbo-quick-order *::after {
	box-sizing: border-box;
}

.utbo-public-catalog {
	width: min(1180px, 100%);
	margin: clamp(40px, 7vw, 88px) auto;
	padding: 0 18px;
}

.utbo-public-catalog__head {
	max-width: 760px;
	margin: 0 auto 21px;
	text-align: center;
}

.utbo-public-catalog__head > span,
.utbo-quick-order__head > span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--utbo-burgundy);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .035em;
}

.utbo-public-catalog__head > span i,
.utbo-quick-order__head > span i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--utbo-teal);
	box-shadow: 0 0 0 4px rgba(23, 123, 120, .12);
}

.utbo-public-catalog__head h2,
.utbo-quick-order__head h2 {
	margin: 8px 0 10px;
	color: var(--utbo-charcoal);
	font-size: clamp(30px, 4.7vw, 48px);
	font-weight: 900;
	line-height: 1.16;
	letter-spacing: -.035em;
	text-wrap: balance;
}

.utbo-public-catalog__head p,
.utbo-quick-order__head p {
	margin: 0;
	color: #696e71;
	font-size: 15px;
	line-height: 1.8;
}

.utbo-catalog-trust {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin: 0 auto 28px;
	color: #686d70;
	font-size: 12px;
	font-weight: 800;
}

.utbo-catalog-trust span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.utbo-catalog-trust span::before {
	content: "✓";
	display: grid;
	place-items: center;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: var(--utbo-teal-soft);
	color: var(--utbo-teal);
	font-size: 9px;
}

.utbo-catalog-grid {
	display: grid;
	grid-template-columns: repeat(var(--utbo-catalog-columns, 1), minmax(0, 1fr));
	gap: 15px;
}

.utbo-catalog-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 430px;
	flex-direction: column;
	padding: 23px;
	border: 1px solid var(--utbo-line);
	border-radius: 22px;
	background: #fffdf8;
	box-shadow: 0 12px 38px rgba(32, 36, 40, .055);
	overflow: hidden;
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.utbo-catalog-card::after {
	content: "";
	position: absolute;
	top: -62px;
	left: -62px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: rgba(114, 29, 45, .045);
	pointer-events: none;
}

.utbo-catalog-card:hover {
	transform: translateY(-5px);
	border-color: rgba(114, 29, 45, .25);
	box-shadow: var(--utbo-shadow);
}

.utbo-catalog-card > header {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0 0 17px;
}

.utbo-catalog-card__icon,
.utbo-catalog-card > header > .utbo-catalog-card__icon {
	display: grid;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	place-items: center;
	border-radius: 14px;
	background: var(--utbo-ivory-deep);
	color: var(--utbo-burgundy);
	font-size: 18px;
	font-weight: 900;
}

.utbo-catalog-card[data-service="views"] .utbo-catalog-card__icon,
.utbo-catalog-card[data-service="comments"] .utbo-catalog-card__icon {
	background: var(--utbo-teal-soft);
	color: var(--utbo-teal);
}

.utbo-catalog-card__tag {
	display: block;
	margin-bottom: 2px;
	color: #8b8e91;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .04em;
}

.utbo-catalog-card h3 {
	margin: 0;
	color: var(--utbo-charcoal);
	font-size: 19px;
	font-weight: 900;
	line-height: 1.3;
}

.utbo-catalog-card__description {
	min-height: 74px;
	margin: 0 0 18px;
	color: #6f7376;
	font-size: 13px;
	line-height: 1.75;
}

.utbo-catalog-card__starting {
	display: grid;
	gap: 4px;
	padding: 18px;
	border-radius: 15px;
	background: var(--utbo-charcoal);
	color: #fff;
}

.utbo-catalog-card__starting > span {
	color: rgba(255, 255, 255, .56);
	font-size: 11px;
}

.utbo-catalog-card__starting > strong {
	color: #fff;
	font-size: 25px;
	font-weight: 900;
}

.utbo-catalog-card__starting > strong small {
	color: #95cec7;
	font-size: 11px;
}

.utbo-catalog-card__starting > small {
	color: rgba(255, 255, 255, .58);
	font-size: 11px;
}

.utbo-catalog-rule {
	display: grid;
	gap: 0;
	margin: 13px 0 0;
}

.utbo-catalog-rule > div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 0;
	border-top: 1px solid var(--utbo-line);
}

.utbo-catalog-rule dt {
	color: #797d80;
	font-size: 12px;
}

.utbo-catalog-rule dd {
	margin: 0;
	color: var(--utbo-charcoal);
	font-size: 12px;
	font-weight: 900;
}

.utbo-catalog-card footer {
	margin-top: auto;
	padding-top: 18px;
}

.utbo-catalog-card footer .utbo-button,
.utbo-quick-order .utbo-button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	min-height: 49px;
	padding: 11px 17px;
	border: 1px solid transparent;
	border-radius: 12px;
	background: var(--utbo-burgundy);
	box-shadow: 0 10px 23px rgba(114, 29, 45, .17);
	color: #fff !important;
	font: inherit;
	font-size: 12px;
	font-weight: 900;
	text-decoration: none !important;
}

.utbo-catalog-card footer .utbo-button:hover,
.utbo-quick-order .utbo-button:hover {
	transform: translateY(-1px);
	background: var(--utbo-burgundy-dark);
}

/* Live quick-order configurator. */
.utbo-quick-order {
	width: min(1120px, calc(100% - 36px));
	margin: clamp(36px, 6vw, 76px) auto;
	padding: clamp(24px, 4vw, 46px);
	border: 1px solid var(--utbo-line);
	border-radius: 27px;
	background:
		radial-gradient(circle at 100% 0, rgba(23, 123, 120, .08), transparent 28%),
		#fffdf8;
	box-shadow: var(--utbo-shadow);
}

.utbo-quick-order__head {
	max-width: 720px;
	margin: 0 0 28px;
}

.utbo-quick-order__head h2 {
	font-size: clamp(28px, 4vw, 42px);
}

.utbo-quick-order__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 22px;
	align-items: stretch;
}

.utbo-quick-order__builder {
	display: grid;
	gap: 20px;
	padding: 22px;
	border: 1px solid var(--utbo-line);
	border-radius: 19px;
	background: var(--utbo-ivory);
}

.utbo-quick-services {
	margin: 0;
	padding: 0;
	border: 0;
}

.utbo-quick-services legend,
.utbo-quick-quantity__label > span {
	margin-bottom: 10px;
	color: var(--utbo-charcoal);
	font-size: 12px;
	font-weight: 900;
}

.utbo-quick-services > div {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.utbo-quick-services label {
	position: relative;
	display: grid;
	gap: 3px;
	justify-items: center;
	min-width: 0;
	padding: 13px 8px;
	border: 1px solid var(--utbo-line);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
}

.utbo-quick-services label:has(input:checked) {
	border-color: var(--utbo-burgundy);
	background: #fff7f5;
	box-shadow: 0 0 0 2px rgba(114, 29, 45, .07);
}

.utbo-quick-services label:has(input:focus-visible) {
	outline: 3px solid rgba(23, 123, 120, .2);
	outline-offset: 2px;
}

.utbo-quick-services input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.utbo-quick-services label > span {
	display: grid;
	place-items: center;
	width: 31px;
	height: 31px;
	border-radius: 9px;
	background: var(--utbo-ivory-deep);
	color: var(--utbo-burgundy);
	font-size: 13px;
}

.utbo-quick-services label b {
	overflow: hidden;
	max-width: 100%;
	color: var(--utbo-charcoal);
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.utbo-quick-services label small {
	color: #8c8f91;
	font-size: 11px;
}

.utbo-quick-quantity {
	display: grid;
	gap: 13px;
}

.utbo-quick-quantity__label {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	align-items: center;
}

.utbo-quick-quantity__label > span {
	margin: 0;
}

.utbo-quick-quantity__label small {
	color: #85898c;
	font-size: 11px;
}

.utbo-quick-quantity__row {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 48px;
	border: 1px solid var(--utbo-line);
	border-radius: 13px;
	background: #fff;
	overflow: hidden;
}

.utbo-quick-quantity__row :is(button, input) {
	width: 100%;
	height: 52px;
	border: 0;
	border-radius: 0;
	background: #fff;
	color: var(--utbo-charcoal);
	font: inherit;
}

.utbo-quick-quantity__row button {
	font-size: 21px;
	font-weight: 900;
	cursor: pointer;
}

.utbo-quick-quantity__row button:hover:not(:disabled) {
	background: var(--utbo-ivory-deep);
	color: var(--utbo-burgundy);
}

.utbo-quick-quantity__row button:disabled {
	opacity: .35;
}

.utbo-quick-quantity__row input {
	border-inline: 1px solid var(--utbo-line);
	font-size: 17px;
	font-weight: 900;
	text-align: center;
	appearance: textfield;
}

.utbo-quick-range {
	width: 100%;
	height: 8px;
	margin: 3px 0;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(to left, var(--utbo-burgundy) 0 var(--utbo-range-progress, 0%), #dcd6cc var(--utbo-range-progress, 0%) 100%);
	appearance: none;
	cursor: pointer;
}

.utbo-quick-range::-webkit-slider-thumb {
	width: 23px;
	height: 23px;
	border: 4px solid #fff;
	border-radius: 50%;
	background: var(--utbo-burgundy);
	box-shadow: 0 3px 12px rgba(70, 22, 31, .25);
	appearance: none;
}

.utbo-quick-range::-moz-range-thumb {
	width: 17px;
	height: 17px;
	border: 4px solid #fff;
	border-radius: 50%;
	background: var(--utbo-burgundy);
}

.utbo-quick-presets {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.utbo-quick-presets button {
	min-height: 34px;
	padding: 6px 12px;
	border: 1px solid var(--utbo-line);
	border-radius: 9px;
	background: #fff;
	color: var(--utbo-charcoal);
	font: inherit;
	font-size: 12px;
	font-weight: 900;
	cursor: pointer;
}

.utbo-quick-presets button:hover,
.utbo-quick-presets button.is-active {
	border-color: var(--utbo-burgundy);
	background: var(--utbo-burgundy);
	color: #fff;
}

.utbo-quick-total {
	display: flex;
	flex-direction: column;
	padding: 25px;
	border-radius: 19px;
	background: var(--utbo-charcoal);
	color: #fff;
}

.utbo-quick-total > span {
	color: rgba(255, 255, 255, .58);
	font-size: 12px;
}

.utbo-quick-total > strong {
	margin: 7px 0 20px;
	color: #fff;
	font-size: 31px;
	font-weight: 900;
}

.utbo-quick-total > div {
	display: grid;
	gap: 3px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 12px;
	background: rgba(255, 255, 255, .045);
}

.utbo-quick-total > div span {
	color: rgba(255, 255, 255, .56);
	font-size: 11px;
}

.utbo-quick-total > div b {
	color: #9fd8d1;
	font-size: 17px;
}

.utbo-quick-total > small {
	margin: 11px 0 20px;
	color: rgba(255, 255, 255, .46);
	font-size: 11px;
	line-height: 1.6;
}

.utbo-quick-total .utbo-button {
	margin-top: auto;
}

@media (max-width: 920px) {
	.utbo-catalog-grid--count-3,
	.utbo-catalog-grid--count-4 {
		--utbo-catalog-columns: 2;
	}

	.utbo-quick-order__body {
		grid-template-columns: minmax(0, 1fr) 260px;
	}

	.utbo-quick-services > div {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.utbo-public-catalog {
		padding-inline: 12px;
	}

	.utbo-catalog-grid--count-2,
	.utbo-catalog-grid--count-3,
	.utbo-catalog-grid--count-4 {
		--utbo-catalog-columns: 1;
	}

	.utbo-catalog-card {
		min-height: 0;
	}

	.utbo-catalog-card__description {
		min-height: 0;
	}

	.utbo-quick-order {
		width: calc(100% - 20px);
		padding: 22px 14px;
		border-radius: 21px;
	}

	.utbo-quick-order__body {
		grid-template-columns: 1fr;
	}

	.utbo-quick-order__builder,
	.utbo-quick-total {
		padding: 18px;
	}

	.utbo-quick-total > strong {
		font-size: 27px;
	}
}

@media (max-width: 390px) {
	.utbo-quick-services > div {
		grid-template-columns: 1fr 1fr;
	}

	.utbo-quick-services label {
		padding-inline: 5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.utbo-catalog-card,
	.utbo-catalog-card footer .utbo-button,
	.utbo-quick-order .utbo-button {
		transition: none;
	}
}
