* {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 320px;
  background: #14141f;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #B8B8BD;
  overflow-x: hidden;
}
input:-webkit-autofill {
    box-shadow: 0 0 0 1000px #222 inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
}
/* Helper classes */
.left {
  float: left;
}
.right {
  float: right;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-uppercase {
  text-transform: uppercase;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  margin: 0 0 10px 0;
  border: 0;
  border-top: 1px solid #4E5086;
  display: block;
}
table {
  width: 100%;
  margin: 25px 0;
  border-collapse: collapse;
}
table tr th {
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  color: #C1C3CD;
  padding: 15px;
  border-top: 1px solid #C1C3CD;
  border-bottom: 1px solid #C1C3CD;
  text-align: right;
}
table tr th:first-child {
  text-align: left;
  padding-left: 0;
}
table tr td {
  text-align: right;
  color: #B8B8BD;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 15px;
  border-bottom: 1px solid #C1C3CD;
  vertical-align: top;
}
table tr td:not(:last-child) {
  padding-right: 10px;
}
table tr td:first-child {
  text-align: left;
  padding-left: 0;
}
table tr td.center {
  text-align: center;
}
@media (max-width: 767px) {
  table tr td:not(:last-child) {
    padding-right: 0;
  }
}
.align-center {
  align-items: center;
}
input[type=text],
input[type=password],
input[type=email],
input[type=search] {
  display: inline-block;
  width: 100%;
  height: 56px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #4E5086;
  padding: 20px 0 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder {
  font-family: #B8B8BD;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=search]:focus {
  outline: none;
}
input[type=password] {
  background: url('../images/password.svg') no-repeat right center;
  padding-right: 50px;
}
input[type=text] + label,
input[type=password] + label,
input[type=email] + label {
  position: absolute;
  top: 0;
  left: 10px;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #B8B8BD;
  line-height: 56px;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=text].focus,
input[type=password].focus,
input[type=email].focus {
  outline: none;
}
input[type=text]:focus + label,
input[type=password]:focus + label,
input[type=email]:focus + label,
input[type=text].focus + label,
input[type=password].focus + label,
input[type=email].focus + label {
  font-size: 12px;
  color: #B8B8BD;
  opacity: 0.7;
  line-height: 16px;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus {
  border-color: #FF6A06;
}
input[type=text].invalid,
input[type=password].invalid,
input[type=email].invalid {
  border-color: #FF0000;
}
input[type=submit],
button,
input[type=submit].btn,
button.btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  height: 70px;
  line-height: 40px;
  display: block;
  max-width: 228px;
  width: 100%;
  background: #FF6A06;
  border: none;
  margin: 30px auto 30px;
  color: #fff;
  cursor: pointer;
}
input[type=submit].btn-grey,
button.btn-grey,
input[type=submit].btn.btn-grey,
button.btn.btn-grey {
  background: #888C98;
}
input[type=submit].search,
button.search {
  margin: 0;
  padding: 0;
  background: #4E5086 url('../images/search.svg') no-repeat center 30%;
  padding-top: 30%;
  height: 100%;
  min-height: 100px;
  color: #B8B8BD;
}
input[type=submit].search:hover,
button.search:hover {
  background: #434693 url('../images/search-wthite.svg') no-repeat center 30%;
  color: #fff;
}
input[type=checkbox] {
  opacity: 0;
  display: none;
}
input[type=checkbox] + label {
  padding-left: 27px;
  position: relative;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  display: inline-block;
  cursor: pointer;
}
input[type=checkbox] + label:before {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  border-radius: 3px;
  width: 14px;
  height: 14px;
  overflow: hidden;
  content: "";
  color: #fff;
  font-family: 'Font Awesome 6 Free', sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 14px;
}
input[type=checkbox] + label:hover:before {
  border-color: #FF6A06;
}
input[type=checkbox] + label a {
  color: inherit;
}
input[type=checkbox]:checked + label:before {
  content: "\f00c";
  background: #FF6A06;
  border-color: #FF6A06;
}
[dir=rtl] input[type=checkbox] + label {
  padding-right: 27px;
  padding-left: 0;
}
[dir=rtl] input[type=checkbox] + label:before {
  left: auto;
  right: 0;
}
[dir=rtl] .table .track-name {
  padding-right: 70px;
  padding-left: 0;
}
/* Table */
.table {
  display: table;
  width: 100%;
}
.table .tr,
.table .th {
  display: table-row;
}

.table .tr.colspan {
	display: block!important;
    text-align: center;
    padding: 20px;
}
@media only screen and (max-width: 767px) {
  .table .tr,
  .table .th {
    padding: 10px 0;
    padding-right: 45px;
    position: relative;
    display: block;
  }
}
.table .td {
  display: table-cell;
  padding: 10px 20px;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .table .td {
    height: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .table .td {
    display: block;
    padding: 5px;
    width: 100%;
    position: static;
  }
}
.table .th .td {
  background: #080808;
  color: #B8B8BD;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  position: relative;
  height: 70px;
  border-bottom: 10px solid #191A26;
}
.table .th .td:before {
  width: 1px;
  height: 40px;
  background: #252537;
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0px;
}
.table .th .td:first-child:before {
  display: none;
}
.table .tr .td {
  color: #fff;
  font-size: 16px;
  border-bottom: 1px solid #252537;
  position: relative;
}
.table .tr.shareItemProject .td {
  background: #4E5086;
}
.table .tr:first-child td {
  border-top: 1px solid #252537;
}
.table .tr:hover {
  background: #252537;
}
.table .tr.sub {
  background: #252537;
}
.table .tr.sub .td {
  border-color: #161622;
}
.table .tr.sub:first-child td {
  border-color: #161622;
}
.table .tr.sub-2 {
  background: #1E1F2C;
}
.table .tr.sub-2 .td {
  border-color: #191a26;
}
.table .tr.sub-2:first-child td {
  border-color: #191a26;
}
.table .tr.sub-2 .arrow {
  background: #252537;
}
.table .tr.sub-2 .arrow:hover {
  background: #4E5086;
}
@media only screen and (max-width: 767px) {
  .table .tr {
    border-bottom: 1px solid #252537;
  }
  .table .tr .td {
    position: static;
    border: none;
    display: flex;
  }
  .table .tr .td strong {
    min-width: 100px;
    padding-right: 10px;
  }
  .table .tr .td:last-child {
    padding-top: 20px;
  }
  .table .tr:first-child td {
    border-top: none;
  }
  .table .tr.sub {
    border-bottom: 1px solid #14141f;
  }
}
@media only screen and (max-width: 767px) and only screen and (max-width: 767px) {
  .table .tr .td strong + .rename,
  .table .tr .td strong + .remove {
    margin: 0;
  }
}
.table a:hover {
  text-decoration: none;
  color: #FF6A06;
}
.table .add,
.table .download,
.table .info,
.table .share,
.table .rename,
.table .remove {
  width: 20px;
  height: 20px;
  text-align: center;
  display: block;
  margin: 3px auto;
}
.table .add {
  background: url('../images/add.svg') no-repeat center;
}
.table .add:hover {
  background-image: url('../images/add-orange.svg');
}
.table .download {
  background: url('../images/download.svg') no-repeat center;
}
.table .download:hover {
  background-image: url('../images/download-orange.svg');
}
.table .info {
  background: url('../images/info.svg') no-repeat center;
}
.table .info:hover {
  background-image: url('../images/info-orange.svg');
}
.table .share {
  background: url('../images/share.svg') no-repeat center;
}
.table .share:hover {
  background-image: url('../images/share-orange.svg');
}
.table .rename {
  background: url('../images/rename.svg') no-repeat center;
}
.table .rename:hover {
  background-image: url('../images/rename-orange.svg');
}
.table .remove {
  background: url('../images/remove.svg') no-repeat center;
}
.table .remove:hover {
  background-image: url('../images/remove-orange.svg');
}
.table .arrow {
  width: 34px;
  height: 34px;
  border-radius: 5px;
  background: #1E1F2C;
  display: block;
}
.table .arrow:after {
  width: 34px;
  height: 34px;
  background: url('../images/arrow.svg') no-repeat center;
  content: "";
  display: block;
}
.table .arrow.up:after {
  transform: rotate(180deg);
}
.table .arrow:hover {
  background: #4E5086;
}
.table .track-name {
  padding-left: 70px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .table .track-name {
    padding: 0;
  }
}
.table .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.table .track-play,
.table .track-pause,
.table .track-load {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #B8B8BD;
  overflow: hidden;
  position: absolute;
  top: 50%;
  margin-top: -20px;
}
@media only screen and (max-width: 767px) {
  .table .track-play,
  .table .track-pause,
  .table .track-load {
    right: 10px;
    margin-top: -50px;
  }
}
.table .track-play {
  background: url('../images/play.svg') no-repeat 58% center;
}
.table .track-play:hover {
  background-color: #14141f;
  border-color: #14141f;
}
.table .track-pause {
  background: #FF6A06 url('../images/pause.svg') no-repeat center;
  border-color: #FF6A06;
}
.table .track-load {
	display: inline-block;
    border: 4px solid rgba(0, 0, 0, 0.5);
    border-left-color: #FF6A06;
    border-radius: 50%;
    width: 40px;
    aspect-ratio: 1 / 1;
    animation: donut-spin 1.2s linear infinite;
    background: transparent;
}
@keyframes trackload-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.table input[type=checkbox] + label {
  width: 19px;
  line-height: 19px;
  height: 19px;
  padding: 0;
  vertical-align: middle;
}
.table .status {
  display: flex;
  align-items: center;
}
.table .status .arrow {
  background: transparent;
  margin-left: auto;
}
.table .duration {
  background: #1E1F2C;
  border-radius: 5px;
  display: inline-block;
  width: 90px;
  padding: 10px;
  text-align: center;
  margin: auto;
  cursor: pointer;
}
.table .duration.grey {
  color: #B8B8BD;
}
.table .duration:hover {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .table .duration {
    margin: 0;
  }
}
[dir=rtl] .track-play,
[dir=rtl] .track-pause {
  margin-right: auto;
  margin-left: 10px;
}

.select-style-new {
  background-color: #4E5086;
  color: #fff;
  padding: 10px 55px 10px 20px;
  font-size: 14px;
  line-height: 21px;
  border: none;
  cursor: pointer;
  user-select: none;
  border-radius: 5px;
}

.select-style {
  position: relative;
  font-family: 'Montserrat', sans-serif;
}
.select-style select {
  display: none;
}
.select-style .select-selected {
  background-color: #4E5086;
  color: #fff;
  padding: 10px 55px 10px 20px;
  font-size: 14px;
  line-height: 21px;
  border: none;
  cursor: pointer;
  user-select: none;
  border-radius: 5px;
}
.select-style .select-selected:after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  background: url('../images/arrow.svg') no-repeat center;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  transform: rotate(0deg);
  transition: all 0.3s;
}
.select-style .select-selected.select-arrow-active {
  border-radius: 5px 5px 0 0;
}
.select-style .select-selected.select-arrow-active:after {
  transform: rotate(180deg);
}
.select-style .select-items {
  position: absolute;
  background-color: #1E1F2C;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border: 1px solid #14141f;
  top: 100%;
  right: 0;
  z-index: 99;
  min-width: 100%;
}
.select-style .select-items div {
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  line-height: 21px;
  border: none;
  cursor: pointer;
  user-select: none;
}
.select-style .select-items div:hover {
  background-color: #252537;
}
.select-style .select-hide {
  display: none;
}
.select-style .same-as-selected {
  background-color: #252537;
}
.file-wrapper {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.file-wrapper .file-name {
  display: block;
  background-color: transparent;
  text-transform: initial;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #4E5086;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 50px;
  font-style: normal;
  font-weight: 400;
  color: #B8B8BD;
  margin-right: 30px;
}
.file-wrapper-content {
  display: flex;
}
.file-wrapper-content .btn-file {
  flex: 0 0 auto;
  height: 50px;
  font-weight: 400;
}
.file-wrapper-content .file-name {
  flex: 1 1 auto;
}
@media (max-width: 475px) {
  .file-wrapper-content {
    flex-wrap: wrap;
  }
  .file-wrapper-content .file-name {
    margin: 0 0 10px 0;
  }
  .file-wrapper-content .btn-file {
    width: 100%;
  }
}
.file-wrapper input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.eot');
  src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf') format('truetype'), url('../fonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.eot');
  src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.woff') format('woff'), url('../fonts/Montserrat-Bold.ttf') format('truetype'), url('../fonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.eot');
  src: url('../fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat-SemiBold.woff') format('woff'), url('../fonts/Montserrat-SemiBold.ttf') format('truetype'), url('../fonts/Montserrat-SemiBold.svg#Montserrat-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.eot');
  src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff'), url('../fonts/Montserrat-Medium.ttf') format('truetype'), url('../fonts/Montserrat-Medium.svg#Montserrat-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat', sans-serif;
  color: #B8B8BD;
  font-weight: 400;
  line-height: 125%;
  margin: 0 0 40px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong {
  color: #fff;
  font-weight: inherit;
}
h1 {
  line-height: 37px;
  margin-bottom: 30px;
}
h1,
h1 a {
  font-size: 30px;
}
h2,
h2 a {
  font-size: 30px;
}
@media (max-width: 767px) {
  h2 + .slick-slider,
  h2 a + .slick-slider {
    margin-top: 120px;
  }
}
h3,
h3 a {
  font-size: 18px;
}
@media (max-width: 991px) {
  h3,
  h3 a {
    font-size: 18px;
  }
}
h4,
h5,
h6 {
  font-size: 16px;
}
p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  padding-bottom: 15px;
  margin: 0;
  color: #B8B8BD;
}
p strong,
p b {
  font-weight: 700;
}
p a {
  color: #B8B8BD;
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
}
strong,
em {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
strong {
  font-weight: 600;
}
a {
  text-decoration: none;
}
a:hover {
  color: #434693;
}
a:hover svg path {
  fill: #434693;
}
a:focus {
  outline: none;
}
a::-moz-focus-inner {
  border: 0;
}
ul li,
ol li {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1710px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}
.row.align-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
[class*="col-xs"],
[class*="col-sm"],
[class*="col-md"],
[class*="col-lg"] {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}
[class*="col-xs"].align-right,
[class*="col-sm"].align-right,
[class*="col-md"].align-right,
[class*="col-lg"].align-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 500px) {
  [class*="col-xs"].align-right,
  [class*="col-sm"].align-right,
  [class*="col-md"].align-right,
  [class*="col-lg"].align-right {
    flex-wrap: wrap;
  }
}
.col-xs-1 {
  width: 8.33%;
}
.col-xs-2 {
  width: 16.66%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-4 {
  width: 33.33%;
}
.col-xs-5 {
  width: 41.66%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-7 {
  width: 58.33%;
}
.col-xs-8 {
  width: 66.66%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-10 {
  width: 83.33%;
}
.col-xs-11 {
  width: 91.66%;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-23 {
  width: 26%;
}
.col-xs-24 {
  width: 37%;
}
.col-xs-27 {
  width: 63%;
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .col-sm-1 {
    width: 8.33%;
  }
  .col-sm-2 {
    width: 16.66%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33%;
  }
  .col-sm-5 {
    width: 41.66%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33%;
  }
  .col-sm-8 {
    width: 66.66%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33%;
  }
  .col-sm-11 {
    width: 91.66%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-23 {
    width: 26%;
  }
  .col-sm-24 {
    width: 37%;
  }
  .col-sm-27 {
    width: 63%;
  }
}
@media only screen and (min-width: 992px) {
  .col-md-1 {
    width: 8.33%;
  }
  .col-md-2 {
    width: 16.66%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33%;
  }
  .col-md-5 {
    width: 41.66%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33%;
  }
  .col-md-8 {
    width: 66.66%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33%;
  }
  .col-md-11 {
    width: 91.66%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-23 {
    width: 26%;
  }
  .col-md-24 {
    width: 37%;
  }
  .col-md-27 {
    width: 63%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-lg-1 {
    width: 8.33%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33%;
  }
  .col-lg-2 {
    width: 16.66%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33%;
  }
  .col-lg-5 {
    width: 41.66%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33%;
  }
  .col-lg-8 {
    width: 66.66%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33%;
  }
  .col-lg-11 {
    width: 91.66%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-23 {
    width: 26%;
  }
  .col-lg-24 {
    width: 37%;
  }
  .col-lg-27 {
    width: 63%;
  }
  .hidden-lg {
    display: none !important;
  }
}
.clearfix {
  display: block;
  clear: both;
}
.hidden {
  display: none !important;
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navigation ul li {
  display: inline-block;
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
  position: relative;
}
.navigation ul li a {
  color: #B8B8BD;
  display: block;
  line-height: 20px;
}
.navigation ul li.active > a,
.navigation ul li:hover > a {
  text-decoration: none;
}
header .btn {
  margin-left: 10px;
}
header ul {
  list-style: none;
  display: flex;
  align-items: center;
}
header .row {
  margin-left: -15px;
  margin-right: -15px;
}
header .row > div {
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 1200px) {
  header .row.top .col-lg-2 {
    width: 18%;
  }
  header .row.top .col-lg-5 {
    width: 41%;
  }
  header .row.bottom .col-md-2 {
    width: 14.7%;
  }
  header .row.bottom .col-md-10 {
    width: 85.3%;
  }
  header .row.bottom .col-md-11 {
    width: 92.8%;
  }
  header .row.bottom .col-md-1 {
    width: 7.2%;
  }
}
header .container > .row:first-child {
  align-items: center;
  margin-bottom: 15px;
}
header #searchTagsList {
  background: #1E1F2C;
  padding: 15px 20px;
}
@media only screen and (max-width: 1650px) {
  header .navigation ul li {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  header .navigation ul li {
    padding: 0 10px;
  }
  header .social li {
    margin: 0 3px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1360px) {
  header .navigation ul li {
    padding: 0 5px;
  }
  header .lang {
    margin: 0 10px;
  }
  header .btn {
    margin-left: 5px;
  }
}
@media only screen and (max-width: 1199px) {
  header .navigation {
    margin-top: 20px;
  }
  header .align-right {
    flex-wrap: wrap;
  }
  header .align-right .navigation ul {
    align-items: flex-end;
  }
  header .lang {
    margin: 0 10px;
  }
  header .social li {
    margin: 0 3px;
  }
}
@media only screen and (max-width: 767px) {
  header .container > .row:first-child {
    align-items: flex-start;
  }
  header .lang {
    margin-top: 15px;
  }
}
.social {
  list-style: none;
  display: flex;
  align-items: center;
}
.social li {
  font-size: 20px;
  margin: 0 5px;
}
.social li a {
  color: rgba(255, 255, 255, 0.25);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  overflow: hidden;
  background: #1E1F2C;
}
.social li a:hover {
  background: #4E5086;
  color: rgba(255, 255, 255, 0.7);
}
.lang {
  position: relative;
  background: #1E1F2C;
  border-radius: 50px;
  padding: 0px;
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0 20px;
  overflow: hidden;
}
.lang li {
  display: inline-block;
  margin-left: 13px;
}
.lang li:first-child {
  margin: 0;
}
.lang li a {
  width: 40px;
  height: 40px;
  display: block;
  opacity: 0.2;
  border: 3px solid #1E1F2C;
  overflow: hidden;
}
.lang li a.active,
.lang li a:hover {
  opacity: 1;
}
.buttons a {
  display: block;
  margin: 0;
  margin-bottom: 5px;
}
@media only screen and (max-width: 991px) {
  .buttons {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .buttons a {
    margin-left: 10px;
  }
  .buttons a:first-child {
    margin-left: 0px;
  }
}
.mobile-menu {
  font-size: 30px;
}
@media only screen and (max-width: 767px) {
  .mobile-menu {
    margin-left: 15px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 991px) {
  header .navigation {
    display: none;
    margin: 0;
    padding: 0;
    position: absolute;
    background: #1E1F2C;
    z-index: 10;
    top: 65px;
    float: none;
    right: 15px;
    width: 300px;
    left: auto;
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.5);
  }
  header .navigation.open {
    display: block;
  }
  header .navigation ul {
    display: block;
    height: auto;
    margin: 0;
  }
  header .navigation ul li {
    display: block;
    padding: 0;
    float: none;
  }
  header .navigation ul li a,
  header .navigation ul li:hover a,
  header .navigation ul li.active a {
    border-bottom: 1px solid #4E5086;
    color: #fff;
    padding: 10px 15px;
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  header .btn {
    padding: 10px;
  }
}
section {
  margin-top: 90px;
}
.btn {
  font-size: 14px;
  line-height: 20px;
  padding: 16px 20px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  background: #1E1F2C;
  display: inline-block;
  text-align: center;
}
.btn:hover {
  background: #4E5086;
  color: #fff;
}
.btn.link {
  background: none;
}
.btn.link:hover {
  background: #252537;
  color: #fff;
}
.btn.blue {
  background: #4E5086;
  color: #fff;
}
.btn.blue:hover {
  background: #434693;
}
.btn.orange {
  background: #FF6A06;
}
.btn.red {
  background: #eb0000;
}
.btn.orange:hover {
  color: #fff;
}
.btn.with-border {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
}
.btn.with-border:hover {
  background: #434693;
  border-color: #434693;
}
.btn.full-width {
  width: 100%;
  max-width: 100%;
}
i.plus,
i.download,
i.trash,
i.not,
i.open,
i.closed {
  width: 20px;
  height: 20px;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
i.plus:before,
i.download:before,
i.trash:before,
i.not:before,
i.open:before,
i.closed:before {
  content: "";
  background: url('../images/plus-white.svg') no-repeat center / 20px;
  width: 20px;
  height: 20px;
  display: block;
}
i.download:before {
  background-image: url('../images/download-white.svg');
}
i.trash:before {
  background-image: url('../images/remove-white.svg');
}
i.not:before {
  background-image: url('../images/not.svg');
}
i.open:before {
  background-image: url('../images/open.svg');
}
i.closed:before {
  background-image: url('../images/closed.svg');
}
[dir=rtl] i.plus,
[dir=rtl] i.download,
[dir=rtl] i.trash,
[dir=rtl] i.not,
[dir=rtl] i.open,
[dir=rtl] i.closed {
  margin-left: 10px;
  margin-right: 0px;
}
header .btn {
  color: rgba(255, 255, 255, 0.5);
}
header .btn:hover {
  color: #fff;
}
.slick-slider {
  position: relative;
  margin-top: 10px;
}
.slick-slider .slick-list {
  margin: 0 -10px;
}
.slick-slider .slick-list .slick-slide {
  margin: 0 10px;
  width: 320px;
}
.slick-slider .slick-list .slick-track {
  transition: transform 1s;
}
.slick-slider .slick-list .slick-slide {
  transition: width 0.5s;
}
.slick-slider .slick-list a {
  display: block;
}
.slick-slider .slick-list a .img {
  display: block;
  border-radius: 5px;
  margin-bottom: 15px;
  filter: grayscale(100%) sepia(25%) hue-rotate(200deg);
  -webkit-filter: grayscale(100%) sepia(25%) hue-rotate(200deg);
  -moz-filter: grayscale(100%) sepia(25%) hue-rotate(200deg);
  transition: all 0.4s ease;
}
.slick-slider .slick-list a .img img {
  width: 100%;
  height: auto;
}
.slick-slider .slick-list a .title {
  font-size: 18px;
  font-weight: 500;
  color: #B8B8BD;
  display: block;
}
.slick-slider .slick-list a .sub-title,
.slick-slider .slick-list a .count-tracks {
  font-size: 12px;
  color: #B8B8BD;
  display: block;
  margin-top: 5px;
}
.slick-slider .slick-list a:hover .img {
  filter: none;
}
.slick-slider .slick-list a + a {
  margin-top: 30px;
}
.slick-slider .slick-dots {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -77px;
  right: 0;
  min-width: 235px;
  height: 37px;
  margin: 0 45px;
}
.slick-slider .slick-dots button {
  width: 6px;
  height: 6px;
  margin: 0 6px;
  background: #4E5086;
  overflow: hidden;
  cursor: pointer;
  display: block;
  border-radius: 100%;
  text-indent: -999px;
  border: none;
  outline: none;
}
.slick-slider .slick-dots li:hover button,
.slick-slider .slick-dots .slick-active button {
  background: #FF6A06;
}
.slick-slider .slick-arrow {
  position: absolute;
  top: -77px;
  right: 0;
  width: 44px;
  height: 37px;
  border: none;
  text-indent: -999px;
  overflow: hidden;
  background: url('../images/arrow.png') no-repeat center center;
  cursor: pointer;
  margin: 0;
}
.slick-slider .slick-arrow.slick-prev {
  transform: rotate(180deg);
  right: 280px;
}
.slick-slider .slick-arrow:hover {
  background-image: url('../images/arrow-hover.png');
}
.slick-slider.carousel-collection .slick-list {
  overflow: visible;
}
[dir=rtl] .slick-slider .slick-dots {
  right: auto;
  left: 0;
}
[dir=rtl] .slick-slider .slick-arrow {
  right: auto;
  left: 0;
  background: url('../images/arrow.png') no-repeat center center;
}
[dir=rtl] .slick-slider .slick-arrow.slick-next {
  left: 280px;
}
[dir=rtl] .slick-slider .slick-arrow:hover {
  background-image: url('../images/arrow-hover.png');
}
#music .container {
  background: #1E1F2C;
  padding: 50px;
}
@media only screen and (max-width: 1200px) {
  #music .container {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #music .container {
    padding: 25px 15px;
  }
}
#music .list-categories {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #music .list-categories {
    margin-bottom: 20px;
    display: block;
  }
}
#music .list-categories a {
  font-size: 16px;
  line-height: 20px;
  padding: 15px 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  background: transparent;
  display: inline-block;
  margin-right: 10px;
}
#music .list-categories a:hover {
  background: #4E5086;
  color: #fff;
}
#music .list-categories a.active {
  background: #FF6A06;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #music .list-categories a {
    margin: 0px;
    display: block;
    text-align: center;
  }
}
#music h3 {
  font-size: 14px;
  color: #B8B8BD;
  margin-bottom: 10px;
  opacity: 0.7;
}
@media only screen and (max-width: 991px) {
  #music h3 {
    margin-top: 30px;
  }
}
#music .music-content {
  padding: 10px;
  background: #14141f;
  min-height: 550px;
  display: flex;
  flex-direction: column;
}
#music .music-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 530px;
  overflow: auto;
}
@media only screen and (max-width: 767px) {
  #music .music-content ul {
    height: 330px;
  }
}
#music .music-content ul li {
  height: 60px;
  padding: 20px 7px 20px 7px;
  border-bottom: 1px solid #252537;
  display: flex;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
#music .music-content ul li:after {
  content: "";
  background: url('../images/arrow.svg') no-repeat center / 16px;
  width: 20px;
  height: 20px;
  display: block;
  margin-left: auto;
  transform: rotate(-90deg);
}
#music .music-content ul li:hover {
  background: #1E1F2C;
}
#music .music-content ul li:hover:after {
  background-image: url('../images/arrow-orange.svg');
}
#music .music-content ul li.active {
  background: #252537;
}
#music .music-content ul.scrollbar-dynamic {
  margin-right: -8px;
}
#music .music-content ul.scrollbar-dynamic li {
  margin-right: 8px;
}
#music .music-content ul.result li {
  padding-right: 7px;
}
#music .music-content ul.result li:after {
  display: none;
}
#music .music-content .add,
#music .music-content .del {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: #B8B8BD;
  margin-right: 20px;
}
#music .music-content .add:before,
#music .music-content .del:before {
  content: "";
  background: url('../images/plus.svg') no-repeat center / 16px;
  width: 20px;
  height: 20px;
  display: block;
}
#music .music-content .add:hover:before,
#music .music-content .del:hover:before {
  background-image: url('../images/plus-orange.svg');
}
#music .music-content .del {
  margin-left: auto;
  margin-right: 0;
}
#music .music-content .del:before {
  content: "";
  background: url('../images/close.svg') no-repeat center / 12px;
  width: 20px;
  height: 20px;
}
#music .music-content .del:hover:before {
  background-image: url('../images/close-orange.svg');
}
#music .music-content .subTagInvoice {
  padding: 30px;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  max-width: 295px;
}
#music .music-content .btn {
  display: block;
  margin-top: auto;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #music .music-content {
    min-height: 350px;
    display: none;
  }
  #music .music-content.active {
    display: block;
  }
}
[dir=rtl] #music .music-content ul li:after {
  margin-right: auto;
  margin-left: 0;
  transform: rotate(-270deg);
}
[dir=rtl] #music .music-content .add,
[dir=rtl] #music .music-content .del {
  margin-right: 0;
  margin-left: 20px;
}
[dir=rtl] #music .music-content .del {
  margin-right: auto;
  margin-left: 0;
}
[dir=rtl] .tagsList:before {
  margin-left: 5px;
  margin-right: 0;
}
[dir=rtl] .stiky .volume-box {
  margin-right: 40px;
  margin-left: 0;
}
[dir=rtl] .stiky .player-track-img,
[dir=rtl] .stiky .player_volume {
  margin-left: 15px;
  margin-right: 0;
}
.filter-box-nav .durationFilter,
.filter-box-nav .bpmFilter {
  position: relative;
  text-align: center;
  color: #FFF;
  margin: 0 0 10px;
  background: #1E1F2C;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 14px;
}
.filter-box-nav .durationFilter span:last-child,
.filter-box-nav .bpmFilter span:last-child {
  float: right;
}
.filter-box-nav .fll {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #B8B8BD;
}
.filter-box-nav .flr {
  position: absolute;
  top: 18px;
  right: 34px;
  color: #B8B8BD;
}
.filter-box-nav .fltxt {
  padding-bottom: 5px;
  display: inline-block;
}
.filter-box-nav .ui-state-default,
.filter-box-nav .ui-button {
  border-radius: 50%;
  background: #FF6A06;
  font-weight: normal;
  color: #454545;
  width: 22px;
  height: 22px;
  border: 2px solid #1E1F2C;
  top: -6px;
  outline: none;
}
.filter-box-nav .ui-widget-header {
  border: none;
  background: #4E5086;
  color: #333;
  font-weight: bold;
}
.filter-box-nav .ui-widget.ui-widget-content {
  border: none;
  height: 10px;
  background: #FF6A06;
  border-radius: 10px;
}
.filter-box.row {
  margin-right: -2px;
  margin-left: -2px;
  align-items: stretch!important;
}
.filter-box.row > div {
  padding: 2px;
}
.filter-box.row .row {
  margin-right: -2px;
  margin-left: -2px;
}
.filter-box.row .row > div {
  padding: 0 2px;
}
.filter-box .filter-box-nav .durationFilter,
.filter-box .filter-box-nav .bpmFilter {
  padding: 19px 85px 19px 177px;
  height: 48px;
  border-radius: 0;
  margin: 0;
}
.filter-box .filter-box-nav .durationFilter .fltxt,
.filter-box .filter-box-nav .bpmFilter .fltxt {
  position: absolute;
  top: 18px;
  left: 20px;
}
.filter-box .filter-box-nav .durationFilter .fll,
.filter-box .filter-box-nav .bpmFilter .fll {
  left: 115px;
  width: 45px;
  text-align: right;
}
.filter-box .filter-box-nav .durationFilter {
  margin-bottom: 4px;
}
.filter-box .filter-checkboxes {
  background: #1E1F2C;
  width: 100%;
  height: 100%;
  padding: 0px 20px;
}
.filter-box .filter-checkboxes .inner {
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
}
.filter-box .filter-checkboxes .inner label {
  margin: 16px 0;
  padding-right: 10px;
  width: 33.333%;
}
@media only screen and (max-width: 1199px) {
  .filter-box .filter-checkboxes .inner label {
    margin: 6px 0;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .filter-box .filter-checkboxes .inner {
    max-width: 100%;
    margin-top: 4px;
  }
}
.filter-box input[type=submit].search {
  border-radius: 0 0 5px 0;
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .filter-box {
    display: none;
  }
  .filter-box.open {
    display: flex;
    position: absolute;
    left: 0;
    margin-top: 60px;
    z-index: 10;
    background: #14141f;
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.5);
  }
}
[dir=rtl] .filter-box .filter-checkboxes .inner label {
  padding-left: 10px;
  padding-right: 27px;
}
.tagsList {
  font-size: 12px;
  color: #B8B8BD;
  line-height: 14px;
  padding: 5px;
  vertical-align: middle;
  display: inline-block;
  margin: 5px 5px 5px 0;
  cursor: pointer;
}
.tagsList:before {
  background: url('../images/close.svg') no-repeat center / 9px;
  width: 14px;
  height: 14px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  pointer-events: all; 
  cursor: pointer;
}
.tagsList.black {
  background: #14141f;
}
.tagsList:hover {
  color: #fff;
}
.tagsList:hover:before {
  background-image: url('../images/close-white.svg');
}
#searchTagsList-2 {
  background: #1E1F2C;
  padding: 8px 10px;
  border-radius: 0 0 5px 5px;
  margin-top: -10px;
  margin-bottom: 10px;
}
#searchTagsList-2 .tagsList {
  margin: 2px 5px 2px 0;
}
.search-box {
  display: flex;
  align-items: center;
  background: #252537;
  border-radius: 5px;
  position: relative;
}
.search-box .dropdown {
  margin: 0;
  border-left: 1px solid #14141f;
  min-width: 190px;
  height: 60px;
  line-height: 60px;
  padding: 0;
}
.search-box .dropdown .current {
  padding-left: 20px; 
  padding-right: 20px; 
}
.search-box .dropdown .current:after {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.bodyrtl .search-box .dropdown .current:after {
  right: unset;
  left: 10px;
}
.search-box .star {
  margin: 0;
  padding: 10px 20px;
  font-size: 19px;
  line-height: 19px;
  background: #252537;
  border-left: 1px solid #14141f;
  border-radius: 0;
}
.search-box .star:hover {
  background: inherit;
  color: #fff;
}
.search-box .star.open {
  color: #FF6A06;
}
.search-box input[type="text"] {
  background: #252537 url('../images/search.svg') no-repeat 20px center;
  border-radius: 5px;
  height: 60px;
  line-height: 60px;
  padding: 0 20px 0 55px;
  margin: 0;
  border: none;
}
.search-box input[type="text"] + .search {
  min-height: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  border-radius: 0;
  width: 60px;
  position: absolute;
  top: 0px;
  right: 0;
  background-position: center;
}
@media only screen and (max-width: 767px) and (min-width: 601px) {
  .search-box {
    padding-right: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .search-box {
    flex-wrap: wrap;
  }
  .search-box input[type="text"] {
    border-bottom: 1px solid #14141f;
    padding-right: 70px;
  }
  .search-box input[type="text"] + .search {
    min-height: 58px;
    height: 58px;
  }
  .search-box .dropdown {
    min-width: 80%;
  }
}
.search-box-2 input[type="text"] {
  background: #252537 url('../images/search.svg') no-repeat 20px center;
  border-radius: 5px;
  margin-bottom: 10px;
  height: 60px;
  line-height: 60px;
  padding: 0 20px 0 55px;
  border: none;
}
.dropdown {
  position: relative;
  border-radius: 5px;
  margin-bottom: 10px;
  height: 60px;
  line-height: 60px;
  padding: 0 20px 0 20px;
  border: none;
  background: #252537;
  cursor: pointer;
}
.dropdown .current {
  display: block;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  color: #fff;
  font-size: 16px;
}
.dropdown .current:after {
  position: absolute;
  width: 20px;
  height: 20px;
  overflow: hidden;
  color: #fff;
  opacity: 0.5;
  content: "\f078";
  font-family: 'Font Awesome 6 Free', sans-serif;
  font-weight: bold;
  right: 0px;
  top: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 16px;
}
.dropdown .current.open + .dropdown-menu {
  display: block;
}
.dropdown .current.open:after {
  opacity: 1;
}
.dropdown:hover .current:after {
  opacity: 1;
}
.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #1E1F2C;
  width: 100%;
  z-index: 10;
  margin-top: 1px;
  height: 400px;
}
.dropdown .dropdown-menu div {
  padding: 12px 20px;
  position: relative;
  user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.dropdown .dropdown-menu div:hover {
  background: #252537;
}
[dir=rtl] .dropdown .dropdown-menu {
  left: auto;
  right: 0;
}
[dir=rtl] .dropdown .dropdown-menu div label {
  left: auto;
  right: 10px;
}
.dropdown_history {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #252537;
  width: 330px;
  z-index: 10;
  margin-top: 1px;
  height: 180px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.dropdown_history a {
  padding: 13px 20px;
  position: relative;
  user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 19px;
  background: #1E1F2C;
  color: #fff;
}
.dropdown_history a:hover {
  color: #fff;
  background: #252537;
}
[dir="rtl"] .dropdown_history {
  right: auto;
  left: 0;
}
#our-customers {
  padding: 70px 0;
  position: relative;
}
#our-customers:before {
  width: 30%;
  height: 100%;
  background: #1E1F2C;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #our-customers:before {
    display: none;
  }
}
#our-customers > .container {
  position: relative;
}
#our-customers a {
  display: block;
  border-radius: 5px;
  margin-bottom: 20px;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  background: #B8B8BD;
  overflow: hidden;
  line-height: 0;
}
#our-customers a img {
  width: 100%;
  height: auto;
}
#our-customers a:hover {
  filter: none;
}
#our-customers .headline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
#our-customers .headline h2 strong {
  display: block;
}
@media only screen and (max-width: 767px) {
  #our-customers {
    padding-top: 0;
  }
}
#videos .play {
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  background-size: 18px;
}
#videos .slick-slider .slick-list .slick-slide .title {
  display: none;
  font-size: 30px;
  color: #fff;
  margin-bottom: 30px;
}
#videos .slick-slider .slick-list .slick-slide .info {
  display: none;
}
@media only screen and (max-width: 767px) {
  #videos .slick-slider .slick-list .slick-slide .sub-title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  #videos .slick-slider .slick-list .slick-slide img,
  #videos .slick-slider .slick-list .slick-slide video {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 5px;
  }
}
@media only screen and (min-width: 992px) {
  #videos .container {
    padding-top: 90px;
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
  }
  #videos .container:before {
    width: 620px;
    height: 100%;
    background: #1E1F2C;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #videos h2 {
    margin-bottom: 90px;
    position: relative;
  }
  #videos .slick-slider .slick-list {
    overflow: visible;
  }
  #videos .slick-slider .slick-list .title {
    font-size: 16px;
  }
  #videos .slick-slider .slick-list .count-tracks {
    display: none;
  }
  #videos .slick-slider .slick-list .slick-slide {
    padding: 0 10px;
    width: 260px;
    margin: 0;
  }
  #videos .slick-slider .slick-list .slick-slide img,
  #videos .slick-slider .slick-list .slick-slide video {
    width: 100%;
    height: 356px;
    object-fit: cover;
    border-radius: 5px;
  }
  #videos .slick-slider .slick-list .slick-track {
    transition: all 0.5s;
  }
  #videos .slick-slider .slick-list .slick-slide {
    transition: width 1s;
  }
  #videos .slick-slider .slick-list .slick-center {
    margin-top: -125px;
    width: 660px;
  }
  #videos .slick-slider .slick-list .slick-center .play {
    width: 110px;
    height: 110px;
    margin-top: -55px;
    margin-left: -55px;
    background-size: 28px;
  }
  #videos .slick-slider .slick-list .slick-center img,
  #videos .slick-slider .slick-list .slick-center video {
    width: 100%;
    height: 480px;
    border-radius: 0;
  }
  #videos .slick-slider .slick-list .slick-center .img {
    filter: none;
  }
  #videos .slick-slider .slick-list .slick-center .title {
    font-size: 30px;
    color: #fff;
    display: block;
  }
  #videos .slick-slider .slick-list .slick-center .sub-title {
    display: none;
  }
  #videos .slick-slider .slick-list .slick-center .count-tracks {
    display: block;
  }
  #videos .slick-slider .slick-list .slick-center .info {
    display: flex;
    flex-wrap: wrap;
  }
  #videos .slick-slider .slick-list .slick-center .info span {
    width: 50%;
    font-size: 12px;
    color: #B8B8BD;
    padding: 15px 0;
  }
  #videos .slick-slider .slick-list .slick-center .info span strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-top: 7px;
  }
  #videos .slick-slider .slick-list .slick-center .info span:nth-of-type(1),
  #videos .slick-slider .slick-list .slick-center .info span:nth-of-type(2) {
    border-bottom: 1px solid #252537;
  }
  #videos .slick-dots,
  #videos .slick-arrow {
    top: -125px;
  }
}
@media only screen and (min-width: 1200px) {
  #videos .container {
    padding-top: 90px;
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
  }
  #videos .container:before {
    width: 920px;
    height: 100%;
    background: #1E1F2C;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
