@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
@import url("https://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://radioslovo.net/assets/css/theme-alizarin.css");

[id^="MusesRadioPlayer"],
[id^="MusesRadioPlayer"] > div {
  margin-left: auto !important;
  margin-right: auto !important;
}

:root {
	--color-bg: #ecf0f1;
	--color-surface: #ffffff;
	--color-surface-alt: #f7f9fa;
	--color-border: #d4d9dc;
	--color-text: #2c3e50;
	--color-text-strong: #34495e;
	--color-text-muted: #607d8b;
	--color-link: #2c3e50;
	--color-link-hover: #2e5071;
	--color-panel-heading: #2c3e50;
	--color-highlight: #2c3e50;
	--color-highlight-text: #ecf0f1;
	--color-accent: #EA4949;
	--color-accent-hover: #d65e5e;
	--color-progress-bg: #34495e;
	--color-progress-fill: #bdc3c7;
	--color-progress-text: #ffffff;
	--color-vote-button: #2c3e50;
	--color-scrollbar: rgba(98, 114, 130, 0.4);
	--color-shadow: rgba(0, 0, 0, 0.08);
	--color-text-soft: #95a5a6;
	--color-gold: #be7e05;
	--color-gold-shadow: #7a5000;
}

:root.theme-light {
	--color-bg: #ecf0f1;
	--color-surface: #ffffff;
	--color-surface-alt: #f7f9fa;
	--color-border: #d4d9dc;
	--color-text: #2c3e50;
	--color-text-strong: #34495e;
	--color-text-muted: #607d8b;
	--color-link: #2c3e50;
	--color-link-hover: #2e5071;
	--color-panel-heading: #2c3e50;
	--color-highlight: #2c3e50;
	--color-highlight-text: #ecf0f1;
	--color-accent: #EA4949;
	--color-accent-hover: #d65e5e;
	--color-progress-bg: #2c3e50;
	--color-progress-fill: #bdc3c7;
	--color-progress-text: #ffffff;
	--color-vote-button: #2c3e50;
	--color-scrollbar: rgba(98, 114, 130, 0.4);
	--color-shadow: rgba(0, 0, 0, 0.08);
}

:root.theme-dark {
	--color-bg: #1f2a35;
	--color-surface: #253341;
	--color-surface-alt: #2d3b4a;
	--color-border: #31475b;
	--color-text: #ecf0f1;
	--color-text-strong: #ffffff;
	--color-text-muted: #aab7c6;
	--color-link: #8ecdfc;
	--color-link-hover: #b7e1ff;
	--color-panel-heading: #2d3b4a;
	--color-highlight: #8ecdfc;
	--color-highlight-text: #1f2a35;
	--color-accent: #EA4949;
	--color-progress-bg: #2a3c4e;
	--color-progress-fill: #4779a8;
	--color-progress-text: #ffffff;
	--color-vote-button: #ecf0f1;
	--color-scrollbar: rgba(142, 205, 252, 0.4);
	--color-shadow: rgba(0, 0, 0, 0.4);
	--color-text-soft: #b6c2cc;
	--color-gold: #dba64a;
	--color-gold-shadow: #9b7025;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--color-bg);
	color: var(--color-text);
}

body {
	background: var(--color-bg);
	padding-top: 5px;
	color: var(--color-text);
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	border-top: 5px solid var(--color-accent);
	font-size: 15px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h4,
h5,
h6 {
  font-weight: 700;
}

h3 {
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-strong);
  font-family: 'Roboto', sans-serif;
  transition: color 0.3s ease;
}

a {
	color: var(--color-link);
	text-decoration: underline;
	transition: color 0.2s ease;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	text-decoration: underline;
}

#logo {
	text-align: center;
}

#logo a {
	color: #fff;
	padding: 45px 20px;
	font-family: 'Pacifico', cursive;
	font-size: 32px;
	font-weight: 400;
	text-decoration: none;
	display: inline-block;
	margin: 30px 0;
	text-shadow: 1px 2px rgba(0, 0, 0, 0.3);
	border-radius: 50%;
}

#marketing-text {
	text-align: center;
}

#marketing-text.alter {
	margin-bottom: 30px;
}

#marketing-text h1 {
	font-size: 30px;
	margin-bottom: 20px;
}

#marketing-text p {
	font-size: 18px;
}

#subscribe {
	margin: 50px 0 30px 0;
}

#subscribe .btn-block {
	margin-top: 10px;
}

