@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

ul li {
  list-style: none; }

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; }
  .wrapper header,
  .wrapper main,
  .wrapper footer {
    display: block;
    width: 100%; }

footer {
  margin-top: auto; }

body {
  background: #f6f6f6; }

main {
  flex-grow: 1; }

html {
  text-size-adjust: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  background: #f6f6f6; }

button,
input,
textarea {
  font-family: 'Montserrat', sans-serif; }

a {
  text-decoration: none;
  transition: .3s;
  color: #000;
  outline: 0; }

.a, .category__likes:before, .authorization__title:before, .player__like:before {
  content: '';
  display: block; }

.content {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  width: 100%; }

body.pop-active-fixed {
  overflow: hidden;
  margin-right: 17px; }

.button-style {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 55px;
  background: #fe7d82;
  color: #fff;
  font-size: 18px; }
  .button-style:hover {
    background: #feb0b3; }

/*-----------------submit----------------------*/
button[type="submit"],
input[type="submit"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: .3s;
  border: 0;
  outline: 0;
  width: 100%; }

/*-----------------input----------------------*/
textarea,
input[type="password"],
input[type="email"],
input[type="text"],
input[type="tel"] {
  height: 55px;
  background: #fff;
  border: 0;
  padding: 0 15px;
  font-size: 16px;
  display: block;
  outline: none;
  width: 100%;
  border: 1px solid #b7adc8;
  -webkit-appearance: none; }

textarea {
  height: 100px;
  padding-top: 15px;
  resize: none;
  overflow: auto; }

/*---------------placeholder------------------------*/
*::-webkit-input-placeholder {
  color: #000000;
  opacity: 1; }

*:-moz-placeholder {
  color: #000000;
  opacity: 1; }

*::-moz-placeholder {
  color: #000000;
  opacity: 1; }

*:-ms-input-placeholder {
  color: #000000;
  opacity: 1; }

textarea:focus::-webkit-input-placeholder,
input[type="password"]:focus::-webkit-input-placeholder,
input[type="email"]:focus::-webkit-input-placeholder,
input[type="text"]:focus::-webkit-input-placeholder,
input[type="tel"]:focus::-webkit-input-placeholder {
  opacity: 0; }
textarea:focus:-moz-placeholder,
input[type="password"]:focus:-moz-placeholder,
input[type="email"]:focus:-moz-placeholder,
input[type="text"]:focus:-moz-placeholder,
input[type="tel"]:focus:-moz-placeholder {
  opacity: 0; }
textarea:focus::-moz-placeholder,
input[type="password"]:focus::-moz-placeholder,
input[type="email"]:focus::-moz-placeholder,
input[type="text"]:focus::-moz-placeholder,
input[type="tel"]:focus::-moz-placeholder {
  opacity: 0; }
textarea:focus:-ms-input-placeholder,
input[type="password"]:focus:-ms-input-placeholder,
input[type="email"]:focus:-ms-input-placeholder,
input[type="text"]:focus:-ms-input-placeholder,
input[type="tel"]:focus:-ms-input-placeholder {
  opacity: 0; }

textarea.error-validation,
input[type="password"].error-validation,
input[type="email"].error-validation,
input[type="text"].error-validation,
input[type="tel"].error-validation {
  border-color: red !important;
  box-shadow: inset 0 0 3.125rem rgba(255, 0, 0, 0.5); }
  textarea.error-validation::-webkit-input-placeholder,
  input[type="password"].error-validation::-webkit-input-placeholder,
  input[type="email"].error-validation::-webkit-input-placeholder,
  input[type="text"].error-validation::-webkit-input-placeholder,
  input[type="tel"].error-validation::-webkit-input-placeholder {
    color: red; }
  textarea.error-validation:-moz-placeholder,
  input[type="password"].error-validation:-moz-placeholder,
  input[type="email"].error-validation:-moz-placeholder,
  input[type="text"].error-validation:-moz-placeholder,
  input[type="tel"].error-validation:-moz-placeholder {
    color: red; }
  textarea.error-validation::-moz-placeholder,
  input[type="password"].error-validation::-moz-placeholder,
  input[type="email"].error-validation::-moz-placeholder,
  input[type="text"].error-validation::-moz-placeholder,
  input[type="tel"].error-validation::-moz-placeholder {
    color: red; }
  textarea.error-validation:-ms-input-placeholder,
  input[type="password"].error-validation:-ms-input-placeholder,
  input[type="email"].error-validation:-ms-input-placeholder,
  input[type="text"].error-validation:-ms-input-placeholder,
  input[type="tel"].error-validation:-ms-input-placeholder {
    color: red; }

/*------------------checkbox---------------------*/
/*------------------FILE---------------------*/
input[type="file"] {
  display: none; }

.psevdo-file {
  display: block;
  width: 100%; }

.file-btn {
  height: 55px;
  background: #d0d0d0;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  color: #5f6375;
  font-weight: 500;
  cursor: pointer;
  transition: .3s;
  padding: 0 8px;
  max-width: 200px; }
  .file-btn span {
    display: block;
    max-width: calc(100% - 40px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .file-btn .fas {
    font-size: 19px;
    margin-right: 10px; }
  .file-btn:hover {
    background: #dddddd; }

/*------------------select---------------------*/
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  height: 5.9375rem;
  border: 0.125rem solid #fe7d82;
  border-radius: 0.625rem;
  padding: 0 2.1875rem;
  font-size: 2.1875rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  background: #f5f5f5;
  outline: none; }

select::-ms-expand {
  display: none; }

/*------------------WPCF7 Loader---------------------*/
.input-list .ajax-loader {
  visibility: hidden; }

.input-list .ajax-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.7) url(../images/loading.gif) center no-repeat;
  background-size: 50px auto; }

/* ------- Hover Effect---------- */
.hover-effect-1 {
  display: block;
  width: 300px;
  height: 300px;
  background: #000;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden; }
  .hover-effect-1:before {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.4s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
    z-index: 1;
    border: 150px double transparent;
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible; }
  .hover-effect-1:hover:before {
    opacity: 0;
    filter: alpha(opacity=0);
    border: 0 double rgba(255, 255, 255, 0.7);
    visibility: hidden; }

/* ------- Slick ARROW, DOTS Start---------- */
.slick-arrow-prev.slick-arrow,
.slick-arrow-next.slick-arrow {
  position: absolute;
  cursor: pointer;
  transition: .3s;
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  z-index: 700;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%; }
  .slick-arrow-prev.slick-arrow:after,
  .slick-arrow-next.slick-arrow:after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-top: 3px solid #000;
    border-left: 3px solid #000;
    position: absolute;
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
    left: 50%;
    margin-left: 3px; }
  .slick-arrow-prev.slick-arrow:hover,
  .slick-arrow-next.slick-arrow:hover {
    background: #000; }
    .slick-arrow-prev.slick-arrow:hover:after,
    .slick-arrow-next.slick-arrow:hover:after {
      border-color: #fff; }

.slick-arrow-prev.slick-arrow {
  left: -65px; }

.slick-arrow-next.slick-arrow {
  right: -65px; }
  .slick-arrow-next.slick-arrow:after {
    transform: translate(-50%, -50%) rotate(135deg);
    margin-left: -3px; }

.slick-arrow-next.slick-arrow.slick-disabled,
.slick-arrow-prev.slick-arrow.slick-disabled {
  opacity: .5;
  cursor: not-allowed; }

.slick-dots {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 40px 0 50px 0; }
  .slick-dots li {
    padding: 0 5px; }
    .slick-dots li button {
      display: block;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      cursor: pointer;
      color: transparent;
      border: 1px solid #000;
      outline: none;
      background: transparent; }
  .slick-dots .slick-active button {
    background: #000; }

/* ------- Slick ARROW, DOTS Finish---------- */
/* ------- Scroll to Top Start ---------- */
.to-top {
  position: fixed;
  cursor: pointer;
  transition: .5s;
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  z-index: 800;
  bottom: 50px;
  border-radius: 50%;
  right: -100px;
  animation-duration: 1s;
  animation-fill-mode: both; }
  .to-top:after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-top: 3px solid #000;
    border-left: 3px solid #000;
    position: absolute;
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
    margin-top: 3px; }
  .to-top:hover {
    background: #000; }
    .to-top:hover:after {
      border-color: #fff; }

.to-top.active {
  right: 50px; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@media screen and (max-width: 767px) {
  .to-top {
    bottom: 15px;
    width: 40px;
    height: 40px; }
    .to-top:after {
      transform: translate(-50%, -50%) rotate(45deg) scale(0.7, 0.7); }

  .to-top.active {
    right: 15px; } }
/* ------- Scroll to Top Finish---------- */
.icon-menu {
  width: 25px;
  height: 26px;
  padding: 5px 0;
  cursor: pointer;
  display: none; }

.sw-topper {
  position: relative;
  top: 0;
  width: 25px;
  height: 2px;
  background: #000;
  border: none;
  transition: transform 0.5s, top 0.2s;
  -moz-transition: transform 0.5s, top 0.2s;
  -webkit-transition: -webkit-transform 0.5s, top 0.2s;
  -o-transition: transform 0.5s, top 0.2s; }

.sw-bottom {
  position: relative;
  width: 25px;
  height: 2px;
  top: 5px;
  background: #000;
  border: none;
  transition: transform 0.5s, top 0.2s;
  -moz-transition: transform 0.5s, top 0.2s;
  -webkit-transition: -webkit-transform 0.5s, top 0.2s;
  -o-transition: transform 0.5s, top 0.2s;
  transition-delay: 0.2s, 0s;
  -moz-transition-delay: 0.2s, 0s;
  -webkit-transition-delay: 0.2s, 0s;
  -o-transition-delay: 0.2s, 0s; }

.sw-footer {
  position: relative;
  width: 25px;
  height: 2px;
  top: 10px;
  background: #000;
  border: none;
  transition: transform 0.5s, top 0.2s;
  -moz-transition: transform 0.5s, top 0.2s;
  -webkit-transition: -webkit-transform 0.5s, top 0.2s;
  -o-transition: transform 0.5s, top 0.2s;
  transition-delay: 0.2s, 0s;
  -moz-transition-delay: 0.2s, 0s;
  -webkit-transition-delay: 0.2s, 0s;
  -o-transition-delay: 0.2s, 0s; }

.icon-menu.active .sw-topper {
  top: 7px;
  -ms-transform: rotate(140deg);
  transform: rotate(140deg);
  -moz-transform: rotate(140deg);
  -webkit-transform: rotate(140deg);
  -o-transform: rotate(140deg); }

.icon-menu.active .sw-bottom {
  top: 5px;
  -ms-transform: rotate(-140deg);
  transform: rotate(-140deg);
  -moz-transform: rotate(-140deg);
  -webkit-transform: rotate(-140deg);
  -o-transform: rotate(-140deg); }

.icon-menu.active .sw-footer {
  top: 0;
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  opacity: 0; }

div.wpcf7-mail-sent-ok {
  display: none !important; }

.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 13px !important;
  color: red !important;
  padding: 5px 0 0  !important;
  margin: 0 !important;
  text-align: center;
  display: block; }

.wpcf7-form br {
  display: none !important; }

.wpcf7-form .wpcf7-validation-errors {
  font-size: 13px !important;
  color: red !important;
  padding: 0 0 20px 0  !important;
  margin: 0 auto !important;
  border: 0 !important;
  text-align: center;
  display: block; }

body {
  overflow-x: hidden;
  overflow-y: scroll; }

/* ---------------------------- SLICK Slider ------------------------------------- */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal; }
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent; }

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1; }

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25; }

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto; }

.slick-prev:before {
  content: ''; }

[dir='rtl'] .slick-prev:before {
  content: ''; }

.slick-next {
  right: -25px; }

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px; }

.slick-next:before {
  content: ''; }

[dir='rtl'] .slick-next:before {
  content: ''; }

/* Dots */
.pop-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1010;
  background: rgba(0, 0, 0, 0.5);
  display: none; }

