/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

:focus,
:active {
	/*outline: none;*/
}

a:focus,
a:active {
	/* outline: none;*/
}

/* Links */

a, a:link, a:visited  {
    /* color: inherit; */
    text-decoration: none;
    /* display: inline-block; */
}

a:hover  {
    /* color: inherit; */
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

*, *::before, *::after {
	box-sizing: inherit;
}

body {
	font-family: 'Roboto Slab', serif;
	font-style: normal;
	font-size: 16px;
	line-height: 1.2;
	font-weight: normal;
	background-color: #fff;
}

.wrapper {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header start */

.header {
	width: 100%;
	background: #fff;
	background-size: 400% 100%;
	position: fixed;
	top: 0;
	z-index: 5;
}

.header__active {
	display: none;
}

.header__wrapper {
	height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: none;
}

.header_active .header__wrapper {
   border: 1px solid #000;
   margin-top: 5px;
   padding-left: 15px;
   padding-right: 15px;
}

.header__logo-link {
	text-decoration: none;
}

.header__logo-link .header__logo-pic {
	width: 105px;
	will-change: width;
}

.header_active .header__logo-link .header__logo-pic {
	width: 100px;
}

.header__nav {
	width: 50%;
}

.header__list {
	display: flex;
	align-items: center;
}

.header__item {
	flex-grow: 1;
	text-align: center;
}


.header__item:last-child {
	margin-right: 0;
}

.header__item a {
	font-family: 'Roboto Mono';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 50px;
	color: #010201;
	text-decoration: none;
}

.header__item a:hover {
	font-family: 'Roboto Mono';
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 50px;
	color: #000;
	text-decoration: none;
	border-bottom: 1px solid #000;
}

.header__item a:focus {
	position: relative;
	font-family: 'Roboto Mono';
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 50px;
	color: #000;
	text-decoration: none;
	border: none;
}

.header__item a:focus::before {
	content: "["; /* Добавить символ "[" */
	position: absolute;
	left: -10px;
}

.header__item a:focus::after {
	content: "]"; /* Добавить символ "]" */
	position: absolute;
	right: -10px;
}

.header__burger	{
	display: none;
	width: 40px;
	height: 28px;
	position: relative;
}

.burger__line {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #000;
	position: absolute;
	left: 0;
}

.burger__line_first {
	top: 0;
}

.burger__line_second {
	top: 50%;
	transform: translateY(-50%);
}

.burger__line_third {
	bottom: 0;
}

/* Header end & welcome start */

#content {
  height: 100%;
  padding-top: 25px;
  transition: opacity 0.6s ease-in-out;
}

.welcome {
	margin-top: 140px;
	margin-bottom: 50px;
	width: 100%;
	height: 650px;
	left: 0px;
}	

.welcome__wrapper {
	display: flex;
	height: 650px;
}

.welcome__content {
	display: flex;
	margin-left: 0;
	height: 100%;
	width: 100%;
	justify-content: space-between;
	flex-direction: column;
}

.welcome__content h1 {
  max-width: 100%;
  text-align: center;
  font-family: 'Roboto Mono';
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  color: #FFF;
  background-color: #0c0c0c; 
	width: 100%;
	margin: 0;
	padding: 10px;
}

.title a {
	line-height: 125%;
	text-decoration: underline dotted;
	text-decoration-line: dotted;
	text-decoration-thickness: 3px;
	color: #FFF;
}

.newslider {
	display: flex;
	margin-top: 0;
	width: 100%;
	justify-content: space-evenly;
}

.station {
	height: 100px;
}

.newslider img {
	width: 80px;
	height: 80px;
	transition: transform 0.3s;
}

.newslider img:hover,
.newslider img.active {
	transform: scale(1.25);
	animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  0% {
   scale: 1;
  }
  100% {
    scale: 1.04;
  }
}

.station__info {
	height: 100px;
	width: 100%;
}

.station__links {
	text-align: center;
	width: 100%;
	margin-bottom: 10px;
}

.station__links ul li {
	display: inline-block;
	margin-right: 5px;
}

.on-air {
	width: 100%;
}

.artist {
	max-width: 100%;
	text-align: center;
	font-family: 'Roboto Mono';
	font-weight: 400;
	font-size: 28px;
	line-height: 100%;
	color: #000000;
}

#default .song {
	max-width: 100%;
	text-align: center;
	font-family: 'Roboto Mono';
	font-weight: 400;
	font-size: 24px;
	line-height: 100%;
	color: #000000;
}