.panel-theme {
	border: 0;
	border-radius: 6px;
	background: var(--color-surface);
	box-shadow: 0 16px 32px -16px var(--color-shadow);
}

.panel-theme .panel-heading {
	background: var(--color-panel-heading);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	padding: 20px 0;
	border: 0;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}


.panel-theme input[type="text"],
.panel-theme input[type="email"],
.panel-theme textarea,
.panel-theme select {
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

:root.theme-dark .panel-theme input[type="text"],
:root.theme-dark .panel-theme input[type="email"],
:root.theme-dark .panel-theme textarea,
:root.theme-dark .panel-theme select {
  background-color: #273545;
  color: var(--color-text);
  border-color: #36495d;
}

:root.theme-dark .panel-theme input[type="text"]::placeholder,
:root.theme-dark .panel-theme input[type="email"]::placeholder,
:root.theme-dark .panel-theme textarea::placeholder,
:root.theme-dark .panel-theme select::placeholder {
  color: rgba(236, 240, 241, 0.6);
}

:root.theme-dark .panel-theme input[type="text"]:focus,
:root.theme-dark .panel-theme input[type="email"]:focus,
:root.theme-dark .panel-theme textarea:focus,
:root.theme-dark .panel-theme select:focus {
  border-color: var(--color-link);
  background-color: #2f3f53;
}

.panel-theme .panel-body {
	padding: 20px 40px 10px;
	text-align: center;
	background: var(--color-surface);
}

.panel-theme .panel-body2 {
	padding: 20px 20px 10px;
	text-align: center;
	background: var(--color-surface);
}

#features {
	overflow: hidden;
	margin: 20px 0;
}

#features i {
	font-size: 48px;
}

#features h2 {
	font-size: 18px;
	line-height: 24px;
}

.feature-box {
	padding: 15px;
	text-align: center;
	border: 1px solid var(--color-border);
	border-radius: 5px;
	margin-bottom: 20px;
	background: var(--color-surface-alt);
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.feature-box:hover {
	border-color: var(--color-link-hover);
}

footer {
	margin: 0 0 30px;
	text-align: center;
	color: var(--color-text-muted);
}

.social-text,
.social-text2 {
	font-size: 16px;
}

.social-text span,
.social-text2 span,
.social-text3 span {
	display: block;
	width: 150px;
	margin: 0 auto 10px;
	border-top: 3px solid var(--color-border);
}

.social-text3 span {
	margin-top: 15px;
}

.social-icons {
	margin-bottom: 20px;
}

.social-icons a {
	font-size: 24px;
	padding: 5px;
	color: var(--color-accent);
}

.social-icons a:hover {
	text-decoration: none;
	color: var(--color-accent-hover);
}

footer small {
	color: var(--color-text-muted);
}

.btn-theme {
	color: var(--color-text);
	background-color: var(--color-surface-alt);
	border-color: var(--color-border);
	font-weight: 700;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-theme:hover,
.btn-theme:focus,
.btn-theme:active,
.btn-theme.active,
.open .dropdown-toggle.btn-theme {
	color: var(--color-text);
	background-color: var(--color-surface);
	border-color: var(--color-border);
}

.bg-panel-alt {
	background: var(--color-panel-heading) !important;
	color: #fff !important;
}

.cta-download {
	display: block;
	width: 300px;
	height: 60px;
	line-height: 60px;
	margin: 30px auto 20px;
	text-align: center;
	border-radius: 4px;
	background: var(--color-gold);
	box-shadow: 0 1px 0 0 var(--color-gold-shadow);
	color: #fff;
	font-size: 19px;
	font-weight: 500;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-download:hover,
.cta-download:focus {
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 6px 14px -6px var(--color-shadow);
}

.title-stream,
.title-stream2 {
	margin: -10px 0;
	font-weight: bold;
	color: var(--color-text);
}

.title-stream2 {
	color: var(--color-link);
}

.thumb-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 6px;
}

.row.row--centered,
#marketing-text .row,
section#marketing-text .row {
  display: flex;
  justify-content: center;
}

.row.row--centered > [class*="col-"],
#marketing-text .row > [class*="col-"],
section#marketing-text .row > [class*="col-"] {
  float: none;
}

.row.row--centered > [class*="col-"],
#marketing-text .row > [class*="col-"] {
  margin-left: auto;
  margin-right: auto;
}

#player {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#player > * {
  margin-left: auto !important;
  margin-right: auto !important;
}

.thumb-wrap img {
  object-fit: cover;
}