#video-modal video {
  width: 100%;
}
#video-modal .title {
  font-size: 30px;
  color: #fff;
  display: block;
  margin-bottom: 30px;
}
#video-modal .info {
  display: flex;
  flex-wrap: wrap;
}
#video-modal .info > div {
  width: 50%;
  font-size: 12px;
  color: #B8B8BD;
  padding: 15px 0;
}
#video-modal .info > div strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-top: 7px;
}
#video-modal .info > div:nth-of-type(1),
#video-modal .info > div:nth-of-type(2) {
  border-bottom: 1px solid #252537;
}

/*.breadcrumbs {
  padding-top: 30px;
  padding-bottom: 20px;
}
.breadcrumbs a,
.breadcrumbs span {
  display: inline-block;
  font-size: 12px;
  color: #fff;
}
.breadcrumbs span {
  color: #B8B8BD;
}
.breadcrumbs a {
  margin-right: 20px;
  position: relative;
}
[dir=rtl] .breadcrumbs a {
  margin-right: 0;
  margin-left: 20px;
}
.breadcrumbs a:after {
  position: absolute;
  right: -15px;
  content: "";
  background: url('../images/ic.svg') no-repeat center;
  width: 6px;
  height: 15px;
}
[dir=rtl] .breadcrumbs a:after {
  left: -15px;
  right: auto;
}*/