.pop-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1100;
  max-width: 615px;
  width: calc(100% - 30px); }

.pop {
  animation-duration: .5s;
  animation-fill-mode: both;
  position: relative;
  background: #fff;
  padding: 35px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }

.c-pop {
  padding: 0 30px;
  max-height: calc(100vh - 130px);
  overflow-y: auto; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

.pop-success {
  display: none; }

.close {
  display: block;
  width: 21px;
  height: 19px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer; }
  .close:after {
    content: '';
    display: block;
    position: absolute;
    width: 3px;
    height: 20px;
    background: #817397;
    transform: rotate(45deg);
    left: 10px;
    top: -2px;
    transition: .3s; }
  .close:before {
    content: '';
    display: block;
    position: absolute;
    width: 3px;
    height: 20px;
    background: #817397;
    transform: rotate(-45deg);
    left: 10px;
    top: -2px;
    transition: .3s; }
  .close:hover:after, .close:hover:before {
    background: #f00; }

.privacy-line {
  font-size: 12px;
  color: #333;
  font-weight: 300; }
  .privacy-line a {
    text-decoration: underline; }
    .privacy-line a:hover {
      text-decoration: none; }

.pop-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  padding-bottom: 5px; }

.pop-subtitle {
  text-align: center;
  font-size: 16px;
  padding-bottom: 25px; }

.pop-success .pop {
  background: #a5ffa5; }
.pop-success .pop-subtitle {
  padding-bottom: 0; }
.pop-success i {
  display: block;
  text-align: center;
  font-size: 48px;
  color: #009500;
  padding-bottom: 20px; }

.c-pop .privacy-line {
  text-align: center; }
.c-pop .input-list {
  max-width: 400px;
  margin: 0 auto; }

.input-list {
  position: relative; }

.input-list__item {
  padding-bottom: 10px; }

.input-list__item_submit {
  padding-top: 10px; }

.preload {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f6f6f6; }

.preload__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2, 2);
  z-index: 2;
  background: url(../images/logo/logo.svg) center no-repeat;
  display: block;
  width: 14.0625rem;
  height: 14.0625rem; }