.thumb-wrap img[src*="questions-school07"] {
  object-fit: contain;
  background: var(--color-surface);
}

.thumb-wrap iframe,
.thumb-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: normal;
  border: 0;
}

.thumb-wrap iframe {
  width: 100% !important;
  height: 100% !important;
}

.thumb-wrap iframe {
  width: 100% !important;
  height: 100% !important;
}

.fb-plugin-center,
.fb-plugin-center iframe,
.fb-plugin-center > span,
.fb-plugin-center > div {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.media-card {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: 0 16px 32px -16px var(--color-shadow);
}

.media-card img {
	display: block;
	width: 100%;
	border-radius: 6px;
}

.stream-category {
	margin: 40px 0 20px;
}

.stream-category h2 {
	font-size: 26px;
	margin-bottom: 10px;
}

.stream-category p {
	color: var(--color-text-muted);
	margin-bottom: 20px;
}

.stream-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.stream-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 14px 18px;
	box-shadow: 0 16px 32px -18px var(--color-shadow);
	display: flex;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	text-decoration: none;
	color: var(--color-text);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.stream-card:hover,
.stream-card:focus {
	border-color: var(--color-link);
	box-shadow: 0 18px 38px -18px var(--color-shadow);
	transform: translateY(-2px);
}

.stream-card:focus-visible {
	outline: 2px solid var(--color-link);
	outline-offset: 4px;
}

.stream-card.is-active {
	border-color: var(--color-link);
	box-shadow: 0 20px 40px -18px var(--color-shadow);
}

.stream-card.stream-card--interactive {
	flex-direction: row;
	align-items: flex-start;
	gap: 14px;
}

.stream-card__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.stream-card__play-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--color-border);
	background: var(--color-surface-alt);
	color: var(--color-text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.stream-card__play-btn:hover,
.stream-card__play-btn:focus-visible {
	border-color: var(--color-link);
	color: var(--color-link);
	transform: translateY(-1px);
}

.stream-card__play-btn.is-active {
	background: var(--color-highlight);
	border-color: var(--color-highlight);
	color: var(--color-highlight-text);
}

.stream-card__play-btn i {
	pointer-events: none;
}

.stream-card__title {
	font-size: 18px;
	font-weight: 700;
}

.stream-card__desc {
	font-size: 14px;
	color: var(--color-text-muted);
	line-height: 1.3;
}

.stream-card__url {
	display: none;
}

.stream-card__actions {
	margin-top: auto;
	display: flex;
	gap: 8px;
}

.stream-card__actions button {
	flex: 1;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	background: var(--color-surface-alt);
	color: var(--color-text);
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.stream-card__actions button:hover,
.stream-card__actions button:focus {
	background: var(--color-highlight);
	border-color: var(--color-highlight);
	color: var(--color-highlight-text);
}

@media (max-width: 600px) {
	.stream-card.stream-card--interactive {
		gap: 10px;
		padding: 12px 14px;
	}

	.stream-card__play-btn {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}

.main-player {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 18px 20px;
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	box-shadow: 0 -12px 30px -20px var(--color-shadow);
	z-index: 5000;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
}

.main-player__meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	justify-content: flex-start;
	margin-bottom: 0;
	flex: 1;
	min-width: 0;
}

.main-player__title {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	color: var(--color-text-strong);
}

.main-player__category {
	font-size: 13px;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.main-player__status {
	font-size: 12px;
	color: var(--color-text-muted);
	margin-top: 0;
}

.player-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.player-volume {
	justify-self: end;
}

.player-controls button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: var(--color-surface-alt);
	color: var(--color-text);
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.player-controls button:hover,
.player-controls button:focus {
	background: var(--color-highlight);
	color: var(--color-highlight-text);
}

.player-volume {
	display: none;
	align-items: center;
	gap: 8px;
	min-width: 160px;
	margin-top: 12px;
}

.player-volume input[type="range"] {
	flex: 1;
	accent-color: var(--color-highlight);
}

.player-volume-toggle-wrapper {
	display: flex;
	align-items: center;
	position: relative;
}

.player-volume-popover {
	position: absolute;
	right: 0;
	bottom: 52px;
	padding: 14px 12px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	box-shadow: 0 10px 22px -14px var(--color-shadow);
	display: none;
	justify-content: center;
	align-items: center;
	width: 64px;
	min-height: 190px;
}

.player-volume-popover.is-open {
	display: flex;
.player-volume-popover input[type="range"] {
	width: 32px;
	height: 150px;
	background: transparent;
	-webkit-appearance: slider-vertical;
	appearance: none;
	writing-mode: bt-lr;
	accent-color: var(--color-highlight);
	transform: rotate(180deg);
}

.player-wrapper {
	padding-bottom: 120px;
}

.stream-empty {
	color: var(--color-text-muted);
	font-style: italic;
}

.text-muted {
	color: var(--color-text-muted);
}

.track-section {
	background: var(--color-bg);
	border: 1px solid transparent;
	border-radius: 6px;
	padding: 16px;
}

.track-section--surface {
	background: var(--color-surface);
	border-color: var(--color-border);
}

.track-section__title {
	color: var(--color-text-strong);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.track-section__meta {
	color: var(--color-text-muted);
	font-size: 14px;
}

.bg-surface {
	background: var(--color-surface) !important;
}

.bg-surface-alt {
	background: var(--color-surface-alt) !important;
}

.text-primary {
	color: var(--color-link) !important;
}

.text-accent {
	color: var(--color-accent) !important;
}

.text-soft {
	color: var(--color-text-soft) !important;
}

.gallery-frame {
	position: relative;
	border-radius: 6px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.05));
	padding: 6px;
}

.gallery-frame img {
	border-radius: 4px;
	display: block;
	width: 100%;
	height: auto;
}

.link-card {
	display: block;
	border-radius: 6px;
	padding: 18px 24px;
	background: var(--color-surface);
	color: var(--color-text);
	text-decoration: none;
	border: 1px solid var(--color-border);
	box-shadow: 0 16px 32px -16px var(--color-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.link-card:hover,
.link-card:focus {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 20px 32px -18px var(--color-shadow);
	border-color: var(--color-link-hover);
}

.link-card__title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--color-text-strong);
}

.link-card__meta {
	font-size: 14px;
	color: var(--color-text-muted);
}


.theme-toggle {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 6000;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--color-border);
	background: var(--color-surface-alt);
	color: var(--color-text);
	font-size: 20px;
	line-height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 16px 32px -16px var(--color-shadow);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle .fa {
  pointer-events: none;
}

.theme-toggle:hover,
.theme-toggle:focus {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-link-hover);
  box-shadow: 0 20px 32px -18px var(--color-shadow);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--color-link);
  outline-offset: 4px;
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: var(--color-scrollbar);
	border-radius: 999px;
}

.widget-surface {
	background: var(--color-surface);
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 16px 32px -16px var(--color-shadow);
	border: 1px solid var(--color-border);
}

.widget-heading {
	color: var(--color-text-strong);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
}

.widget-meta {
	color: var(--color-text-muted);
	font-size: 14px;
}

.progress-slim {
	position: relative;
	height: 24px;
	background: var(--color-progress-bg);
	border-radius: 999px;
	overflow: hidden;
}

.progress-slim__bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: var(--color-progress-fill);
}