.breadcrumbs {
  padding-top: 30px;
  padding-bottom: 20px;
}
.breadcrumbs a, .breadcrumbs span {
  display: inline-block;
  font-size: 12px;
  color: #fff;
}
.breadcrumbs a:last-child, .breadcrumbs span:last-child {
  color: #B8B8BD;
}
.breadcrumbs a, .breadcrumbs span {
  margin-right: 20px;
  position: relative;
}
[dir=rtl] .breadcrumbs a, [dir=rtl] .breadcrumbs span {
  margin-right: 0;
  margin-left: 20px;
}
.breadcrumbs a:not(:last-child):after,
.breadcrumbs span:not(:last-child):after {
  position: absolute;
  right: -15px;
  content: "";
  background: url('../images/ic.svg') no-repeat center;
  width: 6px;
  height: 15px;
}
[dir=rtl] .breadcrumbs a:after, [dir=rtl] .breadcrumbs span:after {
  left: -15px;
  right: auto;
}




.content-page {
  background: #191a26;
  padding: 40px 50px;
  margin-bottom: 60px;
}
.content-page p {
  font-size: 16px;
  line-height: 160%;
  color: #fff;
  font-weight: 400;
}
.content-page p strong {
  font-weight: 700;
}
.content-page ul,
.content-page ol {
  font-size: 16px;
  line-height: 160%;
  color: #fff;
  font-weight: 400;
  margin: 0 0 30px 20px;
}
.content-page ol {
  margin-bottom: 0;
}
.content-page ol li {
  margin-bottom: 15px;
}
.content-page h2 {
  margin-bottom: 20px;
}
.content-page h2 img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 40px;
}
.content-page h3 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
  margin-top: 15px;
}
#registerContentOk{
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .content-page {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .content-page {
    padding: 20px 15px;
  }
}
.content-page .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.content-page .buttons .btn {
  font-weight: 400;
  padding: 10px 20px;
  display: flex;
  margin-left: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 500px) {
  .content-page .buttons {
    width: 100%;
  }
  .content-page .buttons .btn {
    margin-left: 0;
    width: 100%;
    display: block;
  }
}
.content-page h1 {
  margin-bottom: 30px;
}
.content-page h1 span {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  font-weight: 400;
}
.content-page .col-xs-12 h1 {
  margin-bottom: 20px;
}
.small-container {
  max-width: 900px;
  margin: auto;
}
.registration-form {
  max-width: 770px;
}
.registration-form .row {
  margin-left: -25px;
  margin-right: -25px;
}
.registration-form .row > div {
  padding-left: 25px;
  padding-right: 25px;
}
.registration-form input[type=checkbox] + label {
  margin: 10px 0;
}
.registration-form input[type=text] + label,
.registration-form input[type=password] + label,
.registration-form input[type=email] + label {
  left: 25px;
}
.fancybox-is-open .fancybox-bg {
  background: #252537;
  opacity: 0.6;
}
.fancybox-slide > * {
  padding: 70px;
  max-width: 900px;
  width: 95%;
  background: #14141f;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}
.fancybox-slide > * h2 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 40px;
}
.fancybox-slide > * input {
  margin-bottom: 20px;
}
.fancybox-slide > * input[type="submit"],
.fancybox-slide > * .btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  height: 70px;
  line-height: 40px;
  display: block;
  max-width: 100%;
  width: 100%;
  cursor: pointer;
  margin: 10px 0 0 0;
  color: #fff;
}
.fancybox-slide > * .buttons-box {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .fancybox-slide > * {
    padding: 30px;
  }
}
.fancybox-slide > *#rename,
.fancybox-slide > *#remove {
  max-width: 600px;
}
.fancybox-slide > * .list-tracks {
  background: #252537;
  padding: 0 20px;
  margin-bottom: 30px;
}
.fancybox-slide > * .list-tracks label {
  margin: 12px 0;
}
.fancybox-close-small {
  background: url('../images/close.svg') no-repeat center;
  top: 70px;
  right: 70px;
}
.fancybox-close-small:after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .fancybox-close-small {
    top: 30px;
    right: 30px;
  }
}
#login {
  max-width: 600px;
}
#login p {
  color: #fff;
  font-weight: 400;
}
#login form {
  margin-top: 40px;
}
#login .btn {
  margin: 30px 0;
}
#login .text-center {
  padding-bottom: 0;
}
#login a {
  color: #fff;
}
#login a:hover {
  color: inherit;
}
#rename input[type=text] {
  margin-bottom: 40px;
}
#remove h2 {
  margin-bottom: 50px;
}
#tracks {
  margin-bottom: 60px;
}
#tracks .row {
  align-items: center;
}
#tracks .row .align-right {
  flex-wrap: wrap;
}
#tracks .container {
  background: #191A26;
  padding: 50px;
}
.foundTracksFilter .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.foundTracksFilter .buttons .btn {
  font-weight: 400;
  padding: 10px 20px;
  display: flex;
  margin-left: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
  #tracks .container {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #tracks .container {
    padding: 25px 15px;
  }
  #tracks .container .row > div {
    flex-wrap: wrap;
  }
}
#tracks .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
#tracks .buttons .btn {
  font-weight: 400;
  padding: 10px 20px;
  display: flex;
  margin-left: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 500px) {
  #tracks .buttons {
    width: 100%;
  }
  #tracks .buttons .btn {
    margin-left: 0;
    width: 100%;
    display: block;
  }
}
#tracks h1 span {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  font-weight: 400;
}
.show-more {
  width: 100%;
  max-width: 450px;
  margin: 50px auto 0;
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding: 25px 20px;
}
#similar .list-categories {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1%;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 30px;
}
#similar .list-categories a {
  font-size: 16px;
  line-height: 20px;
  padding: 15px 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  background: #1E1F2C;
  display: inline-block;
  text-align: center;
  width: 24%;
  margin-left: 1%;
  margin-bottom: 10px;
}
#similar .list-categories a:hover,
#similar .list-categories a.active {
  background: #4E5086;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #similar .list-categories {
    margin-left: -2%;
  }
  #similar .list-categories a {
    width: 48%;
    margin-left: 2%;
  }
}
#similar .tagsList {
  background: #252537;
  font-size: 14px;
  color: #fff;
  line-height: 21px;
  padding: 6px 8px;
  vertical-align: middle;
  display: inline-block;
  margin: 0 1px 10px 1px;
  pointer-events: none;
}
#similar .tagsList:before {
  display: none;
}
#similar .tagsList:after {
  background: url('../images/close-white.svg') no-repeat center;
  width: 10px;
  height: 10px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  pointer-events: all;
  cursor: pointer;
}
#similar .tagsList.style-2 {
  font-size: 16px;
  line-height: 150%;
  background: none;
  border-bottom: 1px solid #4E5086;
  padding: 0 33px 20px 0;
  position: relative;
  margin-bottom: 36px;
}
#similar .tagsList.style-2:after {
  position: absolute;
  bottom: 20px;
  right: 6px;
}
#similar .tagsList.style-2 h3 {
  font-size: 12px;
  color: #B8B8BD;
  opacity: 0.7;
  margin-bottom: 10px;
}
#similar .similarTab {
  display: none;
}
#similar .similarTab.active {
  display: block;
}
#similar .wrap-input {
  margin-top: 10px;
}
#track-info h3 {
  font-size: 14px;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 10px;
}
#track-info p {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  line-height: 150%;
}
#track-info .row {
  margin-left: -25px;
  margin-right: -25px;
}
#track-info .row > div {
  padding-bottom: 30px;
  padding-left: 25px;
  padding-right: 25px;
}
.control-group {
  background: rgba(184, 6, 9, 0.2);
  color: #fff;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.filter-sort {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.filter-sort label {
  margin-right: 20px;
  margin-left: 50px;
  font-size: 14px;
  color: #fff;
}
.filter-sort .btn {
  font-weight: 400;
  padding: 10px 20px;
  display: flex;
  margin-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .filter-sort label {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 500px) {
  .filter-sort {
    width: 100%;
    display: block;
  }
  .filter-sort label {
    margin-left: 0;
    margin-bottom: 5px;
    display: block;
  }
}
.found-search {
  padding: 0;
  margin-bottom: 20px;
  font-size: 14px;
}
.wrap-input {
  position: relative;
}
.wrap-input label {
  left: 0!important;
}
.list-letters {
  list-style: none;
  margin: 0 0 0 -5px;
  padding: 0;
  display: flex;
  overflow-x: auto;
  padding-bottom: 20px;
}
.list-letters li {
  margin: 5px 0 0 5px;
}
.list-letters a {
  font-size: 16px;
  color: #fff;
  background: #1E1F2C;
  border-radius: 5px;
  display: block;
  line-height: 20px;
  text-align: center;
  padding: 10px;
  width: 40px;
}
.list-letters a:hover,
.list-letters a.active {
  background: #FF6A06;
}
.padding-bottom {
  padding-bottom: 60px;
}
.catalog {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 -17px;
}
.catalog a {
  display: block;
  padding: 17px;
  position: relative;
}
.catalog a .img {
  display: block;
  border-radius: 5px;
  margin-bottom: 15px;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  position: relative;
}
.catalog a .title {
  font-size: 16px;
  font-weight: 500;
  color: #B8B8BD;
  display: block;
}
.catalog a:hover .img {
  filter: none;
}
@media only screen and (min-width: 1299px) {
  .catalog a {
    width: 14.2%;
  }
}
@media only screen and (max-width: 1300px) {
  .catalog a {
    width: 16.66%;
  }
}
@media only screen and (max-width: 1100px) {
  .catalog a {
    width: 20%;
  }
}
@media only screen and (max-width: 991px) {
  .catalog a {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .catalog a {
    width: 33.333%;
  }
}
@media only screen and (max-width: 500px) {
  .catalog a {
    width: 50%;
  }
}
@media only screen and (min-width: 1300px) {
  .catalog.albums a {
    width: 20%;
  }
}
.catalog .label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px 12px;
  background: #FF6A06;
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  top: 32px;
  left: 32px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  z-index: 5;
  color: #fff;
}
.play {
  width: 90px;
  height: 90px;
  background: url('../images/play-white.svg') no-repeat center;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  border: 3px solid #fff;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -45px;
  margin-left: -45px;
}
.img {
  position: relative;
}
.img:hover .play {
  background: #14141f url('../images/play.svg') no-repeat center / 18px;
  border-color: #14141f;
}
#accordion {
  padding-bottom: 20px;
}
#accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 10px 0 0 0 ;
  padding: 22px 64px 22px 20px;
  font-size: 18px;
  font-weight: 500;
  background: #252537;
  border-radius: 5px;
  border: none;
}
#accordion .ui-accordion-header .ui-icon {
  background: url('../images/arrow-white.svg') no-repeat center / 16px;
  width: 24px;
  height: 24px;
  display: block;
  margin: -12px 0 0 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transition: all 0.4s ease;
}
#accordion .ui-accordion-header.ui-accordion-header-active {
  border-radius: 5px 5px 0 0;
}
#accordion .ui-accordion-header.ui-accordion-header-active .ui-icon {
  transform: rotate(-180deg);
}
#accordion .ui-accordion-content {
  padding: 20px;
  margin: 0 0 20px;
  border-top: 0;
  overflow: auto;
  background: #1E1F2C;
  border-radius: 0 0 5px 5px;
  border: none;
}
[dir=rtl] #accordion .ui-accordion-header {
  padding: 22px 20px 22px 64px;
}
[dir=rtl] #accordion .ui-accordion-header .ui-icon {
  left: 20px;
  right: auto;
}
#map {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 60px;
}
#map img {
  width: 100%;
  height: auto;
}
#map iframe {
  width: 100%;
  height: 450px;
  border-radius: 5px;
  overflow: hidden;
}
.contact-form {
  margin-bottom: 60px;
}
.contact-form .row {
  margin-left: -25px;
  margin-right: -25px;
}
.contact-form .row > div {
  padding-left: 25px;
  padding-right: 25px;
}
.contact-form button {
  display: block;
  max-width: 100%;
  font-size: 18px;
  line-height: 40px;
  height: 70px;
  margin: 30px 0 0;
}
.contact-form input[type=checkbox] + label {
  margin: 10px 0;
}
.contact-form input[type=text] + label,
.contact-form input[type=password] + label,
.contact-form input[type=email] + label {
  left: 25px;
}
.contact-info {
  margin-top: -100px;
  margin-bottom: 75px;
  text-align: center;
}
.contact-info * {
  color: #fff;
}
.contact-info .row {
  margin-left: -25px;
  margin-right: -25px;
}
.contact-info .row > div {
  padding-left: 25px;
  padding-right: 25px;
}
.contact-info .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #14141f;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.country {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 25px 0 40px;
}
.country svg,
.country img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .reports-history .rename,
  .reports-history .remove {
    margin: 0;
  }
  .reports-history .tr {
    padding-right: 0;
  }
  .reports-history .tr .td strong {
    min-width: 170px;
  }
  .reports-history .tr .td:last-child {
    padding-top: 5px;
  }
}
.generate-raport {
  margin-top: 80px;
}
.wrap-drag-drop {
  max-width: 490px;
  margin: 30px auto 50px;
}
#dropContainer {
  background: #14141f;
  border: 1px solid #4E5086;
  border-radius: 5px;
  color: #B8B8BD;
  font-size: 14px;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#dropContainer svg {
  margin-bottom: 20px;
}
#dropContainer:hover {
  color: #fff;
}
#dropContainer:hover svg path {
  stroke: #fff;
}
.wrap-table {
  overflow-x: auto;
}
#albums-carousel {
  margin: 0;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) {
  #albums-carousel .slick-slider .slick-list {
    overflow: visible;
  }
  #albums-carousel .slick-slider .slick-list .title {
    font-size: 16px;
  }
  #albums-carousel .slick-slider .slick-list .count-tracks {
    display: none;
  }
  #albums-carousel .slick-slider .slick-list .slick-track {
    transition: left 0.1s;
  }
  #albums-carousel .slick-slider .slick-list .slick-slide {
    transition: all 1s ease;
  }
  #albums-carousel .slick-slider .slick-list .slick-center {
    transform: scale(1.2);
    margin: 0 35px;
  }
  #albums-carousel .slick-slider .slick-list .slick-center .img {
    filter: none;
  }
  #albums-carousel .slick-slider .slick-list .slick-center .title {
    font-size: 18px;
    color: #fff;
  }
  #albums-carousel .slick-slider .slick-list .slick-center .count-tracks {
    display: block;
  }
}
.stiky {
  background: #FF6A06;
  overflow: hidden;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 10000;
  left: 0;
  display: none;
}
@media (max-width: 767px) {
  .stiky {
    display: block;
  }
}
.stiky .row > div {
  display: flex;
  align-items: center;
}
.stiky .stiky-player {
  border-top: 1px solid #1E1F2C;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .stiky .stiky-player .row {
    flex-direction: row-reverse;
  }
  .stiky .stiky-player .row .play-box {
    min-width: 100%;
  }
  .stiky .stiky-player .row .player_play {
    margin-right: 0;
    margin-left: auto;
  }
  .stiky .stiky-player .row .player_prevplay,
  .stiky .stiky-player .row .player_nextplay,
  .stiky .stiky-player .row .volume-box {
    display: none;
  }
}
.stiky .player_play,
.stiky .payer_pause {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer !important;
  margin: 0 20px;
  display: block;
}
.stiky .player_play {
  background: url('../images/play-white-2.svg') no-repeat 58% center / 14px;
}
.stiky .player_play:hover {
  background-image: url('../images/play-black.svg');
}
.stiky .payer_pause {
  background: url('../images/pause.svg') no-repeat center / 12px;
}
.stiky .payer_pause:hover {
  background-image: url('../images/pause-black.svg');
}
.stiky .player_prevplay,
.stiky .player_nextplay {
  width: 25px;
  height: 25px;
  cursor: pointer;
  display: block;
  background: url('../images/prev-play.svg') no-repeat center / 20px;
}
.stiky .player_prevplay:hover,
.stiky .player_nextplay:hover {
  background-image: url('../images/prev-play-black.svg');
}
.stiky .player_nextplay {
  transform: rotate(180deg);
}
.stiky .play-box {
  min-width: 125px;
  display: flex;
  align-items: center;
}
.stiky .volume-box {
  min-width: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  margin-left: 40px;
}
@media only screen and (max-width: 1130px) {
  .stiky .volume-box {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .stiky .volume-box {
    display: none;
  }
}
.stiky .player_volume {
  width: 21px;
  height: 21px;
  cursor: pointer;
  display: inline-block;
  margin-right: 15px;
  background: url('../images/volume.svg') no-repeat center / 20px;
}
.stiky .player_volume:hover {
  background-image: url('../images/volume-black.svg');
}
.stiky #player-volume {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 52px;
  height: 13px;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
}
.stiky #player-volume:focus {
  outline: none;
}
.stiky #player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 0px solid #fff;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  margin-top: -5px;
  box-shadow: calc(-100vmax - 12px) 0 0 100vmax #fff;
  clip-path: polygon(100% 0, 2px 0, 0 8px, -100vmax 7px, -100vmax 11px, 0 5px, 2px 100%, 100% 100%);
}
.stiky #player-volume::-moz-range-track {
  background: #fff;
}
.stiky #player-volume::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 0px solid #fff;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  margin-top: -5px;
}
.stiky #player-volume::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 3px;
  background: #FFB482;
  border: none;
}
.stiky .player-track-img {
  width: 46px;
  height: 46px;
  border-radius: 5px;
  margin-right: 15px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .stiky .player-track-img {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
.stiky .player-track-name {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.stiky .player-track-info {
  position: relative;
  z-index: 100000;
}
.stiky .player-track-info:hover .tooltiptext {
  visibility: visible;
  z-index: 20000;
}
.stiky .tooltiptext {
  visibility: hidden;
  background-color: #14141f;
  color: #B8B8BD;
  font-size: 14px;
  font-weight: 400;
  padding: 0px 20px;
  border-radius: 5px;
  max-width: 425px;
  bottom: 80%;
  left: 71px;
  line-height: 20px;
  position: absolute;
  z-index: 10003;
  width: 425px;
}
.stiky .tooltiptext a,
.stiky .tooltiptext span {
  color: #fff;
}
.stiky .tooltiptext dl dt {
  width: 70px;
  float: left;
}
.stiky .tooltiptext dl dd {
  margin: 12px 0 12px 70px;
}
.stiky .current-track-time {
  font-size: 12px;
  font-weight: 400;
  margin-right: 15px;
  display: inline-block;
  color: #FFF;
  min-width: 25px;
}
.stiky .track-time {
  font-size: 12px;
  font-weight: 400;
  margin-left: 15px;
  display: inline-block;
  color: #fff;
}
.stiky .link {
  font-size: 14px;
  color: #fff;
  float: right;
  margin-left: auto;
  min-width: 90px;
  padding-left: 15px;
}
.stiky .link:hover {
  color: #14141f;
}
.stiky .link:hover svg path {
  stroke: #14141f;
}
.stiky .add,
.stiky .download,
.stiky .share {
  width: 24px;
  height: 24px;
  text-align: center;
  display: block;
  margin: 0 0 0 30px;
}
.stiky .add {
  background: url('../images/add-white.svg') no-repeat center / 19px;
}
.stiky .add:hover {
  background-image: url('../images/add-black.svg');
}
.stiky .download {
  background: url('../images/download-white.svg') no-repeat center / 19px;
}
.stiky .download:hover {
  background-image: url('../images/download-black.svg');
}
.stiky .share {
  background: url('../images/share-white.svg') no-repeat center / 19px;
}
.stiky .share:hover {
  background-image: url('../images/share-black.svg');
}
.stiky .project-buttons {
  height: 32px;
  overflow: hidden;
  width: 100%;
}
[dir=rtl] .tooltiptext {
  text-align: right;
}
.closePlayer {
  position: fixed;
  font-size: 12px;
  font-weight: 400;
  background-color: #FF6A06;
  left: 0;
  bottom: 134px;
  width: 100%;
  height: 50px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  z-index: 9999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.closePlayer:hover {
  color: #14141f;
}
.closePlayer:hover svg path {
  stroke: #14141f;
}
.closePlayer.openPlayer {
  bottom: 0;
}
.closePlayer.openPlayer svg {
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .closePlayer {
    bottom: 67px;
    height: 35px;
  }
  .closePlayer.openPlayer {
    height: 35px;
  }
}
.stiky-menu {
  padding: 0px 0 15px;
}
.stiky-menu #options {
  margin-left: 5px;
}
.stiky-menu #options .btn {
  font-size: 14px;
  font-weight: 400;
  padding: 12px 20px;
}
.stiky-menu #options .btn i:before {
  background-size: 16px;
}
.stiky-menu #my-projects {
  margin-left: 5px;
}
.stiky-menu #my-projects > div {
  display: flex;
  align-items: center;
}
.stiky-menu #my-projects .btn {
  font-size: 14px;
  font-weight: 400;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.2);
  margin: 2px 0;
}
.stiky-menu #my-projects .btn:hover {
  background: rgba(20, 20, 20, 0.3);
}
@media only screen and (max-width: 767px) {
  .stiky-menu {
    background: #14141f;
    height: 90vh;
    overflow: auto;
    padding-top: 50px;
    display: none;
  }
  .stiky-menu #options {
    margin: 0;
    width: 100%;
  }
  .stiky-menu #options .btn {
    display: block;
    width: 100%;
    margin-top: 25px;
    text-align: left;
    line-height: 150%;
    padding: 20px;
  }
  .stiky-menu .options-button {
    max-width: 100%;
    margin: 20px 0 55px;
  }
  .stiky-menu .options-button a {
    padding: 20px;
  }
  .stiky-menu #my-projects {
    margin: 0;
    width: 100%;
  }
  .stiky-menu #my-projects .btn {
    display: block;
    background: none;
    text-align: left;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 30px;
  }
  .stiky-menu #my-projects .project-buttons {
    height: auto;
    width: 100%;
  }
  .stiky-menu #my-projects .link {
    display: none;
  }
}
.options-button {
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  max-width: 270px;
  width: 100%;
}
.options-button a {
  font-size: 14px;
  line-height: 20px;
  padding: 13px 20px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  display: block;
  text-align: center;
  margin: 0;
  width: 50%;
  white-space: nowrap;
}
.options-button a.active {
  background: #4E5086;
}
.options-box {
  display: none;
}
.options-box.active {
  display: block;
}
.add-box {
  max-width: 600px;
  padding: 70px;
}
.add-box .select-style .select-selected {
  background: transparent;
  border-bottom: 1px solid #4E5086;
  border-radius: 0;
}