.subtitle {
	font-family: 'Roboto Slab';
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 110%;
	text-justify: auto;
	color: #000;
}

.welcome__content .subtitle {
	font-family: 'Roboto Slab';
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 110%;
	text-justify: auto;
	color: #000;
}

.welcome__content .discription	{
	height: 50px;
}

.discription	{
	width: 100%;
	font-family: 'Roboto Mono';
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 125%;
	color: #000;
	padding-top: 10px;
}

.discription a {
	color: #000;
	border-bottom: .01em dotted rgb(0, 0, 0, .2);
}

.discription a:hover {
  color: #ff0000;
  border-bottom: .01em dotted rgb(0, 0, 0, .2);
  text-decoration: none;
}

/* end welcome and start rating */

.rating__wrapper {
	
	width: 100%;
	position: relative;
}

.rating__title {
	width: 470px;;
	font-family: 'Roboto Mono';
	font-style: italic;
	font-weight: 300;
	font-size: 42px;
	line-height: 100%;
	color: #181717;
}

.rating__discription {
	width: 100%;
	padding-top: 20px;
	font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 115%;
  color: #000000;
	text-align: justify;
}

details>summary {
  list-style: none;
  margin-bottom: 25px;
}

summary::-webkit-details-marker {
  display: none
}

summary::after {
  content: '▶';
  cursor: pointer;
  font-style: normal;
}

details[open] summary:after {
  content: "▼";
  cursor: pointer;
}

table {
	margin-top: 20px;
	width: 100%;
	border-collapse: collapse;
}

thead {
	position: sticky;
  top: 75px;
  background-color: white;
}
thead tr th {
	font-family: 'Roboto Slab';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	color: #000;
	border-bottom: 1px solid #b5b5b5;
	vertical-align: middle;
	line-height: normal;
	padding-top: 10px;
	padding-bottom: 10px;
}

th:first-child,
td:first-child {
  width: 5%;
}

th:nth-child(2),
td:nth-child(2) {
  width: 10%;
}



th:nth-child(5),
td:nth-child(5) {
  width: 10%;
}

th:nth-child(6),
td:nth-child(6) {
  width: 15%;
}


table tbody {
	height: 80px;
}

table tbody tr {
	border-bottom: 1px solid #b5b5b5;
	border-left: 1px solid #b5b5b5;
	border-right: 1px solid #b5b5b5;
	height: 75px;
}

table tbody .promo {
	border-top: 2px solid #b5b5b5;
	border-bottom: 2px solid #b5b5b5;
	border-left: 2px solid #b5b5b5;
	border-right: 2px solid #b5b5b5;
	height: 95px;
	animation: border-flash 2s infinite;
}

@keyframes border-flash {
  0% {
    border-color: #b5b5b5;
  }
  50% {
    border-color: #e2e2e2
  }
  100% {
    border-color: #b5b5b5;
  }
}

.rating__pos {
	text-align: center;
	font-family: 'Roboto Mono';
  font-size: 22px;
	line-height: 125%;
	color: #181717;
	margin-right: 15px;
}

.rating__logo {
	text-align: center;
}

.rating__logo img {
	border-radius: 15px;
	border: 2px solid rgba(255, 255, 255, .2);;
	width: 50px;
	height: 100%;
}

.rating__info {

}

.radio__basics {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 15px;
}

