
body::-webkit-scrollbar {
  width: 16px;
}
body::-webkit-scrollbar-track {
  background: #e6eaf2;
}
body::-webkit-scrollbar-thumb {
  background-color: #626f83;
  outline: 1px solid #e6eaf2;
}
/*==============================
	Header
==============================*/
.header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 70px;
  background-color: #fff;
  border-bottom: 2px solid #e6eaf2;
  z-index: 101;
}
.header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  padding: 0 15px;
}
.header__logo {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  width: 100%;
}
.header__logo img {
  width: 100px;
  height: auto;
  display: block;
}
.header__actions {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  margin-left: auto;
  margin-right: 40px;
}
.header__action {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 24px;
  position: relative;
  margin-left: 15px;
}
.header__action:first-child {
  margin-left: 0;
}
.header__action--cart span,
.header__action--note span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 16px;
  min-width: 16px;
  color: #fff;
  padding: 0 5px;
  border-radius: 8px;
  background-color: #f65656;
  position: absolute;
  top: 1px;
  left: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  pointer-events: none;
}
.header__action--cart span:empty,
.header__action--note span:empty {
  display: none;
}
.header__action--note a svg,
.header__action--note button svg {
  width: 22px;
}
.header__action--note span {
  background-color: #0e2d49;
}
.header__action:hover .header__drop {
  pointer-events: auto;
  opacity: 1;
  z-index: 99;
  margin-top: 0;
}
.header__action-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 100%;
}
.header__action-btn span {
  display: none;
}
.header__action-btn svg {
  width: 24px;
  height: auto;
  fill: #626f83;
  transition: fill 0.5s ease;
}
.header__action-btn:hover svg {
  fill: #0e2d49;
}
.header__btn {
  position: absolute;
  width: 24px;
  height: 22px;
  display: block;
  right: 15px;
  top: 24px;
}
.header__btn span {
  position: absolute;
  right: 0;
  width: 24px;
  height: 2px;
  background-color: #626f83;
  border-radius: 2px;
  transition: 0.5s ease;
}
.header__btn span:first-child {
  top: 0;
}
.header__btn span:nth-child(2) {
  top: 10px;
  width: 16px;
}
.header__btn span:last-child {
  top: 20px;
  width: 8px;
}
.header__btn:hover span {
  background-color: #0e2d49;
}
.header__btn--active span {
  background-color: #0e2d49;
}
.header__btn--active span:first-child {
  transform: rotate(-45deg);
  top: 9px;
}
.header__btn--active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.header__btn--active span:last-child {
  width: 24px;
  transform: rotate(45deg);
  top: 9px;
}
  .release__list {
  /*   width: calc(100% - 310px);*/
    height: 388px;
  }
  .release__content {
   width: 100%;
  }