.add-box .list-tracks {
  margin-top: 20px;
  background: #1E1F2C;
  min-height: 50px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .add-box .list-tracks {
    min-height: 50px;
  }
}
.add-box .btn {
  font-size: 14px;
  font-weight: 400;
  padding: 12px 20px;
  display: inline-block;
  height: auto;
  width: auto;
  line-height: 20px;
}
.add-box .btn.with-border {
  float: right;
}

.options-box-button.disabled,
.options-box-button.disabled:hover {
  background: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

@media (max-width: 450px) {
  .add-box .btn {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .add-box {
    padding: 20px;
  }
}
#add-project .add-project-name {
  padding: 0;
  margin: 0 15px 10px 0;
  background: #252537;
  position: relative;
}
#add-project .add-project-name:after {
  content: "";
  background: url('../images/plus.svg') no-repeat center / 20px;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -10px;
}
/*#add-project input {
  padding: 17px 40px 17px 20px;
  border: 1px solid #4E5086;
  margin: 0;
}*/
#add-project .select-style .select-selected {
  padding-left: 0;
}
footer {
  background: #252537;
  padding: 40px 0;
}
footer .row {
  align-items: center;
}
footer .navigation {
  width: 100%;
  text-align: center;
}
footer .navigation li {
  padding-top: 3px;
  padding-bottom: 3px;
}
@media only screen and (max-width: 767px) {
  footer {
    text-align: center;
  }
  footer .navigation {
    margin-top: 30px;
  }
  footer .navigation li {
    padding: 5px 15px;
  }
  footer .align-right {
    justify-content: center !important;
    margin-top: 30px;
  }
}
.carouselAlbum,
.carousel-col-5,
.carousel-collection {
	opacity: 0;
}

