* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background: #fff;
  background-image: url('images/stripes.png');
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #666;
  -webkit-font-smoothing: antialiased;
}

svg use {
  pointer-events: none;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 1em;
}

.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.more-btn a:before {
  content: '';
  padding-right: 0;
  margin-left: 0;
}

.macosx .more-btn a:before {
  content: '❯';
  padding-right: 10px;
  margin-left: -5px;
}

.more-btn a {
  background: #fff;
  background: rgba(255,255,255,.92);
  padding: 16px 26px;
  display: inline-block;
  color: #333;
  font-size: 0.9em;
  line-height: 1em;
  border-radius: 2px;
  box-shadow: rgba(0,0,0,.2) 0 1px 1px;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}

.recommended-more,
.party-more,
.dinner-more {
  text-align: center;
  font-size: 1.2em;
  line-height: 1em;
  margin-top: 20px;
}

.recommended-more a,
.party-more a,
.dinner-more a{
  background: #222;
  color: #fff;
}

.recommended-more a:hover,
.party-more a:hover,
.dinner-more a:hover {
  background: #333;
}

#app {
  width: 100%;
  height: 100%;
  padding-top: 48px;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 3em;
  text-align: center;
  font-weight: 300;
  line-height: 1em;
  margin: 0 0 25px;
}