.radio__name a {
	text-decoration: none;
	font-family: 'Roboto Mono';
	font-weight: 500;
	font-size: 16px;
	line-height: 125%;
	text-decoration-line: underline;
	color: #181717;
}

.radio__tagline {
	font-family: 'Roboto Slab';
	font-weight: 400;
	font-size: 13px;
	line-height: 100%;
	letter-spacing: -0.05em;
	padding-top: 5px;
	display: none;
}

.promo .radio__tagline {
	font-family: 'Roboto Slab';
	font-weight: 400;
	font-size: 13px;
	line-height: 100%;
	letter-spacing: -0.05em;
	padding-top: 5px;
	display: block;
}

.radio__city {
	padding-top: 5px;
	font-family: 'Roboto Slab';
	font-style: italic;
	font-weight: 400;
	font-size: 13px;
	line-height: 100%;
	color: #606060;;
}

.radio__tags {
	font-family: 'Roboto Mono';
	font-size: 12px;
	text-align: center;
}

.radio__year {
	font-family: 'Roboto Mono';
	font-size: 12px;
	text-align: center;
}

.radio__socials {
	text-align: center;
}

.radio__socials ul li {
	display: inline-block;
	margin-right: 3px;
}

.radio__socials li a[href="#"] {
	display: none;
}

.radio_listen {
	text-align: center;
}

.rating__end {
	padding-top: 50px;
}
/* end rating start banners */

.rating__banners {
	width: 18%;
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
	display: none;
}

.rating__banners-item {
	width: 100%;
	opacity: .9;
	line-height: .8em;
	padding: 10px;
	margin-bottom: 10px;
	border: 2px dashed;
	border-color: rgba(0, 0, 0, 0.1);
}

.rating__banners-item img {
	height: 90px;
	width: 100%;
}

/* SOCIALS 
===================*/

.fa-facebook {
  color: #4267B2;
}

.fa-vk {
  color: #2787F5;
}

.fa-instagram {
  background: linear-gradient(#405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fa-telegram {
	color: #0088cc;
}

.fa-soundcloud {
	color: #FE5000;
}

.fa-mixcloud {
	color: #4f01ff;
}

.fa-youtube {
	color: #FF0000;
}

.fa-twitter {
	color: #1DA1F2;
}

.fa-spotify {
	color: #1DB954;
}

.fa-bandcamp {
	color: #629aa9;
}

.fa-link {
	color: #000;
	padding-left: 5px;
	font-size: 8pt;
}

.fa-link:hover {
	color: #1e88e5;
}

/*CATALOG PAGE*/

.catalog_wrapper {
  margin-top: 25px;
  display: flex;
  width: 100%;
  flex-direction: column;
}

.reestr {
	columns: 6;
	padding-top: 50px;
}

.reestr h3 {
  color: #000;
  padding-top: 20px;
}

.reestr hr {
  border: 1px solid red;
  opacity: .6;
}

.reestr li {
  list-style: none;
}

.reestr a {
  color: #ff0000;
}

.reestr a:hover {
  color: #000;
}

.reestr h2 {
  color: #000;
  text-align: center;
}

/* footer start */

footer {
	margin-top: 50px;
	background: #000;
}

.footer__wrapper {
	display: flex;
  width: 100%;
  height: 225px;
  justify-content: space-between;
}

.footer__about {
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-bottom: 10px;
}

.footer__about p {
	padding-top: 10px;
}

.footer__credits {
	padding-top: 15px;
    height: 100px;
}
.footer__discription {
	font-family: 'Roboto Mono';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 125%;
	color: #fff;
	padding-top: 15px;
}

.footer__links {
display: flex;
width: 100%;
flex-direction: column;
align-items: flex-end;
}

.footer__links-main, .footer__links-more, .footer__links-social {
	margin-right: 25px;
}

.footer__links-main ul, .footer__links-more ul, .footer__links-social ul {
	padding-bottom: 10px;
}

.footer__links-main ul li, .footer__links-more ul li {
	display: inline;
	margin-left: 5px;
}

.footer__links-social ul li {
	display: inline;
}

.footer__links-main ul li a, .footer__links-more ul li a {
	color: #fff;
	font-weight: 400;
	font-family: 'Roboto Mono';
	font-size: 12px;
	text-decoration-line: underline;
}

.footer__wrapper-2 {
	display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  margin-left: 25px;
  padding-top: 15px;
}
  #photo-grid {
  	width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow-x: auto;
	}
  #photo-grid img {
    width: 50px;
    height: 50px;
    margin: 10px 5px 15px 5px;
  }