.progress-slim__label {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: var(--color-progress-text);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 14px;
}

.vote-buttons svg {
	fill: var(--color-vote-button);
	transition: transform 0.2s ease;
}

.vote-buttons svg:hover {
	transform: translateY(-1px);
}

.media-gradient {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
}

.media-gradient::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
	pointer-events: none;
}

.media-gradient__text {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	color: #fff;
	font-weight: 600;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.padded {
	padding: 24px;
}

.padded--tight {
	padding: 16px;
}

.bordered {
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.shadowed {
	box-shadow: 0 16px 32px -16px var(--color-shadow);
}

.muted-block {
	background: var(--color-surface-alt);
	padding: 20px;
	border-radius: 6px;
	color: var(--color-text-muted);
}

.callout {
	border-left: 4px solid var(--color-accent);
	padding: 18px 24px;
	margin: 20px 0;
	background: rgba(234, 73, 73, 0.08);
	color: var(--color-text);
}

:root.theme-dark .callout {
	background: rgba(234, 73, 73, 0.18);
}

.link-subtle {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.link-subtle:hover,
.link-subtle:focus {
	color: var(--color-link-hover);
}

.table-dark-friendly {
	background: var(--color-surface);
	color: var(--color-text);
}

.table-dark-friendly tbody tr:nth-child(odd) {
	background: var(--color-surface-alt);
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	background: var(--color-surface-alt);
	color: var(--color-text-muted);
}

.badge--accent {
	background: rgba(234, 73, 73, 0.15);
	color: var(--color-accent);
}

.badge--highlight {
	background: rgba(142, 205, 252, 0.15);
	color: var(--color-link);
}

.surface-card {
	background: var(--color-surface);
	border-radius: 12px;
	border: 1px solid var(--color-border);
	padding: 24px;
	box-shadow: 0 20px 40px -24px var(--color-shadow);
}

.surface-card + .surface-card {
	margin-top: 24px;
}

.surface-card__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-text-strong);
	margin-bottom: 12px;
}

.surface-card__meta {
	font-size: 14px;
	color: var(--color-text-muted);
}

.list-clean {
	list-style: none;
	padding: 0;
	margin: 0;
}

.list-clean li {
	padding: 8px 0;
	border-bottom: 1px solid var(--color-border);
}

.list-clean li:last-child {
	border-bottom: 0;
}

.icon-ring {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-surface-alt);
	color: var(--color-link);
	margin-right: 10px;
}

