/*----------------------------------------
[Master Stylesheet]

Project:	E&P
Version:	1.0
----------------------------------------*/
/*----------------------------------------
[Table of contents]

1. Common styles
2. Typography
3. Header
4. Search
5. Sidebar
6. Content
7. Home carousel
8. Article carousel
9. Release post
10. Event post
11. News post
12. Artist post
13. Store post
14. Release page
15. Artist page
16. Event page
17. Article page
18. Store item
19. Cart page
20. Contacts page
21. Track
22. Store box
23. Forms
24. Tracklist
25. Tabs
26. Comments
27. Footer
28. Page 404
29. Player
----------------------------------------*/
/*==============================
	Common styles
==============================*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'Hind', sans-serif;
  font-weight: 400;
  background-color: #7276E8; /* #A972E8; */
  -webkit-font-smoothing: antialiased;
}
button {
  padding: 0;
  border: none;
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
}
button:focus {
  outline: none;
}
a {
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  color: #fff;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
  color: #fff;
}
input,
textarea,
select {
  padding: 0;
  margin: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
::-moz-selection {
  background: #09112D;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #09112D;
  color: #fff;
  text-shadow: none;
}
::-webkit-input-placeholder {
  color: #09112D;
  opacity: 1;
}
::-moz-placeholder {
  color: #09112D;
  opacity: 1;
}
:-moz-placeholder {
  color: #09112D;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #09112D;
  opacity: 1;
}
.default-btn {
  height: 40px;
  line-height: 43px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  background-color: #09112D;
  -webkit-box-shadow: 0 5px 20px rgba(68,73,81,0.45);
  box-shadow: 0 5px 20px rgba(68,73,81,0.45);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.6px;
  display: inline-block;
  text-align: center;
  width: auto;
  padding: 0 20px;
  min-width: 120px;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.default-btn:hover,
.default-btn:focus {
  color: #fff;
  background-color: #09112D;
  -webkit-box-shadow: 0 5px 20px rgba(68,73,81,0.6);
  box-shadow: 0 5px 20px rgba(68,73,81,0.6);
}
.default-btn--red {
  background-color: #A972E8;
  -webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.45);
  box-shadow: 0 5px 20px rgba(0,0,0,0.45);
}
.default-btn--red:hover,
.default-btn--red:focus {
  background-color: #63BFFF;
  -webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.6);
  box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}