.carouselAlbum.slick-slider,
.carousel-col-5.slick-slider,
.carousel-collection.slick-slider {
	opacity: 1;
}
input[type=password] {
	background: none;
	padding-right: 0;
}
.fancybox-slide > * input[type="submit"], .fancybox-slide > * .btn {
	border: none;
}
.stiky {
	overflow: visible;
}
[dir=rtl] #video-modal .info,
[dir=rtl] #login p,
[dir=rtl] input[type=text],
[dir=rtl] input[type=password],
[dir=rtl] input[type=email],
[dir=rtl] input[type=search],
[dir=rtl] #video-modal .title,
[dir=rtl] .fancybox-slide > * h2 {
	text-align: right;
}
[dir=rtl] input[type=text] + label,
[dir=rtl] input[type=password] + label,
[dir=rtl] input[type=email] + label {
	left: auto;
	right: 10px;
}

[dir=rtl] .registration-form input[type=text] + label,
[dir=rtl] .registration-form input[type=password] + label,
[dir=rtl] .registration-form input[type=email] + label  {
	left: auto;
	right: 25px;
}
.stiky-menu #my-projects .btn {
	margin: 2px;
}

.catalog a .img .videoImage {
	width: 100% !important;
}

[dir=rtl] .fancybox-close-small {
	right: auto;
	left: 70px;
}
.play {
	transform: scale(0.6);
}
[dir=rtl] .search-box input[type="text"] {
	background-image: none;
	padding: 0 55px 0 20px;
}
[dir=rtl] .search-box:before {
    position: absolute;
    top: 0;
    right: 0;
    background: #252537 url(../images/search.svg) no-repeat 20px center;
    content: "";
    width: 55px;
    height: 55px;
    display: block;
	-webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

[dir=rtl] .filter-box input[type=submit].search,
[dir=rtl] .filter-box button.search {
	background-image: none;
	border-radius: 0 0 0 5px;
}
[dir=rtl] header .row.bottom .col-md-1 {
	position: relative;
}
[dir=rtl] header .row.bottom .col-md-1:after {
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/search.svg) no-repeat center 30%;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
	-webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
[dir=rtl] .search-box-2 {
	position: relative;
}
[dir=rtl] .search-box-2:after {
	position: absolute;
    top: 0;
    right: 0;
    background: url(../images/search.svg) no-repeat 20px center;
    content: "";
    width: 55px;
    height: 55px;
    display: block;
	-webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
[dir=rtl] .search-box-2 input[type="text"] {
    background-image: none;
	padding: 0 55px 0 20px;
}

[dir=rtl] .mobile-search img {
	-webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.nicescroll-rails {
	opacity: 0;
	display: none;
}

[dir=rtl] .search-box .dropdown, 
[dir=rtl] .search-box .star {
	border-left: none;
	border-right: 1px solid #14141f;
}

[dir=rtl] .lang li {
    margin-left: 0;
    margin-right: 13px;
}

[dir=rtl] .lang li:first-child {
    margin: 0;
}
[dir=rtl] .table .add,
[dir=rtl] .stiky .add {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}
[dir=rtl] #track-info,
[dir=rtl] #similar {
	text-align: right;
}
[dir=rtl] .text-center {
    text-align: center;
}
.slick-slider .slick-dots {
	width: 235px;
	flex-wrap: wrap;
	overflow:hidden;
}
.slick-slider .slick-dots button {
	margin:6px;
}
.stiky .project-buttons {
	height: 34px;
}
[dir=rtl] #tracks .buttons .btn {
	margin-left: 0px;
	margin-right: 20px;
}
body .searchautocomplete {
	z-index: 99999;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 300px;
    max-width: 400px;
    background-color: #1E1F2C;
    border:1px solid #1E1F2C!important;
    width: 100%;
    padding: 0px;
    border-radius: 4px;
    box-sizing: content-box;
}
body .searchautocomplete .autocompleteItem {
	padding: 12px 20px;
	border: none!important;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
}
body .searchautocomplete .autocompleteItem .autocompleteLabel{
	color: #fff;
}

body .searchautocomplete .autocompleteItem.ui-state-active {
	background: #252537;
	border: none!important;
	margin: 0;
}
@media only screen and (max-width: 991px) {
	[dir=rtl] .buttons a {
        margin-left: 0px;
		margin-right: 10px;
    }
	
    [dir=rtl] .buttons a:first-child {
        margin-left: 0px;
        margin-right: 0px;
    }
}
.closePlayer {
	z-index: 9999;
}
@media only screen and (max-width: 767px) {
    [dir=rtl] .search-box {
        padding-right: 0px;
        padding-left: 60px;
    }
	
	[dir=rtl] .search-box input[type="text"] + .search {
		right: auto;
		left: 0;
		border-radius: 0;
		background: #4E5086 url(../images/search.svg) no-repeat center;
		-webkit-transform: scaleX(-1);
		transform: scaleX(-1);
	}
}

input.errorFormsAlarm {
	background: transparent!important;
	border-color: red;
	color: #fff!important;
}
.g-recaptcha.errorFormsAlarm {
	background: transparent!important;
	color: #fff!important;
}
.ui-autocomplete-input.errorFormsAlarm,
.g-recaptcha.errorFormsAlarm > div {
	border: 1px solid red!important;
}

@media only screen and (max-width: 500px) {
	[dir=rtl] #tracks .buttons .btn {
		margin-right: 0px;
	}
}