.footer__wrapper .footer__end-link {
	padding-bottom: 10px;
	color: #fff;
	font-family: 'Roboto Mono';
	font-size: 12px;
	text-decoration: underline;
}

/* RADIO PANNEL */
.radio__control {
	width: 100%;
	background: #fff;
	height: 75px;
	position: sticky;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding-left: 20px;
	padding-right: 20px;
	background-size: 400% 100%;
	border: 2px solid #000;
	animation: gradient 45s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.radio__control .header__logo-pic {
	width: 75px;
}

.radio__control .channel_name {
	width: 75px;
}

.player-control {
	width: 75px;
}

#playerVolume {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background-color: #000;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

#playerVolume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 5px;
  height: 22px;
  background-color: #000;
  border-radius: 15%;
  cursor: pointer;
}

#playerVolume::-moz-range-thumb {
  width: 5px;
  height: 22px;
  background-color: #fff;
  border-radius: 15%;
  cursor: pointer;
}

 /* FOOTER END */

 
 /* MESSAGE
========================= */

#message {
	font-family: 'Roboto Mono';
	font-size: 12px;
	padding-right: 55px;
  text-align: right;
  opacity: .8;
}

/* message end */

.hidden {
	display: none;
}

/* LIVE */

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

#live-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  z-index: 100;
}

.border-text {
  position: absolute;
  top: 30px;
  right: 0;
  width: 100px;
  height: calc(100vh + 72px);
  font-size: 72px;
  font-weight: bold;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: revert;
  overflow: hidden;
}

.border-text span {
  display: inline-block;
}

/* BACKGROUND */
#video-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background: no-repeat #000;
    background-size: cover;
}

#video-bg > video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto; 
    opacity: 0.2;
}

 @supports (object-fit: cover) {
     #video-bg > video {
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         object-fit: cover;
     }
 }

#live .logo__glitch {
	position: relative;
	width: 200px;
	height: 100px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#live .station__live {
	position: relative;
	padding-left: 30px;
	width: 80%;
	height: 500px;
}

#live .station__live span {
	font-size: 120px;
	font-weight: bold;
	color: #fff;
}


/*1280px start*/


@media screen and (max-width: 1280px) {
	#message {
		display: none;
	}
	table {
		margin-top: 20px;
		width: 100%;
		border-collapse: collapse;
	}
	.message {
		display: block;
	    position: absolute;
	    top: 700px;
	    right: 10px;
	    width: 45%;
	    height: 150px;
	    overflow: hidden;
	    z-index: -5;
	    font-family: 'Roboto Mono';
	}
	#live .station__live span {
	font-size: 88px;
	}
	.welcome {
		margin-top: 160px;
		margin-bottom: 0;
	}	
	.welcome__wrapper {
		height: 550px;
	}
}

/*910px start*/