@-webkit-keyframes zoommayk {
  100% {
    transform: translateX(calc(1800px - 100vw)); } }
@keyframes zoommayk {
  100% {
    transform: translateX(calc(1800px - 100vw)); } }
.header {
  background: #f6f6f6;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800; }

.header.active {
  box-shadow: 0px 0.3125rem 1.5rem 0px rgba(13, 18, 34, 0.05); }

.wrapper {
  padding-top: 14.5rem; }

.header__content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  height: 12.5rem;
  align-items: center;
  justify-content: space-between; }

.header__left {
  width: 5.5rem; }

.header__right {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.header__menu-icon {
  display: block;
  background: url(../images/icon/menu.svg) 0 0 no-repeat;
  background-size: 4.6875rem auto;
  width: 4.9375rem;
  height: 3.4375rem; }

.header__logo,
.landing__logo {
  background: url(../images/logo/logo.svg) center no-repeat;
  display: block;
  width: 15.625rem;
  height: 8.8125rem; }

.header__logo {
  position: relative;
  top: -.2rem;
  margin-left: 2.75rem; }

.header__search-icon {
  background: url(../images/icon/search.svg) -0.6875rem 0 no-repeat;
  background-size: 5.625rem auto;
  display: block;
  width: 4.1875rem;
  height: 4.375rem; }

.header__entry-icon {
  background: url(../images/icon/vhod.svg) 0 0 no-repeat;
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  margin-left: auto; }

.header__exit-icon {
  background: url(../images/icon/vihod.svg) 0 0 no-repeat;
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  margin-left: auto; }

.navigation,
.search {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 900;
  background: #f6f6f6;
  background-size: auto 100%;
  transition: .5s; }

.search.active,
.navigation.active {
  left: 0; }

.navigation__title {
  background: #f6f6f6;
  font-size: 3.75rem;
  color: #282a2c;
  font-weight: 700;
  box-shadow: 0px 0.3125rem 1.5rem 0px rgba(13, 18, 34, 0.05); }
  .navigation__title .content {
    height: 12.75rem;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center; }
  .navigation__title .header__right {
    margin-left: auto; }

.navigation__close {
  display: block;
  background: url(../images/icon/x.svg) 0 0 no-repeat;
  width: 3.75rem;
  height: 3.75rem;
  margin-right: 3.4375rem; }

.navigation__menu {
  padding: 1.875rem 1.5625rem 1.875rem;
  height: calc(100vh - 12.75rem);
  overflow-y: auto; }
  .navigation__menu li a {
    border-bottom: 1px solid #c3c4c4;
    height: 15.625rem;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 3.125rem;
    padding: 0 1.875rem 0 0;
    color: #282a2c;
    max-width: 45.3125rem;
    margin: 0 auto; }
  .navigation__menu li:last-child a {
    border-bottom: 0; }

.category {
  border-radius: 0.9375rem;
  height: 41.75rem;
  width: 100%;
  margin-bottom: 3.75rem;
  padding: 3.625rem 0 0 3.125rem;
  position: relative; }

.category__title {
  color: #fff;
  font-size: 3.4375rem;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 4.1875rem; }
  .category__title span {
    display: block;
    font-weight: 900;
    text-transform: uppercase; }

.category__link {
  display: block;
  width: 5.4375rem;
  height: 5.4375rem; }

.category__likes {
  font-size: 2.25rem;
  color: #fff;
  position: absolute;
  bottom: 3.825rem;
  left: 3rem;
  padding-left: 4.6875rem;
  line-height: 1; }
  .category__likes:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3.4375rem;
    height: 3.4375rem;
    background: url(../images/icon/like_4.svg) 0 0 no-repeat; }