@media only screen and (max-width: 767px) {
    [dir=rtl] .table .track-name {
        padding: 0;
    }
	
	[dir=rtl] .mobile-menu {
        margin-left: 0px;
        margin-right: 15px;
    }
}

#videos-new .videoItem {
	margin: 30px
}
#videos-new .videoItem.slick-center {
	transform: scale(1.08);
}
#videos-new .videoImage {
	width: 100%!important;
}
#videos-new .slick-slider .slick-list .slick-slide {
	width: auto;
}

#videos-new .play {
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  background-size: 18px;
}
#videos-new .slick-slider .slick-list .slick-slide .title {
  display: none;
  font-size: 30px;
  color: #fff;
  margin-bottom: 30px;
}
#videos-new .slick-slider .slick-list .slick-slide .info {
  display: none;
}
@media only screen and (max-width: 767px) {
   #videos-new .slick-slider .slick-list .slick-slide .sub-title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  #videos-new .slick-slider .slick-list .slick-slide img,
  #videos-new .slick-slider .slick-list .slick-slide video {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 5px;
  }
}
@media only screen and (min-width: 992px) {
  #videos-new .container {
    padding-top: 90px;
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
  }
 #videos-new .container:before {
    width: 620px;
    height: 100%;
    background: #1E1F2C;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #videos-new h2 {
    margin-bottom: 90px;
    position: relative;
  }
  #videos-new .slick-slider .slick-list {
    overflow: visible;
  }
  #videos-new .slick-slider .slick-list .title {
    font-size: 16px;
  }
  #videos-new .slick-slider .slick-list .count-tracks {
    display: none;
  }
  #videos-new .slick-slider .slick-list .slick-slide img,
  #videos-new .slick-slider .slick-list .slick-slide video {
    width: 100%;
    height: 356px;
    object-fit: cover;
    border-radius: 5px;
  }
  #videos-new .slick-slider .slick-list .slick-track {
    transition: all 0.5s;
  }
  #videos-new .slick-slider .slick-list .slick-slide {
    transition: width 1s;
  }