@media screen and (max-width: 910px) {
	.header__burger {
		display: block;
	}
	.header__nav {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		background-color: #CECECE;
		z-index: 10;
		padding: 75px;
		transform: translateX(100%);

	}
	.header__nav_active {
		transform: translateX(0);
	}
	.header__list {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
	}
	.header__item {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.header__link:last-child {
		margin-bottom: 0;
	}
	.header__link {
		color: #fff;
		font-size: 42px;
		line-height: 48px;
	}
	.header__link:hover {
		color: #E06733;
		line-height: 48px;
	}
	.header__nav-close {
		width: 40px;
		height: 40px;
		position: absolute;
		top: 40px;
		right: 20px;
		z-index: 11;
	}
	.header__nav-close-line{
		display: block;
		width: 100%;
		height: 2px;
		background-color: #fff;
		position: absolute;
		top: 50%;
	}
	.header__nav-close-line:first-child {
		transform: translateY(-50%) rotate(45deg);
	}
	.header__nav-close-line:last-child {
		transform: translateY(-50%) rotate(-45deg);
	}
	.welcome {
		margin-top: 160px;
	}	
	.welcome__wrapper {
		height: 550px;
	}
	.subtitle {
		font-family: 'Roboto Slab';
		font-style: normal;
		font-weight: 600;
		font-size: 14px;
		line-height: 100%;
		color: #000;
	}
	.discription {
		padding-top: 15px;
		width: 100%;
		margin: 0 auto;
		font-family: 'Roboto Slab';
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 115%;
		color: #000000;
	}
	.rating__discription {
		width: 100%;
		font-family: 'Roboto Slab';
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 115%;
		color: #000000;
	}
	.message {
		display: block;
	    position: absolute;
	    top: 700px;
	    right: 10px;
	    width: 45%;
	    height: 150px;
	    overflow: hidden;
	    z-index: -5;
	    font-family: 'Roboto Mono';
	}
	thead tr th:nth-child(5), tbody .radio__socials {
		display: none;
	}
	#live .station__live span {
	font-size: 68px;
	}
}

@media screen and (max-width: 650px) {
	.welcome__bg {
		display: block;
		position: absolute;
		top: 50px;
		left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
		z-index: -10;
	}
	.welcome__bg:active {
		display: block;
		position: absolute;
		top: 50px;
		left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
		z-index: -10;
		opacity: .5;
	}
	.welcome__content {
		display: flex;
		margin-left: 0;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
	}
	.title {
		font-family: 'Roboto Mono';
		font-weight: 400;
		font-size: 36px;
		line-height: 100%;
		color: #000000;
	}
	.welcome__slider {
		height: 150px;
		text-align: center;
	}
	.rating__title {
		width: 100%;
		font-family: 'Roboto Mono';
		font-style: italic;
		font-weight: 300;
		font-size: 32px;
		line-height: 100%;
		color: #181717;
		margin-top: 50px;
	}
	table {
		margin-top: 20px;
		width: 100%;
		border-collapse: collapse;
	}
	thead tr th:nth-child(4), tbody .radio__year {
		display: none;
	}
	.rating__discription {
		width: 100%;
		font-family: 'Roboto Slab';
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 115%;
	  color: #000000;
	}
	.rating__banners {
		display: flex;
		width: 50%;
		position: relative;
		right: 0;
		padding-top: 25px;
	    text-align: center;
	}
	.footer__wrapper {
		display: flex;
		width: 100%;
		height: 100%;
		justify-content: space-between;
		flex-direction: column-reverse;
	}
	.footer__about {
		width: 100%;
		display: flex;
		padding-bottom: 10px;
		justify-content: space-evenly;
	}
	.footer__about p {
		padding-top: 5px;
	}
	.footer__credits {
	padding-top: 15px;
	height: 100px;
	}
	.footer__discription {
	font-family: 'Roboto Mono';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 125%;
	color: #fff;
	}
	.footer__links {
	display: flex;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	}
	.footer__links-main, .footer__links-more, .footer__links-social {
	margin-right: 25px;
	}
	.footer__links-main ul, .footer__links-more ul, .footer__links-social ul {
	padding-top: 10px;
	}
	.footer__links-main ul li, .footer__links-more ul li {
	display: inline;
	margin-left: 15px;
	}
	.footer__links-social ul li {
	display: inline;
	}
	.footer__links-main ul li a, .footer__links-more ul li a {
	color: #fff;
	font-size: 12px;
	text-decoration-line: underline;
	}
	.footer__wrapper-2 {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	margin-left: 0;
	padding-top: 0;
	}
	#photo-grid {
    justify-content: space-around;
	}
	.footer__wrapper .footer__end-link {
	padding-bottom: 10px;
	color: #fff;
	font-family: 'Roboto Mono';
	font-size: 12px;
	text-decoration: underline;
	}
}