.header__search {
  position: absolute;
  left: 0;
  top: -71px;
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
  z-index: 1;
  padding: 0 15px;
  border-bottom: 2px solid #e6eaf2;
  transition: top 0.5s ease;
}
.header__search input {
  width: calc(100% - 30px);
  height: 40px;
  background-color: #e6eaf2;
  color: #0e2d49;
  font-size: 16px;
  border-radius: 20px;
  border: none;
  padding: 0 20px;
  font-family: 'Roboto', sans-serif;
}
.header__search input:focus {
  border-color: #0e2d49;
}
.header__search button {
  position: absolute;
  right: 60px;
  top: 15px;
  height: 40px;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header__search button svg {
  width: 20px;
  height: auto;
  fill: #626f83;
  transition: fill 0.5s ease;
}
.header__search button:hover svg {
  fill: #0e2d49;
}
.header__search button.close {
  right: 15px;
}
.header__search--active {
  top: 0;
}
.header__nav {
  display: none;
}
.header__drop {
  position: absolute;
  top: 100%;
  right: -15px;
  background-color: #e6eaf2;
  padding: 15px;
  border-radius: 20px;
  width: 200px;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  transition: 0.4s ease;
  margin-top: -5px;
}
.header__note {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(98,111,131,0.1);
}
.header__note:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.header__note svg {
  width: 16px;
  height: auto;
  margin-right: 5px;
  fill: #626f83;
}
.header__note p {
  color: #0e2d49;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  width: calc(100% - 25px);
  display: block;
  margin-bottom: 0;
  font-weight: 600;
}
.header__note p a {
  color: #0e2d49;
  text-decoration: underline;
}
.header__note p a:hover {
  color: #0e2d49;
  text-decoration: none;
}
.header__note span {
  padding: 0;
  font-size: 12px;
  color: #626f83;
  position: relative;
  background-color: transparent;
  top: auto;
  left: auto;
  display: block;
  width: 100%;
  margin-top: 5px;
}
.header__note--succ svg {
  fill: #29b474;
}
.header__note--fail svg {
  fill: #f65656;
}
.header__note--info svg {
  fill: #626f83;
}
.header__note--gift svg {
  fill: #7640d8;
}
.header__product {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(98,111,131,0.1);
  position: relative;
  padding-left: 56px;
}
.header__product button {
  position: absolute;
  width: 14px;
  bottom: 5px;
  right: 0;
}
.header__product button svg {
  width: 14px;
  height: auto;
  fill: #626f83;
  transition: fill 0.4s ease;
}
.header__product button:hover svg {
  fill: #f65656;
}
.header__product img {
  width: 46px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
}
.header__product p {
  color: #0e2d49;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  width: 100%;
  display: block;
  margin-bottom: 0;
  font-weight: 600;
}
.header__product p a {
  color: #0e2d49;
}
.header__product p a:hover {
  color: #f65656;
}
.header__product span {
  padding: 0;
  font-size: 14px;
  color: #626f83;
  position: relative;
  background-color: transparent;
  top: auto;
  left: auto;
  display: block;
  width: 100%;
  margin-top: 5px;
  line-height: 100%;
}
.header__product:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.header__all {
  display: none;
}
.nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fx-1 {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    min-width: 50px;
}
@media (min-width: 400px) {
  .header__action {
    margin-left: 20px;
  }
  .header__action:first-child {
    margin-left: 0;
  }
  .header__actions {
    margin-right: 44px;
  }
}
@media (min-width: 576px) {
  .header__action--signin {
    width: auto;
    padding-left: 22px;
  }
  .header__action--signin:before {
    content: '';
    position: absolute;
    display: block;
    width: 2px;
    height: 24px;
    background-color: #e6eaf2;
    top: 50%;
    left: 0;
    margin-top: -12px;
  }
  .header__action--signin:hover a span,
  .header__action--signin:hover button span {
    color: #0e2d49;
  }
  .header__action--signin:hover a svg,
  .header__action--signin:hover button svg {
    fill: #f65656;
  }
  .header__action-btn span {
    display: block;
    white-space: nowrap;
    color: #626f83;
    font-size: 16px;
    margin-right: 10px;
    font-family: 'Roboto', sans-serif;
    transition: color 0.5s ease;
  }
  .header__content {
    padding: 0 30px;
  }
  .header__search {
    padding: 0 30px;
  }
  .header__search button {
    right: 75px;
  }
  .header__search button.close {
    right: 30px;
  }
  .header__btn {
    right: 30px;
  }
  .header__drop {
    width: 260px;
  }
}
@media (min-width: 768px) {
  .header__action {
    margin-left: 30px;
  }
  .header__action--signin {
    padding-left: 32px;
  }
}
@media (min-width: 1200px) {
  .header {
    position: relative;
    padding-left: 280px;
  }
  .header--mobile {
    display: none;
  }
  .header__logo,
  .header__btn {
    display: none;
  }
  .header__actions {
    margin-right: 0;
  }
  .header__action--search {
    display: none;
  }
  .header__search {
    position: relative;
    top: auto;
    left: auto;
    width: 320px;
    padding: 0;
    border: none;
    background-color: transparent;
  }
  .header__search input {
    padding: 0 60px 0 20px;
    width: 100%;
  }
  .header__search button {
    right: 20px;
  }
  .header__search button.close {
    display: none;
  }
  .header__search--active {
    top: auto;
  }
  .header__nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-right: 60px;
  }
  .header__nav a {
    font-size: 16px;
    color: #0e2d49;
    margin-right: 30px;
    font-family: 'Roboto', sans-serif;
  }
  .header__nav a:last-child {
    margin-right: 0;
  }
  .header__nav a:hover {
    color: #f65656;
  }
  .header__all {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #fff;
    color: #626f83;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 15px;
    height: 24px;
    border-radius: 12px 12px 0 0;
  }
  .header__all:hover {
    color: #f65656;
  }
}
.cnr {
    min-width: 32px;
    font-weight: 600;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    opacity: .5;
}
.hit {
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    background:#009688;
    padding: 2px 5px 2px;
    max-width: 51px;
    color: aliceblue;
    float: right;
    line-height: 1;
    margin-top: 10px;
    margin-right: 4px;
}
.pack {
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    background:#a321f3;
    padding: 2px 5px 2px;
    max-width: 51px;
    color: aliceblue;
    float: right;
    line-height: 1;
    margin-top: 10px;
    margin-right: 4px;
} 
.addx {
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    background:#e7e5e1;
    padding: 2px 5px 2px;
    max-width: 51px;
    color:#8f8f8f;
    float: right;
    line-height: 1;
    margin-top: 10px;
    margin-right: 4px;
} 
.addxx {
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    background:#FF5722;
    padding: 2px 5px 2px;
    max-width: 51px;
    color:#ffffff;
    float: right;
    line-height: 1;
    margin-top: 10px;
    margin-right: 4px;
} 
.top {
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    background:#e91e63;
    padding: 2px 5px 2px;
    max-width: 51px;
    color: aliceblue;
    float: right;
    line-height: 1;
    margin-top: 10px;
    margin-right: 4px;
} 
.mp3 {
        font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    background: #8045ea;
    padding: 2px 5px 2px;
    max-width: 51px;
    color: aliceblue;
    float: right;
    line-height: 1;
    margin-top: 10px;
    margin-right: 4px;
}
.extern {
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    background:#4CAF50;
    padding: 2px 5px 2px;
    max-width: 51px;
    color: aliceblue;
    float: right;
    line-height: 1;
    margin-top: 10px;
    margin-right: 4px;
}
.radio {
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    background:#393a35;
    padding: 2px 5px 2px;
    max-width: 51px;
    color: aliceblue;
    float: right;
    line-height: 1;
    margin-top: 10px;
    margin-right: 4px;
}
/*==============================
	Album
==============================*/
.album {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  width: 100%;
}
.album__cover {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #000;
}
.album__cover img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: 0.5s ease;
}
.album__cover a {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  top: 50%;
  left: 50%;
  margin: -31px 0 0 -32px;
  border-radius: 50%;
  background-color:#E91E63;
  transform: scale(0.8);
  transition: 0.5s ease;
}
.album__cover a svg {
  fill:#ffffff;
  width: 24px;
  height: auto;
  margin: 1px 0 0 1px;
  transition: fill 0.5s ease;
}
.album__cover a:hover svg {
  fill: #f65656;
}
.album__cover:hover img {
  opacity: 0.6;
  transform: scale(1.08);
}
.album__cover:hover a {
  opacity: 1;
  transform: scale(1);
}
.album__cover:hover .album__stat {
  opacity: 1;
  transform: scale(1);
}
.album__title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 5px;
}
.album__title h3 {
  display: block;
  width: 100%;
  color: #0e2d49;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.album__title h3 a {
  color: #0e2d49;
}
.album__title h3 a:hover {
  color: #f65656;
}
.album__title span {
  display: block;
  width: 100%;
  color: #626f83;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.album__title span a {
  color: #626f83;
}
.album__title span a:hover {
  color: #f65656;
}
.album__stat {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 12px;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.5s ease;
}
.album__stat span {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 15px;
}
.album__stat span:last-child {
  margin-right: 0;
}
.album__stat svg {
  width: 14px;
  height: auto;
  fill: #fff;
  margin-right: 5px;
}
@media (min-width: 768px) {
  .album {
    margin-top: 30px;
  }
  .album--sidebar {
    margin-top: 20px;
  }
  .album__stat {
    font-size: 13px;
  }
  .album__stat span {
    margin-right: 20px;
  }
  .album__stat span:last-child {
    margin-right: 0;
  }
  .album__stat svg {
    width: 16px;
  }
}
/*==============================
	Releases
==============================*/
.release {
    display: flex;
    border-radius: 9px;
    margin-bottom: 2px;
    background: linear-gradient(219deg, #373737 0%,#555554 100%);
     /* background-color: #fff; */
    /* flex-direction: column; */
    /* justify-content: flex-start; */
    /* align-items: flex-start; */
    /* border-bottom: 2px solid #e5e1e6; */
    /* padding-bottom: 20px; */
}
.release__cover {
    height: 50px;
    display: block;
    position: relative;
    width: 100%;
    border-radius: 20px;
    /* overflow: hidden; */
    /* background: #85919114;*/
}
.release__cover img {
  width: 100%;
}
.release__list {
  position: relative;
  height: 350px;
 /* width: 100%;*/
  overflow: hidden;
  padding-right:7px;
  margin-top: 5px;
}
.release__stat {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #626f83;
  font-size: 14px;
  transition: 0.5s ease;
  width: 100%;
  margin-top: 15px;
}
.release__stat span {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 20px;
}
.release__stat span:last-child {
  margin-right: 0;
}
.release__stat svg {
  width: 20px;
  height: auto;
  fill: #0e2d49;
  margin-right: 5px;
}
.release__buy {
  /*width: 100%;*/
  height: 45px;
  border-radius:7px;
  background-color:#673AB7;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  padding: 0 25px;
  margin-top: 15px;
}
.release__buy svg {
  fill: #0e2d49;
  width: 28px;
  height: auto;
  margin-right: 7px;
}
.release__buy:hover {
  background-color: #0e2d49;
  color: #fff;
}
@media (min-width: 768px) {
  .release {
    flex-direction: row;
    margin-bottom: 2px;
  }
  .release__list {
    margin-top: 0;
 /*   width: calc(100% - 250px);*/
  }
  .release__content {
    width: 100%;
    /* margin-right: 20px; */
    /* margin-top: -20px; */
  }
}
@media (min-width: 1200px) {
  .release__list {
  /*   width: calc(100% - 310px);*/
    height: 388px;
  }
  .release__content {
   width: 100%;
  }
}
/*==============================
	Store-item
==============================*/
.store-item {
  margin-top: 20px;
  border: 2px solid #e6eaf2;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  position: release;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.store-item__cover {
  display: block;
  position: release;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.store-item__cover img {
  width: 100%;
}
.store-item__description {
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.store-item__buy {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background-color: #f65656;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  padding: 0 25px;
  margin-top: 15px;
}
.store-item__buy svg {
  fill: #0e2d49;
  width: 28px;
  height: auto;
  margin-right: 7px;
}
.store-item__buy:hover {
  background-color: #0e2d49;
  color: #fff;
}
.store-item__content {
  width: 100%;
  display: block;
}
.store-item__carousel {
  position: relative;
  width: 100%;
}
.store-item__carousel .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  position: relative;
}
.store-item__carousel .owl-dot {
  margin-right: 10px;
}
.store-item__carousel .owl-dot:last-child {
  margin-right: 0;
}
.store-item__carousel .owl-dot span {
  display: block;
  height: 4px;
  width: 10px;
  border-radius: 2px;
  background-color: #626f83;
  transition: 0.5s ease;
}
.store-item__carousel .owl-dot.active span {
  width: 20px;
  background-color: #0e2d49;
}
@media (min-width: 768px) {
  .store-item {
    flex-direction: row;
  }
  .store-item__description {
    margin-top: 0;
    width: calc(100% - 250px);
  }
  .store-item__content {
    width: 230px;
    margin-right: 20px;
  }
}
@media (min-width: 1200px) {
  .store-item__description {
    width: calc(100% - 310px);
  }
  .store-item__content {
    width: 290px;
  }
}
/*==============================
	Artist
==============================*/
.artist {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  width: 100%;
  position: relative;
}
.artist__cover {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.artist__cover:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #000 0%, rgba(0,0,0,0) 100%);
  opacity: 0.4;
  transition: opacity 0.5s ease;
  z-index: 2;
}
.artist__cover img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.artist__title {
  z-index: 3;
  color: #0e2d49;
  font-size: 16px;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  transition: color 0.5s ease;
  margin-top: 5px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
.artist:hover .artist__cover:before {
  opacity: 0.8;
}
.artist:hover .artist__title {
  color: #f65656;
}
@media (min-width: 768px) {
  .artist {
    margin-top: 30px;
  }
}
/*==============================
	Dashbox
==============================*/
.dashbox {
  background-color: #fff;
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #e6eaf2;
}
.dashbox__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #e6eaf2;
}
.dashbox__title h3 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: #0e2d49;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
}
.dashbox__title h3 svg {
  fill: #626f83;
  margin-right: 12px;
  width: 22px;
  height: auto;
}
.dashbox__title h3 span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 18px;
  min-width: 18px;
  color: #fff;
  padding: 0 5px;
  border-radius: 9px;
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  pointer-events: none;
  background-color: #0e2d49;
  margin-bottom: auto;
  margin-left: 5px;
}
.dashbox__wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.dashbox__more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  margin-left: 15px;
  color: #626f83;
  font-family: 'Roboto', sans-serif;
}
.dashbox__more:hover {
  color: #f65656;
}
.dashbox__refresh {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 30px;
}
.dashbox__refresh svg {
  fill: #626f83;
  width: 18px;
  height: auto;
  transition: fill 0.5s ease;
}
.dashbox__refresh:hover svg {
  fill: #f65656;
}
.dashbox__table-wrap {
  position: relative;
  display: block;
  width: 100%;
  overflow: auto;
  padding: 20px 20px 5px;
}
.dashbox__table-scroll {
  width: 100%;
  display: block;
}
.dashbox__list-wrap {
  padding: 5px;
  position: relative;
  display: block;
  width: 100%;
}
.dashbox__scroll {
  position: relative;
  max-height: 320px;
  width: 100%;
  overflow: hidden;
  padding-right: 14px;
}
.dashbox__note {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(98,111,131,0.1);
  height: 58px;
}
.dashbox__note:last-child {
  height: 48px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.dashbox__note svg {
  width: 20px;
  height: auto;
  margin-right: 10px;
  fill: #626f83;
}
.dashbox__note p {
  color: #0e2d49;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  width: calc(100% - 30px);
  display: block;
  margin-bottom: 0;
  font-weight: 600;
}
.dashbox__note p a {
  color: #0e2d49;
  text-decoration: underline;
}
.dashbox__note p a:hover {
  color: #0e2d49;
  text-decoration: none;
}
.dashbox__note span {
  padding: 0;
  font-size: 13px;
  color: #626f83;
  position: relative;
  background-color: transparent;
  top: auto;
  left: auto;
  display: block;
  width: 100%;
  margin-top: 5px;
}
.dashbox__note--succ svg {
  fill: #29b474;
}
.dashbox__note--fail svg {
  fill: #f65656;
}
.dashbox__note--info svg {
  fill: #626f83;
}
.dashbox__note--gift svg {
  fill: #7640d8;
}
@media (min-width: 768px) {
  .dashbox {
    margin-top: 30px;
  }
}
/*==============================
	Single
==============================*/
.single-item {
    width:100%;
    display: flex;
    font-size:17px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
   /* margin-bottom: 10px; 
    padding-bottom: 0px;
    border-bottom: 1px solid #e6eaf2;*/
    height: 50px;
}
.single-item:last-child {
  padding-bottom: 0;
/*  margin-bottom: 0;
  border-bottom: none;*/
  height: 48px;
}
.single-item__number {
  color: #0e2d49;
  font-size: 22px;
  min-width: 20px;
  width: auto;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.single-item__rate {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #0e2d49;
  width: 24px;
  margin-right: 10px;
}
.single-item__rate svg {
  fill: #29b474;
  width: 20px;
  height: auto;
}
.single-item__rate--red svg {
  fill: #f65656;
}
.single-item__cover {
  min-height: 50px;
  min-width: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.5s ease;
}
.single-item__cover img {
  width: 50px;
  height: 50px;
  opacity: 1;
  transition: opacity 0.5s ease;
  position: relative;
}
.single-item__cover svg {
  position: absolute;
  fill: #fff;
  width: 24px;
  height: auto;
  margin: 1px 0 0 1px;
  transition: 0.5s ease;
}
.single-item__cover svg:last-child {
  opacity: 0;
}
.single-item__cover:hover svg {
  fill: #f65656;
}
.single-item__cover.active {
  background-color:#E91E63;
}
.single-item__cover.active img {
  opacity: 0.3;
}
.single-item__cover.active svg {
  fill: #ebecda;
}
.single-item__cover.pause svg {
  opacity: 1;
}
.single-item__cover.pause svg:last-child {
  opacity: 0;
}
.single-item__cover.play svg {
  opacity: 0;
}
.single-item__cover.play svg:last-child {
  opacity: 1;
}
.single-item__title {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5px;
  margin-right: auto;
}
.single-item__title h4 {
  display: block;
  width: 100%;
  color: #0e2d49;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.single-item__title h4 a {
    color:#8045ea;
}
.single-item__title h4 a:hover {
  color: #f65656;
}
.single-item__title span {
 /* display: block; */
  /*text-transform: lowercase;*/
  width: 100%;
  color: #626f83;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.single-item__title span a {
  color: #626f83;
}
.single-item__title span a:hover {
  color: #f65656;
}
.single-item__time {
  margin-right: 5px;
  font-size: 16px;
}
.single-item__time--live {
  background-color: #f65656;
  color: #fff;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 12px;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.single-item__add {
  margin-left: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(41,180,116,0.15);
}
.single-item__add svg {
  width: 18px;
  height: auto;
  fill: #29b474;
}
.single-item__add:hover {
  background-color: rgba(41,180,116,0.3);
}
.single-item__export {
  margin-left: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(118,64,216,0.15);
}
.single-item__export svg {
  width: 18px;
  height: auto;
  fill: #7640d8;
}
.single-item__export:hover {
  background-color: rgba(118,64,216,0.3);
}
.single-item:hover .single-item__cover {
  background-color: #fff;
}
.single-item:hover .single-item__cover img {
  opacity: 0.5;
}
.single-item:hover .single-item__cover svg {
  opacity: 1;
}
.single-item:hover .single-item__cover svg:last-child {
  opacity: 0;
}
.single-item:hover .single-item__cover.play svg {
  opacity: 0;
}
.single-item:hover .single-item__cover.play svg:last-child {
  opacity: 1;
}
/*==============================
	Main
==============================*/
.main {
  position: relative;
  margin-top: 70px;
  padding: 20px 0 60px;
}
.main__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-top: 60px;
}
.main__title h1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #0e2d49;
  font-size: 30px;
  line-height: 140%;
  margin-bottom: 0;
  position: relative;
}
.main__title h1 b {
  font-weight: 500;
}
.main__title h1 a {
  color: #0e2d49;
}
.main__title h1 a:hover {
  color: #f65656;
}
.main__title h2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #0e2d49;
  font-size: 26px;
  line-height: 100%;
  margin-bottom: 0;
  position: relative;
}
.main__title h2 svg {
  width: 26px;
  height: auto;
  fill: #f65656;
  margin-right: 10px;
}
.main__title h2 b {
  font-weight: 500;
}
.main__title h2 a {
  color: #0e2d49;
}
.main__title h2 a:hover {
  color: #f65656;
}
.main__title h3 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #0e2d49;
  margin-bottom: 0;
  line-height: 100%;
  position: relative;
}
.main__title p {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: #626f83;
  margin-top: 20px;
  margin-bottom: 0;
}
.main__title p b {
  font-weight: 600;
}
.main__title p a {
  color: #f65656;
  text-decoration: underline;
}
.main__title p a:hover {
  text-decoration: none;
}
.main__title ol {
  padding-left: 0;
  list-style: none;
  counter-reset: li;
  margin-bottom: 0;
}
.main__title ol ol {
  padding-left: 15px;
  margin-top: 10px;
}
.main__title ol ol ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.main__title ol ol ol li {
  margin-top: 5px;
}
.main__title ol h4 {
  font-size: 16px;
  color: #0e2d49;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 20px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}
.main__title ol li {
  font-size: 16px;
  line-height: 24px;
  color: #626f83;
  position: relative;
}
.main__title ol li b {
  font-weight: 600;
  color: #626f83;
}
.main__title ol li a {
  color: #f65656;
}
.main__title ol li a:hover {
  color: #f65656;
  text-decoration: underline;
}
.main__title ol li:last-child {
  margin-bottom: 0;
}
.main__title ol li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
}
.main__title--page {
  margin-bottom: 0;
  margin-top: 50px;
}
.main__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #626f83;
  font-weight: 600;
}
.main__link svg {
  width: 22px;
  height: auto;
  fill: #626f83;
  margin-left: 5px;
  transition: fill 0.5s ease;
}
.main__link:hover {
  color: #0e2d49;
}
.main__link:hover svg {
  fill: #f65656;
}
.main__carousel-wrap {
  position: relative;
}
.main__carousel .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  position: relative;
}
.main__carousel .owl-dot {
  margin-right: 10px;
}
.main__carousel .owl-dot:last-child {
  margin-right: 0;
}
.main__carousel .owl-dot span {
  display: block;
  height: 4px;
  width: 10px;
  border-radius: 2px;
  background-color: #626f83;
  transition: 0.5s ease;
}
.main__carousel .owl-dot.active span {
  width: 20px;
  background-color: #0e2d49;
}
.main__nav {
  display: none;
}
.main__list {
  margin-top: 20px;
}
.main__list--dashbox {
  margin-top: 0;
}