#videos-new .slick-slider .slick-list .slick-center {
	margin-top: -125px;
}
  #videos-new .slick-slider .slick-list .slick-center .play {
    width: 110px;
    height: 110px;
    margin-top: -55px;
    margin-left: -55px;
    background-size: 28px;
  }
  #videos-new .slick-slider .slick-list .slick-center img,
  #videos-new .slick-slider .slick-list .slick-center video {
    width: 100%;
    height: 480px;
    border-radius: 0;
  }
  #videos-new .slick-slider .slick-list .slick-center .img {
    filter: none;
  }
 #videos-new .slick-slider .slick-list .slick-center .title {
    font-size: 30px;
    color: #fff;
    display: block;
  }
  #videos-new .slick-slider .slick-list .slick-center .sub-title {
    display: none;
  }
  #videos-new .slick-slider .slick-list .slick-center .count-tracks {
    display: block;
  }
  #videos-new .slick-slider .slick-list .slick-center .info {
    display: flex;
    flex-wrap: wrap;
  }
  #videos-new .slick-slider .slick-list .slick-center .info span {
    width: 50%;
    font-size: 12px;
    color: #B8B8BD;
    padding: 15px 0;
  }
  #videos-new .slick-slider .slick-list .slick-center .info span strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-top: 7px;
  }
  #videos-new .slick-slider .slick-list .slick-center .info span:nth-of-type(1),
  #videos-new .slick-slider .slick-list .slick-center .info span:nth-of-type(2) {
    border-bottom: 1px solid #252537;
  }
  #videos-new .slick-dots,
  #videos-new .slick-arrow {
    top: -125px;
  }
}
@media only screen and (min-width: 1200px) {
  #videos-new .container {
    padding-top: 90px;
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
  }
  #videos-new .container:before {
    width: 920px;
    height: 100%;
    background: #1E1F2C;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

#new-albums .slick-dots,
#albums-carousel .slick-dots,
#mom-collection .slick-dots {
	display: none!important;
}