.default-btn--white {
  color: #09112D;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 20px rgba(255,255,255,0.2);
  box-shadow: 0 5px 20px rgba(255,255,255,0.2);
}
.default-btn--white:hover,
.default-btn--white:focus {
  color: #09112D;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 20px rgba(255,255,255,0.4);
  box-shadow: 0 5px 20px rgba(255,255,255,0.4);
}
.default-btn--center {
  display: block;
  margin: 15px auto 10px;
}
@media (min-width: 992px) {
  .default-btn {
    height: 44px;
    line-height: 47px;
    -webkit-border-radius: 44px;
    border-radius: 44px;
    font-size: 14px;
  }
  .default-btn--center {
    margin: 5px auto 15px;
  }
}
/* grids */
.row--grid {
  margin-right: -5px;
  margin-left: -5px;
}
.row--grid [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.row--grid-big {
  margin-right: -20px;
  margin-left: -20px;
}
.row--grid-big [class*="col-"] {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .row--grid {
    margin-right: -10px;
    margin-left: -10px;
  }
  .row--grid [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--grid-big [class*="col-"] {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .row--grid-big [class*="col-"] {
    margin-bottom: 20px;
  }
}
/* owl carousel dots customized */
.owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-dots .owl-dot {
  display: inline-block;
  margin: 0 6px;
}
.owl-dots .owl-dot span {
  display: block;
  width: 5px;
  height: 5px;
  -webkit-backface-visibility: visible;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  background-color: rgba(255,255,255,0.65);
  margin: 0 5px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.owl-dots .owl-dot.active span {
  background-color: #f65656;
}
@media (min-width: 768px) {
  .owl-dots {
    bottom: 25px;
  }
}
.owl-carousel .owl-item img {
  width: auto;
}
.dropdown-backdrop {
  z-index: -2;
}
/* scroll bar style 1 */
.mCS-custom-bar1 {
  opacity: 1;
}
.mCS-custom-bar1.mCSB_outside + .mCSB_scrollTools {
  right: 2px;
  top: 15px;
  bottom: 15px;
}
.mCS-custom-bar1.mCSB_scrollTools .mCSB_draggerRail {
  background-color: rgba(146,153,158,0.25);
}
.mCS-custom-bar1.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(68,73,81,0.6);
  width: 2px;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.mCS-custom-bar1.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(68,73,81,0.8);
}
.mCS-custom-bar1.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-custom-bar1.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: rgba(68,73,81,0.8);
}
/* scroll bar style 2 */
.mCS-custom-bar2 {
  opacity: 1;
}
.mCS-custom-bar2.mCSB_outside + .mCSB_scrollTools {
  right: 2px;
  top: 20px;
  bottom: 20px;
}
.mCS-custom-bar2.mCSB_scrollTools .mCSB_draggerRail {
  background-color: rgba(146,153,158,0.35);
}
.mCS-custom-bar2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(255,255,255,0.65);
  width: 2px;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.mCS-custom-bar2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(255,255,255,0.85);
}
.mCS-custom-bar2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-custom-bar2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: rgba(255,255,255,0.85);
}
@media (min-width: 1200px) {
  .mCS-custom-bar2.mCSB_outside + .mCSB_scrollTools {
    top: 25px;
    bottom: 25px;
  }
}
/* font awesome render fix */
.fa {
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
}
/*==============================
	Typography
==============================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #09112D;
  font-weight: 300;
}
/*==============================
	Header
==============================*/
.header {
  display: block;
  position: fixed;
  top: 0;
  background-color: #09112D;
  z-index: 99;
  width: 100%;
  height: 50px;
  padding: 0 20px;
}
.header:after {
  content: '';
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  width: 100%;
  -webkit-box-shadow: 0 0 32px rgba(0,0,0,0.18);
  box-shadow: 0 0 32px rgba(0,0,0,0.18);
}
.header__mobile-menu {
  display: inline-block;
  float: left;
  width: 20px;
  height: 50px;
  margin-right: 15px;
  position: relative;
  color:#63BFFF;
}
.header__mobile-menu span {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 0;
  height: 20px;
  width: 20px;
  font-size: 20px;
  line-height: 20px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.header__mobile-menu span.lnr-cross {
  opacity: 1;
  font-size: 0;
}
.header__mobile-menu--active span.lnr-cross {
  opacity: 1;
  font-size: 20px;
  color:#63BFFF;
}
.header__mobile-menu--active span.lnr-menu {
  font-size: 0;
  opacity: 0;
}
.header__logo {
  display: inline-block;
  float: left;
  line-height: 50px;
}
.header__actions {
  display: inline-block;
  float: right;
  margin-top:20px;
  color: #63BFFF;
  font-size: 1.1em;
}
.header__actions:hover {
    color: #fff;
}
.header__actions-item {
  display: inline-block;
  float: left;
  margin-left: 8px;
  position: relative;
}
.header__actions-item:first-child {
  margin-left: 0;
}
.header__actions-item.open .header__user-menu {
  pointer-events: auto;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.header__actions-btn {
  display: block;
  font-size: 20px;
  color: #09112D;
  min-width: 30px;
  position: relative;
  height: 50px;
  line-height: 50px;
  text-align: center;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__actions-btn span {
  display: block;
  line-height: 50px;
}
.header__actions-btn span.lnr-magnifier {
  font-size: 18px;
}
.header__actions-btn:hover,
.header__actions-btn:focus {
  color: #92999e;
}
.header__user-btn {
  display: block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 40px;
  height: 50px;
}
.header__user-btn img {
  width: 100%;
}
.header__user-menu {
  position: absolute;
  display: block;
  top: 100%;
  width: 180px;
  right: 0;
  left: auto;
  background-color: #fff;
  padding: 15px;
  z-index: -1;
  will-change: transform;
  -webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.18);
  box-shadow: 0 0 10px rgba(0,0,0,0.18);
}
.header__user-menu:before {
  content: '';
  position: absolute;
  height: 10px;
  top: -10px;
  left: -10px;
  right: -10px;
  background-color: #fff;
}
.header__user-menu a {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: #09112D;
  line-height: 30px;
  letter-spacing: 0.8px;
}
.header__user-menu a:hover,
.header__user-menu a:focus {
  background-color: transparent;
  color: #92999e;
}
.header__user-menu .delimiter {
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgba(68,73,81,0.1);
  margin: 5px 0;
}
.header__cart {
  display: block;
  position: absolute;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  background-color: #f65656;
  font-size: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  width: auto;
  min-width: 14px;
  height: 14px;
  line-height: 14px;
  right: 0;
  top: 10px;
}
.header__cart:empty {
  display: none;
}
@media (min-width: 768px) {
  .header {
    padding: 0 25px;
  }
  .header__mobile-menu {
    width: 24px;
  }
  .header__mobile-menu span {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
  .header__mobile-menu--active span.lnr-cross {
    font-size: 24px;
  }
  .header__actions-item {
    margin-left: 12px;
  }
  .header__actions-btn {
    font-size: 24px;
  }
  .header__actions-btn span.lnr-magnifier {
    font-size: 20px;
  }
  .header__user-menu {
    width: 200px;
  }
  .header__user-menu li a {
    font-size: 16px;
  }
  .header__user-menu .delimiter {
    margin: 10px 0;
  }
}
@media (min-width: 1200px) {
  .header {
    height: 60px;
  }
  .header:after {
    height: 60px;
  }
  .header__mobile-menu {
    display: none;
  }
  .header__logo {
    line-height: 60px;
  }
  .header__actions-item {
    margin-left: 20px;
  }
  .header__actions-btn {
    height: 60px;
    line-height: 60px;
  }
  .header__actions-btn span {
    line-height: 60px;
  }
  .header__user-btn {
    height: 60px;
  }
  .header__cart {
    top: 15px;
  }
}
@media (min-width: 1600px) {
  .header {
    padding: 0 40px;
  }
}
/*==============================
	Search
==============================*/
.search {
  display: table;
  position: fixed;
  background-color: rgba(68,73,81,0.95);
  padding: 20px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: -1;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  transition: 0s;
  opacity: 0;
  will-change: transform;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
.search__btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: #fff;
}
.search__form {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  width: 100%;
}
.search__form:before {
  content: 'Press Enter / Return to begin your search.';
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  top: 50%;
  margin-top: 30px;
}
.search__input {
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  width: 100%;
  height: 36px;
  max-width: 300px;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #fff;
  text-align: center;
  letter-spacing: 0.4px;
}
.search ::-webkit-input-placeholder {
  color: #fff;
}
.search ::-moz-placeholder {
  color: #fff;
}
.search :-moz-placeholder {
  color: #fff;
}
.search :-ms-input-placeholder {
  color: #fff;
}
.search--active {
  z-index: 999;
  opacity: 1;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
@media (min-width: 768px) {
  .search__input {
    max-width: 360px;
    font-size: 20px;
  }
  .search__btn {
    right: 25px;
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .search__input {
    font-size: 28px;
  }
  .search__form:before {
    font-size: 14px;
  }
}
/*==============================
	Sidebar
==============================*/
.sidebar {
  position: fixed;
  top: 50px;
  bottom: 53px;
  left: 0;
  z-index: 98;
  width: 230px;
  background-color: #09112D;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(-230px, 0, 0);
  -moz-transform: translate3d(-230px, 0, 0);
  transform: translate3d(-230px, 0, 0);
}
.sidebar--open {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.sidebar__content {
  position: absolute;
  top: 0;
  bottom: 80px;
  padding: 20px 0;
  left: 0;
  right: 0;
  -webkit-overflow-scrolling: touch;
}
.sidebar__nav li {
  position: relative;
}
.sidebar__link {
  display: block;
  padding: 0 20px;
  font-size: 14px;
  text-transform: uppercase;
  height: 42px;
  line-height: 46px;
  letter-spacing: 0.4px;
  color: #63BFFF;
  font-weight: 400;
}
.sidebar__link:hover,
.sidebar__link.active {
  color: #A972E8;
}
.sidebar__link:focus {
  color: #92999e;
}
.sidebar__dropdown-menu {
  width: 100%;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.sidebar__dropdown-menu.active {
  visibility: visible;
  opacity: 1;
  max-height: 600px;
  -webkit-transition: max-height 0.8s cubic-bezier(1, 1.05, 0, 1) visibility 0.3s opacity 0.3s;
  -moz-transition: max-height 0.8s cubic-bezier(1, 1.05, 0, 1) visibility 0.3s opacity 0.3s;
  transition: max-height 0.8s cubic-bezier(1, 1.05, 0, 1) visibility 0.3s opacity 0.3s;
}
.sidebar__dropdown-menu li {
  padding-left: 20px;
}
.sidebar__dropdown-menu a {
  position: relative;
  padding: 7px 15px;
  line-height: 30px;
  letter-spacing: 0.4px;
  font-size: 14px;
  color: #63BFFF;
  font-weight: 400;
  display: block;
}
.sidebar__dropdown-menu a:hover,
.sidebar__dropdown-menu a:focus {
  background-color: transparent;
  color: #A972E8;
}
.sidebar__dropdown-menu a:before {
  content: '–';
  position: absolute;
  left: 0;
}
.sidebar__footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  padding: 10px 20px 0;
  border-top: 1px solid rgba(95,61,90,0.46);
  height: 80px;
  background-color: #09112D;
}
.sidebar__footer-links {
  display: block;
  margin-bottom: 5px;
}
.sidebar__footer-links li {
  display: inline-block;
  float: left;
  margin-right: 12px;
}
.sidebar__footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: #63BFFF;
  line-height: 16px;
  letter-spacing: 0.6px;
}
.sidebar__footer-links a:hover,
.sidebar__footer-links a:focus {
  color: #A972E8;
}
.sidebar__copyright {
  font-size: 10px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  line-height: 16px;
  letter-spacing: 0.25px;
}
.sidebar__copyright a {
  color: #92999e;
}
.sidebar__copyright a:hover,
.sidebar__copyright a:focus {
  color: #f65656;
}
.sidebar__copyright span {
  display: block;
}
@media (min-width: 768px) {
  .sidebar__link {
    padding: 0 25px;
  }
  .sidebar__dropdown-menu li {
    padding-left: 25px;
  }
}
@media (min-width: 1200px) {
  .sidebar {
    top: 60px;
    bottom: 63px;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .sidebar__content {
    padding: 25px 0;
  }
  .sidebar__link {
    padding: 0 25px;
  }
  .sidebar__dropdown-menu li {
    padding-left: 35px;
  }
  .sidebar__footer {
    padding: 10px 25px 0;
  }
}
@media (min-width: 1600px) {
  .sidebar__link {
    padding: 0 40px;
  }
  .sidebar__dropdown-menu li {
    padding-left: 45px;
  }
  .sidebar__footer {
    padding: 10px 40px 0;
  }
}
/*==============================
	Content
==============================*/
.content-wrap {
  z-index: 90;
}
@media (min-width: 1200px) {
  .content-wrap {
    margin-left: 230px;
  }
}
.content {
  margin: 0;
  padding-top: 50px;
  padding-bottom: 53px;
}
@media (min-width: 1200px) {
  .content {
    padding-top: 60px;
    padding-bottom: 63px;
  }
}
.section {
  margin: 0 20px;
  padding: 25px 0;
}
.section--first {
  padding-top: 20px;
}
.section__title {
  margin-bottom: 15px;
  display: block;
}
.section__title h2 {
  font-size: 26px;
  line-height: 34px;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 0.4px;
  display: inline-block;
  float: left;
}
.section__title p {
  display: block;
  font-size: 14px;
  color: #09112D;
  font-family: 'Open Sans', sans-serif;
  line-height: 24px;
  margin: 0;
  letter-spacing: 0.4px;
}
.section__title--vertical h2 {
  display: block;
  float: none;
  margin-bottom: 5px;
}
.section__title--vertical .section__more {
  padding-left: 15px;
  padding-right: 0;
  float: none;
  margin-top: 5px;
}
.section__title--vertical .section__more:after {
  left: 0;
}
.section__title--vertical .section__more:hover {
  padding-left: 20px;
  padding-right: 0;
}
.section__more {
  display: inline-block;
  float: right;
  font-size: 16px;
  line-height: 34px;
  color: #63BFFF;
  font-weight: 400;
  position: relative;
  padding-right: 15px;
  letter-spacing: 0.4px;
}
.section__more:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 10px;
  background-color: #63BFFF;
  right: 0;
  top: 15px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.section__more:hover,
.section__more:focus {
  color: #fff;
  padding-right: 20px;
}
.section__more:hover:after,
.section__more:focus:after {
  width: 15px;
  background-color: #fff;
}
.section__filter {
  display: inline-block;
  position: relative;
  margin-top: 5px;
}
.section__filter.open .section__filter-menu {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.section__filter.open .section__filter-btn {
  color: #f65656;
}
.section__filter.open .section__filter-btn:before {
  width: 0;
}
.section__filter-btn {
  height: 34px;
  line-height: 34px;
  color: #09112D;
  font-size: 16px;
  letter-spacing: 0.4px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  width: 180px;
  text-align: left;
  position: relative;
}
.section__filter-btn:before {
  content: '';
  position: absolute;
  display: block;
  height: 1px;
  width: 100%;
  bottom: 3px;
  right: 0;
  background-color: rgba(146,153,158,0.25);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.section__filter-btn span {
  display: inline-block;
  float: right;
  line-height: 32px;
  font-size: 10px;
}
.section__filter-btn input {
  border: none;
  background-color: transparent;
  display: inline-block;
  float: left;
  width: 160px;
  text-align: left;
}
.section__filter-btn:hover {
  color: #f65656;
}
.section__filter-menu {
  position: absolute;
  display: block;
  top: 100%;
  margin-top: -3px;
  right: 0;
  background-color: #fff;
  padding: 15px 20px;
  min-width: 180px;
  max-height: 282px;
  z-index: 98;
  will-change: transform;
  -webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.18);
  box-shadow: 0 0 10px rgba(0,0,0,0.18);
}
.section__filter-menu li {
  margin-bottom: 5px;
}
.section__filter-menu li:last-child {
  margin-bottom: 0;
}
.section__filter-menu a {
  display: block;
  padding: 0;
  font-size: 16px;
  color: #09112D;
  line-height: 28px;
  letter-spacing: 0.4px;
}
.section__filter-menu a:hover,
.section__filter-menu a:focus {
  background-color: #fff;
  color: #f65656;
}
@media (min-width: 768px) {
  .section {
    margin: 0 25px;
  }
  .section--first {
    padding-top: 25px;
  }
  .section__title h2 {
    font-size: 28px;
  }
  .section__filter {
    display: inline-block;
    float: right;
    margin-left: 20px;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .section {
    margin: 0 25px 0 40px;
    padding: 40px 0;
  }
  .section--first {
    padding-top: 25px;
  }
  .section__title h2 {
    font-size: 32px;
    letter-spacing: 1px;
  }
  .section__title p {
    margin: 20px 0;
  }
  .section__title--single {
    margin-bottom: 25px;
  }
}
@media (min-width: 1600px) {
  .section {
    margin: 0 40px 0 55px;
  }
}
/*==============================
	Home carousel
==============================*/
.home-carousel {
  position: relative;
  z-index: 1;
}
.home-carousel__item {
  height: 400px;
  height: calc(100vh - 143px);
  margin-bottom: 10px;
}
.home-carousel__text {
  display: table;
  position: relative;
  height: 100%;
  width: 100%;
}
.home-carousel__title {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  padding: 0 20px;
}
.home-carousel__title h1 {
  margin-top: 0;
  letter-spacing: 0.6px;
  font-size: 30px;
  margin-bottom: 5px;
}
.home-carousel__title h2 {
  margin-top: 0;
  font-size: 26px;
  letter-spacing: 0.4px;
  margin-bottom: 5px;
}
.home-carousel__title p {
  color: #09112D;
  font-size: 16px;
  width: 100%;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.4px;
}
.home-carousel__title span {
  color: #A972E8;
}
.home-carousel__title .default-btn {
  margin-top: 10px;
}
.home-carousel__title--right {
  text-align: right;
}
.home-carousel__title--white h1,
.home-carousel__title--white h2,
.home-carousel__title--white p {
  color: #fff;
}
@media (min-width: 768px) {
  .home-carousel__item {
    height: 500px;
  }
  .home-carousel__title {
    padding: 0 35px;
  }
  .home-carousel__title h1 {
    font-size: 32px;
  }
  .home-carousel__title h2 {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .home-carousel__title h1 {
    font-size: 36px;
    letter-spacing: 1px;
  }
  .home-carousel__title p {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .home-carousel__item {
    height: 490px;
    margin-bottom: 20px;
  }
  .home-carousel__title {
    padding: 0 86px;
  }
  .home-carousel__title h1 {
    letter-spacing: 1.5px;
    font-size: 42px;
    margin-bottom: 10px;
  }
  .home-carousel__title h2 {
    letter-spacing: 1px;
    font-size: 30px;
    margin-bottom: 10px;
  }
  .home-carousel__title .default-btn {
    margin-top: 15px;
  }
}
@media (min-width: 1400px) {
  .home-carousel__item {
    height: 600px;
  }
}
.home-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.home-carousel-wrap:hover .home-carousel-nav__next {
  right: 20px;
}
.home-carousel-wrap:hover .home-carousel-nav__prev {
  left: 20px;
}
.home-carousel-nav__next,
.home-carousel-nav__prev {
  display: none;
  position: absolute;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  top: 50%;
  z-index: 2;
  background-color: rgba(95,61,90,0.4);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.home-carousel-nav__next span,
.home-carousel-nav__prev span {
  display: block;
  line-height: 46px;
  font-size: 20px;
  color: #fff;
}
.home-carousel-nav__next:hover,
.home-carousel-nav__prev:hover {
  background-color: #A972E8;
}
.home-carousel-nav__next:hover span,
.home-carousel-nav__prev:hover span {
  color: #09112D;
}
.home-carousel-nav__next {
  right: -46px;
}
.home-carousel-nav__prev {
  left: -46px;
}
@media (min-width: 1200px) {
  .home-carousel-nav__next,
  .home-carousel-nav__prev {
    display: block;
  }
}
/*==============================
	Article carousel
==============================*/
.article-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.article-carousel-wrap:hover .article-carousel-nav__next {
  right: 20px;
}
.article-carousel-wrap:hover .article-carousel-nav__prev {
  left: 20px;
}
.article-carousel-nav__next,
.article-carousel-nav__prev {
  display: none;
  position: absolute;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  top: 50%;
  z-index: 2;
  background-color: rgba(95,61,90,0.4);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.article-carousel-nav__next span,
.article-carousel-nav__prev span {
  display: block;
  line-height: 46px;
  font-size: 20px;
  color: #fff;
}
.article-carousel-nav__next:hover,
.article-carousel-nav__prev:hover {
  background-color: #A972E8;
}
.article-carousel-nav__next:hover span,
.article-carousel-nav__prev:hover span {
  color: #09112D;
}
.article-carousel-nav__next {
  right: -46px;
}
.article-carousel-nav__prev {
  left: -46px;
}
@media (min-width: 1200px) {
  .article-carousel-nav__next,
  .article-carousel-nav__prev {
    display: block;
  }
}
/*==============================
	Release post
==============================*/
.release-post {
  position: relative;
  margin-bottom: 10px;
  background-color: #63BFFF;
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.release-post__cover {
  display: block;
  position: relative;
  overflow: hidden;
}
.release-post__cover img {
  width: 100%;
  will-change: transform;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.release-post__cover:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
}
.release-post__header {
  padding: 10px;
}
.release-post__title {
  font-size: 20px;
  margin: 0;
  letter-spacing: 0.3px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: break-word;
  white-space: nowrap;
}
.release-post__title a {
  color: #09112D;
}
.release-post__title a:hover,
.release-post__title a:focus {
  color: #A972E8;
}
.release-post__autor {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.4px;
  font-family: 'Open Sans', sans-serif;
}
.release-post__autor:hover,
.release-post__autor:focus {
  color: #09112D;
}
@media (min-width: 992px) {
  .release-post__title {
    font-size: 22px;
  }
  .release-post__autor {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .release-post {
    margin-bottom: 20px;
  }
  .release-post__header {
    padding: 20px;
  }
  .release-post__title {
    font-size: 26px;
  }
}
/*==============================
	Event post
==============================*/
.event-post {
  position: relative;
  height: 350px;
  width: auto;
  z-index: 1;
  margin-bottom: 10px;
}
.event-post:before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.9) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.9) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.9) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.9) 100%);
  z-index: -1;
  opacity: 0.8;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.event-post__header {
  padding: 130px 20px 0;
}
.event-post__date {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
}
.event-post__time {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}
.event-post__title {
  display: inline-block;
  font-size: 26px;
  letter-spacing: 0.4px;
  margin: 0;
}
.event-post__title a {
  color: #fff;
}
.event-post__title a:hover,
.event-post__title a:focus {
  color: #f65656;
}
.event-post__address {
  display: block;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.4px;
  font-weight: 300;
}
.event-post__sold-out {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  background-color: #f65656;
  line-height: 36px;
  height: 36px;
  padding: 0 16px;
  position: absolute;
  top: 25px;
  left: 20px;
  font-weight: 400;
  -webkit-border-radius: 18px;
  border-radius: 18px;
  letter-spacing: 0.4px;
  font-family: 'Open Sans', sans-serif;
}
.event-post__buy-ticket {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  background-color: #09112D;
  line-height: 36px;
  height: 36px;
  padding: 0 16px;
  position: absolute;
  top: 25px;
  left: 20px;
  font-weight: 400;
  -webkit-border-radius: 18px;
  border-radius: 18px;
  letter-spacing: 0.4px;
  font-family: 'Open Sans', sans-serif;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.event-post__buy-ticket:hover {
  background-color: #A972E8;
}
.event-post:hover:before {
  opacity: 1;
}
@media (min-width: 992px) {
  .event-post__header {
    padding: 150px 25px 0;
  }
}
@media (min-width: 1200px) {
  .event-post {
    margin-bottom: 20px;
    height: 400px;
  }
  .event-post__header {
    padding: 200px 30px 0;
  }
  .event-post__date {
    font-size: 24px;
  }
  .event-post__time {
    font-size: 16px;
  }
  .event-post__title {
    font-size: 30px;
    letter-spacing: 0.8px;
  }
  .event-post__sold-out {
    top: 30px;
    left: 25px;
  }
  .event-post__buy-ticket {
    top: 30px;
    left: 25px;
  }
}
/*==============================
	News post
==============================*/
.news-post {
  position: relative;
  margin-bottom: 10px;
  background-color: #63BFFF;
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.news-post__img {
  display: block;
  position: relative;
  overflow: hidden;
}
.news-post__img img {
  width: 100%;
  will-change: transform;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.news-post__img:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
}
.news-post__header {
  display: block;
  padding: 20px 20px 10px;
}
.news-post__title {
  font-size: 24px;
  margin: 0;
  letter-spacing: 0.3px;
}
.news-post__title a {
  color: #09112D;
}
.news-post__title a:hover,
.news-post__title a:focus {
  color: #f65656;
}
.news-post__date {
  display: block;
  font-size: 13px;
  color: #92999e;
  margin-top: 10px;
}
.news-post__content {
  padding: 0 20px 20px;
}
.news-post__content p {
  font-size: 15px;
  color: #09112D;
  font-family: 'Open Sans', sans-serif;
  line-height: 24px;
  margin: 0;
  letter-spacing: 0.4px;
}
@media (min-width: 992px) {
  .news-post__date {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .news-post {
    margin-bottom: 20px;
  }
  .news-post__header {
    padding: 20px 20px 15px;
  }
  .news-post__title {
    font-size: 26px;
  }
}
/*==============================
	Artist post
==============================*/
.artist-post {
  position: relative;
  margin-bottom: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.artist-post__cover {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.artist-post__cover:before {
  position: absolute;
  z-index: 1;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.8) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.8) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.8) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.8) 100%);
  opacity: 0.5;
}
.artist-post__cover img {
  width: 100%;
  will-change: transform;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.artist-post__cover div {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
}
.artist-post__cover div span {
  font-size: 20px;
  letter-spacing: 0.4px;
  font-weight: 300;
  line-height: 100%;
}
.artist-post__cover div li {
  display: inline-block;
  float: left;
  font-size: 16px;
  letter-spacing: 0.4px;
  font-weight: 300;
  margin-left: 20px;
  position: relative;
}
.artist-post__cover div li:before {
  content: '-';
  position: absolute;
  display: inline-block;
  width: 20px;
  text-align: center;
  right: 100%;
}
.artist-post__cover div li:first-child {
  margin-left: 0;
}
.artist-post__cover div li:first-child:before {
  display: none;
}
.artist-post__cover:hover {
  color: #fff;
}
.artist-post__cover:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
}
.artist-post__cover:focus {
  color: #fff;
}
@media (min-width: 1200px) {
  .artist-post {
    margin-bottom: 20px;
  }
}
/*==============================
	Store post
==============================*/
.store-post {
  background-color: #fff;
  position: relative;
  display: block;
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  overflow: hidden;
  margin-bottom: 10px;
}
.store-post:hover .store-post__img img {
  opacity: 0.4;
}
.store-post:hover .store-post__title {
  color: #f65656;
}
.store-post__img {
  position: relative;
  margin-bottom: 5px;
}
.store-post__img img {
  max-width: 100%;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.store-post__title {
  color: #09112D;
  display: block;
  font-size: 22px;
  font-weight: 300;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.store-post__model {
  display: block;
  color: #92999e;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
}
.store-post__price {
  display: block;
  color: #09112D;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}
.store-post__link {
  position: absolute;
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.store-post__btn {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 2;
  height: 42px;
  line-height: 42px;
  width: 60px;
  background-color: #f65656;
  -webkit-border-radius: 42px 0 0 42px;
  border-radius: 42px 0 0 42px;
  display: block;
  color: #fff;
  font-size: 24px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.store-post__btn:before {
  content: '+';
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  position: absolute;
  left: 10px;
  top: 0;
  line-height: 42px;
  font-size: 18px;
}
.store-post__btn span {
  display: block;
  padding-left: 10px;
}
.store-post__btn:hover {
  -webkit-box-shadow: 0 5px 10px rgba(68,73,81,0.4);
  box-shadow: 0 5px 10px rgba(68,73,81,0.4);
}
@media (min-width: 1200px) {
  .store-post {
    margin-bottom: 20px;
  }
  .store-post:hover .store-post__btn {
    right: 0;
  }
  .store-post__btn {
    right: -60px;
  }
}
/*==============================
	Release page
==============================*/
.release__cover {
  width: 100%;
}
.release__cover img {
  width: 100%;
}
.release__social {
  margin: 20px 0;
}
.release__social li {
  display: inline-block;
  margin-right: 10px;
  float: left;
}
.release__social li:last-child {
  margin-right: 0;
}
.release__social a {
  font-size: 20px;
  color: #92999e;
}
.release__social a:hover {
  color: #f65656;
}
.release__content {
  position: relative;
  margin-bottom: 35px;
}
.release__title {
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.6px;
}
.release__producer {
  display: block;
  color: #92999e;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  font-weight: 400;
}
.release__description {
  color: #09112D;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin-bottom: 15px;
}
.release__list {
  margin-bottom: 15px;
}
.release__list li {
  display: block;
  color: #92999e;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}
.release__list li:last-child {
  margin-bottom: 0;
}
.release__list a {
  color: #09112D;
}
.release__list a:hover {
  color: #09112D;
  text-decoration: underline;
}
.release__tags {
  margin-bottom: 20px;
}
.release__tags li {
  display: inline-block;
  float: left;
  color: #92999e;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-right: 15px;
  margin-bottom: 10px;
}
.release__tags li:last-child {
  margin-right: 0;
}
.release__tags li a {
  font-family: 'Hind', sans-serif;
  font-weight: 500;
  background-color: rgba(146,153,158,0.4);
  color: #09112D;
  letter-spacing: 0.4px;
  padding: 1px 10px 0;
  text-transform: uppercase;
  line-height: 19px;
  font-size: 14px;
  display: block;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .release__title {
    font-size: 36px;
    letter-spacing: 1px;
  }
  .release__social {
    margin: 15px 0;
  }
  .release__list li {
    display: inline-block;
    float: left;
    margin-right: 35px;
    font-size: 15px;
  }
  .release__list li:last-child {
    margin-right: 0;
  }
  .release__description {
    font-size: 16px;
    line-height: 26px;
  }
  .release__tags li {
    font-size: 15px;
    line-height: 17px;
  }
}
@media (min-width: 1200px) {
  .release__social {
    margin-bottom: 50px;
  }
  .release__social a {
    font-size: 22px;
  }
  .release__social li {
    margin-right: 15px;
  }
  .release__content {
    margin-bottom: 50px;
  }
}
/*==============================
	Artist page
==============================*/
.artist__cover {
  width: 100%;
}
.artist__cover img {
  width: 100%;
}
.artist__social {
  margin: 20px 0;
}
.artist__social li {
  display: inline-block;
  float: left;
  margin-right: 10px;
}
.artist__social li:last-child {
  margin-right: 0;
}
.artist__social a {
  font-size: 20px;
  color: #92999e;
}
.artist__social a:hover {
  color: #f65656;
}
.artist__content {
  position: relative;
  margin-bottom: 35px;
}
.artist__title {
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.6px;
}
.artist__description {
  color: #09112D;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin-bottom: 15px;
}
.artist__list {
  margin-bottom: 15px;
}
.artist__list li {
  display: block;
  color: #92999e;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}
.artist__list li:last-child {
  margin-bottom: 0;
}
.artist__list a {
  color: #09112D;
}
.artist__list a:hover {
  color: #09112D;
  text-decoration: underline;
}
.artist__tags {
  margin-bottom: 20px;
}
.artist__tags li {
  display: inline-block;
  float: left;
  color: #92999e;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-right: 15px;
  margin-bottom: 10px;
}
.artist__tags li:last-child {
  margin-right: 0;
}
.artist__tags li a {
  font-family: 'Hind', sans-serif;
  font-weight: 500;
  background-color: rgba(146,153,158,0.4);
  color: #09112D;
  letter-spacing: 0.4px;
  padding: 1px 10px 0;
  text-transform: uppercase;
  line-height: 19px;
  font-size: 14px;
  display: block;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .artist__title {
    font-size: 36px;
    letter-spacing: 1px;
  }
  .artist__social {
    margin: 15px 0;
  }
  .artist__description {
    font-size: 16px;
    line-height: 26px;
  }
  .artist__list li {
    font-size: 15px;
  }
  .artist__tags li {
    font-size: 15px;
    line-height: 17px;
  }
}
@media (min-width: 1200px) {
  .artist__social {
    margin-bottom: 50px;
  }
  .artist__social li {
    margin-right: 15px;
  }
  .artist__social a {
    font-size: 22px;
  }
  .artist__content {
    margin-bottom: 50px;
  }
}
/*==============================
	Event page
==============================*/
.event__cover {
  width: 100%;
  margin-bottom: 20px;
}
.event__cover img {
  width: 100%;
}
.event__content {
  position: relative;
  margin-bottom: 35px;
}
.event__content .default-btn {
  margin-top: 25px;
  margin-bottom: 5px;
}
.event__title {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.6px;
}
.event__date {
  display: block;
  color: #09112D;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
  margin-bottom: 5px;
}
.event__time {
  display: block;
  color: rgba(68,73,81,0.7);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.event__address {
  display: block;
  font-size: 16px;
  color: #09112D;
  letter-spacing: 0.4px;
  font-weight: 300;
}
.event__text {
  display: block;
  margin: 20px 0;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.4px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  color: #09112D;
}
.event__text b {
  font-weight: 600;
}
.event__text a {
  color: #f65656;
  text-decoration: underline;
}
.event__text a:hover,
.event__text a:focus {
  color: #f65656;
  text-decoration: none;
}
@media (min-width: 992px) {
  .event__title {
    font-size: 36px;
    letter-spacing: 1px;
  }
  .event__content .default-btn {
    margin-top: 30px;
  }
  .event__text {
    margin: 25px 0;
  }
  .event__time,
  .event__address {
    font-size: 18px;
  }
  .event__title {
    margin-bottom: 20px;
  }
}
/*==============================
	Article page
==============================*/
.article {
  display: block;
  margin-bottom: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(146,153,158,0.6);
}
.article__content {
  margin-bottom: 40px;
}
.article__content img {
  width: 100%;
}
.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6 {
  margin-top: 30px;
  margin-bottom: 15px;
}
.article__content h1 {
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.6px;
}
.article__content h2 {
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.4px;
}
.article__content h3 {
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0.4px;
}
.article__content h4 {
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.2px;
}
.article__content h5 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.2px;
}
.article__content h6 {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.2px;
}
.article__content p {
  display: block;
  margin: 15px 0;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.4px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  color: #09112D;
}
.article__content p b {
  font-weight: 600;
}
.article__content p a {
  color: #f65656;
  text-decoration: underline;
}
.article__content p a:hover,
.article__content p a:focus {
  color: #f65656;
  text-decoration: none;
}
.article__content blockquote {
  display: block;
  padding: 0 20px;
  margin: 15px 0;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.4px;
  color: #09112D;
  font-weight: 400;
  border-left: 4px solid rgba(246,86,86,0.65);
}
.article__content ul {
  margin: 15px 0;
  padding-left: 20px;
  display: block;
  list-style: circle;
}
.article__content ul li {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.4px;
  font-weight: 400;
  color: #09112D;
  padding-left: 5px;
  font-family: 'Open Sans', sans-serif;
}
.article__share span {
  display: block;
  width: 100%;
  color: #09112D;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.article__share ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}
.article__share ul li {
  display: inline-block;
  margin-right: 15px;
  float: left;
}
.article__share ul li:last-child {
  margin-right: 0;
}
.article__share ul a {
  font-size: 20px;
  color: #92999e;
  display: block;
}
.article__share ul a:hover {
  color: #f65656;
}
@media (min-width: 768px) {
  .article__share span {
    display: inline-block;
    float: left;
    width: auto;
    line-height: 24px;
    margin-bottom: 0;
    margin-right: 15px;
  }
  .article__share ul {
    display: inline-block;
    float: left;
  }
}
@media (min-width: 992px) {
  .article__content p,
  .article__content ul {
    margin: 20px 0;
  }
  .article__content h1 {
    font-size: 36px;
    letter-spacing: 1px;
  }
  .article__content h2 {
    font-size: 32px;
  }
  .article__content h3 {
    font-size: 30px;
  }
  .article__content h4 {
    font-size: 26px;
  }
  .article__content h5 {
    font-size: 24px;
  }
  .article__content h6 {
    font-size: 20px;
  }
  .article__content blockquote {
    margin: 30px 0;
  }
}
@media (min-width: 1200px) {
  .article {
    margin-bottom: 80px;
  }
  .article__content {
    margin-bottom: 70px;
  }
}
/*==============================
	Store item
==============================*/
.item__slider {
  position: relative;
  margin-bottom: 30px;
  padding: 20px 20px 40px;
  background-color: #09112D;
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.item__slider .owl-dots {
  bottom: 10px;
}
.item__slider .owl-dots .owl-dot span {
  background-color: rgba(68,73,81,0.5);
}
.item__slider .owl-dots .owl-dot.active span {
  background-color: #f65656;
}
.item__img {
  width: 100%;
}
.item__img img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.item__content {
  position: relative;
  margin-bottom: 35px;
}
.item__content .default-btn {
  margin-top: 10px;
}
.item__title {
  display: block;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0.6px;
}
.item__model {
  display: block;
  color: #09112D;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
  font-size: 18px;
}
.item__price {
  display: block;
  font-size: 26px;
  color: #92999e;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
}
.item__description {
  color: #09112D;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin-bottom: 15px;
}
.item__list {
  margin: 15px 0;
  padding-left: 20px;
  display: block;
  list-style: circle;
}
.item__list li {
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.4px;
  font-weight: 400;
  color: #09112D;
  padding-left: 5px;
  font-family: 'Open Sans', sans-serif;
}
@media (min-width: 768px) {
  .item__title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .item__title {
    font-size: 32px;
    letter-spacing: 1px;
  }
  .item__model {
    font-size: 20px;
  }
  .item__description {
    font-size: 16px;
    line-height: 26px;
  }
  .item__list li {
    font-size: 16px;
    line-height: 26px;
  }
  .item__price {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .item__content .default-btn {
    margin-top: 15px;
  }
}
@media (min-width: 1200px) {
  .item__content {
    margin-bottom: 50px;
  }
  .item__title {
    font-size: 36px;
  }
  .item__model {
    font-size: 22px;
  }
  .item__slider {
    margin-bottom: 50px;
  }
}
/*==============================
	Cart page
==============================*/
.cart {
  display: table;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  width: 100%;
  margin-bottom: 25px;
}
.cart__head {
  display: none;
}
.cart__body td {
  width: 100%;
  display: block;
  padding: 7px 10px;
  text-align: center;
}
.cart__body td:last-child {
  margin-bottom: 20px;
}
.cart__body tr {
  border-bottom: 1px solid rgba(146,153,158,0.16);
}
.cart__body tr:last-child {
  border-bottom: none;
}
.cart__img img {
  display: block;
  margin: 0 auto;
  max-width: 160px;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.cart__img a:hover img {
  opacity: 0.4;
}
.cart__title {
  font-size: 16px;
  color: #92999e;
  letter-spacing: 0.4px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}
.cart__title a {
  color: #92999e;
}
.cart__title a:hover {
  color: #92999e;
  text-decoration: underline;
}
.cart__price {
  font-size: 16px;
  color: #09112D;
  font-family: 'Open Sans', sans-serif;
}
.cart__total {
  position: relative;
  font-size: 16px;
  color: #09112D;
  font-family: 'Open Sans', sans-serif;
}
.cart__spinner {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 80px;
  height: 24px;
}
.cart__spinner input {
  text-align: center;
  border-top: 1px solid rgba(146,153,158,0.1);
  border-bottom: 1px solid rgba(146,153,158,0.1);
  border-left: none;
  border-right: none;
  display: inline-block;
  float: left;
  height: 24px;
  font-size: 16px;
  color: #09112D;
  width: 30px;
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
}
.cart__spinner button {
  display: inline-block;
  float: left;
  width: 25px;
  height: 24px;
  font-family: 'Open Sans', sans-serif;
  color: #09112D;
  font-size: 16px;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  border: 1px solid rgba(146,153,158,0.1);
  background-color: rgba(146,153,158,0.1);
}
.cart__spinner button:hover {
  color: #92999e;
}
.cart__delete {
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
  color: #92999e;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 18px;
}
.cart__delete:hover {
  color: #f65656;
}
@media (min-width: 768px) {
  .cart__head {
    display: table-header-group;
  }
  .cart__head th {
    padding: 15px;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.4px;
    color: #09112D;
  }
  .cart__head th:nth-child(2) {
    padding: 15px 15px 15px 0;
  }
  .cart__head th:first-child {
    padding-left: 30px;
  }
  .cart__head tr {
    border-bottom: 1px solid rgba(146,153,158,0.16);
  }
  .cart__body td {
    width: auto;
    display: table-cell;
    padding: 0 15px;
    text-align: left;
  }
  .cart__body td.cart__img {
    padding: 15px 0 15px 15px;
  }
  .cart__body td.cart__title {
    padding: 0 15px 0 0;
  }
  .cart__body td:last-child {
    margin-bottom: 0;
    padding: 0 50px 0 15px;
  }
  .cart__body tr {
    border-bottom: none;
  }
  .cart__img {
    max-width: 120px;
  }
  .cart__spinner {
    margin: 0;
  }
  .cart__delete {
    right: 35px;
  }
  .cart__total,
  .cart__price {
    font-size: 18px;
  }
  .cart__spinner {
    height: 26px;
  }
  .cart__spinner input,
  .cart__spinner button {
    height: 26px;
  }
  .cart__delete {
    right: 50px;
  }
}
.cart-calc {
  display: block;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  width: 100%;
  margin-bottom: 20px;
}
.cart-calc__discount {
  display: block;
  background-color: rgba(146,153,158,0.15);
  padding: 20px 10px;
  position: relative;
}
.cart-calc__discount input {
  display: block;
  width: 100%;
  border: none;
  background-color: #fff;
  height: 46px;
  padding: 0 40px 0 15px;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.5px;
  font-size: 14px;
}
.cart-calc__discount button {
  display: block;
  position: absolute;
  top: 20px;
  right: 10px;
  height: 46px;
  color: #09112D;
  font-family: 'Open Sans', sans-serif;
  width: 40px;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.cart-calc__discount button:before {
  content: '';
  position: absolute;
  display: block;
  width: 1px;
  height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  background-color: rgba(146,153,158,0.16);
}
.cart-calc__discount button:hover {
  color: #92999e;
}
.cart-calc__wrap {
  display: block;
  padding: 20px;
}
.cart-calc__title {
  display: block;
  font-family: 'Open Sans', sans-serif;
  color: #09112D;
  font-size: 18px;
  letter-spacing: 0.2px;
  margin-bottom: 5px;
}
.cart-calc__price {
  display: block;
  font-family: 'Open Sans', sans-serif;
  color: #09112D;
  font-size: 26px;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cart-calc {
    margin-bottom: 0;
    padding: 20px;
  }
  .cart-calc__discount {
    padding: 60px 20px;
  }
  .cart-calc__discount button {
    top: 60px;
    right: 20px;
  }
  .cart-calc__wrap {
    padding: 0 0 0 25px;
  }
  .cart-calc__wrap .default-btn {
    margin-top: 40px;
  }
  .cart-calc__title {
    line-height: 40px;
    margin-bottom: 0;
    font-size: 20px;
  }
  .cart-calc__price {
    line-height: 40px;
    margin-bottom: 0;
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .cart-calc__wrap {
    padding: 0 0 0 30px;
  }
  .cart-calc__wrap .default-btn {
    margin-top: 30px;
  }
  .cart-calc__discount input {
    font-size: 15px;
  }
}
/*==============================
	Contacts page
==============================*/
.contacts__about {
  display: block;
  margin-bottom: 30px;
}
.contacts__about-text {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.4px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  color: #09112D;
  margin-bottom: 15px;
}
.contacts__about-text a {
  color: #09112D;
  text-decoration: none;
}
.contacts__about-text a:hover,
.contacts__about-text a:focus {
  color: #f65656;
  text-decoration: none;
}
.contacts__map {
  display: block;
  width: 100%;
  height: 300px;
  margin-top: 30px;
}
@media (min-width: 1200px) {
  .contacts__map {
    height: 400px;
    margin-top: 50px;
  }
}
/*==============================
	Track
==============================*/
.track {
  position: relative;
  margin-bottom: 10px;
}
.track:before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%);
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.track__cover {
  width: 100%;
}
.track__cover img {
  width: 100%;
}
.track__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
.track__play-btn i {
  line-height: 58px;
}
.track__play-btn i.glyphicon-play {
  margin-left: 4px;
}
.track__play-btn .svg-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  fill: transparent;
  stroke-width: 1px;
  stroke: #fff;
  stroke-dasharray: 176;
  stroke-dashoffset: 176;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.track__play-btn:hover .svg-circle {
  stroke-dashoffset: 0;
}
.track__link {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #fff;
}
.track__link span {
  display: block;
}
.track__link .title {
  font-size: 16px;
  letter-spacing: 0.4px;
  line-height: 110%;
  font-weight: 300;
}
.track__link .autor {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.5px;
  font-weight: 300;
}
.track__link:hover,
.track__link:focus {
  color: #f65656;
}
.track:hover .track__play-btn {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.track:hover:before {
  opacity: 0.95;
}
@media (min-width: 768px) {
  .track {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .track__link {
    left: 20px;
    bottom: 15px;
  }
  .track__link .title {
    font-size: 18px;
    letter-spacing: 0.8px;
  }
  .track__link .autor {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
}
/*==============================
	Store box
==============================*/
.store-box {
  background-color: #63BFFF;
  position: relative;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.store-box__item, .preturi_baloane, .preturi_gheata, .preturi_panouri {
  display: inline-block;
  float: left;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(146,153,158,0.16);
  padding: 20px;
  text-align: center;
}
.preturi_baloane p {
	text-align: left;
	color: #333;
}
.store-box__item:last-child {
  border: none;
}
.store-box__item:hover .store-box__title, .preturi_baloane:hover .store-box__title {
  color: #fff;
}
.store-box__item:hover .store-box__img img {
  opacity: 0.4;
}
.store-box__img {
  position: relative;
  margin-bottom: 5px;
}
.store-box__img img {
  max-width: 20%;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.store-box__title {
  color: #09112D;
  display: block;
  font-size: 22px;
  font-weight: 300;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.store-box__model {
  display: block;
  color: #120000;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
}
.store-box__price {
  display: block;
  color: #09112D;
  font-size: 16px;
  font-weight: 800;
  font-family: 'Open Sans', sans-serif;
}
.store-box__price:hover {
    color: #fff;
}
@media (min-width: 768px) {
  .store-box {
    margin-bottom: 20px;
  }
  .store-box__item {
    width: 25%;
    border-bottom: none;
    border-right: 1px solid rgba(50.25,0,0,0.16);
  }
   .preturi_baloane {
    width: 33.33%;
    border-bottom: none;
    border-right: 1px solid rgba(50.25,0,0,0.16);
  } 
   .preturi_gheata {
    width: 25%;
    border-bottom: none;
    border-right: 1px solid rgba(50.25,0,0,0.16);
  } 
   .preturi_panouri {
    width: 50%;
    border-bottom: none;
    border-right: 1px solid rgba(50.25,0,0,0.16);
  }   
}
/*==============================
	Forms
==============================*/
.form {
  display: block;
  position: relative;
}
.form__group {
  position: relative;
  margin-bottom: 25px;
}
.form__label {
  width: 100%;
  font-size: 12px;
  text-transform: uppercase;
  color: #09112D;
  letter-spacing: 0.6px;
  line-height: 100%;
  padding: 0 15px;
  font-weight: 600;
}
.form__input {
  width: 100%;
  height: 38px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  transition: border-color 0.3s;
  border: 1px solid #92999e;
  padding: 0 15px;
  font-size: 14px;
  color: #09112D;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.5px;
}
.form__input:focus {
  border-color: #09112D;
}
.form__textarea {
  display: block;
  width: 100%;
  height: 130px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  transition: border-color 0.3s;
  border: 1px solid #92999e;
  padding: 15px;
  font-size: 14px;
  color: #09112D;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.5px;
  resize: none;
}
.form__textarea:focus {
  border-color: #09112D;
}
.form__input-checkbox:not(:checked),
.form__input-checkbox:checked {
  position: absolute;
  left: -9999px;
}
.form__input-checkbox:not(:checked) + label,
.form__input-checkbox:checked + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
  color: #92999e;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}
.form__input-checkbox:not(:checked) + label:before,
.form__input-checkbox:checked + label:before {
  content: '';
  position: absolute;
  left: 5px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #92999e;
}
.form__input-checkbox:checked + label:before {
  border-color: transparent;
}
.form__input-checkbox:not(:checked) + label:after,
.form__input-checkbox:checked + label:after {
  font-family: 'Linearicons-Free';
  content: '\e87f';
  position: absolute;
  left: 5px;
  top: 0;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  color: #92999e;
}
.form__input-checkbox:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
.form__input-checkbox:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.form__title {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 25px;
}
.form__btn {
  margin: 30px auto 0;
  min-width: 120px;
  display: block;
}
.form__forgot {
  display: block;
  text-align: center;
  margin-top: 40px;
  margin-bottom: -20px;
}
.form__forgot a {
  font-size: 14px;
  font-weight: 500;
  color: #92999e;
  letter-spacing: 0.6px;
}
.form__forgot a:hover {
  color: #f65656;
}
.form--sign {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 32px rgba(0,0,0,0.18);
  box-shadow: 0 0 32px rgba(0,0,0,0.18);
  padding: 40px 20px;
}
.form--contacts {
  margin: 0;
  width: 100%;
  background-color: #63BFFF;
  -webkit-box-shadow: 0 0 32px rgba(0,0,0,0.18);
  box-shadow: 0 0 32px rgba(0,0,0,0.18);
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .form--sign {
    padding: 40px 50px;
    margin: 40px auto;
  }
  .form--contacts {
    padding: 40px 50px;
  }
  .form--comments .form__btn {
    margin: 30px 0 0 0;
  }
}
@media (min-width: 992px) {
  .form__input,
  .form__textarea {
    font-size: 15px;
  }
}
/*==============================
	Tracklist
==============================*/
.tracklist {
  display: block;
  position: relative;
  margin-bottom: 20px;
}
.tracklist__info {
  display: block;
  color: #92999e;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}
.tracklist__item {
  border-top: 1px solid rgba(0,0,0,0.1);
  height: 54px;
  display: block;
  cursor: pointer;
  padding: 0 12px;
}
.tracklist__item .number {
  font-size: 14px;
  width: 30px;
  display: inline-block;
  float: left;
  color: #92999e;
  font-family: 'Open Sans', sans-serif;
  line-height: 52px;
  position: relative;
}
.tracklist__item .title {
  font-size: 16px;
  color: #09112D;
  display: inline-block;
  float: left;
  line-height: 54px;
}
.tracklist__item .time {
  display: inline-block;
  float: right;
  line-height: 54px;
  font-size: 14px;
  color: #09112D;
}
.tracklist__item:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.tracklist__item--active {
  background-color: rgba(0,0,0,0.05);
  border-color: transparent;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  cursor: default;
}
.tracklist__item--active .number {
  color: transparent;
}
.tracklist__item--active .number:before {
  content: '\E072';
  position: absolute;
  font-family: 'Glyphicons Halflings';
  color: #09112D;
  font-size: 12px;
}
.tracklist__item--active + .tracklist__item {
  border-top: 1px solid transparent;
}
/*==============================
	Tabs
==============================*/
.tabs__nav {
  display: block;
  width: 100%;
  border-bottom: 3px solid rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.tabs__nav li {
  display: inline-block;
  float: left;
  line-height: 40px;
  margin-right: 20px;
}
.tabs__nav li:last-child {
  margin-right: 0;
}
.tabs__nav li:focus a,
.tabs__nav li.active a {
  color: #f65656;
}
.tabs__nav li:focus a:before,
.tabs__nav li.active a:before {
  background-color: #f65656;
}
.tabs__nav li:hover a {
  color: #f65656;
}
.tabs__nav a {
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #92999e;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.tabs__nav a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: transparent;
  left: 0;
  bottom: -3px;
}
@media (min-width: 768px) {
  .tabs__nav li {
    margin-right: 30px;
  }
}
/*==============================
	Comments
==============================*/
.comments {
  margin-top: 10px;
  margin-bottom: 5px;
}
.comments__title {
  display: block;
  margin-bottom: 30px;
  margin-top: 0;
  font-size: 26px;
  letter-spacing: 0.6px;
}
.comments__autor {
  display: block;
  position: relative;
  padding-left: 55px;
  margin-bottom: 15px;
}
.comments__autor img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.comments__autor .name {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #09112D;
  letter-spacing: 0.4px;
  line-height: 20px;
  font-weight: 400;
}
.comments__autor .time {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #92999e;
  letter-spacing: 0.4px;
  line-height: 20px;
  font-weight: 400;
}
.comments__text {
  display: block;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #09112D;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.4px;
}
.comments__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
  .comments {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .comments__item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .comments__text {
    font-size: 15px;
  }
  .comments__autor .name {
    font-size: 15px;
  }
  .comments__autor .time {
    font-size: 13px;
  }
  .comments__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
/*==============================
	Footer
==============================*/
.footer {
  background-color: #09112D;
  height: auto;
  padding: 0 20px;
}
.footer__logo {
  text-align: center;
  padding: 25px 0;
}
.footer__social {
  display: block;
  text-align: center;
  padding-bottom: 20px;
}
.footer__social li {
  display: inline-block;
  margin: 0 5px;
}
.footer__social a {
  color: #fff;
  font-size: 20px;
}
.footer__social a:hover {
  color: #A972E8;
}
@media (min-width: 768px) {
  .footer {
    padding: 0 25px;
    height: 80px;
    border-top: 1px solid rgba(146,153,158,0.16);
  }
  .footer__logo {
    text-align: left;
    line-height: 80px;
    padding: 0;
  }
  .footer__social {
    line-height: 80px;
    display: inline-block;
    float: right;
    padding-bottom: 0;
  }
  .footer__social li {
    display: inline-block;
    text-align: right;
    margin: 0 0 0 15px;
    height: 80px;
  }
  .footer__social li:first-child {
    margin-left: 0;
  }
}
@media (min-width: 1600px) {
  .footer {
    padding: 0 40px;
  }
}
/*==============================
	Page 404
==============================*/
.page-404 {
  display: block;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 32px rgba(0,0,0,0.18);
  box-shadow: 0 0 32px rgba(0,0,0,0.18);
  padding: 40px 20px;
  text-align: center;
}
.page-404__title {
  display: block;
  font-size: 120px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 14px 95px rgba(0,0,0,0.5);
}
.page-404__text {
  display: block;
  color: #92999e;
  font-size: 16px;
  letter-spacing: 0.4px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-404 {
    margin: 40px auto 0;
  }
  .page-404__title {
    font-size: 150px;
  }
}
/*==============================
	Player
==============================*/
.player {
  display: block;
  position: fixed;
  bottom: 0;
  height: 53px;
  width: 100%;
  padding: 0 20px;
  background-color: #63BFFF;
  z-index: 99;
}
.player .row {
  margin-right: -5px;
  margin-left: -5px;
}
.player .row [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.player:after {
  content: '';
  position: fixed;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 53px;
  width: 100%;
  -webkit-box-shadow: 0 0 32px rgba(0,0,0,0.18);
  box-shadow: 0 0 32px rgba(0,0,0,0.18);
}
.player__progress-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 100;
}
.player__progress {
  position: relative;
  height: 3px;
  width: 100%;
}
.player__seek-bar {
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.player__play-bar {
  background-color: #A972E8;
  height: 100%;
}
.player__cover {
  display: none;
  float: left;
  margin-top: 7px;
  width: 40px;
}
.player__cover img {
  width: 100%;
}
.player__track-title {
  display: inline-block;
  float: left;
  margin-top: 3px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 52px;
  color: #09112D;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: break-word;
  white-space: nowrap;
}
.player__buttons {
  text-align: center;
  margin-top: 3px;
}
.player__buttons li {
  display: inline-block;
}
.player__buttons button {
  color: #09112D;
  font-size: 18px;
  height: 50px;
}
.player__buttons button span {
  display: block;
  top: 0;
}
.player__play-btn {
  margin: 0 5px;
  width: auto;
}
.player__volume {
  display: none !important;
  float: right;
  position: relative;
  width: 100px;
  height: 4px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #A972E8;
  cursor: pointer;
  margin-top: 26px;
}
.player__volume-value {
  height: 4px;
  background-color: #09112D;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.player__volume-value:before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background-color: #09112D;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  right: -7px;
  top: -5px;
}
.player__playlist-wrap {
  display: inline-block;
  float: right;
  position: relative;
  margin-top: 3px;
}
.player__playlist-wrap.open .player__playlist {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  pointer-events: auto;
}
.player__playlist-wrap.open .player__playlist-btn {
  color: #A972E8;
  pointer-events: auto;
}
.player__playlist-btn {
  font-size: 20px;
  color: #09112D;
  width: 30px;
  height: 50px;
}
.player__playlist-btn span {
  display: block;
}
.player__playlist-btn:hover {
  color: #A972E8;
}
.player__playlist {
  position: absolute;
  display: block;
  width: calc(100vw - 40px);
  max-width: 360px;
  max-height: 200px;
  top: auto;
  bottom: 100%;
  right: 0;
  left: auto;
  margin: 0 0 3px;
  border: none;
  float: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #A972E8;
  padding: 14px 15px;
  z-index: -1;
  counter-reset: li;
  -webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.18);
  box-shadow: 0 0 10px rgba(0,0,0,0.18);
}
.player__playlist:before {
  content: '';
  position: absolute;
  height: 10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  background-color: #09112D;
}
.player__playlist li {
  position: relative;
  border-bottom: 1px solid rgba(68,73,81,0.1);
}
.player__playlist li:last-child {
  border-bottom: none;
}
.player__playlist li:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 36px;
  line-height: 36px;
  font-size: 12px;
  display: block;
  content: counter(li);
  counter-increment: li;
  width: 26px;
  text-align: center;
  color: #09112D;
  font-family: 'Open Sans', sans-serif;
}
.player__playlist li.jp-playlist-current:before {
  content: '\e072';
  font-family: 'Glyphicons Halflings';
  font-size: 10px;
}
.player__playlist a {
  font-size: 14px;
  color: #09112D;
}
.player__playlist a:hover,
.player__playlist a:focus {
  background-color: transparent;
  color: #fff;
}
.player__playlist .jp-playlist-item {
  display: block;
  padding: 0 20px 0 26px;
  height: 36px;
  line-height: 38px;
  letter-spacing: 0.4px;
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: break-word;
  white-space: nowrap;
}
.player__playlist .jp-playlist-item-remove {
  position: absolute;
  right: 0;
  font-size: 18px;
  line-height: 38px;
  display: block;
  height: 36px;
  color: #09112D;
  width: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .player {
    padding: 0 25px;
  }
  .player .row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .player .row [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .player__buttons button {
    font-size: 20px;
  }
  .player__play-btn {
    margin: 0 10px;
  }
  .player__volume {
    display: inline-block !important;
  }
  .player__playlist-wrap {
    margin-left: 25px;
  }
  .player__playlist-btn {
    font-size: 24px;
  }
  .player__playlist {
    width: 360px;
    padding: 14px 20px;
  }
  .player__playlist li:before {
    font-size: 14px;
  }
  .player__playlist a {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .player__cover {
    display: inline-block;
  }
  .player__track-title {
    width: 300px;
    margin-left: 20px;
  }
}
@media (min-width: 1200px) {
  .player {
    height: 63px;
  }
  .player .row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .player .row [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .player:after {
    height: 63px;
  }
  .player__cover {
    width: 50px;
  }
  .player__track-title {
    line-height: 60px;
    font-size: 18px;
  }
  .player__buttons button {
    font-size: 24px;
    height: 60px;
  }
  .player__play-btn {
    margin: 0 15px;
  }
  .player__playlist-wrap {
    margin-top: 3px;
    margin-left: 35px;
  }
  .player__playlist-btn {
    height: 60px;
  }
  .player__volume {
    margin-top: 32px;
  }
}
@media (min-width: 1600px) {
  .player {
    padding: 0 40px;
  }
}
.player__play-btn .glyphicon-pause,
.jp-state-playing .player__play-btn .glyphicon-play {
  display: none;
}
.jp-state-playing .player__play-btn .glyphicon-pause {
  display: inline-block;
}