.category__likes_active {
  color: #e26994 !important; }
  .category__likes_active:before {
    background: url(../images/icon/like_aktive.svg?1) 0 0 no-repeat !important; }

.category_concentration {
  background: #bfd8eb url(../images/category/category_1.jpg) 100% 100% no-repeat;
  background-size: contain;
  box-shadow: 0px 0.9375rem 2.875rem 0px rgba(148, 174, 194, 0.38); }
  .category_concentration .category__title {
    color: #43596a; }
  .category_concentration .category__link {
    background: url(../images/icon/arrow_1.svg) 0 0 no-repeat;
    background-size: 5.4375rem 5.4375rem; }
  .category_concentration .category__likes {
    color: #94acbf; }
    .category_concentration .category__likes:before {
      background: url(../images/icon/like_4.svg) 0 0 no-repeat; }

.category_meditation {
  background: #dbdae8 url(../images/category/category_2.jpg) 100% 100% no-repeat;
  background-size: contain;
  box-shadow: 0px 0.9375rem 2.875rem 0px rgba(193, 192, 204, 0.55); }
  .category_meditation .category__title {
    color: #2e3466; }
  .category_meditation .category__link {
    background: url(../images/icon/arrow_2.svg) 0 0 no-repeat;
    background-size: 5.4375rem 5.4375rem; }
  .category_meditation .category__likes {
    color: #9798b4; }
    .category_meditation .category__likes:before {
      background: url(../images/icon/like_3.svg) 0 0 no-repeat; }

.category_nature {
  background: #f1dcc2 url(../images/category/category_3.jpg) 100% 100% no-repeat;
  background-size: contain;
  box-shadow: 0px 0.9375rem 2.875rem 0px rgba(186, 168, 145, 0.38); }
  .category_nature .category__title {
    color: #a3765d; }
  .category_nature .category__link {
    background: url(../images/icon/arrow_3.svg) 0 0 no-repeat;
    background-size: 5.4375rem 5.4375rem; }
  .category_nature .category__likes {
    color: #b68b74; }
    .category_nature .category__likes:before {
      background: url(../images/icon/like_2.svg) 0 0 no-repeat; }

.category_sleep {
  background: #2c2c2c url(../images/category/category_4.jpg) 100% 100% no-repeat;
  background-size: contain;
  box-shadow: 0px 0.9375rem 2.875rem 0px rgba(44, 44, 44, 0.38); }
  .category_sleep .category__title {
    color: #d6d8e2; }
  .category_sleep .category__link {
    background: url(../images/icon/arrow_4.svg) 0 0 no-repeat;
    background-size: 5.4375rem 5.4375rem; }
  .category_sleep .category__likes {
    color: #707176; }
    .category_sleep .category__likes:before {
      background: url(../images/icon/like_1.svg) 0 0 no-repeat; }

.footer {
  background: #e9e9e9;
  margin-top: 2.1875rem; }

.footer__content {
  height: 12.5rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center; }

.footer__copyright {
  font-size: 2.25rem;
  color: #1f1f1f;
  font-weight: 300;
  padding-left: 1.4375rem; }

.footer__logo {
  background: url(../images/logo/logo2.svg) center no-repeat;
  display: block;
  width: 15.625rem;
  height: 8.8125rem;
  margin-right: 1.4375rem;
  position: relative;
  top: -.1rem; }

.authorization {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  padding: 2rem 0; }

.authorization__content {
  background: #ffffff;
  border-radius: 0.625rem;
  padding: 6rem 5rem 7.5rem;
  border: 1px solid #d0d2d8; }

.authorization__title {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  font-size: 3.75rem;
  align-items: center;
  font-weight: 700;
  padding-bottom: 5.25rem; }
  .authorization__title:before {
    background: url(../images/icon/add-a-contact-on-phone-interface-symbol-of-a-user-with-a-plus-sign.svg) 0 0 no-repeat;
    width: 3.5625rem;
    height: 3.8125rem;
    margin-top: 0;
    margin-right: 1.4375rem; }

.authorization__form,
.search__form {
  position: relative;
  display: block;
  width: 100%; }

.search__form {
  margin-top: 5rem; }

.authorization__phone {
  height: 9.375rem;
  border: 1px solid #000;
  border-radius: 9.375rem;
  padding-left: 10.9375rem;
  padding-right: 1rem;
  font-size: 3.4375rem;
  font-weight: 400;
  color: #000;
  background: #fff url(../images/icon/app.svg) 2.625rem center no-repeat;
  background-size: 4.3125rem auto;
  margin-bottom: 2.5rem; }

input[type="text"].search__text {
  background: #fff url(../images/icon/search_black.svg) 1.625rem center no-repeat;
  background-size: 5rem auto; }

input[type="submit"].search__submit,
input[type="submit"].authorization__submit {
  height: 9.375rem;
  width: 100%;
  background: #ff676d;
  background: -moz-linear-gradient(45deg, #ff676d 0%, #e26994 100%);
  background: -webkit-linear-gradient(45deg, #ff676d 0%, #e26994 100%);
  background: linear-gradient(45deg, #ff676d 0%, #e26994 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff676d', endColorstr='#e26994',GradientType=1 );
  border-radius: 9.375rem;
  font-size: 3.125rem;
  font-weight: 700;
  color: #fff; }

.wrapper.landing {
  padding-top: 0;
  background: #f5f6f8 url(../images/bg_landing.jpg) center 0 no-repeat;
  background-size: 140% auto; }
  .wrapper.landing footer {
    margin-top: 0; }

.landing__top {
  padding: 2.5rem 0 0; }

.landing__header {
  padding: 2.8125rem 0; }

.landing__logo {
  margin: 0 auto;
  width: 19.625rem;
  height: 10.625rem; }

.landing__title,
.landing__title h1 {
  color: #282a2c;
  font-size: 5rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.063;
  padding-bottom: 3rem; }

.landing__img {
  display: block;
  width: 100%;
  height: auto; }

.submit-topics,
.subscribe-link {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 10.625rem;
  width: 100%;
  background: #fe7d82;
  color: #fff;
  font-size: 3.75rem;
  font-weight: 700;
  border-radius: 10.625rem;
  background: #ff676d;
  background: -moz-linear-gradient(45deg, #ff676d 0%, #e26994 100%);
  background: -webkit-linear-gradient(45deg, #ff676d 0%, #e26994 100%);
  background: linear-gradient(45deg, #ff676d 0%, #e26994 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff676d', endColorstr='#e26994',GradientType=1 );
  box-shadow: 0px 0.5625rem 2.6875rem 0px rgba(236, 104, 135, 0.35); }

.subscribe-link {
  font-size: 3rem; }
  .subscribe-link:before {
    display: none; }

.╨Я╤А╤П╨╝╨╛╤Г╨│╨╛╨╗╤М╨╜╨╕╨║__╤Б╨║╤А╤Г╨│╨╗__╤Г╨│╨╗╤Л_1 {
  background-image: -moz-linear-gradient(71deg, #b1843c 0%, #7b70ea 0%, #ff676d 0%, #e26994 91%);
  background-image: -webkit-linear-gradient(71deg, #b1843c 0%, #7b70ea 0%, #ff676d 0%, #e26994 91%);
  background-image: -ms-linear-gradient(71deg, #b1843c 0%, #7b70ea 0%, #ff676d 0%, #e26994 91%);
  position: absolute;
  left: 56px;
  top: 1188px;
  width: 968px;
  height: 167px;
  z-index: 10; }

.landing__subtitle {
  text-align: center;
  font-size: 3.125rem;
  color: #1a1a1a;
  padding: 3.4375rem 0; }

.subscribe-link {
  max-width: 60.5rem;
  margin: 0 auto 5.625rem; }

.landing__text {
  font-size: 2.25rem;
  color: #141414;
  font-weight: 300;
  text-align: center;
  line-height: 1.333;
  padding-bottom: 2.1875rem; }
  .landing__text strong {
    font-weight: 600; }
  .landing__text a {
    color: #e26994; }
    .landing__text a:hover {
      text-decoration: underline; }
  .landing__text img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: 43.375rem;
    height: auto; }
  .landing__text p {
    padding-bottom: 3rem; }

.cancel-link {
  background: #d0d0d0;
  width: 16.875rem;
  height: 5.625rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #141414;
  font-weight: 400;
  font-size: 1.75rem;
  border-radius: 5.625rem;
  margin: 0 auto 5rem; }

.main_landing {
  background: #fff;
  padding: 4.375rem 0 1rem; }
  .main_landing .landing__text {
    padding-bottom: 0; }

.wrapper_in {
  padding-top: 12.5rem; }
  .wrapper_in .footer {
    margin-top: 0; }

.player {
  flex-grow: 1;
  padding-top: 7.5rem;
  padding-bottom: 11.5625rem;
  position: relative;
  min-height: calc(100vh - 11.5625rem); }
  .player .content {
    padding: 0 4.6875rem; }

.back-link {
  display: block;
  width: 5.625rem;
  height: 5.625rem;
  background: url(../images/icon/arrow_b.svg) 0 0 no-repeat;
  background-size: 5.625rem 5.625rem;
  margin-bottom: 3.4375rem; }

.player__top {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.player__title {
  color: #fff;
  font-size: 4.0625rem;
  font-weight: 600;
  line-height: 1.3; }
  .player__title span {
    display: block;
    font-weight: 900;
    text-transform: uppercase; }

.player__like {
  font-size: 2.25rem;
  color: #ffffff;
  padding-left: 4.6875rem;
  line-height: 1;
  position: relative;
  min-width: 15%; }
  .player__like:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3.4375rem;
    height: 3.4375rem;
    background: url(../images/icon/like_in.svg) 0 0 no-repeat; }

.player__like_active {
  color: #e26994; }
  .player__like_active:before {
    height: 6.125rem;
    width: 6.125rem;
    left: -1.4rem;
    background: url(../images/icon/like_aktive.svg) 0 0 no-repeat; }

.player__button {
  position: absolute;
  bottom: 11.5625rem;
  left: 0;
  right: 0; }

.player__play {
  box-shadow: 0px 9px 43px 0px rgba(236, 104, 135, 0.35);
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: url(../images/icon/play.svg) center no-repeat;
  background-size: 24rem 24rem;
  display: block;
  margin: 0 auto; }

.player__play.pause {
  background: url(../images/icon/stop.svg) -5.5rem center no-repeat;
  background-size: 24rem 24rem; }

.player__volume {
  display: block;
  background: url(../images/icon/speaker.svg) center no-repeat;
  width: 7rem;
  height: 7rem;
  position: absolute;
  right: 4.6875rem;
  top: 55%;
  transform: translateY(-50%); }

.player__volume.none {
  background: url(../images/icon/speaker_no.svg) center no-repeat; }

.help-block {
  font-size: 3rem;
  color: darkred;
  margin: 1rem 0 2.5rem 0;
  text-align: center; }

@media screen and (min-width: 1080px) {
  .wrapper {
    max-width: 425px;
    margin: 0 auto; }

  .header {
    max-width: 425px;
    left: 50%;
    transform: translateX(-50%); }

  html {
    font-size: 5.8px; } }
@media screen and (max-width: 1080px) {
  html {
    font-size: 12px; } }
@media screen and (max-width: 800px) {
  html {
    font-size: 9px; } }
@media screen and (max-width: 610px) {
  html {
    font-size: 7px; } }
@media screen and (max-width: 480px) {
  html {
    font-size: 5.8px; } }
@media screen and (max-width: 380px) {
  html {
    font-size: 4.84px; } }
.like_toggle {
  cursor: pointer; }

.authorization__submit {
  height: 9.375rem;
  width: 100%;
  background: #ff676d;
  background: -moz-linear-gradient(45deg, #ff676d 0, #e26994 100%);
  background: -webkit-linear-gradient(45deg, #ff676d 0, #e26994 100%);
  background: linear-gradient(45deg, #ff676d 0, #e26994 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff676d',endColorstr='#e26994',GradientType=1);
  border-radius: 9.375rem;
  font-size: 3.125rem;
  font-weight: 700;
  color: #fff; }

.language-selector {
  font-size: 3rem;
  margin-right: 2rem;
  text-align: center; }
  .language-selector .link {
    color: #afc1d8;
    cursor: pointer;
    display: flex;
    align-items: center; }
    .language-selector .link img {
      margin-right: 0.5rem; }
  .language-selector .list {
    position: absolute;
    border-radius: 1rem;
    padding: 1rem;
    right: 5rem; }
    .language-selector .list .container {
      display: inline-block;
      color: #252840;
      background: white;
      border-radius: 1rem;
      padding: 1rem;
      text-align: center;
      box-shadow: 0px 0px 10px #00000029; }
      .language-selector .list .container a {
        display: flex;
        align-items: center;
        padding: 0.2rem 1rem 0.2rem 0.5rem;
        border-radius: .5rem; }
        .language-selector .list .container a .flag {
          margin: 0 .5rem -0.5rem; }
      .language-selector .list .container .active {
        background: #87a5bf;
        color: white; }
      .language-selector .list .container:before {
        display: block;
        content: "";
        position: absolute;
        width: 16px;
        height: 16px;
        background: linear-gradient(-45deg, white 50%, transparent 50%);
        transform: rotate(225deg);
        right: 4rem;
        top: 0; }

.wrapper .header {
  box-shadow: 0px 0px 0px 2px #f6f6f6; }

/*# sourceMappingURL=style.css.map */