.main__list--dashbox .single-item__time {
  font-size: 12px;
}
.main__filter {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  background-color: #fff;
  position: relative;
}
.main__filter:before {
  content: '';
  position: absolute;
  display: block;
  left: -15px;
  right: -15px;
  width: auto;
  top: 0;
  border-top: 2px solid #e6eaf2;
  border-bottom: 2px solid #e6eaf2;
  bottom: 0;
  background-color: #fff;
}
.main__filter-wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.main__filter-search {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.main__filter-search input {
  width: 100%;
  height: 40px;
  background-color: #e6eaf2;
  color: #0e2d49;
  font-size: 16px;
  border-radius: 20px;
  border: none;
  padding: 0 60px 0 20px;
  font-family: 'Roboto', sans-serif;
}
.main__filter-search input:focus {
  border-color: #0e2d49;
}
.main__filter-search button {
  position: absolute;
  right: 20px;
  top: 0;
  height: 40px;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main__filter-search button svg {
  width: 20px;
  height: auto;
  fill: #626f83;
  transition: 0.5s ease;
}
.main__filter-search button:hover svg {
  fill: #0e2d49;
}
.main__load {
  width: 140px;
  height: 50px;
  border-radius: 25px;
  background-color: #0e2d49;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  margin: 30px auto 0;
}
.main__load:hover {
  color: #fff;
  background-color: #f65656;
}
.main__tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
}
.main__tabs li {
  margin-top: 15px;
  margin-right: 15px;
}
.main__tabs li:last-child {
  margin-right: 0;
}
.main__tabs a {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  min-width: 70px;
  width: auto;
  color: #fff;
  font-size: 14px;
  background-color: #626f83;
  border-radius: 20px;
  padding: 0 20px;
}
.main__tabs a span {
  font-size: 12px;
  font-weight: 600;
  margin-right: 3px;
  margin-top: 3px;
}
.main__tabs a:hover {
  color: #fff;
  background-color: #0e2d49;
}
.main__tabs a.active {
  background-color: #f65656;
  color: #fff;
}
.main__table {
  width: 100%;
  min-width: 520px;
  border-spacing: 0;
}
.main__table thead {
  border-bottom: 2px solid #e6eaf2;
}
.main__table thead th {
  font-size: 14px;
  color: #626f83;
  font-weight: 400;
  padding: 0 10px 20px 0;
  line-height: 100%;
  margin-bottom: 0;
  border: none;
}
.main__table thead th a {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: #626f83;
}
.main__table thead th a svg {
  width: 20px;
  height: auto;
  fill: #626f83;
  transition: fill 0.5s ease;
}
.main__table thead th a:hover {
  color: #0e2d49;
}
.main__table thead th a:hover svg {
  fill: #f65656;
}
.main__table thead th a.active {
  color: #0e2d49;
}
.main__table thead th a.active svg {
  width: 16px;
  fill: #f65656;
}
.main__table tbody tr {
  border-bottom: none;
  background-color: transparent;
  border-top: 2px solid #e6eaf2;
}
.main__table tbody td {
  padding: 0;
  background-color: transparent;
  border: 0px solid transparent;
}
.main__table tbody td:first-child .main__table-text {
  border-radius: 20px 0 0 20px;
}
.main__table tbody td:last-child .main__table-text,
.main__table tbody td:last-child .main__table-btns {
  border-radius: 0 20px 20px 0;
}
.main__table tbody td .main__table-text {
  background-color: transparent;
  padding: 15px 20px 15px 0;
}
.main__table-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  color: #626f83;
  font-weight: 400;
  line-height: 30px;
  padding: 20px;
  white-space: nowrap;
}
.main__table-text svg {
  width: 18px;
  height: auto;
  transition: fill 0.5s ease;
  fill: #626f83;
  margin-right: 5px;
}
.main__table-text a {
  font-size: 16px;
  color: #0e2d49;
}
.main__table-text a:hover {
  color: #f65656;
}
.main__table-text--number a {
  font-size: 14px;
  line-height: 22px;
  border-bottom: 2px dashed #f65656;
}
.main__table-text--price {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #626f83;
  font-size: 16px;
}
.main__table-text--red {
  color: #f65656;
}
.main__table-text--red svg {
  fill: #f65656;
}
.main__table-text--green {
  color: #29b474;
}
.main__table-text--green svg {
  fill: #29b474;
}
.main__table-text--grey {
  color: #626f83;
}
.main__table-img {
  width: 100px;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px 20px 15px 0;
}
.main__table-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (min-width: 576px) {
  .main {
    padding: 20px 15px 60px;
  }
  .main__list--dashbox .single-item__time {
    font-size: 14px;
  }
  .main__filter:before {
    left: -30px;
    right: -30px;
  }
}
@media (min-width: 768px) {
  .main {
    padding: 30px 15px 70px;
  }
  .main__title {
    margin-top: 70px;
    margin-bottom: 0;
  }
  .main__title h1 {
    font-size: 36px;
  }
  .main__title h2 {
    font-size: 30px;
  }
  .main__title h2 svg {
    width: 30px;
  }
  .main__title p:last-child {
    margin-bottom: 10px;
  }
  .main__title--sidebar {
    margin-bottom: 10px;
  }
  .main__carousel .owl-dots {
    margin-top: 30px;
  }
  .main__list {
    margin-top: 30px;
  }
  .main__list--dashbox {
    margin-top: 0;
  }
  .main__filter {
    padding: 0;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
    height: 70px;
  }
  .main__filter-wrap {
    padding: 0;
  }
  .main__load {
    margin: 40px auto 0;
  }
  .main__tabs li {
    margin-top: 20px;
    margin-right: 20px;
  }
  .main__tabs li:last-child {
    margin-right: 0;
  }
  .main__filter-search {
    margin-bottom: 0;
    width: 180px;
    margin-right: 30px;
  }
  .main__filter-search input {
    width: 180px;
  }
}
@media (min-width: 992px) {
  .main__filter-search {
    margin-bottom: 0;
    width: 250px;
  }
  .main__filter-search input {
    width: 250px;
  }
  .main__title--sidebar {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .main {
    padding: 0 15px 70px 295px;
    margin-top: 0;
  }
  .main__carousel .owl-dots {
    justify-content: flex-end;
    padding-right: 68px;
  }
  .main__nav {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    right: 0;
    bottom: -14px;
    z-index: 2;
  }
  .main__nav svg {
    width: 30px;
    height: auto;
    fill: #626f83;
    transition: fill 0.5s ease;
  }
  .main__nav:hover svg {
    fill: #0e2d49;
  }
  .main__nav--prev {
    right: 25px;
  }
  .main__nav--next {
    right: -5px;
  }
  .main__nav--hero {
    bottom: 15px;
  }
  .main__nav--hero svg {
    fill: #fff;
  }
  .main__nav--hero.main__nav--prev {
    right: 95px;
  }
  .main__nav--hero.main__nav--next {
    right: 65px;
  }
  .main__nav--hero:hover svg {
    fill: #f65656;
  }
  .main__filter {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: #fff;
    border: none;
  }
  .main__filter-search {
    margin-bottom: 0;
    width: 220px;
  }
  .main__filter-search input {
    width: 220px;
  }
}
/*==============================
	Breadcrumb
==============================*/
.breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.breadcrumb__item {
  font-size: 14px;
  color: #626f83;
  transition: 0.5s ease;
  position: relative;
  margin-right: 34px;
}
.breadcrumb__item:before {
  content: '';
  position: absolute;
  left: 100%;
  top: 1px;
  bottom: 0;
  width: 34px;
  background: url("../img/breadcrumb.svg") no-repeat center/16px auto;
}
.breadcrumb__item:hover {
  color: #626f83;
}
.breadcrumb__item:last-child {
  margin-right: 0;
}
.breadcrumb__item:last-child:before {
  display: none;
}
.breadcrumb__item--active {
  cursor: default;
  margin-right: 0;
}
.breadcrumb__item--active:before {
  display: none;
}
.breadcrumb__item--active:hover {
  color: #626f83;
}
.breadcrumb a {
  color: #626f83;
}
.breadcrumb a:hover {
  color: #f65656;
}
@media (min-width: 1200px) {
  .breadcrumb {
    margin-top: 25px;
  }
  .breadcrumb--hidden-desk {
    display: none;
  }
}
/*==============================
	Scrollbar-track
==============================*/
.scrollbar-track-y {
  background: #e6eaf2 !important;
  top: 0px !important;
  bottom: 0px !important;
  height: auto !important;
  width: 4px !important;
  border-radius: 4px !important;
  right:1px !important;
  overflow: hidden;
}
.scrollbar-thumb-y {
  background: #626f83 !important;
  width: 4px !important;
  border-radius: 4px !important;
}
.scrollbar-track-x {
  background: #e6eaf2 !important;
  left: 0px !important;
  right: 0px !important;
  height: 4px !important;
  width: auto !important;
  border-radius: 4px !important;
  bottom: 0px !important;
  overflow: hidden;
}
.scrollbar-thumb-x {
  background: #0e2d49 !important;
  height: 4px !important;
  border-radius: 4px !important;
}