:root.theme-dark .icon-ring {
	background: rgba(142, 205, 252, 0.12);
}

.nav-pills > li > a {
	border-radius: 999px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
	background: var(--color-highlight);
	color: var(--color-highlight-text);
}

.blockquote {
	border-left: 4px solid var(--color-border);
	padding: 12px 20px;
	background: var(--color-surface-alt);
}

.tag-cloud a {
	display: inline-block;
	margin: 4px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--color-surface-alt);
	color: var(--color-link);
	text-decoration: none;
	font-size: 14px;
}

.tag-cloud a:hover {
	background: var(--color-highlight);
	color: var(--color-highlight-text);
}

#cme-form-main,
#cme-container .callmebody,
#cme-container .callme-fields {
	background: var(--color-surface) !important;
	color: var(--color-text) !important;
}

#cme-form-main .callme-field label,
#cme-form-main .callme-field span,
#cme-form-main .callme-field b,
#cme-form-main .callme-result,
#cme-form-main .h6 {
	color: var(--color-text) !important;
}

#cme-form-main input[type="text"],
#cme-form-main input[type="tel"],
#cme-form-main input[type="email"],
#cme-form-main input[type="number"],
#cme-form-main textarea,
#cme-form-main select {
	background: var(--color-surface-alt) !important;
	color: var(--color-text) !important;
	border: 1px solid var(--color-border) !important;
}

#cme-form-main #callme-submit,
#cme-form-main .callme-field button {
	background: var(--color-highlight) !important;
	color: var(--color-highlight-text) !important;
	border-color: var(--color-highlight) !important;
}

#cme-form-main .callme-result div {
	background: var(--color-surface-alt) !important;
	color: var(--color-text) !important;
}

#cme-btn a {
	background: var(--color-highlight) !important;
	color: var(--color-highlight-text) !important;
}

.bg-accent-soft {
	background: rgba(234, 73, 73, 0.1);
}

.bg-highlight-soft {
	background: rgba(142, 205, 252, 0.12);
}

.border-accent {
	border-color: var(--color-accent) !important;
}

.border-highlight {
	border-color: var(--color-highlight) !important;
}

.shadow-soft {
	box-shadow: 0 16px 32px -16px var(--color-shadow);
}

@media (min-width: 768px) and (max-width: 991px) {
	#subscribe .btn-block {
		margin: 0;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	#subscribe .btn-block {
		margin: 0;
	}

	#features,
	#subscribe {
		margin: 50px 0;
	}
}

@media (min-width: 1200px) {
	#marketing-text p {
		padding: 0 50px;
	}

	#subscribe .btn-block {
		margin: 0;
	}

	#features,
	#subscribe {
		margin: 50px 0;
	}
}
@media (min-width: 769px) {
  .player-volume {
    display: flex;
  }
  .player-volume-toggle-wrapper {
    display: none;
  }
}

.player-wrapper {
	padding-bottom: 220px;
}

@media (max-width: 768px) {
  .player-wrapper {
    padding-bottom: 320px;
  }
  .main-player {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .main-player__meta {
    margin-bottom: 4px;
  }
  .main-player__title {
    font-size: 16px;
  }
  .main-player__category,
  .main-player__status {
    font-size: 11px;
  }
  .player-controls {
    width: 100%;
    justify-content: center;
  }
  .player-controls button {
    width: 36px;
    height: 36px;
  }
  .player-volume {
    display: none !important;
  }
  .player-volume-toggle-wrapper {
    display: flex !important;
    margin-left: 4px;
  }
}
.placeholder {
    padding: 50px;
}