@media screen and (max-width: 650px) {
	.welcome {
    height: 650px;
	}
	.welcome__slider {
		height: 150px;
		width: 100%;
		text-align: center;
	}
	thead tr th {
		padding: 10px 5px;
		font-family: 'Roboto Slab';
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		color: #000;
		border-bottom: 1px solid #d6d6e1;
		vertical-align: middle;
		line-height: normal;
	}
	.radio__name a {
		text-decoration: none;
		font-family: 'Roboto Mono';
		font-weight: 500;
		font-size: 14px;
		line-height: 80%;
		text-decoration-line: underline;
		color: #181717;
	}
	.promo .radio__tagline {
		font-family: 'Roboto Slab';
		font-weight: 400;
		font-size: 12px;
		line-height: 100%;
		padding-top: 5px;
		padding-bottom: 5px;
		display: block;
	}
	.radio__city {
		padding-top: 5px;
		font-family: 'Roboto Slab';
		font-style: italic;
		font-weight: 400;
		font-size: 12px;
		line-height: 100%;
		color: #606060;;
	}
	.radio__tags {
		font-family: 'Roboto Mono';
		font-size: 11px;
		font-weight: 500;
		text-align: center;
	}
	.radio__year {
		font-family: 'Roboto Mono';
		font-size: 11px;
		text-align: center;
	}
	.app {
		display: block;
	  position: absolute;
	  top: 440px;
	  left: 30%;
	  width: 70%;
	  height: 150px;
	  overflow: hidden;
	  z-index: -5;
	  font-family: 'Roboto Mono';
	}
	#content {
	  height: 100%;
	  padding-top: 15px;
	  transition: opacity 0.6s ease-in-out;
	}
  .newslider {
    flex-wrap: wrap;
    justify-content: center;
     margin-top: -10px;
  }
  .station {
  	padding-bottom: 10px;
    flex-basis: 33.33%;
    max-width: 33.33%;
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
  }
	.newslider img {
		width: 60px;
		height: 60px;
		transition: transform 0.3s;
	}
	#live .station__live span {
	font-size: 48px;
	}
}

/* ABOUT */