.section-content {
  padding: 0 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.header {
  background: #111;
  background-image: url('images/stripes.png');
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  z-index: 100;
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.header-nav {
  font-size: 1.08em;
  text-transform: uppercase;
  float: left;
}

.header-nav ul {
  margin: 0;
  padding: 0;
}

.header-nav li {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.header-nav ul li a {
  margin: 0 12px;
  padding: 13px 0 12px; 
  display: block;
  text-decoration: none;
}

.header ul li:first-child a {
  margin-left: 0;
}

.header-nav a {
  color: #999;
  border-bottom: 3px solid transparent;
}

.header-nav li:nth-child(1) a.active {
  color: #EB408C;
  border-bottom-color: #EB408C;
}

.header-nav li:nth-child(2) a.active {
  color: #3EBE80;
  border-bottom-color: #3EBE80;
}

.header-nav li:nth-child(3) a.active {
  color: #9B6BCE;
  border-bottom-color: #9B6BCE;
}

.header-logo {
  float: left;
  margin-right: 40px;
}

.header-logo img {
  width: 100px;
  height: 74px;
}

.header-follow {
  float: right;
  padding-top: 11px;
  width: 158px;
  overflow: hidden;
}

.footer {
  background: #f6f6f6;
  border-top: 1px solid #f1f1f1;
}

.footer-inner {
  padding: 30px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logos {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-logos li {
  display: inline-block;
  margin: 0 10px 0;
  padding: 0;
}

.footer-logos li img {
  display: block;
}

.footer-copyright {
  font-size: 1em;
  line-height: 1em;
  float: right;
  padding-top: 8px;
}

.slider {
  height: 450px;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.slider-item {
  height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  display: block;
}

.slider:hover .slider-arrow-left,
.slider:hover .slider-arrow-right {
  opacity: 0.5;
}

.slider:hover .slider-arrow-left:hover,
.slider:hover .slider-arrow-right:hover {
  opacity: 0.8;
}

.slider-arrow-left,
.slider-arrow-right {
  width: 50px;
  height: 95px;
  position: absolute;
  top: 177px;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

.slider-arrow-left {
  left: -4px;
  background-image: url('images/slider-arrow-left4.png');
  border-radius: 0 4px 4px 0;
}

.slider-arrow-right {
  right: -4px;
  background-image: url('images/slider-arrow-right4.png');
  border-radius: 4px 0 0 4px;
}

.slider-indicators {
  position: absolute;
  bottom: 0;
  right: 6px;
  z-index: 10;
  margin: 0;
  padding: 4px 8px 3px;
  list-style: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px 4px 0 0;
}

.slider-indicator {
  width: 14px;
  height: 14px;
  border: 1px solid #D70161;
  border: 1px solid #fff;
  border-radius: 14px;
  margin: 0 3px;
  padding: 0;
  display: inline-block;
  cursor: pointer;
}

.slider-indicator-active {
  background: #D70161;
  background: #fff;
}

.slider-spotify-logo {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 65px;
  background-image: url('images/slider-spotify-logo.png');
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 20;
}

.slider-item-overlay {
  width: 960px;
  height: 450px;
  margin: 0 auto;
  background-size: 100%;
}

.animate-enter, 
.animate-leave { 
  -webkit-transition: 700ms cubic-bezier(0.455, 0.030, 0.515, 0.955) all;
  -moz-transition: 700ms cubic-bezier(0.455, 0.030, 0.515, 0.955) all;
  -ms-transition: 700ms cubic-bezier(0.455, 0.030, 0.515, 0.955) all;
  -o-transition: 700ms cubic-bezier(0.455, 0.030, 0.515, 0.955) all;
  transition: 700ms cubic-bezier(0.455, 0.030, 0.515, 0.955) all;
  -webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
} 
 
.animate-enter {
  opacity: 0;
}

.animate-enter.animate-enter-active {
  opacity: 1;
}
 
.animate-leave {
  opacity: 1;
}

.animate-leave.animate-leave-active {
  opacity: 0;
}
/*
.animate-enter, 
.animate-leave { 
  -webkit-transition: 1200ms cubic-bezier(0.250, 0.100, 0.250, 1.000) all;
  -moz-transition: 1200ms cubic-bezier(0.250, 0.100, 0.250, 1.000) all;
  -ms-transition: 1200ms cubic-bezier(0.250, 0.100, 0.250, 1.000) all;
  -o-transition: 1200ms cubic-bezier(0.250, 0.100, 0.250, 1.000) all;
  transition: 1200ms cubic-bezier(0.250, 0.100, 0.250, 1.000) all;
} 
 
.animate-enter {
  right: 100%;
  opacity: 0;
}

.animate-enter.animate-enter-active {
  right: 0;
  opacity: 1;
}
 
.animate-leave {
  right: 0;
  opacity: 1;
}

.animate-leave.animate-leave-active {
  right: -100%;
  opacity: 0;
}
*/

.recommended {
  padding-top: 30px;
}

.recommended ul,
.workout ul,
.dinner ul,
.party ul {
  margin: 0 -20px;
  padding: 0;
}

.recommended ul:first-of-type,
.workout ul:first-of-type,
.dinner ul:first-of-type,
.party ul:first-of-type {
  margin-top: 0;
}

.recommended ul li,
.workout ul li,
.dinner ul li,
.party ul li {
  margin: 15px 20px;
  padding: 0;
  display: inline-block;
  width: 210px;
  position: relative;
  vertical-align: top;
}

.recommended ul li:last-child,
.workout ul li:last-child,
.dinner ul li:last-child,
.party ul li:last-child {
  margin-right: 0;
}

.recommended-cover-link {
  display: block;
  position: relative;
  background-image: url('images/playlist-placeholder.png');
  background-size: 100%;
}

.recommended-cover-link img {
  display: block;
  border-radius: 2px;
  width: 100%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 3px;
}

.recommended-cover-link:hover:before {
  opacity: 1;
}

.recommended-cover-link:before {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: url('images/play-overlay.png');
  background-size: 100%;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.recommended-meta {
  margin: 0;
  padding: 10px; 
  text-align: center;
}

.recommended-name {
  font-size: 1.08em;
  line-height: 1.2em;
  margin-bottom: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.recommended-name a {
  color: #666;
}

.recommended-name a:hover {
  color: #666;
}

.recommended-followers {
  font-size: 1.3em;
  float: right;
  text-align: right;
}

.recommended-followers-count {
  font-weight: 300;
}

.recommended-followers-label {
  font-size: 0.7em;
  color: #aaa;
}

.recommended-follow {
  background: #68a61d;
  box-shadow: rgba(0,0,0,0.08) 0 0 0 1px inset;
  padding: 10px 14px;
  text-align: center;
  font-size: 0.8em;
  line-height: 0.8em;
  display: inline-block;
  border-radius: 20px;
  float: left;
  margin-top: 3px;
  color: #fff;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
  text-transform: uppercase;
}

.recommended-follow:hover {
  background: #6EAF1F;
  text-decoration: none;
}

.recommended-follow:active {
  box-shadow: rgba(0,0,0,0.08) 0 0 0 1px inset, rgba(0,0,0,.4) 0 1px 3px 0 inset;
  background: #649f1c;
}

.recommended-follow span:before {
  content: '';
  padding-left: 9px;
  background-image: url('images/play-icon.png');
  background-size: 9px 9px;
  background-repeat: no-repeat;
  background-position: 50%;
  margin-right: 6px;
}

/*
.recommended-followers span {
  background: #B33D33;
  padding: 4px 8px;
  display: inline-block;
}
*/

.workout-more {
  text-align: center;
  font-size: 1.25em;
  margin-top: 8px;
}

.workout-more a {
  background: #c61501;
  color: #fff;
  color: rgba(255,255,255,.9);
}

.workout-more a:hover {
  color: #fff;
  background: #d51600;
}

.tryfiltr {
  background: #4abad8;
  background-image: url('images/stripes.png');
  color: #fff;
}

.tryfiltr .section-title {
  display: none;
}

.tryfiltr-video {
  width: 60%;
  float: right;
  position: relative;
}

.tryfiltr-bodytext {
  width: 35%;
  float: left;
  font-size: 1.24em;
  line-height: 1.3em;
}

.tryfiltr h3 {
  font-size: 1.8em;
  line-height: 1.1em;
  margin: 0 0 10px;
}

.tryfiltr-now {
  clear: both;
  float: none;
  margin-top: 20px;
}

.tryfiltr-now a {
  background: #fff;
  background: rgba(255,255,255,.92);
  padding: 16px 26px;
  display: inline-block;
  color: #16809C;
  font-size: 0.9em;
  line-height: 1em;
  border-radius: 2px;
  box-shadow: rgba(0,0,0,.2) 0 1px 1px;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}

.tryfiltr-now a:hover {
  box-shadow: rgba(0,0,0,.4) 0 1px 1px;
  background: #fff;
}

.kids {
  background: #D70161;
  background-image: url('images/stripes.png');
  color: #fff;
}

.kids .section-title {
  display: none;
}

.kids .recommended-name a {
  color: #fff;
}

.kids ul {
  width: 432px;
  float: left;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kids ul li {
  width: 200px;
  margin: 5px 10px 5px 0;
  display: inline-block;
}

.kids li img,
.kids li a {
  display: block;
}

.kids-text {
  float: right;
  width: 500px;
  font-size: 1.2em;
  line-height: 1.2em;
}

.kids-text h3 {
  font-size: 1.7em;
  line-height: 1em;
}

.kids-more a {
  color: #D70161;
}

.kids-more a:hover {
  background: #fff;
}

.fresh {
  background-color: #50CC90;
  background-image: url('images/stripes.png');
  color: #fff;
}

.fresh-wrapper {
  margin: 0 auto;
}

.fresh-playlist {
  width: 30%;
  margin-right: 10%;
  float: right;
}

.fresh-text {
  width: 42%;
  margin-left: 10%;
  float: left;
  font-size: 1.3em;
  line-height: 1.3em;
  padding-top: 30px;
}

.fresh-more a {
  color: #01964e;
}

.fresh-more a:hover {
  background: #fff;
}

.filtrprofile {
  background: #47266d;
  background-image: url('images/stripes.png');
  color: #fff;
}

.filtrprofile-logo {
  width: 30%;
  float: left;
  position: relative;
  margin-left: 10%;
}

.filtrprofile-logo img {
  max-width: 100%;
  height: auto;
}

.filtrprofile-text {
  font-size: 1.3em;
  line-height: 1.3em;
  float: right;
  width: 50%;
}

.filtrprofile-more a {
  color: #47266d;
}

.filtrprofile-more a:hover {
  background: #fff;
}

.aboutfiltr {
  padding-top: 30px;
}

.aboutfiltr .section-content {
  max-width: 800px;
  margin: 0 auto;
}

.aboutfiltr .section-title {
  text-align: left;
}

.aboutfiltr-body p:first-of-type {
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1.2em;
}

.notfound-logo {
  text-align: center;
  margin-bottom: 30px;
}

.notfound-logo img {
  width: 120px;
  height: 64px;
}

.notfound .section-content {
  text-align: center;
}

.playlists {
  padding-top: 0;
}

.playlists .section-title {
  margin: 0;
  padding: 20px 0 20px;
}

.playlists-category-meta-inner {
  margin: 0 auto;
  max-width: 1000px;
  padding: 30px 20px 30px;
}

.playlists-category-meta-name-playlists {
  width: 260px;
  margin-right: 10px;
  margin-left: 30px;
  display: inline-block;
  vertical-align: top;
}

.playlists-category-meta-name {
  text-align: left;
  margin: -4px 0 0 0;
  font-size: 2em;
  line-height: 1.4em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlists-category-meta-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  vertical-align: top;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
}

.playlists-category-meta-icon svg {
  width: 64px;
  height: 64px;
}

.playlists-category-meta-icon .filtr-icon {
  fill: #3EBE80;
}

.playlists-category-meta-playlistsnum {
  font-size: 1.2em;
  line-height: 1.5em;
  text-align: left;
}

.playlists-category-meta-description {
  font-size: 1em;
  line-height: 1.4em;
  display: inline-block;
  width: 590px;
  vertical-align: top;
}

.playlists-categories {
  position: relative;
  background: #3EBE80;
  padding: 16px 0;
  margin: 0;
}

.playlists-categories-inner {
  margin: 0 auto;
  padding: 0 4px;
  max-width: 1000px;
  position: relative;
}

.playlists-categories-arrow {
  position: absolute;
  width: 40px;
  height: 64px;
  background-color: rgba(255,255,255,.6);
  background-size: 9px 44px;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
}

.playlists-categories-arrow-left {
  left: -46px;
  top: 8px;
  background-image: url('images/category-arrow-left3.png');
}

.playlists-categories-arrow-right {
  right: -46px;
  top: 8px;
  background-image: url('images/category-arrow-right3.png');
}

.playlists-categories-arrow.arrow-inactive:hover {
  background-color: rgba(255,255,255,.9);
  cursor: pointer;
}

.playlists-categories-list-wrapper {
  overflow: hidden;
}

.playlists-categories-list {
  list-style: none;
  margin: 0 5px 0 0;
  padding: 0;
  font-size: 0.8em;
  line-height: 1.1em;
  white-space: nowrap;
  overflow: hidden;
  transition: margin-left 0.5s ease-in-out;
}

.playlists-categories-list li {
  margin: 0 4px 0 0;
  padding: 8px 2px;
  display: inline-block;
  color: #fff;
  color: rgba(255,255,255,.85);
  text-align: center;
  border-radius: 4px;
  width: 83px;
  position: relative;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  box-shadow: inset transparent 0 0 1px 0;
}

.playlists-categories-list li:last-child {
  margin-right: 0;
}

.playlists-categories-list li.active {
  background: rgba(0,0,0,.1);
  box-shadow: inset rgba(0,0,0,.1) 0 0 1px 0;
  color: #fff;
}

.playlists-categories-list li a {
  color: #fff;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  display: block;
}

.playlists-categories-list li.active a {
  color: #fff;
}

.playlists-categories-list li:hover {
  color: #fff;
}

.playlists-categories-icon {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  width: 44px;
  height: 44px;
  margin: 0 auto 9px;
}

.playlists-categories-icon svg {
  width: 44px;
  height: 44px;
}

.playlists-categories-icon .filtr-icon {
  fill: #fff;
}

.playlists-categories-name {
  width: 79px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.3;
}

.playlists-list {
  margin: 0 -20px;
  padding: 0;
  list-style: none;
}

.playlists-list li {
  margin: 15px 20px;
  padding: 0;
  display: inline-block;
  width: 210px;
  position: relative;
  vertical-align: top;
}

.rock-page .playlists-list li {
  width: 292px;
}

.playlists .recommended-cover-link {
  width: 210px;
  height: 210px;
}

.playlists-animate-enter, 
.playlists-animate-leave
{ 
    -webkit-transition: 200ms cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
    -moz-transition: 200ms cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
    -ms-transition: 200ms cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
    -o-transition: 200ms cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
    transition: 200ms cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
} 
 
.playlists-animate-enter.playlists-animate-enter-active, 
.playlists-animate-leave {
    opacity: 1;
}
 
.playlists-animate-leave.playlists-animate-leave-active,
.playlists-animate-enter {
    opacity: 0;
}

.dansband .section-title {
  font-size: 1.7em;
}

.dansband-player {
  width: 500px;
  margin: 0 auto;
}

@media screen and (device-width: 768px) {
  .slider,
  .slider-item {
    height: 320px;
  }
  .slider-item-overlay {
    width: 683px;
    height: 320px;
  }
  .slider-arrow-left,
  .slider-arrow-right {
    display: none;
  }
  .slider-spotify-logo {
    top: 15px;
    right: 15px;
  }
  .recommended-cover-link {
    width: 210px;
    height: 210px;
  }
  .tryfiltr {
    padding-top: 40px;
  }
  .tryfiltr .section-title {
    display: block;
    margin-bottom: 30px;
    margin-top: 0;
  }
  .tryfiltr-video {
    width: 45%;
  }
  .tryfiltr-bodytext {
    width: 50%;
  }
  .tryfiltr-bodytext h3 {
    display: none;
  }
  .kids .section-title {
    display: block;
  }
  .kids-text h3 {
    display: none;
  }
  .kids ul {
    float: none;
    margin: 0 auto;
    width: 460px;
  }
  .kids ul li {
    width: 210px;
    margin: 15px 20px 20px;
  }
  .kids ul li:nth-child(odd) {
    margin-left: 0;
  }
  .kids ul li:nth-child(even) {
    margin-right: 0;
  }
  .kids-text {
    float: none;
    margin: 0 auto;
    width: 460px;
  }
  .kids-more.more-btn {
    text-align: center;
  }
  .workout ul,
  .dinner ul,
  .party ul {
    width: 500px;
    margin: 0 auto;
  }
  .fresh-text {
    padding-top: 0;
  }
  .playlists-categories {
    padding: 0;
  }
  .playlists-categories-arrow {
    display: none;
  }
  .playlists-categories-list {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 12px 0;
  }
  .playlists-categories-inner {
    padding: 0;
  }
  .playlists-category-meta-icon,
  .playlists-category-meta-icon svg,
  .playlists-category-meta-icon img {
    width: 64px;
    height: 64px;
  }
  .playlists-categories-icon,
  .playlists-categories-icon svg {
    width: 48px;
    height: 48px;
  }
  .playlists-categories-list li {
    width: 84px;
  }
  .playlists-categories-list li:first-child {
    margin-left: 8px;
  }
  .playlists-category-meta-description {
    width: 384px;
  }
  .playlists-category-meta-name-playlists {
    padding-top: 0;
    margin-right: 0;
    width: 220px;
  }
}

@media screen and (max-width: 600px) {

  #app {
    padding-top: 0;
  }

  .header {
    position: static;
    top: 0;
    height: 35px;
    z-index: 1000;
  }

  .header-inner {
    padding: 0;
    margin: 0;
  }

  .header-nav {
    font-size: 0.8em;
    margin-left: 76px;
  }

  .header-nav ul li a {
    margin: 0 5px;
    padding: 6px 0;
  }

  .header-follow {
    display: none;
  }

  .header-logo {
    margin-right: 10px;
    margin-left: 4px;
    float: none;
    position: absolute;
    z-index: 2000;
  }

  .header-logo img {
    width: 60px;
    height: auto;
  }

  .slider {
    height: 160px;
    clear: both;
    z-index: 100;
  }

  .slider-item {
    height: 160px;
  }

  .slider-item-overlay {
    width: 300px;
    height: 140px;
    margin-top: 20px;
  }

  .slider-indicators,
  .slider-arrow-left,
  .slider-arrow-right {
    display: none;
  }

  .slider-spotify-logo {
    top: 4px;
    right: 4px;
    width: 20px;
    height: 26px;
  }

  .section-title {
    font-size: 1.8em;
    line-height: 1;
  }

  .section {
    padding: 30px 12px;
  }

  .section-content {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  ul.playlists-list {
    margin: 0;
  }

  ul.playlists-list li,
  .rock-page ul.playlists-list li {
    width: 48%;
    padding: 0;
  }

  ul.playlists-list li:nth-child(odd),
  .rock-page ul.playlists-list li:nth-child(odd) {
    margin: 0 4% 16px 0;
  }

  ul.playlists-list li:nth-child(even),
  .rock-page ul.playlists-list li:nth-child(even) {
    margin: 0 0 16px 0;
  }

  .recommended-name {
    font-size: 1em;
    margin-bottom: 0px;
  }

  .recommended-followers {
    float: none;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.1em;
  }

  .recommended-followers-label {
    font-size: 0.9em;
    line-height: 1em;
    margin-top: 3px;
  }

  .recommended-follow {
    float: none;
    margin-top: 10px;
  }

  .tryfiltr .section-title {
    display: block;
  }

  .tryfiltr-bodytext h3 {
    display: none;
  }

  .tryfiltr-video {
    width: 100%;
    float: none;
    margin-bottom: 12px;
  }

  .tryfiltr-bodytext {
    width: 100%;
    float: none;
    font-size: 1.1em;
    line-height: 1.2em;
  }

  .tryfiltr-now {
    text-align: center;
  }

  .kids .section-title {
    display: block;
  }

  .kids-text h3 {
    display: none;
  }

  .kids ul {
    width: 100%;
    float: none;
  }

  .kids-text {
    width: 100%;
    float: none;
    font-size: 1.1em;
    line-height: 1.2em;
  }

  .kids-more {
    text-align: center;
  }

  .fresh-wrapper {
    width: 100%;
  }

  .fresh-playlist {
    width: 240px;
    float: none;
    margin: 0 auto;
  }

  .fresh-text {
    width: 100%;
    float: none;
    font-size: 1.1em;
    line-height: 1.2em;
    margin: 0;
  }

  .fresh-more {
    text-align: center;
  }

  .filtrprofile-logo {
    width: 120px;
    margin: 0 auto 12px;
    float: none;
  }

  .filtrprofile-text {
    width: 100%;
    float: none;
    font-size: 1.1em;
    line-height: 1.2em;
  }

  .filtrprofile-more {
    text-align: center;
  }

  .footer-logos {
    width: 100%;
    float: none;
    text-align: center;
  }

  .footer-copyright {
    float: none;
    width: 100%;
    text-align: center;
    padding-top: 16px;
  }
  
  .playlists-page .slider {
    display: none;
  }

  .playlists-page .playlists {
    padding: 0;
  }

  .playlists-categories-arrow,
  .playlists-category-meta-icon {
    display: none;
  }

  .playlists-category-meta-name-playlists,
  .playlists-category-meta-description {
    float: none;
    width: 100%;
    margin: 0;
  }

  .playlists-category-meta-description {
    margin-top: 5px;
  }

  .playlists-category-meta-inner {
    padding: 20px 12px;
  }

  .playlists-playlists {
    padding: 0 12px;
  }

  .playlists-categories {
    z-index: 100;
    padding: 0;
  }

  .playlists-categories-list {
    margin: 0;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .playlists-category-meta-playlistsnum {
    text-align: center;
  }

  .playlists-category-meta-name {
    font-size: 1.7em;
    text-align: center;
    font-weight: normal;
  }

  .playlists-categories-list li {
    margin-right: 0;
    font-size: 1em;
    border-radius: 0;
    width: 86px;
  }

  .playlists-categories-inner {
    padding: 0;
  }

  .playlists .recommended-cover-link {
    width: auto;
    height: auto;
  }

}