.about_wrapper {
	margin-top: 25px;
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.wrapper-text {
	width: 48%;
}

.wrapper-text .revoice__logo {
	display: flex;
  flex-direction: column;
}

.wrapper-text .revoice__logo img {
	padding-top: 10px;
}

/* FAQ */

.faq__wrapper {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.faq__nav {
	width: 15%;
	position: relative;
	top: 0;
}

.faq__nav-anchors {
	position: sticky;
	top: 90px;
  list-style: none;
}

.faq__nav-anchors li {
		padding-bottom: 5px;
    margin-right: 5px;
    font-size: 10pt;
}

.faq__nav-anchors a {
  border-bottom: 1px dashed;
  color: #000000;
  text-decoration: none;
}

.faq__nav-anchors a:hover {
  color: #ff0000;
  text-decoration: none;
}

.faq-list {
	width: 80%;
}
.faq-list .subtitle {
	padding-top: 10px;
}

/* FOR-SMI */

.for-smi__wrapper {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

/* CONTACTS */

#contacts {
	height: 45vh;
}


/* DARK MODE */

.dark-mode {
  background-color: #0c0c0c; /* dark mode background color */
  color: #f0f0f0; /* dark mode text color */
}
.dark-mode .title a {
	color: #fff;
}
.dark-mode h1 {
	color: #fff;
}
.dark-mode h2 {
	color: #fff;
}

.dark-mode .footer__discription {
	color: #fff;
}

.dark-mode .rating__discription {
  color: #FFF;
}

.dark-mode .discription {
	color: #FFF;
}

.dark-mode .header {
	width: 100%;
	background: #0c0c0c;
	background-size: 400% 100%;
	position: fixed;
	top: 0;
	z-index: 5;
}

.dark-mode .header__active {
	display: none;
}

.dark-mode .header__wrapper {
	height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: none;
}

.dark-mode .header_active .header__wrapper {
   border: 1px solid #FFF;
   margin-top: 5px;
   padding-left: 15px;
   padding-right: 15px;
}

.dark-mode .header__logo-link .header__logo-pic {
	-webkit-filter: invert(100%);
	filter: invert(100%);
}

.dark-mode .newslider img {
	filter: invert(1);
}

.dark-mode .artist {
	max-width: 100%;
	text-align: center;
	font-family: 'Roboto Mono';
	font-weight: 400;
	font-size: 32px;
	line-height: 100%;
	color: #FFF;
}

.dark-mode #default .song {
	max-width: 100%;
	text-align: center;
	font-family: 'Roboto Mono';
	font-weight: 400;
	font-size: 24px;
	line-height: 100%;
	color: #FFF;
}

.dark-mode .fa-link {
	color: #CCC;
}

.dark-mode .fa-link:hover {
	color: #1e88e5;
}

.dark-mode footer {
	background: #000;
	border-top: 1px dotted;
	border-image-slice: 2;
  border-image-source: linear-gradient(-45deg, #F401BF, #008510);
}

.dark-mode .header__item a {
	color: #fff;
}

.dark-mode .header__item a:hover, .dark-mode .header__item a:focus, .dark-mode .header__item a:active {
	color: #FFF;
	text-decoration: underline;
	opacity: 1;
}

.dark-mode .faq__nav-anchors a {
  color: #CCC;
}

.dark-mode .faq__nav-anchors a:hover {
  color: #ff0000;
  text-decoration: none;
}

.dark-mode .radio__control {
	background: #000;
	border-top: 1px solid;
	border-image-slice: 1;
  border-image-source: linear-gradient(-45deg, #FFF, #FFF);
}

.dark-mode #playerVolume {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background-color: #fff;
  outline: none;
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.dark-mode #playerVolume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 5px;
  height: 22px;
  background-color: #ccc;
  border-radius: 15%;
  cursor: pointer;
}

.dark-mode #playerVolume::-moz-range-thumb {
  width: 5px;
  height: 22px;
  background-color: #fff;
  border-radius: 15%;
  cursor: pointer;
}

.dark-mode .discription a {
	color: #F2F2F2;
	border-bottom: .01em dotted rgb(255, 255, 255, 1);
	text-decoration: none;
}

.dark-mode .discription a:hover {
  color: #ff0000;
  text-decoration: none;
}

/* DARK RATING */

.dark-mode table tbody tr {
	border-bottom: 1px solid #b5b5b5;
	border-left: 1px solid #b5b5b5;
	border-right: 1px solid #b5b5b5;
}

.dark-mode thead tr th {
	color: #fff;
	background-color: #000;
}

.dark-mode .rating__pos {
	color: #FFF;
}

.dark-mode .radio__name a {
	color: #FFF;
}

.dark-mode .radio__city {
	color: #FFF;
}

.dark-mode .rating__title {
	color: #FFF;
}

.dark-mode summary::after {
  content: '▶';
  color: #FFF;
}

.dark-mode details[open] summary:after {
  content: "▼";
  color: #FFF;
}

.dark-mode .burger__line {
	background-color: #FFF;
}

.dark-mode .reestr h3 {
  color: #FFF;
}

.dark-mode .reestr a:hover {
  color: #FFF;
}