﻿@charset "UTF-8";
/*!
 * Durandal 2.1.0 Copyright (c) 2012 Blue Spire Consulting, Inc. All Rights Reserved.
 * Available via the MIT license.
 * see: http://durandaljs.com or https://github.com/BlueSpire/Durandal for details
 */
.modalBlockout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  pointer-events: auto;
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity 0.1s linear;
  -moz-transition: opacity 0.1s linear;
  -o-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear; }

.modalHost {
  top: 50%;
  left: 50%;
  position: fixed;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity 0.1s linear;
  -moz-transition: opacity 0.1s linear;
  -o-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear; }

.messageBox {
  min-width: 300px; }

.durandal-view-404 {
  color: red;
  margin: 8px 0;
  padding: 8px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-moz-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-o-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.entrance-out {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.1s;
  -moz-animation-duration: 0.1s;
  -ms-animation-duration: 0.1s;
  -o-animation-duration: 0.1s;
  animation-duration: 0.1s;
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }

@-moz-keyframes slideInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }

@-o-keyframes slideInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.entrance-in {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: slideInRight;
  -moz-animation-name: slideInRight;
  -o-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-o-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.entrance-in-fade {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn; }

@font-face {
  font-family: 'GT America';
  src: url("https://cdn.catglobe.com/fonts/GTAmerica/1.0/GT-America-Standard-Regular.ttf") format("truetype"); }

@font-face {
  font-family: 'GT America Extended Regular';
  src: url("https://cdn.catglobe.com/fonts/GTAmerica/1.0/GT-America-Extended-Regular.ttf") format("truetype"); }

@font-face {
  font-family: 'Custom-Icons';
  src: url("https://cdn.catglobe.com/fonts/iconsFont/v3/iconsfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: auto;
  font-family: 'GT America', Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px; }

#applicationHost {
  height: 100%; }

input[type="number"] {
  -moz-appearance: textfield; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: .3rem;
  outline: 0; }
  .modal-content .modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem; }
  .modal-content .modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px); }

.messageBox .modal-header h3 {
  margin: 0;
  font-size: 1.25rem; }

.messageBox .modal-body .message {
  margin: 0; }

.splash {
  position: absolute;
  font-size: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
  color: #e98d1a; }

.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: wait;
  z-index: 9998; }
  .loading .loading-bg {
    opacity: 0.3;
    background-color: #ccc;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .loading .loading-icon {
    font-size: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    color: rgba(0, 0, 0, 0.5);
    z-index: 9999; }

.popup-width {
  min-width: 450px; }

.modal-header {
  display: unset !important; }

.close {
  padding: 0 !important; }

.popup {
  max-height: 90vh;
  overflow-y: auto;
  width: 800px;
  padding: 40px;
  background: #FFFFFF;
  border: 1px solid #D7D7D7;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 0 auto;
  box-sizing: border-box; }
  .popup .close-icon {
    text-align: right;
    font-size: 20px; }
  .popup .header {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 40px;
    padding: 0px 40px;
    font-family: 'GT America Extended Regular'; }
  .popup .header-sub {
    font-size: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 20px; }
    .popup .header-sub i {
      cursor: pointer; }
  .popup .body {
    padding: 0px 40px; }
  .popup .footer {
    background: #fff;
    color: #000;
    padding: 0;
    margin-top: 50px;
    display: flex;
    padding: 0px 40px; }
  .popup.register {
    padding: 20px 0px;
    max-width: 600px; }
    .popup.register .close-icon {
      padding-right: 20px; }
    .popup.register .body {
      padding: 0; }

/* Portal CSS */
/* Variable */
/* Image Url */
body {
  background: #f3f3f1; }

.resetMarginPadding {
  margin: 0;
  padding: 0; }

.margin-20 {
  margin-top: 20px; }

.margin-14 {
  margin-top: 14px; }

.margin-right-20 {
  margin-right: 20px; }

.showOnly {
  display: block; }

.hideOnly {
  display: none; }

.showDesktopAndTablet {
  display: block; }
  .showDesktopAndTablet-flex {
    display: flex; }

.showTabletAndMobile {
  display: none; }

.showOnlyDesktop {
  display: block; }
  .showOnlyDesktop-flex {
    display: flex; }

.showOnlyTablet {
  display: none; }
  .showOnlyTablet-flex {
    display: none; }

.showOnlyMobile {
  display: none; }
  .showOnlyMobile-flex {
    display: none; }

.transition-animation {
  transition: ease-in 0.25s;
  -webkit-transition: ease-in 0.25s;
  -moz-transition: ease-in 0.25s;
  -o-transition: ease-in 0.25s; }

.fa-times {
  cursor: pointer; }

.arrow {
  cursor: pointer; }

/* Navigation */
.navigation {
  background: #FFF;
  border-bottom: 1px solid #E1E1E1;
  height: 96px;
  display: flex;
  align-items: center;
  padding-left: 48px;
  padding-right: 37px;
  position: fixed;
  z-index: 40;
  top: 0; }
  .navigation .right {
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 100%; }
    .navigation .right .account {
      display: flex;
      align-items: center;
      height: 100%;
      position: relative;
      font-size: 15px;
      color: #373739;
      border-radius: 4px;
      padding: 5px 10px; }
      .navigation .right .account:hover {
        opacity: 1; }
      .navigation .right .account .name {
        margin: 0 10px; }

.left {
  display: flex; }
  .left-menu {
    display: flex;
    list-style: none;
    margin: 0; }
    .left-menu li {
      padding: 0 10px; }
    .left-menu a {
      color: #757575; }

.menu {
  background: #FFFFFF;
  border: 1px solid #D7D7D7;
  border-radius: 10px;
  position: absolute;
  top: 66px;
  right: 50px;
  width: 300px;
  padding: 25px 30px; }
  .menu-list {
    list-style: none;
    padding: 0;
    margin: 0; }
    .menu-list li {
      line-height: 50px;
      border-bottom: 1px solid #E6E6E6;
      display: flex;
      align-items: center;
      cursor: pointer; }
      .menu-list li a {
        width: 100%;
        display: flex;
        align-items: center;
        color: #000;
        text-decoration: none; }
      .menu-list li:last-child {
        border-bottom: none; }
      .menu-list li .icon {
        width: 20px;
        margin-right: 30px; }

.logo {
  background-image: url("https://app.voxmusic.net/ol/Images/GetImage.aspx?rid=2ad21bd3-5055-44a2-ad42-2ace10be6357");
  background-repeat: no-repeat;
  height: 20px;
  width: 141px;
  background-size: 141px;
  cursor: pointer; }
  .logo-white {
    background-image: url("https://app.voxmusic.net/ol/Images/GetImage.aspx?rid=0dba9659-68fb-4f9d-bd0c-1a864ef6fb26"); }

.main-container {
  margin-top: 96px;
  flex: 1;
  overflow: auto; }

.filter {
  z-index: 3; }

/* Footer */
.footer {
  background: #000;
  color: #878787;
  padding-top: 60px; }
  .footer .hr {
    margin: 0;
    padding: 0;
    height: 1px;
    border-color: #393939; }

.partner {
  padding-bottom: 60px;
  display: flex;
  align-items: center; }
  .partner .left {
    width: 200px;
    margin-right: 100px; }
  .partner .right img {
    margin-right: 40px; }
    .partner .right img:last-child {
      margin-right: 0px; }

.site-map {
  display: flex;
  margin-top: 60px; }
  .site-map .information {
    width: 200px;
    margin-right: 100px; }
    .site-map .information .address {
      margin-top: 60px; }
    .site-map .information .mobil {
      margin-top: 20px; }
  .site-map .site-menu {
    display: flex;
    margin-bottom: 60px;
    width: calc( 100% - 300px); }
    .site-map .site-menu .menu {
      margin-top: 72px;
      width: 25%; }

/*
    Home
*/
.home {
  display: flex;
  flex-direction: row;
  min-height: 100%;
  position: relative; }
  .home .home-menu {
    position: relative;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 3;
    background: #FFF; }
    .home .home-menu.compressed {
      width: 108px; }
  .home .home-back {
    background: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #CACACA;
    margin-bottom: 10px;
    cursor: pointer; }

.home-upload {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px; }
  .home-upload-text {
    font-size: 32px;
    line-height: 44px;
    font-family: 'GT America Extended Regular'; }
  .home-upload-button {
    margin-left: auto; }

.included-others {
  margin-left: auto; }
  .included-others .included-others-icon {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: right;
    cursor: pointer; }

.home-playlist {
  display: flex;
  align-items: center; }

.home-search {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .home-search-text {
    font-size: 22px; }
  .home-search-left {
    flex: 1; }

.has-more {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px; }

/* Filters */
.filter-panel {
  position: relative;
  z-index: 3;
  background: #FFF; }
  .filter-panel .filter-body {
    display: flex; }
  .filter-panel .filter-content {
    width: 290px;
    height: 100%;
    padding-top: 50px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none; }
  .filter-panel .filter-content::-webkit-scrollbar {
    width: 0 !important; }
  .filter-panel .filter-panel-responsive {
    position: absolute;
    background-color: #AFAFAF;
    border-radius: 0px 5px 5px 0px;
    width: 29px;
    height: 42px;
    right: -29px;
    top: 50px;
    color: #FFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: center; }
    .filter-panel .filter-panel-responsive i {
      width: 100%; }
  .filter-panel-list-text {
    margin: 30px 0px 20px 0px;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 18px; }
  .filter-panel .padding-50 {
    padding-left: 40px;
    padding-right: 40px; }
  .filter-panel .list {
    list-style: none;
    margin: 0;
    padding: 0; }
    .filter-panel .list li {
      cursor: pointer;
      box-sizing: border-box; }
      .filter-panel .list li .li-sub-option:hover .filter-options-info {
        display: none; }
      .filter-panel .list li .li-header {
        display: flex;
        align-items: center;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 40px;
        padding-right: 40px; }
        .filter-panel .list li .li-header.sub {
          padding-top: 5px;
          padding-bottom: 5px;
          opacity: 0.5; }
        .filter-panel .list li .li-header.sub:hover {
          opacity: 1;
          color: #000; }
        .filter-panel .list li .li-header .icon {
          margin-right: 30px;
          font-size: 22px; }
        .filter-panel .list li .li-header .arrow {
          margin-left: auto; }
      .filter-panel .list li .li-child {
        margin: 0;
        padding: 0;
        list-style: none; }
        .filter-panel .list li .li-child li {
          padding-left: 95px;
          opacity: 0.5; }
      .filter-panel .list li.li-active {
        background: #F3F3F1; }
        .filter-panel .list li.li-active .li-header {
          border-left: 3px solid #000;
          padding-left: 47px; }
        .filter-panel .list li.li-active .icon {
          color: #000;
          opacity: 1; }
      .filter-panel .list li.li-hover:hover .li-header {
        border-left: 3px solid #000;
        padding-left: 47px; }
        .filter-panel .list li.li-hover:hover .li-header .icon {
          color: #000;
          opacity: 1; }
      .filter-panel .list li.li-hover:hover {
        background: #F3F3F1; }
  .filter-panel .button-upload {
    border-radius: 50px;
    height: 50px;
    padding-left: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 15px;
    cursor: pointer; }
    .filter-panel .button-upload .number {
      padding-right: 12px;
      margin-left: auto; }
  .filter-panel .input-search {
    border-bottom: 1px solid #808080;
    margin-bottom: 15px;
    position: relative; }
    .filter-panel .input-search-control {
      display: flex;
      align-items: center; }
    .filter-panel .input-search-icon {
      font-size: 20px; }
    .filter-panel .input-search input {
      outline: none;
      border: 0;
      padding: 10px;
      width: 100%; }
    .filter-panel .input-search-close {
      font-size: 20px; }
  .filter-panel.compressed {
    width: 108px; }
    .filter-panel.compressed .padding-50 {
      padding-left: 29px;
      padding-right: 29px; }
    .filter-panel.compressed .button-upload {
      text-align: center;
      width: 50px;
      padding: 0; }
      .filter-panel.compressed .button-upload .text {
        display: none; }
      .filter-panel.compressed .button-upload .number {
        padding: 0;
        width: 100%; }
    .filter-panel.compressed .input-search i {
      top: 17px;
      left: 17px; }
    .filter-panel.compressed .input-search input {
      padding-left: 50px;
      padding: 14px 0px; }
    .filter-panel.compressed .list li .li-header {
      padding: 10px 0px; }
      .filter-panel.compressed .list li .li-header-text {
        display: none; }
      .filter-panel.compressed .list li .li-header.sub {
        padding: 5px 50px; }
      .filter-panel.compressed .list li .li-header .icon {
        margin: 0 auto;
        text-align: center; }
      .filter-panel.compressed .list li .li-header .arrow {
        display: none; }
    .filter-panel.compressed .list li .li-child {
      display: none; }
    .filter-panel.compressed .list li.li-hover:hover .li-header {
      padding: 10px 0px; }

.filter-options {
  display: flex;
  flex-direction: column;
  width: 290px;
  height: 100%; }
  .filter-options .filter-options {
    flex: 0; }
  .filter-options .arrow-left {
    margin-top: 13px;
    font-size: 22px;
    cursor: pointer;
    flex: 0; }
  .filter-options-info {
    margin-bottom: 10px;
    display: flex;
    align-items: center; }
  .filter-options > hr {
    flex: 0; }
  .filter-options .options {
    margin-top: 30px;
    margin-bottom: 30px;
    flex: 1;
    overflow: auto; }
  .filter-options ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .filter-options ul li {
      padding: 5px 0px;
      cursor: pointer; }

.lister .arrow {
  padding: 10px 0px 10px 10px; }

.filter-advance-line {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ADADAD; }

/* content */
.overlap-layer, .overlap-layer-main {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0; }
  .overlap-layer-main {
    z-index: 30;
    background: rgba(0, 0, 0, 0.75); }

.home-content {
  flex: 1; }
  .home-content-inner {
    width: 100%;
    max-width: 987px;
    margin-left: 60px; }

.content {
  width: 100%;
  max-width: 987px;
  margin: 0 auto;
  background: #fff;
  margin-top: 30px;
  margin-bottom: 80px;
  padding: 60px 100px;
  border-radius: 15px; }
  .content-back {
    max-width: 987px;
    margin: 30px auto; }

.content-no-background {
  width: 100%;
  max-width: 1158px;
  margin: 0 auto; }

.toplist-navigation {
  margin: 30px 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .toplist-navigation-mobile {
    display: flex;
    width: 100%; }
  .toplist-navigation-line-1 {
    display: flex;
    width: 100%;
    align-items: flex-end;
    flex-wrap: wrap; }
  .toplist-navigation-private {
    display: flex;
    align-items: center;
    margin: 10px 0px; }

.multil-report {
  display: flex;
  justify-content: space-between;
  width: 100%; }

.toplist-filtered-line {
  display: flex;
  flex-wrap: wrap; }

.toplist-filtered-text {
  min-height: 48px;
  border-radius: 50px;
  border: 1px solid #CACACA;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0px 20px;
  justify-content: space-between;
  color: #757575; }
  .toplist-filtered-text-name {
    width: calc( 100% - 20px); }
  .toplist-filtered-text-icon {
    width: 20px;
    text-align: right; }

.toplist-no-track {
  padding: 100px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 15px; }
  .toplist-no-track-icon {
    cursor: pointer;
    width: 156px;
    height: 156px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3EFE3;
    border: 1px dashed rgba(0, 0, 0, 0.6);
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 50px; }
    .toplist-no-track-icon .icon {
      font-size: 40px; }

.toplist-compare-mine {
  padding: 30px 0px 60px 0px;
  border-top: 1px dashed #BFBFBF;
  border-bottom: 1px dashed #bfbfbf;
  margin-bottom: 60px;
  background: rgba(116, 116, 116, 0.08); }

.toplist .track {
  display: flex;
  border-top: 1px solid #ADADAD;
  min-height: 123px;
  width: 100%; }
  .toplist .track-row:last-child {
    border-bottom: 1px solid #ADADAD; }
  .toplist .track .order-mobile {
    display: none; }
  .toplist .track .track_multi {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 100;
    margin-right: 30px;
    cursor: pointer; }
  .toplist .track_image {
    width: 122px;
    height: 122px;
    cursor: pointer; }
  .toplist .track_information {
    display: flex;
    align-items: center;
    flex: 1; }
    .toplist .track_information .order {
      padding-left: 20px;
      padding-right: 20px; }
  .toplist .track_action {
    display: flex;
    align-items: center;
    gap: 20px; }
  .toplist .track .score {
    padding: 15px;
    background: #FFF8B9;
    border-radius: 15px;
    height: 68px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    margin-left: auto; }

.toplist .page-size {
  text-align: right;
  padding: 20px 0; }
  .toplist .page-size span {
    color: #757575;
    font-size: 18px;
    line-height: 24px; }
  .toplist .page-size-number {
    border-right: 1px solid #757575;
    padding: 0px 10px;
    cursor: pointer; }
    .toplist .page-size-number:last-child {
      border-right: none;
      padding-right: 0; }

.track-avg {
  display: flex;
  align-items: center;
  margin-left: auto; }
  .track-avg .score {
    padding: 15px;
    background: #FFF8B9;
    border-radius: 15px;
    height: 68px;
    width: 92px;
    display: flex;
    margin: 0px 20px;
    justify-content: center;
    align-items: center; }

.play {
  width: 68px;
  height: 68px;
  background: #FFF;
  border-radius: 15px;
  display: flex;
  align-content: center;
  align-items: center;
  cursor: pointer;
  padding: 5px;
  position: relative; }
  .play:hover {
    background: #cfcfcf; }
  .play .icon {
    width: calc( 100% - 10px);
    text-align: center;
    position: absolute;
    height: 20px;
    line-height: 16px; }
    .play .icon img {
      width: 100%;
      height: 100%; }
  .play svg {
    height: 58px;
    transform: rotate(-90deg); }
    .play svg circle {
      fill: none;
      stroke: #fff;
      stroke-width: 5px;
      transform: translate(5px, 5px);
      stroke-dasharray: 164;
      stroke-dashoffset: 0; }
      .play svg circle:nth-child(1) {
        stroke-dashoffset: 0;
        stroke: #000; }
      .play svg circle:nth-child(2) {
        stroke-dashoffset: 0;
        stroke: #D9D9D9;
        stroke-width: 6px; }

/* Player */
.player-wrapper {
  position: relative;
  height: 140px;
  width: 100%;
  background: #000;
  z-index: 3;
  border-top: 1px solid #FFF;
  padding: 30px 0px;
  color: #FFF; }
  .player-wrapper.player-wrapper-collapse {
    height: unset;
    padding: 10px 0px; }

.player {
  display: flex;
  align-items: center; }
  .player-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    padding: 0 10px; }
  .player-collapse {
    position: absolute;
    right: 40px;
    top: 10px;
    cursor: pointer;
    padding: 0px 10px; }
  .player-control {
    display: flex;
    align-items: center;
    gap: 15px; }
    .player-control .buttons {
      display: flex;
      align-items: center;
      justify-items: center;
      gap: 10px; }
      .player-control .buttons svg {
        cursor: pointer;
        width: auto; }
    .player-control .play {
      font-size: 20px;
      margin-right: 30px;
      cursor: pointer; }
    .player-control .pause {
      font-size: 20px;
      margin-right: 30px;
      cursor: pointer; }
    .player-control .icon {
      width: 20px;
      height: 20px;
      text-align: center;
      line-height: 16px;
      margin-right: 30px;
      cursor: pointer; }
      .player-control .icon img {
        width: 100%;
        height: 100%; }
    .player-control .player-bar-wrapper {
      padding: 10px 0px;
      cursor: pointer; }
      .player-control .player-bar-wrapper:hover .player-current::after {
        display: block; }
  .player .player-bar {
    width: 400px;
    height: 2px;
    background: #4B4B4B;
    cursor: pointer; }
    .player .player-bar.small {
      width: 90px; }
  .player .volume {
    padding: 10px 0px;
    cursor: pointer; }
    .player .volume:hover .player-current::after {
      display: block; }
  .player .volume-icon {
    cursor: pointer; }
  .player .player-current {
    height: 2px;
    background: #FFF;
    display: flex;
    align-items: center; }
    .player .player-current:after {
      content: "•";
      font-size: 30px;
      margin-left: auto;
      margin-bottom: 6px;
      margin-right: -6px;
      display: none; }
  .player .player-info {
    display: flex;
    align-items: center;
    margin-left: auto; }
    .player .player-info .player-info-text {
      display: flex;
      padding: 0 10px; }
      .player .player-info .player-info-text .player-name {
        margin-right: 15px; }
      .player .player-info .player-info-text .player-artist {
        margin-right: 30px;
        color: #757575; }

/* Control */
.dropdown-control {
  min-width: 170px;
  position: relative; }
  .dropdown-control.custom-margin {
    margin-right: 20px; }
  .dropdown-control.open .dropdown-control-header {
    border: 1px solid #000; }
    .dropdown-control.open .dropdown-control-header .text {
      color: #000; }
  .dropdown-control.no-border .dropdown-control-header {
    border: unset;
    background: unset;
    width: 180px;
    padding: 0; }
  .dropdown-control.no-border .dropdown-control-options {
    right: 0; }
  .dropdown-control-header {
    width: 100%;
    height: 48px;
    border-radius: 50px;
    border: 1px solid #CACACA;
    background: #F3F3F1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    cursor: pointer; }
    .dropdown-control-header:hover {
      border: 1px solid #000000; }
      .dropdown-control-header:hover .text {
        color: #000; }
    .dropdown-control-header .text {
      color: #757575;
      height: 100%;
      display: flex;
      align-items: center; }
    .dropdown-control-header i {
      margin-left: auto;
      height: 100%;
      display: flex;
      align-items: center;
      padding-left: 10px; }
  .dropdown-control-options {
    min-width: 300px;
    background: #FFF;
    border: 1px solid #D7D7D7;
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding-bottom: 5px;
    position: absolute;
    top: 55px;
    z-index: 4; }
    .dropdown-control-options ul {
      padding: 0;
      margin: 0;
      list-style: none;
      margin-top: 8px;
      overflow-y: auto;
      max-height: 400px; }
      .dropdown-control-options ul li {
        padding-top: 15px;
        padding-left: 30px;
        padding-right: 30px; }
        .dropdown-control-options ul li:first-child {
          border-top-left-radius: 10px;
          border-top-right-radius: 10px; }
        .dropdown-control-options ul li:last-child {
          border-bottom-left-radius: 10px;
          border-bottom-right-radius: 10px; }
        .dropdown-control-options ul li:hover {
          background: #F3F3F1; }
        .dropdown-control-options ul li.active {
          background: #F3F3F1; }
        .dropdown-control-options ul li span {
          border-bottom: 1px solid #E6E6E6;
          width: 100%;
          display: block;
          padding-bottom: 10px;
          line-height: 19px; }

.button-filter {
  width: 185px;
  padding-left: 20px;
  padding-right: 20px;
  background: #FFF;
  border: 1px solid #D7D7D7;
  height: 44px;
  align-items: center;
  border-radius: 50px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: fixed;
  bottom: 15px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: none;
  z-index: 1; }
  .button-filter i {
    margin-left: auto; }

.button-general {
  width: 100%;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  height: 44px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid #F3F3F1;
  border-radius: 50px;
  line-height: 44px;
  color: #FFF;
  text-align: center;
  cursor: pointer; }
  .button-general.active {
    background: #000; }
  .button-general:hover {
    background: #000; }

.button-style-1 {
  height: 44px;
  line-height: 44px;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 0 20px;
  min-width: 200px;
  display: flex;
  align-items: center;
  cursor: pointer; }
  .button-style-1 i {
    margin-left: auto; }
  .button-style-1:hover {
    background: #000;
    color: #FFF; }

.button-multi-report {
  display: flex;
  align-items: center;
  margin-right: 35px;
  cursor: pointer;
  background: black none repeat scroll 0% 0%;
  color: white;
  border-radius: 50px;
  height: 50px;
  padding: 0 25px; }
  .button-multi-report span {
    margin-right: 15px; }

.button-status {
  height: 48px;
  padding: 0 15px;
  border: 1px solid #ADADAD;
  border-radius: 50px;
  display: flex;
  align-items: center;
  width: 200px;
  margin-right: 20px;
  background: #D9D9D9;
  cursor: pointer;
  position: relative; }
  .button-status i {
    margin-left: auto;
    font-size: 22px; }
  .button-status.progress-converting {
    background: #f5dcd5; }
  .button-status.progress-convertFailed {
    background: #D9D9D9; }
  .button-status.progress-ready {
    background: #262626;
    color: #fff; }
  .button-status.progress-start {
    background: #e5ebf7; }
  .button-status.progress-pause {
    background: #ffe3a3; }
  .button-status.progress-close {
    background: #e2f0d9; }
  .button-status.progress-deleted {
    background: #D9D9D9; }

.button-blank {
  height: 48px;
  padding: 0 15px;
  line-height: 48px;
  border: 1px solid #ADADAD;
  border-radius: 50px;
  display: flex;
  align-items: center;
  width: 125px;
  cursor: pointer; }
  .button-blank-text {
    width: 100%;
    text-align: center;
    font-family: 'GT America Extended Regular'; }
  .button-blank:hover {
    background: #000;
    color: #fff;
    border: unset; }

.input-button {
  position: relative; }
  .input-button-text {
    height: 48px;
    padding: 0 15px;
    line-height: 48px;
    border: 1px solid #ADADAD;
    border-radius: 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    width: 100%;
    padding-right: 200px; }
  .input-button-click {
    background-color: #000;
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-align: center;
    cursor: pointer; }
    .input-button-click span {
      width: 100%;
      color: #FFF; }

/* toogle button */
.toogle-button {
  display: flex;
  align-items: center;
  margin-left: auto; }
  .toogle-button-label {
    text-align: right;
    margin-right: 20px;
    line-height: 18px;
    color: #757575; }
    .toogle-button-label.active {
      color: #ADADAD; }

.switch {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 38px;
  margin: 0; }
  .switch input {
    opacity: 0;
    width: 0;
    height: 0; }
  .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
    border: 1px solid #ADADAD;
    /* Rounded sliders */ }
    .switch .slider:before {
      position: absolute;
      content: "";
      height: 30px;
      width: 30px;
      left: 4px;
      bottom: 3px;
      -webkit-transition: .4s;
      transition: .4s; }
    .switch .slider.round {
      border-radius: 100px; }
    .switch .slider.round:before {
      border-radius: 50%; }
  .switch input:checked + .slider {
    border: 1px solid #000; }
  .switch input:checked + .slider:before {
    background-color: #000; }
  .switch input + .slider:before {
    background-color: #ADADAD; }
  .switch input:checked + .slider:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px); }

/* Dropdown */
.control-options-wrapper {
  position: relative; }
  .control-options-wrapper .more {
    padding: 5px;
    display: flex;
    align-items: center;
    cursor: pointer; }
  .control-options-wrapper:hover .more {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1); }

.control-options {
  background: #FFF;
  border: 1px solid #D7D7D7;
  box-sizing: border-box;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  min-width: 100%;
  padding: 10px 0px;
  position: absolute;
  z-index: 1; }
  .control-options ul {
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-y: auto;
    max-width: 300px; }
    .control-options ul li {
      padding: 10px 20px;
      display: flex;
      align-items: center;
      cursor: pointer; }
      .control-options ul li span {
        padding-left: 10px; }
      .control-options ul li:hover {
        background: #F3F3F1; }

.sub-menu-context-list {
  left: 100%;
  right: unset; }

/* Dropdown head menu */
.menu-control-options {
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.18);
  border: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: .25rem; }
  .menu-control-options ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .menu-control-options ul li {
      display: block;
      width: 100%;
      padding: .25rem 1.5rem;
      padding-right: 1.5rem;
      clear: both;
      font-weight: 400;
      color: #212529;
      text-align: inherit;
      white-space: nowrap;
      background-color: transparent;
      border: 0;
      display: flex;
      align-items: center; }
      .menu-control-options ul li a {
        flex: 1;
        margin-left: 5px;
        margin-right: 20px; }
    .menu-control-options ul li:hover {
      color: #16181b;
      text-decoration: none;
      background: #eee; }

.list-blank {
  padding: 0;
  margin: 0;
  list-style: none;
  overflow-y: auto; }
  .list-blank-col-2 {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2; }
    .list-blank-col-2 li {
      display: flex;
      align-items: center; }
  .list-blank li {
    padding: 10px 0px; }
    .list-blank li .flex {
      display: flex;
      align-items: center; }
    .list-blank li i {
      font-size: 24px;
      margin-right: 20px;
      cursor: pointer; }
    .list-blank li span {
      font-size: 17px; }
  .list-blank.questionTexts li {
    padding: 5px 0px; }

.custom-height-400 {
  max-height: 400px;
  overflow-y: auto; }

.tag {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #CACACA;
  border-radius: 25px;
  color: #757575; }

.box {
  margin-bottom: 10px; }

.line {
  height: 1px;
  width: 100%;
  border-bottom: 1px solid #BFBFBF; }

.line-2 {
  height: 1px;
  width: 100%;
  border-bottom: 1px solid #DDDDDD; }

.label {
  width: 100%;
  color: #747474;
  font-size: 14px;
  margin-bottom: 10px; }

.input-group-blank {
  display: flex;
  width: 100%;
  align-items: center;
  height: 48px;
  border: 1px solid #000;
  border-radius: 50px; }
  .input-group-blank .prepend {
    height: 100%;
    align-items: center;
    display: flex;
    padding: 0px 20px; }
    .input-group-blank .prepend i {
      margin-right: 20px; }
  .input-group-blank input {
    flex: 1 1 auto;
    border: none;
    height: 100%;
    padding: 5px 10px;
    outline: none; }
  .input-group-blank .behind {
    height: 100%;
    align-items: center;
    display: flex;
    padding: 0px 20px; }
    .input-group-blank .behind-black {
      background-color: #000;
      color: #fff;
      border-radius: 0px 50px 50px 0px; }

.dropdown-classic {
  min-width: 150px;
  position: relative; }
  .dropdown-classic-header {
    width: 100%;
    min-height: 48px;
    border-radius: 50px;
    border: 1px solid #CACACA;
    display: flex;
    align-items: center;
    padding: 0 20px;
    cursor: pointer; }
    .dropdown-classic-header-text {
      color: #757575; }
    .dropdown-classic-header-icon {
      margin-left: auto; }
    .dropdown-classic-header.error {
      border: 1px solid #D70028; }
  .dropdown-classic-options {
    width: 100%;
    background: #FFF;
    border: 1px solid #D7D7D7;
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding-bottom: 5px;
    position: absolute;
    top: 55px;
    z-index: 1; }
    .dropdown-classic-options ul {
      padding: 0;
      margin: 0;
      margin-top: 0px;
      list-style: none;
      margin-top: 8px;
      overflow-y: auto;
      max-height: 400px; }
      .dropdown-classic-options ul li {
        padding-top: 15px;
        padding-left: 20px;
        padding-right: 20px;
        cursor: pointer; }
        .dropdown-classic-options ul li span {
          border-bottom: 1px solid #E6E6E6;
          width: 100%;
          display: block;
          padding-bottom: 10px; }
        .dropdown-classic-options ul li:last-child span {
          border-bottom: none; }
        .dropdown-classic-options ul li:hover {
          background: #F3F3F1; }
        .dropdown-classic-options ul li.active {
          background: #F3F3F1; }

.img-168 {
  width: 168px;
  height: 168px; }

.img-432 {
  width: 432px;
  height: 432px; }

.image-boundery {
  height: 300px;
  width: 450px;
  margin-bottom: 80px; }

.multi-report-box {
  background-color: #ffc000;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .multi-report-box-default {
    width: 432px;
    height: 432px;
    border: 1px solid #CACACA; }
    .multi-report-box-default .multi-report-box-name span {
      font-size: 48px;
      line-height: 48px; }
    .multi-report-box-default .multi-report-box-logo img {
      max-width: 200px; }
    .multi-report-box-default .multi-report-box-title span {
      font-size: 28px; }
  .multi-report-box-small {
    width: 122px;
    height: 122px; }
    .multi-report-box-small .multi-report-box-name span {
      font-size: 14px;
      line-height: 16px; }
    .multi-report-box-small .multi-report-box-logo img {
      max-width: 80px; }
    .multi-report-box-small .multi-report-box-title span {
      font-size: 10px; }
  .multi-report-box-name {
    width: 80%;
    height: 40%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center; }
    .multi-report-box-name span {
      color: #fff;
      font-weight: 700;
      font-family: 'GT America Extended Regular'; }
  .multi-report-box-logo {
    background: #fff;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center; }
  .multi-report-box-title {
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center; }
    .multi-report-box-title span {
      font-family: 'GT America Extended Regular'; }

.booking-iframe {
  width: 100%;
  height: calc(100vh - 102px);
  border: none; }

/* Chrome */
.cr-slider::-webkit-slider-thumb {
  background: #000 !important; }

.cr-slider::-webkit-slider-runnable-track {
  background-color: #C4C4C4 !important; }

/* Firefox */
.cr-slider::-moz-range-thumb {
  background: #000 !important; }

.cr-slider::-moz-range-track {
  height: 2px !important;
  background: #C4C4C4 !important; }

.cr-slider::-moz-range-progress {
  background-color: #000 !important; }

/* IE */
.cr-slider::-ms-fill-lower {
  background-color: #000; }

.cr-slider::-ms-fill-upper {
  background-color: #C4C4C4; }

.share-button-groups {
  display: flex; }
  .share-button-groups.first {
    margin-top: 40px;
    margin-bottom: 20px; }
  .share-button-groups.second {
    margin-top: 20px;
    margin-bottom: 20px; }

.space-margin-medium {
  margin: 30px 0px; }

.size-0 {
  width: 0px;
  visibility: hidden; }

.track-info-avatar {
  text-align: right; }

/* JUI autocompleted */
.ui-autocomplete {
  margin: 0px;
  padding: 0px;
  list-style: outside none none;
  overflow-y: auto;
  max-height: 300px;
  width: 450px;
  background: white none repeat scroll 0% 0%;
  border: 1px solid #d7d7d7;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 25px;
  border-radius: 10px;
  margin-top: 10px; }
  .ui-autocomplete .ui-menu-item {
    cursor: pointer; }
    .ui-autocomplete .ui-menu-item:hover {
      background: #F3F3F1;
      color: #000; }
    .ui-autocomplete .ui-menu-item .ui-menu-item-wrapper {
      padding: 10px 30px;
      border-bottom: 1px solid #E6E6E6;
      font-family: 'GT America Extended Regular'; }

/* download modal */
.download-modal .modal-header {
  display: flex !important;
  align-items: center; }
  .download-modal .modal-header .modal-title {
    margin-right: 20px; }
  .download-modal .modal-header .close {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    margin-left: auto !important;
    cursor: pointer; }

@keyframes blink {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.blink-text {
  animation: blink 1s infinite; }

/* DOWNLOAD MODULE */
.download-modal .modal-header {
  align-items: start;
  padding: 10px;
  border: none; }
  .download-modal .modal-header .close {
    cursor: pointer; }

.download-modal .modal-body {
  width: 80vw;
  max-width: 1000px;
  height: 70vh;
  overflow: auto;
  padding: 0; }
  .download-modal .modal-body .title {
    padding-left: 20px;
    font-size: medium;
    font-weight: bold; }
  .download-modal .modal-body .description {
    padding-left: 20px;
    font-size: small;
    font-weight: normal;
    color: #7f7f7f; }
  .download-modal .modal-body .search-box {
    text-align: right;
    padding-right: 20px;
    margin-bottom: 20px; }
  .download-modal .modal-body .report-tabs {
    width: 100%; }
    .download-modal .modal-body .report-tabs .nav-item {
      padding: 5px;
      background-color: #eee; }
      .download-modal .modal-body .report-tabs .nav-item.active {
        background-color: #F8AF00; }
        .download-modal .modal-body .report-tabs .nav-item.active a {
          color: #fff; }
  .download-modal .modal-body .table td {
    vertical-align: middle; }
  .download-modal .modal-body .table .actions {
    width: 30px;
    white-space: nowrap; }
    .download-modal .modal-body .table .actions i {
      cursor: pointer;
      margin-right: 5px; }
  .download-modal .modal-body .table .expand {
    display: inline-block;
    width: 20px; }
    .download-modal .modal-body .table .expand i {
      cursor: pointer; }
  .download-modal .modal-body .table .sort-icon {
    cursor: pointer; }
    .download-modal .modal-body .table .sort-icon .fa-sort {
      color: #aaa; }

.download-modal .nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.download-modal .nav-fill .nav-item, .download-modal .nav-fill > .nav-link {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center; }

.download-modal .table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  display: table; }

.download-modal table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse; }

.download-modal .table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6; }

.download-modal .table td, .download-modal .table th {
  padding: .75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6; }

.cg-button4 {
  border-radius: 50px;
  border: 1px solid #CACACA;
  display: flex;
  align-items: center;
  padding: 5px 15px;
  cursor: pointer;
  white-space: nowrap;
  flex-wrap: nowrap; }

/* cropie */
/*! jQuery UI - v1.12.1 - 2021-04-23
* http://jqueryui.com
* Includes: core.css, datepicker.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none; }

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none; }

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse; }

.ui-helper-clearfix:after {
  clear: both; }

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */ }

.ui-front {
  z-index: 100; }

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none; }

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat; }

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block; }

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.ui-datepicker {
  width: 17em;
  display: none; }

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0; }

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em; }

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px; }

.ui-datepicker .ui-datepicker-prev {
  left: 2px; }

.ui-datepicker .ui-datepicker-next {
  right: 2px; }

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px; }

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px; }

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px; }

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center; }

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0; }

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%; }

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em; }

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0; }

.ui-datepicker td {
  border: 0;
  padding: 1px; }

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: center;
  text-decoration: none; }

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible; }

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto; }

.ui-datepicker-multi .ui-datepicker-group {
  float: left; }

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em; }

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%; }

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%; }

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%; }

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0; }

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left; }

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0; }

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl; }

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right; }

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px; }

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: .5em;
  top: .3em; }

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em; }

.ui-widget .ui-widget {
  font-size: 1em; }

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em; }

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333; }

.ui-widget-content a {
  color: #333333; }

.ui-widget-header {
  background: #e9e9e9;
  color: #333333;
  font-weight: bold; }

.ui-widget-header a {
  color: #333333; }

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  font-weight: normal;
  color: #454545; }

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none; }

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b; }

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none; }

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6; }

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  background: #000;
  font-weight: normal;
  color: #fff;
  border-radius: 50px; }

.ui-autocomplete .ui-state-active {
  border-radius: 0;
  padding: 0px;
  color: #212529;
  background: #F3F3F1; }

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff; }

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  background: #000;
  color: #fff;
  border-radius: 50px; }

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90; }

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620; }

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f; }

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f; }

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f; }

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold; }

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */
  font-weight: normal; }

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  /* support: IE8 */
  background-image: none; }

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* support: IE8 - See #6059 */ }

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px; }

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("https://cdn.catglobe.com/jquery-ui/v1/images/ui-icons_444444_256x240.png"); }

.ui-widget-header .ui-icon {
  background-image: url("https://cdn.catglobe.com/jquery-ui/v1/images/ui-icons_444444_256x240.png"); }

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("https://cdn.catglobe.com/jquery-ui/v1/images/ui-icons_555555_256x240.png"); }

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("https://cdn.catglobe.com/jquery-ui/v1/images/ui-icons_ffffff_256x240.png"); }

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("https://cdn.catglobe.com/jquery-ui/v1/images/ui-icons_777620_256x240.png"); }

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("https://cdn.catglobe.com/jquery-ui/v1/images/ui-icons_cc0000_256x240.png"); }

.ui-button .ui-icon {
  background-image: url("https://cdn.catglobe.com/jquery-ui/v1/images/ui-icons_777777_256x240.png"); }

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px; }

.ui-icon-caret-1-n {
  background-position: 0 0; }

.ui-icon-caret-1-ne {
  background-position: -16px 0; }

.ui-icon-caret-1-e {
  background-position: -32px 0; }

.ui-icon-caret-1-se {
  background-position: -48px 0; }

.ui-icon-caret-1-s {
  background-position: -65px 0; }

.ui-icon-caret-1-sw {
  background-position: -80px 0; }

.ui-icon-caret-1-w {
  background-position: -96px 0; }

.ui-icon-caret-1-nw {
  background-position: -112px 0; }

.ui-icon-caret-2-n-s {
  background-position: -128px 0; }

.ui-icon-caret-2-e-w {
  background-position: -144px 0; }

.ui-icon-triangle-1-n {
  background-position: 0 -16px; }

.ui-icon-triangle-1-ne {
  background-position: -16px -16px; }

.ui-icon-triangle-1-e {
  background-position: -32px -16px; }

.ui-icon-triangle-1-se {
  background-position: -48px -16px; }

.ui-icon-triangle-1-s {
  background-position: -65px -16px; }

.ui-icon-triangle-1-sw {
  background-position: -80px -16px; }

.ui-icon-triangle-1-w {
  background-position: -96px -16px; }

.ui-icon-triangle-1-nw {
  background-position: -112px -16px; }

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px; }

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px; }

.ui-icon-arrow-1-n {
  background-position: 0 -32px; }

.ui-icon-arrow-1-ne {
  background-position: -16px -32px; }

.ui-icon-arrow-1-e {
  background-position: -32px -32px; }

.ui-icon-arrow-1-se {
  background-position: -48px -32px; }

.ui-icon-arrow-1-s {
  background-position: -65px -32px; }

.ui-icon-arrow-1-sw {
  background-position: -80px -32px; }

.ui-icon-arrow-1-w {
  background-position: -96px -32px; }

.ui-icon-arrow-1-nw {
  background-position: -112px -32px; }

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px; }

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px; }

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px; }

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px; }

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px; }

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px; }

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px; }

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px; }

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px; }

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px; }

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px; }

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px; }

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px; }

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px; }

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px; }

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px; }

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px; }

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px; }

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px; }

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px; }

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px; }

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px; }

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px; }

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px; }

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px; }

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px; }

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px; }

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px; }

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px; }

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px; }

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px; }

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px; }

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px; }

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px; }

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px; }

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px; }

.ui-icon-arrow-4 {
  background-position: 0 -80px; }

.ui-icon-arrow-4-diag {
  background-position: -16px -80px; }

.ui-icon-extlink {
  background-position: -32px -80px; }

.ui-icon-newwin {
  background-position: -48px -80px; }

.ui-icon-refresh {
  background-position: -64px -80px; }

.ui-icon-shuffle {
  background-position: -80px -80px; }

.ui-icon-transfer-e-w {
  background-position: -96px -80px; }

.ui-icon-transferthick-e-w {
  background-position: -112px -80px; }

.ui-icon-folder-collapsed {
  background-position: 0 -96px; }

.ui-icon-folder-open {
  background-position: -16px -96px; }

.ui-icon-document {
  background-position: -32px -96px; }

.ui-icon-document-b {
  background-position: -48px -96px; }

.ui-icon-note {
  background-position: -64px -96px; }

.ui-icon-mail-closed {
  background-position: -80px -96px; }

.ui-icon-mail-open {
  background-position: -96px -96px; }

.ui-icon-suitcase {
  background-position: -112px -96px; }

.ui-icon-comment {
  background-position: -128px -96px; }

.ui-icon-person {
  background-position: -144px -96px; }

.ui-icon-print {
  background-position: -160px -96px; }

.ui-icon-trash {
  background-position: -176px -96px; }

.ui-icon-locked {
  background-position: -192px -96px; }

.ui-icon-unlocked {
  background-position: -208px -96px; }

.ui-icon-bookmark {
  background-position: -224px -96px; }

.ui-icon-tag {
  background-position: -240px -96px; }

.ui-icon-home {
  background-position: 0 -112px; }

.ui-icon-flag {
  background-position: -16px -112px; }

.ui-icon-calendar {
  background-position: -32px -112px; }

.ui-icon-cart {
  background-position: -48px -112px; }

.ui-icon-pencil {
  background-position: -64px -112px; }

.ui-icon-clock {
  background-position: -80px -112px; }

.ui-icon-disk {
  background-position: -96px -112px; }

.ui-icon-calculator {
  background-position: -112px -112px; }

.ui-icon-zoomin {
  background-position: -128px -112px; }

.ui-icon-zoomout {
  background-position: -144px -112px; }

.ui-icon-search {
  background-position: -160px -112px; }

.ui-icon-wrench {
  background-position: -176px -112px; }

.ui-icon-gear {
  background-position: -192px -112px; }

.ui-icon-heart {
  background-position: -208px -112px; }

.ui-icon-star {
  background-position: -224px -112px; }

.ui-icon-link {
  background-position: -240px -112px; }

.ui-icon-cancel {
  background-position: 0 -128px; }

.ui-icon-plus {
  background-position: -16px -128px; }

.ui-icon-plusthick {
  background-position: -32px -128px; }

.ui-icon-minus {
  background-position: -48px -128px; }

.ui-icon-minusthick {
  background-position: -64px -128px; }

.ui-icon-close {
  background-position: -80px -128px; }

.ui-icon-closethick {
  background-position: -96px -128px; }

.ui-icon-key {
  background-position: -112px -128px; }

.ui-icon-lightbulb {
  background-position: -128px -128px; }

.ui-icon-scissors {
  background-position: -144px -128px; }

.ui-icon-clipboard {
  background-position: -160px -128px; }

.ui-icon-copy {
  background-position: -176px -128px; }

.ui-icon-contact {
  background-position: -192px -128px; }

.ui-icon-image {
  background-position: -208px -128px; }

.ui-icon-video {
  background-position: -224px -128px; }

.ui-icon-script {
  background-position: -240px -128px; }

.ui-icon-alert {
  background-position: 0 -144px; }

.ui-icon-info {
  background-position: -16px -144px; }

.ui-icon-notice {
  background-position: -32px -144px; }

.ui-icon-help {
  background-position: -48px -144px; }

.ui-icon-check {
  background-position: -64px -144px; }

.ui-icon-bullet {
  background-position: -80px -144px; }

.ui-icon-radio-on {
  background-position: -96px -144px; }

.ui-icon-radio-off {
  background-position: -112px -144px; }

.ui-icon-pin-w {
  background-position: -128px -144px; }

.ui-icon-pin-s {
  background-position: -144px -144px; }

.ui-icon-play {
  background-position: 0 -160px; }

.ui-icon-pause {
  background-position: -16px -160px; }

.ui-icon-seek-next {
  background-position: -32px -160px; }

.ui-icon-seek-prev {
  background-position: -48px -160px; }

.ui-icon-seek-end {
  background-position: -64px -160px; }

.ui-icon-seek-start {
  background-position: -80px -160px; }

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px; }

.ui-icon-stop {
  background-position: -96px -160px; }

.ui-icon-eject {
  background-position: -112px -160px; }

.ui-icon-volume-off {
  background-position: -128px -160px; }

.ui-icon-volume-on {
  background-position: -144px -160px; }

.ui-icon-power {
  background-position: 0 -176px; }

.ui-icon-signal-diag {
  background-position: -16px -176px; }

.ui-icon-signal {
  background-position: -32px -176px; }

.ui-icon-battery-0 {
  background-position: -48px -176px; }

.ui-icon-battery-1 {
  background-position: -64px -176px; }

.ui-icon-battery-2 {
  background-position: -80px -176px; }

.ui-icon-battery-3 {
  background-position: -96px -176px; }

.ui-icon-circle-plus {
  background-position: 0 -192px; }

.ui-icon-circle-minus {
  background-position: -16px -192px; }

.ui-icon-circle-close {
  background-position: -32px -192px; }

.ui-icon-circle-triangle-e {
  background-position: -48px -192px; }

.ui-icon-circle-triangle-s {
  background-position: -64px -192px; }

.ui-icon-circle-triangle-w {
  background-position: -80px -192px; }

.ui-icon-circle-triangle-n {
  background-position: -96px -192px; }

.ui-icon-circle-arrow-e {
  background-position: -112px -192px; }

.ui-icon-circle-arrow-s {
  background-position: -128px -192px; }

.ui-icon-circle-arrow-w {
  background-position: -144px -192px; }

.ui-icon-circle-arrow-n {
  background-position: -160px -192px; }

.ui-icon-circle-zoomin {
  background-position: -176px -192px; }

.ui-icon-circle-zoomout {
  background-position: -192px -192px; }

.ui-icon-circle-check {
  background-position: -208px -192px; }

.ui-icon-circlesmall-plus {
  background-position: 0 -208px; }

.ui-icon-circlesmall-minus {
  background-position: -16px -208px; }

.ui-icon-circlesmall-close {
  background-position: -32px -208px; }

.ui-icon-squaresmall-plus {
  background-position: -48px -208px; }

.ui-icon-squaresmall-minus {
  background-position: -64px -208px; }

.ui-icon-squaresmall-close {
  background-position: -80px -208px; }

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px; }

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px; }

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px; }

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px; }

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px; }

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px; }

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px; }

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px; }

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px; }

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px; }

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: .3;
  filter: Alpha(Opacity=30);
  /* support: IE8 */ }

.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Custom-Icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px; }

.icon-delete:before {
  content: "\e916"; }

.icon-arrow:before {
  content: "\e91b"; }

.icon-checkbox:before {
  content: "\e917"; }

.icon-checkbox_checked:before {
  content: "\e918"; }

.icon-radio:before {
  content: "\e919"; }

.icon-radio_check:before {
  content: "\e91a"; }

.icon-AboutTheTrack:before {
  content: "\e901"; }

.icon-Advance:before {
  content: "\e902"; }

.icon-Comments:before {
  content: "\e903"; }

.icon-DeletedTrack:before {
  content: "\e904"; }

.icon-Filters:before {
  content: "\e905"; }

.icon-Genre:before {
  content: "\e906"; }

.icon-Listening:before {
  content: "\e907"; }

.icon-ListeningHabits:before {
  content: "\e908"; }

.icon-Lock:before {
  content: "\e909"; }

.icon-Media:before {
  content: "\e90a"; }

.icon-Mood:before {
  content: "\e90b"; }

.icon-MusicInfo:before {
  content: "\e90c"; }

.icon-Occasion:before {
  content: "\e90d"; }

.icon-Pause:before {
  content: "\e90e"; }

.icon-Play:before {
  content: "\e90f"; }

.icon-Properties:before {
  content: "\e910"; }

.icon-SeeDetails:before {
  content: "\e911"; }

.icon-Segment:before {
  content: "\e912"; }

.icon-Setting:before {
  content: "\e913"; }

.icon-Share:before {
  content: "\e914"; }

.icon-TargetAudience:before {
  content: "\e915"; }

.icon-topList:before {
  content: "\e900"; }

[class^="cem-icon"], [class*=" cem-icon-"] {
  font-family: 'cemicons' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1; }

.cem-icon-user {
  padding: 4px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2); }

.cem-icon-user:before {
  content: "\e915"; }

.cem-icon-arrow-down:before {
  content: "\e905"; }

p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 10px; }

.heading, .heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-p, .heading-default, .heading-small {
  margin-top: 0px;
  margin-bottom: 10px; }
  .heading-1 {
    font-size: 36px;
    line-height: 48px; }
  .heading-2 {
    font-size: 28px;
    line-height: 35px; }
  .heading-3 {
    font-size: 22px;
    line-height: 30px; }
  .heading-4 {
    font-size: 18px;
    line-height: 24px; }
  .heading-5 {
    font-size: 17px;
    line-height: 24px; }
  .heading-p {
    font-size: 18px;
    line-height: 28px;
    color: #515151; }
  .heading-default {
    font-size: 15px;
    line-height: 18px; }
  .heading-small {
    font-size: 13px;
    line-height: 18px;
    color: #747474; }

.font-extend {
  font-family: 'GT America Extended Regular'; }

.error {
  width: 100%;
  color: #D70028;
  margin-bottom: 20px; }

.input, .input-classic {
  border: 1px solid #CACACA;
  height: 48px;
  line-height: 48px;
  padding: 12px 20px;
  box-sizing: border-box;
  border-radius: 100px;
  outline: none; }
  .input-classic:focus {
    border: 1px solid #939393; }
  .input-date {
    border: unset;
    border-bottom: 1px solid #CACACA;
    padding: 0px 20px;
    box-sizing: border-box;
    outline: none; }
  .input.error, .error.input-classic {
    border: 1px solid #D70028;
    position: relative; }
    .input.error::after, .error.input-classic::after {
      content: 'TEST'; }

.input-range-wrapper {
  display: flex;
  align-items: center;
  margin-right: 30px;
  width: 250px;
  position: relative; }
  .input-range-wrapper-inner {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    cursor: pointer; }
    .input-range-wrapper-inner-line {
      height: 2px;
      background: #C4C4C4;
      width: 100%; }
    .input-range-wrapper-inner-progress {
      height: 2px;
      background: #000; }

.input-range {
  -webkit-appearance: none;
  /* Hides the slider so that custom slider can be made */
  background: transparent;
  /* Otherwise white in Chrome */
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  cursor: pointer;
  height: 20px;
  /* All the same stuff for Firefox */
  /* All the same stuff for IE */ }
  .input-range::-webkit-slider-thumb {
    -webkit-appearance: none; }
  .input-range:focus {
    outline: none;
    /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */ }
  .input-range::-ms-track {
    width: 100%;
    cursor: pointer;
    /* Hides the slider so custom styles can be added */
    background: transparent;
    border-color: transparent;
    color: transparent; }
  .input-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 100px;
    background: #000;
    cursor: pointer;
    margin-top: -0px;
    margin-right: -10px; }
  .input-range::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 100px;
    background: #000;
    cursor: pointer;
    border: unset; }
  .input-range::-ms-thumb {
    height: 20px;
    width: 20px;
    border-radius: 100px;
    background: #000;
    cursor: pointer; }

@-webkit-keyframes moveTop {
  from {
    transform: scale(1);
    opacity: 1; }
  50% {
    transform: scale(0.75);
    opacity: 0.25; }
  to {
    transform: scale(1);
    opacity: 1; } }

.button {
  border-radius: 50px;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  font-size: 18px;
  cursor: pointer; }
  .button-nav {
    padding: 40px 0px;
    display: flex;
    align-items: center; }
    .button-nav .button .fa-arrow-left {
      margin-left: 0; }
    .button-nav .button-black {
      margin-left: auto; }
  .button-black {
    background: #000;
    color: #fff; }
    .button-black.not-active {
      background: #bfbfbf; }
  .button i {
    margin-left: auto; }

.button-wide {
  width: 245px; }
  .button-wide i {
    font-size: 20px; }

.button-medium {
  width: 200px; }

.button-small {
  width: 100px;
  padding: 0; }

.button-no-icon span {
  width: 100%;
  text-align: center; }

.landing {
  width: 100vw;
  height: calc(100vh - 102px);
  overflow: hidden !important;
  position: relative; }
  .landing-background {
    width: 100%;
    height: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    overflow: hidden; }
  .landing-over-layer {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center; }
    .landing-over-layer a:hover {
      text-decoration: none; }
  .landing-buttons {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
    padding: 0 10%; }
  .landing-buttons-2 {
    padding: 0 20%;
    margin-top: 100px; }

.button-landing {
  padding: 40px 0;
  border-radius: 20px;
  border: 5px solid #fff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 140%;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  width: 300px;
  text-align: center;
  justify-content: center;
  display: flex; }

.button-landing-2 {
  background-color: rgba(255, 195, 0, 0.8);
  width: 240px;
  padding: 30px 0; }

.cg-button {
  background-color: #ddd;
  border-radius: 4px;
  border: none;
  box-shadow: none;
  color: #000;
  padding: 5px 10px;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  -webkit-appearance: button; }

.cg-table .header-cell {
  display: flex;
  flex-direction: row; }

.cg-table .header-cell .sort-icon {
  width: 20px;
  cursor: pointer; }

.cg-table .header-cell .sort-icon .fa-sort {
  color: #ccc; }

/* overide bootstrap*/
.btn-primary {
  background-color: #000 !important;
  border-radius: 25px !important;
  min-width: 100px !important;
  outline: none !important;
  border: unset !important;
  color: #fff !important;
  padding: 5px 10px; }
  .btn-primary:focus {
    box-shadow: unset !important; }

@media (max-width: 1366px) {
  .button-landing {
    margin: 0 20px; } }

@media (max-width: 1280px) {
  .landing {
    height: calc(100vh - 78px); }
  .button-landing {
    width: 250px;
    margin: 0 20px; } }

@media (max-width: 1080px) {
  .landing-background {
    height: 100%;
    width: auto; }
  .landing-buttons {
    flex-direction: column; }
  .button-landing {
    margin: 20px 0; } }

@media (max-width: 740px) {
  .button-medium {
    width: unset;
    min-width: 100px; } }

.login-box {
  width: 666px;
  background: #fff;
  border-radius: 15px;
  margin: 0 auto;
  margin-top: 10vh;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); }
  .login-box-header {
    padding: 40px 0;
    background: #000;
    text-align: center;
    border-radius: 15px 15px 0 0;
    box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.25); }
  .login-box-body {
    padding: 60px 100px 90px 100px; }
    .login-box-body-title {
      font-size: 28px;
      line-height: 35px;
      text-align: center; }
    .login-box-body-space {
      margin: 60px 0px; }

.register-type {
  display: flex;
  padding: 30px 60px; }
  .register-type-image {
    min-width: 100px;
    min-height: 100px; }
  .register-type-text {
    margin-left: 40px;
    flex: 1;
    display: flex;
    align-items: center; }
  .register-type-button {
    width: 100%;
    margin-bottom: 10px; }

.register-block {
  display: flex;
  padding: 30px;
  border: 1px solid #000;
  border-radius: 5px; }
  .register-block-text {
    margin-left: 40px; }
    .register-block-text-change {
      text-align: right; }
      .register-block-text-change span {
        cursor: pointer;
        text-decoration: underline; }

.step {
  display: flex;
  align-items: center; }
  .step-text {
    margin-left: auto;
    height: 48px;
    background-color: #FFF8B9;
    padding: 0 20px;
    text-align: center;
    border-radius: 100px;
    font-size: 15px;
    min-width: 100px; }

.badge-segment {
  display: flex;
  align-items: center;
  height: 67px;
  width: 180px;
  border: 1px solid #ACACAC;
  border-radius: 100px;
  cursor: pointer; }
  .badge-segment-text {
    width: 100%;
    text-align: center; }
  .badge-segment:hover {
    background: #000;
    color: #fff;
    border: 1px solid #000; }
  .badge-segment.selected {
    background: #000;
    color: #fff;
    border: 1px solid #000; }

.wrapper-badge {
  display: inline-block;
  width: 100%;
  margin-top: 30px; }
  .wrapper-badge .badge-segment {
    margin-right: 15px;
    margin-bottom: 15px;
    float: left;
    padding: 0 20px; }
  .wrapper-badge .badge-segment:last-child {
    margin-right: 0; }

.track-uploader .track-uploaded {
  display: flex;
  align-items: center; }
  .track-uploader .track-uploaded-info {
    display: flex; }
  .track-uploader .track-uploaded-icon {
    padding: 0 30px;
    height: 75px;
    display: inline-block;
    text-align: center;
    background: #F3F3F1;
    align-items: center;
    display: flex;
    margin-right: 5px; }
    .track-uploader .track-uploaded-icon span {
      font-size: 30px; }
  .track-uploader .track-uploaded-name {
    padding: 0 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: #F3F3F1;
    min-width: 350px; }
    .track-uploader .track-uploaded-name-truncate {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 200px; }
  .track-uploader .track-uploaded-button {
    margin-left: auto; }

.track-uploader .payment-later {
  text-align: right;
  margin-right: 70px;
  margin-top: 50px;
  font-size: 17px;
  line-height: 24px;
  cursor: pointer; }

.payment {
  max-width: 1150px;
  margin: 50px auto; }
  .payment-title {
    margin-bottom: 40px;
    max-width: 760px;
    margin-left: auto; }
  .payment .intro {
    display: flex;
    position: relative; }
    .payment .intro .gratis {
      position: absolute;
      background: #FFD12A;
      width: 120px;
      top: -20px;
      margin-left: -8px;
      border-radius: 5px 5px 5px 0;
      padding: 5px 20px 0;
      border: 1px solid #A2A2A2;
      z-index: 1; }
      .payment .intro .gratis:after {
        content: "";
        width: 8px;
        height: 8px;
        left: 0;
        position: absolute;
        border-width: 4px;
        border-style: solid;
        border-color: #665414 #665414 transparent transparent; }
    .payment .intro-col {
      width: 380px;
      background: #fff; }
      .payment .intro-col-title {
        padding: 30px 50px;
        text-align: center;
        background: rgba(243, 239, 227, 0.25);
        border-bottom: 1px solid #DBDBDB;
        min-height: 100px;
        justify-content: center; }
        .payment .intro-col-title-left {
          border-bottom: 1px solid #DBDBDB; }
          .payment .intro-col-title-left-type-1 {
            min-height: 481px; }
      .payment .intro-col-expand {
        display: none; }
      .payment .intro-col-desc {
        color: #747474;
        text-align: left; }
        .payment .intro-col-desc-type-1 {
          min-height: 380px; }
      .payment .intro-col-item {
        padding: 20px 50px;
        min-height: 105px;
        border-bottom: 1px solid #DBDBDB;
        display: flex;
        align-items: center;
        justify-content: center; }
        .payment .intro-col-item-inner {
          text-align: center; }
        .payment .intro-col-item-text {
          display: none; }
        .payment .intro-col-item-left {
          padding: 20px 10px;
          justify-content: left; }
          .payment .intro-col-item-left p {
            text-align: left;
            color: #747474;
            font-size: 17px;
            line-height: 24px; }
      .payment .intro-col-bottom {
        padding: 40px 50px; }
        .payment .intro-col-bottom-see-report {
          text-align: left;
          display: block;
          color: #000;
          text-decoration: none; }
      .payment .intro-col-icon {
        width: 50px;
        height: 50px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        margin: 0 auto; }
        .payment .intro-col-icon-blue {
          background: #CCE0DD; }
        .payment .intro-col-icon-pink {
          background: #F6DCD5; }
    .payment .intro-col-0 {
      width: calc( 100% - 760px); }
    .payment .intro-col-1 {
      border-radius: 15px 0px 0px 15px;
      border: 1px solid #DBDBDB; }
    .payment .intro-col-2 {
      border-radius: 0px 15px 15px 0px;
      border-top: 1px solid #DBDBDB;
      border-right: 1px solid #DBDBDB;
      border-bottom: 1px solid #DBDBDB; }
  .payment-extend {
    background: #fff;
    padding: 80px 150px; }
    .payment-extend-title {
      display: flex;
      align-items: center; }
    .payment-extend-question-contact {
      margin-left: auto;
      align-items: center; }
      .payment-extend-question-contact-button {
        width: 60px;
        height: 40px;
        display: flex;
        align-items: center;
        border: 1px solid #000000;
        border-radius: 5px;
        font-size: 20px;
        justify-content: center;
        margin-left: 30px;
        cursor: pointer; }
    .payment-extend-item {
      display: flex;
      align-items: center;
      border-bottom: 1px solid #DBDBDB;
      min-height: 160px;
      padding: 20px 0px; }
      .payment-extend-item-img {
        margin-right: 60px;
        width: 125px; }
      .payment-extend-item-text {
        width: calc( 100% - 125px); }
  .payment .new-info {
    display: flex;
    max-width: 650px;
    margin: 0 auto;
    min-height: 300px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    background: #fff; }
    .payment .new-info .new-info-col {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-right: 1px solid rgba(0, 0, 0, 0.25); }
    .payment .new-info .new-info-col:first-child {
      width: 45%; }
    .payment .new-info .new-info-col:last-child {
      width: 55%; }
    .payment .new-info .new-info-header {
      font-size: 22px;
      text-align: center;
      padding: 15px 0px; }
    .payment .new-info .new-info-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      padding: 30px 20px; }
    .payment .new-info .new-info-button {
      text-align: center;
      padding: 20px 50px; }

.checkout {
  display: flex;
  margin: 0 auto;
  margin-top: 20px;
  max-width: 1062px;
  justify-content: center; }
  .checkout-back {
    max-width: 1062px;
    margin: 30px auto; }
  .checkout-margin {
    margin-top: 30px; }
  .checkout-box {
    min-height: 100px;
    border: 1px solid #ACACAC;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    margin-top: 20px; }
    .checkout-box-group {
      padding: 20px 30px;
      cursor: pointer; }
      .checkout-box-group.active {
        background: #F3F3F1; }
    .checkout-box-icon {
      font-size: 24px;
      margin-right: 30px; }
    .checkout-box-delete {
      cursor: pointer; }
  .checkout-information {
    width: 370px;
    display: flex;
    align-items: flex-end; }
  .checkout-prices {
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    background: #FFFFFF; }
    .checkout-prices-content {
      width: 366px;
      background: #FFFFFF;
      border-radius: 15px;
      padding: 50px 30px; }
      .checkout-prices-content-text {
        color: #515151;
        display: flex;
        align-items: center;
        margin-bottom: 12px; }
      .checkout-prices-content-number {
        margin-left: auto; }
  .checkout .wrapper-badge {
    display: flex;
    margin-top: 20px; }
    .checkout .wrapper-badge .badge-segment {
      height: 60px;
      width: 135px;
      margin-right: 10px; }
  .checkout-header-line {
    display: flex;
    align-items: center; }
    .checkout-header-line-right {
      display: flex;
      align-items: center;
      margin-left: auto; }
      .checkout-header-line-right .payment-extend-question-contact-button {
        margin-left: 10px; }
  .checkout-receipt {
    max-width: 764px; }
  .checkout .new-check-out-information {
    background: #FFFFFF;
    border-radius: 15px 0px 0px 15px;
    padding: 50px 20px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    border-left: 1px solid rgba(0, 0, 0, 0.25); }
  .checkout .new-check-out-group {
    border-bottom: 1px solid #ACACAC;
    padding: 10px 0px; }
    .checkout .new-check-out-group .new-check-out-group-head {
      display: flex;
      justify-content: space-between;
      align-items: center; }
    .checkout .new-check-out-group .new-check-out-group-button {
      width: 40px;
      height: 30px;
      display: flex;
      align-items: center;
      border: 1px solid #000000;
      border-radius: 5px;
      font-size: 20px;
      justify-content: center;
      cursor: pointer; }
    .checkout .new-check-out-group .new-check-out-group-option {
      padding: 5px 20px;
      margin: 0 auto; }
  .checkout .checkout-information .new-check-out-group:last-child {
    border-bottom: unset; }

.interview {
  display: flex;
  margin-top: 60px; }
  .interview-input {
    display: flex;
    align-items: center;
    padding: 0px 30px;
    background: #FFF8B9;
    border-radius: 15px; }
    .interview-input input {
      border-right: 1px solid #E2E2E2; }
    .interview-input-text {
      height: 72px;
      padding: 20px 0px;
      width: 60px;
      border: none;
      background: transparent;
      font-size: 28px;
      outline: none; }
    .interview-input-price {
      font-size: 18px;
      padding-left: 20px; }

.back {
  width: 100%;
  max-width: 987px;
  margin: 0 auto;
  margin-top: 30px; }

.report-header {
  background: #fff;
  padding: 40px 0px 60px 0px;
  width: 100%;
  margin-bottom: 90px; }
  .report-header-title {
    display: flex;
    align-items: center; }
  .report-header-button {
    display: flex;
    margin-left: auto;
    align-items: center; }
    .report-header-button-download {
      width: 210px;
      padding: 0px 20px;
      justify-content: space-between; }
    .report-header-button-tablet {
      display: none; }

.report-track-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .report-track-block-50 {
    width: calc(50% - 5px); }
  .report-track-block-100 {
    width: 100%; }

.report-track {
  width: 100%;
  height: 156px;
  border-top: 1px solid #BFBFBF;
  border-bottom: 1px solid #BFBFBF;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 30px; }
  .report-track-image {
    height: 154px;
    width: 154px; }
  .report-track-texts {
    display: flex;
    margin-left: 45px;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between; }
  .report-track-button {
    min-width: 180px;
    padding: 0 20px;
    font-size: 18px; }
  .report-track-circle {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    cursor: pointer; }
    .report-track-circle span {
      font-size: 20px; }
  .report-track-buttons {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 20px; }
  .report-track .play {
    margin-left: 80px; }

.report-group {
  min-height: 130px;
  background: #FFFFFF;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  border-radius: 15px; }
  .report-group-collapse {
    display: flex;
    align-items: center;
    width: 100%; }
    .report-group-collapse.report-group-expand {
      border-bottom: 1px solid #DDDDDD; }
  .report-group-expand .report-group-icon {
    border-radius: 15px 0px 0px 0px; }
  .report-group-icon {
    width: 154px;
    height: 130px;
    background: #F8F8F7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px 0px 0px 15px; }
    .report-group-icon .icon {
      font-size: 36px; }
  .report-group-special {
    background-color: #FFF8B9;
    flex-direction: column; }
  .report-group-header {
    display: flex;
    align-items: center;
    padding: 0 40px 0 60px;
    justify-content: space-between;
    width: calc( 100% - 154px); }
    .report-group-header-text {
      width: calc( 100% - 52px); }
      .report-group-header-text-desc {
        color: #757575; }
    .report-group-header-button-div {
      display: flex;
      align-items: center; }
    .report-group-header-button {
      width: 52px;
      height: 52px;
      border-radius: 5px;
      border: 1px solid #000000;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer; }
  .report-group-body {
    padding: 0 100px;
    width: 100%; }
    .report-group-body-padding {
      padding-top: 50px;
      padding-bottom: 50px; }
    .report-group-body-col-2 {
      display: flex;
      justify-content: space-between;
      align-items: flex-start; }
    .report-group-body-col-2-50 {
      display: flex; }
      .report-group-body-col-2-50-left {
        width: 50%;
        padding-right: 100px; }
      .report-group-body-col-2-50-right {
        width: 50%; }
    .report-group-body-align {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: space-between; }
    .report-group-body-chart {
      width: calc(100% - 350px); }
    .report-group-body-information {
      width: 270px;
      padding: 20px;
      background: #F3F3F1;
      border-radius: 15px; }
    .report-group-body-score-text {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      cursor: pointer; }
    .report-group-body-see-details {
      display: flex;
      align-items: center;
      margin-top: 20px;
      margin-bottom: 20px;
      cursor: pointer; }
      .report-group-body-see-details-text {
        opacity: 0.5;
        margin-right: 5px; }
      .report-group-body-see-details i {
        font-size: 15px; }
  .report-group-like {
    display: flex;
    flex-wrap: wrap; }
    .report-group-like-item {
      width: 50%;
      display: flex;
      align-items: center;
      padding-top: 40px;
      padding-bottom: 40px; }
      .report-group-like-item:nth-child(odd) {
        padding-left: 100px;
        border-bottom: 1px solid #ddd;
        border-right: 1px solid #ddd; }
      .report-group-like-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 100px;
        border-bottom: 1px solid #ddd; }
      .report-group-like-item-number, .report-group-like-item-number-big {
        width: 96px;
        height: 72px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(158, 212, 219, 0.5);
        border-radius: 25px;
        margin-right: 40px;
        flex-shrink: 0; }
        .report-group-like-item-number-big {
          width: 115px;
          height: 100px; }
      .report-group-like-item-title {
        font-size: 18px;
        line-height: 24px;
        font-weight: 700; }
      .report-group-like-item-desc {
        font-size: 14px;
        line-height: 24px;
        color: #757575; }
  .report-group-tag {
    width: 150px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF4B5;
    border-radius: 50px;
    font-size: 17px;
    line-height: 24px;
    font-size: 15px; }
    .report-group-tag:last-child {
      margin-right: 0; }
  .report-group-dot {
    width: 10px;
    height: 10px;
    border-radius: 10px; }
  .report-group-region {
    display: flex; }
    .report-group-region-ul {
      margin: 0;
      padding: 0;
      list-style: none;
      max-width: 250px;
      margin-top: 30px;
      margin-bottom: 40px; }
      .report-group-region-ul li {
        display: flex;
        align-items: center;
        padding: 15px 0px;
        border-bottom: 1px solid #DDD; }
        .report-group-region-ul li span {
          font-size: 15px;
          line-height: 19px; }
    .report-group-region-map {
      position: relative; }
      .report-group-region-map-point {
        position: absolute;
        border-radius: 300px;
        opacity: 0.5; }
  .report-group-table {
    max-width: 550px;
    font-size: 15px;
    line-height: 24px;
    margin-top: 40px; }
    .report-group-table-row {
      padding: 15px 0px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid #DDDDDD; }
    .report-group-table-col-1 {
      width: 40%; }
    .report-group-table-col-2 {
      width: 30%; }
    .report-group-table-label {
      color: #000; }
      .report-group-table-label-mobile {
        display: none; }
    .report-group-table-value {
      color: #858585; }
  .report-group-feedback {
    max-width: 665px; }
    .report-group-feedback-header {
      display: flex;
      align-items: center; }
    .report-group-feedback-title {
      margin-right: 50px;
      padding-bottom: 10px;
      color: #000;
      opacity: 0.6;
      cursor: pointer; }
      .report-group-feedback-title:last-child {
        margin-right: 0px; }
      .report-group-feedback-title.active {
        opacity: 1;
        border-bottom: 2px solid #000; }
    .report-group-feedback-comments {
      margin-top: 40px;
      margin-bottom: 40px;
      padding: 40px 60px;
      background: rgba(204, 224, 221, 0.5);
      border-radius: 15px;
      display: flex;
      flex-wrap: wrap;
      align-items: center; }
    .report-group-feedback-footer {
      display: flex;
      align-items: center; }
      .report-group-feedback-footer-left {
        display: flex;
        align-items: center; }
        .report-group-feedback-footer-left-button {
          height: 48px;
          width: 55px;
          border: 1px solid #000;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer; }
          .report-group-feedback-footer-left-button-left {
            border-radius: 50px 0px 0px 50px; }
          .report-group-feedback-footer-left-button-right {
            border-radius: 0px 50px 50px 0px; }
        .report-group-feedback-footer-left-text {
          margin-left: 20px;
          color: #000;
          opacity: 0.5; }
      .report-group-feedback-footer-right {
        margin-left: auto; }

.report-information {
  display: inline-block; }
  .report-information-left {
    width: 432px;
    height: 432px;
    float: left; }
  .report-information-right {
    max-width: 660px;
    width: calc( 100% - 498px);
    float: right; }
    .report-information-right-track-info {
      padding: 40px 0px;
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      border-top: 1px solid #ADADAD;
      border-bottom: 1px solid #ADADAD;
      gap: 12px; }
      .report-information-right-track-info-right {
        margin-left: auto; }
        .report-information-right-track-info-right .play {
          width: 68px;
          height: 68px;
          background: #fff;
          border-radius: 15px;
          display: flex;
          align-content: center;
          align-items: center;
          cursor: pointer;
          padding: 5px;
          position: relative; }
          .report-information-right-track-info-right .play .icon {
            width: calc( 100% - 10px);
            text-align: center;
            position: absolute;
            height: 20px;
            line-height: 16px; }
            .report-information-right-track-info-right .play .icon img {
              width: 100%;
              height: 100%; }
          .report-information-right-track-info-right .play svg {
            height: 58px;
            transform: rotate(-90deg); }
            .report-information-right-track-info-right .play svg circle {
              fill: none;
              stroke: #fff;
              stroke-width: 5px;
              transform: translate(5px, 5px);
              stroke-dasharray: 164;
              stroke-dashoffset: 0; }
              .report-information-right-track-info-right .play svg circle:nth-child(1) {
                stroke-dashoffset: 0;
                stroke: #000; }
              .report-information-right-track-info-right .play svg circle:nth-child(2) {
                stroke-dashoffset: 0;
                stroke: #D9D9D9;
                stroke-width: 6px; }

.chart {
  display: inline-block;
  width: 100%;
  margin-top: 30px; }
  .chart-header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px; }
    .chart-header-label {
      min-width: 150px;
      height: 40px;
      padding: 0 10px;
      display: flex;
      align-items: center;
      border-radius: 50px;
      margin-right: 10px;
      margin-bottom: 10px;
      cursor: pointer; }
      .chart-header-label-dot {
        width: 13px;
        height: 13px;
        border-radius: 50px;
        margin-right: 25px; }
      .chart-header-label-text {
        font-size: 15px;
        line-height: 24px; }
      .chart-header-label.inactive {
        background: #F3F3F1;
        color: #747474; }
      .chart-header-label.active {
        border: 1px solid #000; }
  .chart-option {
    display: flex;
    margin-bottom: 20px; }
    .chart-option-name {
      width: 170px;
      display: flex;
      align-items: center; }
    .chart-option-bar {
      width: calc( 100% - 150px);
      position: relative; }
      .chart-option-bar-items {
        display: flex;
        align-items: center;
        margin-bottom: 5px; }
      .chart-option-bar-item {
        height: 21px;
        border-radius: 50px; }
        .chart-option-bar-item-text {
          font-size: 13px;
          line-height: 18px;
          margin-left: 10px;
          opacity: 0.5; }
        .chart-option-bar-item-circle {
          width: 42px;
          height: 42px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #FFF8B9;
          border-radius: 50px;
          color: #000;
          font-size: 13px;
          line-height: 18px;
          margin-left: 10px; }
        .chart-option-bar-item-overlap {
          width: 100%;
          height: 35px;
          position: absolute;
          top: -7px;
          left: 0;
          margin: 0; }
          .chart-option-bar-item-overlap .chart-option-bar-item {
            border-right: 2px dotted #000;
            border-radius: 0;
            height: 35px; }

.select-visible-type {
  padding: 40px 40px 40px 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center; }

.profile-header {
  display: flex;
  align-items: center; }
  .profile-header-buttons {
    margin-left: auto;
    display: flex; }
    .profile-header-buttons .button {
      width: 200px;
      justify-content: center;
      margin-right: 20px; }
      .profile-header-buttons .button:last-child {
        margin-right: 0px; }

.profile-body {
  margin-top: 60px;
  display: flex; }
  .profile-body-avatar {
    margin-left: auto; }
    .profile-body-avatar img {
      width: 250px; }
    .profile-body-avatar-edit {
      width: 250px;
      height: 250px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .profile-body-avatar-edit.no-avatar {
        background: #c4c4c4; }
      .profile-body-avatar-edit .icon {
        font-size: 24px;
        cursor: pointer; }
    .profile-body-avatar-edit-text {
      text-align: center;
      margin: 0;
      margin-top: 10px;
      text-decoration: underline; }

.space-margin-large-top {
  margin-top: 60px; }

.space-margin-large-top-bottom {
  margin: 60px 0px; }

.space-margin-medium-top-bottom {
  margin: 40px 0px; }

.space-margin-small-top-bottom {
  margin: 20px 0px; }

.space-margin-small-bottom {
  margin-bottom: 20px; }

.space-padding-0 {
  padding: 0; }

.space-padding-small-top-bottom {
  padding: 20px 0px; }

.space-padding-small-bottom {
  padding-bottom: 20px; }

.size-width-100 {
  width: 100%; }

.size-width-large {
  width: 450px; }

.size-width-medium {
  width: 250px; }

.size-width-small {
  width: 100px; }

@media screen and (max-width: 1440px) {
  .home-content-inner {
    margin-left: unset;
    margin: 0 auto; } }

@media (min-width: 1080px) and (max-height: 850px) {
  .popup .header {
    margin-bottom: 30px; }
  .navigation {
    height: 72px; }
  .main-container {
    margin-top: 72px; }
  .content {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 40px 80px; }
  .filter-panel {
    padding-top: 0px; }
    .filter-panel .input-search input {
      margin-bottom: 5px; }
    .filter-panel-list-text {
      margin: 20px 0px 15px 0px; }
    .filter-panel .filter-content {
      padding-top: 0px; }
    .filter-panel .list li .li-header {
      padding-top: 5px;
      padding-bottom: 5px; }
    .filter-panel .button-upload {
      margin-top: 20px; }
  .home-upload {
    margin-top: 50px;
    margin-bottom: 50px; }
  .toplist {
    padding-top: 30px; }
  .login-box {
    width: 525px; }
    .login-box-body {
      padding: 60px; }
      .login-box-body-space {
        margin: 30px 0px; }
  .register-type {
    padding: 20px 20px 10px 20px; }
  .main-list {
    margin-top: 0px; } }

@media (min-width: 1024px) and (max-height: 680px) {
  .filter-panel {
    padding-top: 0px; }
    .filter-panel .filter-content {
      height: calc( 100vh - 90px); }
    .filter-panel .filter-panel-list-text {
      margin: 20px 0px 20px 0px; }
    .filter-panel .input-search input {
      margin-bottom: 10px; }
    .filter-panel .list li .li-header {
      padding-top: 5px;
      padding-bottom: 5px; }
    .filter-panel .icon {
      font-size: 20px; }
  .login-box-body {
    padding: 30px 60px; }
  .register-type-button {
    margin-bottom: 10px; } }

/* screen size */
@media (max-width: 1080px) {
  .showOnlyDesktop {
    display: none; }
    .showOnlyDesktop-flex {
      display: none; }
  .showOnlyTablet {
    display: block; }
    .showOnlyTablet-flex {
      display: flex; }
  .showTabletAndMobile {
    display: block; }
  .margin-20 {
    margin-top: 18px; }
  .margin-14 {
    margin-top: 12px; }
  .content {
    max-width: 700px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 60px; }
    .content-back {
      max-width: 700px; }
  .content-no-background {
    max-width: 710px; }
  .popup {
    min-width: 600px;
    max-width: 90%;
    padding: 20px; }
    .popup .header {
      margin-bottom: 30px; }
    .popup .header-sub {
      margin-bottom: 10px; }
    .popup .footer {
      margin-top: 30px; }
  .navigation {
    height: 72px;
    padding-left: 30px;
    padding-right: 25px; }
  .main-container {
    margin-top: 72px; }
  .filter {
    position: unset; }
  .home-content {
    margin-left: 0;
    margin-bottom: 0; }
  .footer {
    padding-top: 40px; }
  .partner {
    display: block;
    padding-bottom: 40px; }
    .partner .left {
      width: 100%;
      margin-right: 0; }
    .partner .right {
      padding-top: 40px;
      width: 100%; }
      .partner .right img {
        margin-right: 20px; }
        .partner .right img:last-child {
          margin-right: 0px; }
  .site-map {
    display: block;
    margin-top: 40px; }
    .site-map .information {
      width: 100%;
      margin-right: 0;
      margin-top: 0px; }
      .site-map .information .information-tablet {
        display: flex;
        margin-top: 40px;
        margin-bottom: 40px; }
        .site-map .information .information-tablet .address {
          margin-right: 40px;
          margin-top: 0px; }
        .site-map .information .information-tablet .mobil {
          margin-top: 0px; }
    .site-map .site-menu {
      width: 100%;
      margin-bottom: 40px; }
      .site-map .site-menu .menu {
        margin-top: 0px; }
  /* home */
  .home {
    display: block; }
  .home-upload {
    max-width: 700px;
    margin: 60px auto; }
    .home-upload-text {
      font-size: 28px; }
  .home-search {
    max-width: 700px;
    margin: 60px auto; }
    .home-search-text {
      font-size: 22px; }
  .home-content-inner {
    margin-left: unset;
    margin: 0 auto; }
  .has-more {
    margin-top: 0px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column; }
    .has-more .button-blank {
      height: 36px;
      padding: 0px 10px; }
  /* Filters */
  body.filter-opened {
    overflow: hidden; }
  .filter-options-opened .filter-panel.showTabletAndMobile .filter-content > ul.list {
    display: none; }
  .filter-panel {
    position: fixed;
    right: 0;
    top: 72px;
    padding: 0;
    z-index: 10; }
    .filter-panel .filter-content {
      height: calc( 100vh - 72px);
      padding-top: 0px;
      overflow-y: auto;
      scrollbar-width: unset;
      -ms-overflow-style: unset; }
    .filter-panel .filter-content::-webkit-scrollbar {
      width: unset !important; }
    .filter-panel .filter-panel-responsive {
      display: none; }
    .filter-panel .filter-header {
      padding: 15px 30px;
      background: #F3F3F1;
      display: flex; }
      .filter-panel .filter-header i {
        margin-left: auto; }
    .filter-panel .input-search {
      margin-top: 20px;
      margin-bottom: 10px; }
    .filter-panel .list li {
      padding: 0; }
      .filter-panel .list li .li-header {
        padding-top: 5px;
        padding-bottom: 5px;
        font-size: 14px;
        line-height: normal; }
        .filter-panel .list li .li-header .icon {
          margin-right: 20px;
          font-size: 18px; }
    .filter-panel .custom-list {
      padding-bottom: 100px; }
    .filter-panel .filter-panel-list-text {
      margin: 20px 0px 10px 0px; }
  .filter-options .arrow-left {
    margin-top: 50px;
    margin-bottom: 50px; }
  .filter-options .options {
    padding-bottom: 100px; }
  .filter-options-info {
    display: none; }
  .analyser-mobile {
    width: 100%;
    background: #FFF8B9;
    text-transform: uppercase;
    padding: 0px 8px; }
    .analyser-mobile .analyser-mobile-head {
      cursor: pointer;
      margin: 0 auto;
      display: flex;
      align-items: center;
      height: 50px; }
      .analyser-mobile .analyser-mobile-head i {
        margin-left: auto; }
    .analyser-mobile .wrapper-toplist-navigation .toplist-navigation {
      margin: 0;
      flex-wrap: wrap; }
    .analyser-mobile .dropdown-control {
      min-width: unset;
      color: #757575; }
    .analyser-mobile .dropdown-control-header {
      height: 30px;
      padding: 0 8px; }
      .analyser-mobile .dropdown-control-header .text {
        font-size: 10px;
        line-height: normal; }
      .analyser-mobile .dropdown-control-header i {
        padding-left: 5px;
        font-size: 12px; }
    .analyser-mobile .dropdown-control-options {
      top: 32px; }
    .analyser-mobile .toplist-filtered-text {
      min-height: 30px;
      padding: 0px 8px;
      margin-right: 5px;
      background: #F3F3F1; }
      .analyser-mobile .toplist-filtered-text .toplist-filtered-text-name {
        display: flex;
        align-items: center;
        flex: 1; }
      .analyser-mobile .toplist-filtered-text .toplist-filtered-text-icon {
        width: unset; }
      .analyser-mobile .toplist-filtered-text span {
        font-size: 10px;
        line-height: normal; }
      .analyser-mobile .toplist-filtered-text i {
        font-size: 12px;
        padding-left: 5px; }
  .analyser-mobile-toplist {
    margin: 0 8px; }
    .analyser-mobile-toplist .home-back {
      margin-top: 20px; }
    .analyser-mobile-toplist .home-playlist {
      justify-content: center; }
    .analyser-mobile-toplist .home-upload-text {
      text-align: center;
      margin: 20px 0px 10px 0px; }
    .analyser-mobile-toplist .included-others {
      display: flex;
      justify-content: right;
      margin-bottom: 10px; }
  /* toplist */
  .toplist-filtered-line {
    max-width: 700px;
    margin: 0 auto; }
  .toplist {
    margin: 0 auto;
    max-width: 700px; }
  .toplist-navigation-mobile {
    max-width: 700px;
    margin: 0 auto;
    display: block; }
  .toplist-navigation-private {
    max-width: 700px;
    margin: 0 auto; }
  /* toogle button */
  .toogle-button-label {
    text-align: left;
    margin-left: 20px; }
  /* player */
  .player-close {
    right: 10px;
    top: 5px; }
  .player-collapse {
    top: 5px; }
  .player-control .play {
    margin-right: 20px; }
  .player-control .start-time {
    margin-right: 10px; }
  .player-control .end-time {
    margin-right: 20px; }
  .player-control .player-bar {
    width: 150px; }
    .player-control .player-bar.small {
      width: 70px; }
  .player .player-info .player-info-text {
    display: block;
    margin-right: 20px; }
    .player .player-info .player-info-text .player-name {
      margin-right: 0;
      width: 100%;
      text-align: right;
      display: inline-block; }
    .player .player-info .player-info-text .player-artist {
      margin-right: 0;
      width: 100%;
      text-align: right;
      display: inline-block; }
  /* buttons */
  .button-status {
    height: 28px;
    width: 28px;
    padding: 0;
    line-height: 26px;
    text-align: center;
    display: block; }
    .button-status-text {
      display: none;
      margin-left: 0; }
    .button-status i {
      font-size: 10px; }
  .custom-height-400 {
    max-height: 300px;
    overflow-y: auto; }
  .img-432 {
    width: 300px;
    height: 300px; }
  .dropdown-control.custom-margin {
    margin-right: 5px;
    margin-bottom: 10px; }
  /* Login view */
  .login-box {
    width: 525px; }
    .login-box-body {
      padding: 60px; }
  /* trackUploader */
  .track-uploader .track-uploaded {
    display: unset; }
    .track-uploader .track-uploaded-button {
      margin: 20px 0; }
  .track-uploader .payment-later {
    margin-right: 30px; }
  .wrapper-badge .badge-segment {
    margin-right: 10px;
    margin-bottom: 10px;
    width: 135px; }
  /* payment */
  .payment {
    max-width: 700px; }
    .payment .intro-col-title .heading-3 {
      font-size: 18px; }
    .payment .intro-col-desc {
      min-height: 422px; }
    .payment .intro-col-item {
      min-height: 135px; }
      .payment .intro-col-item-text {
        margin-top: 15px;
        margin-bottom: 0;
        font-size: 13px;
        line-height: 18px;
        display: block; }
    .payment .intro-col-icon {
      margin: 0 auto;
      width: 40px;
      height: 40px; }
    .payment .intro-col-0 {
      display: none; }
    .payment-extend {
      padding: 80px 30px; }
  .checkout {
    max-width: 700px;
    display: block; }
    .checkout-back {
      max-width: 700px; }
    .checkout-information {
      width: 100%;
      padding: 50px 60px; }
    .checkout-prices-content {
      width: 100%;
      padding: 50px 60px; }
  /* menu on header */
  .menu {
    border: unset;
    border-radius: unset;
    top: 72px;
    right: -96px;
    width: 555px;
    height: calc( 100vh - 72px);
    padding: 0; }
    .menu-header {
      height: 72px;
      width: 100%;
      display: flex;
      align-items: center;
      padding: 0 40px;
      font-size: 13px;
      line-height: 14px;
      background: #F3F3F1; }
    .menu-account {
      margin-top: 80px; }
    .menu .icon {
      display: none; }
    .menu li {
      justify-content: center;
      border-bottom: unset;
      font-size: 22px;
      line-height: 30px;
      padding: 20px; }
      .menu li a {
        justify-content: center; }
  /* Profile */
  .profile-header {
    flex-direction: column; }
    .profile-header .heading-1 {
      width: 100%; }
    .profile-header-buttons {
      margin-left: 0;
      width: 100%;
      margin-top: 40px; }
  .profile-body {
    flex-direction: column-reverse;
    margin-top: 50px; }
    .profile-body-avatar {
      margin-left: 0;
      margin-bottom: 40px; }
      .profile-body-avatar-edit-text {
        text-align: left; }
  .toplist-filtered-text {
    margin-bottom: 10px; } }

@media (max-width: 1024px) {
  /* report */
  .report-header {
    margin-bottom: 60px; }
    .report-header-button-special {
      display: none; }
    .report-header-button-tablet {
      display: flex; }
  .report-track-block-50 {
    width: 100%; }
  .report-track {
    margin-bottom: 60px; }
    .report-track-texts {
      display: block;
      height: unset; }
    .report-track-button {
      min-width: unset; }
      .report-track-button span {
        display: none; }
    .report-track-buttons {
      margin-left: 0; }
      .report-track-buttons .play {
        margin-left: 30px; }
  .report-group-header {
    padding: 0 30px 0 40px; }
  .report-group-body {
    padding: 0px 70px; }
    .report-group-body-padding {
      padding-top: 40px;
      padding-bottom: 40px; }
    .report-group-body-chart {
      width: 100%; }
    .report-group-body-information {
      display: none; }
    .report-group-body-col-2-50 {
      flex-direction: column; }
      .report-group-body-col-2-50-left {
        width: 100%;
        padding-right: 0; }
      .report-group-body-col-2-50-right {
        width: 100%;
        margin-top: 50px; }
  .report-group-like-item {
    width: 100%; }
    .report-group-like-item:nth-child(odd) {
      padding-left: 70px;
      padding-right: 70px;
      border-right: unset; }
    .report-group-like-item:nth-child(even) {
      padding-left: 70px;
      padding-right: 70px; }
    .report-group-like-item-number-big {
      width: 90px;
      height: 85px; }
    .report-group-like-item-title {
      font-size: 15px;
      line-height: 19px; }
    .report-group-like-item-desc {
      font-size: 15px;
      line-height: 24px; }
  .report-group-table {
    max-width: 100%; }
  .report-group-feedback-title {
    margin-right: 40px; }
  .report-information-left {
    width: 344px;
    height: 344px; }
  .report-information-right {
    max-width: 340px;
    width: calc( 100% - 364px);
    margin-left: auto; }
    .report-information-right-extend {
      width: 100%;
      max-width: 100%;
      margin-left: 0; }
      .report-information-right-extend .heading-2 {
        font-size: 18px;
        line-height: 24px; }
      .report-information-right-extend .heading-4 {
        font-size: 17px;
        line-height: 24px; }
    .report-information-right-track-info {
      box-sizing: border-box;
      justify-content: left;
      margin-bottom: 30px; }
      .report-information-right-track-info .heading-2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px; }
      .report-information-right-track-info-right {
        margin-left: 0; } }

/* screen size */
@media (max-width: 740px) {
  p {
    font-size: 14px;
    line-height: normal; }
  .navigation {
    padding-left: 20px;
    padding-right: 20px; }
    .navigation .right .account {
      max-width: 250px;
      text-align: right; }
      .navigation .right .account .welcome {
        display: none; }
      .navigation .right .account span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
  .background-white {
    background: #fff; }
  .content {
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    margin: 0; }
    .content-back {
      max-width: 700px;
      display: inline-block;
      width: calc( 100% - 40px);
      margin: 20px; }
  .content-no-background {
    padding: 0 20px; }
  .footer {
    padding-top: 30px; }
  .showOnlyMobile {
    display: block; }
    .showOnlyMobile-flex {
      display: flex; }
  .showOnlyTablet {
    display: none; }
  .showDesktopAndTablet {
    display: none; }
    .showDesktopAndTablet-flex {
      display: none; }
  .popup {
    min-width: 300px;
    max-width: 98%;
    padding: 10px; }
    .popup .header {
      margin-bottom: 20px;
      font-size: 22px;
      line-height: 28px;
      padding: 0 5px; }
    .popup .header-sub {
      margin-bottom: 5px; }
    .popup .footer {
      margin-top: 20px;
      padding: 0 10px; }
    .popup .body {
      padding: 0px 5px; }
  .partner {
    padding-bottom: 30px; }
    .partner .right {
      padding-top: 0; }
      .partner .right img {
        margin-right: 9px;
        margin-top: 30px; }
  .site-map {
    margin-top: 30px; }
    .site-map .information .information-tablet {
      display: inline-block;
      margin-top: 30px;
      margin-bottom: 30px; }
      .site-map .information .information-tablet .address {
        margin-right: 0px;
        margin-top: 0px;
        width: 100%; }
      .site-map .information .information-tablet .mobil {
        margin-top: 20px; }
    .site-map .site-menu {
      width: 100%;
      margin-bottom: 0px;
      display: inline-block; }
      .site-map .site-menu .menu {
        margin-top: 0px;
        width: 50%;
        float: left;
        margin-bottom: 30px; }
  /* home */
  .home-upload {
    margin: 20px auto;
    display: block;
    text-align: center; }
    .home-upload-text {
      font-size: 20px;
      line-height: normal;
      display: block; }
    .home-upload-button {
      margin: 0 auto;
      width: 250px; }
  .home-search {
    margin: 30px auto;
    max-width: 90%;
    flex-direction: column; }
    .home-search-text {
      font-size: 22px; }
  .no-track-img {
    width: 100%;
    max-width: 300px; }
  /* TopList */
  .toplist-filtered-line {
    justify-content: center; }
  .toplist-no-track {
    padding: 60px 20px; }
    .toplist-no-track .toplist-no-track-icon {
      margin-bottom: 30px; }
  .toplist {
    width: 100%;
    padding: 0px 8px;
    position: relative; }
    .toplist .track {
      align-items: center;
      padding: 6px 0;
      min-height: unset; }
      .toplist .track .order-mobile {
        height: 72px;
        width: 16px;
        display: block; }
      .toplist .track_image {
        width: 72px;
        height: 72px; }
      .toplist .track_information {
        display: block;
        width: calc( 100% - 129px);
        margin-left: 10px; }
        .toplist .track_information .order {
          display: none; }
        .toplist .track_information .name {
          margin-bottom: 5px; }
      .toplist .track_action {
        width: 32px;
        display: block; }
        .toplist .track_action .button-status {
          margin-bottom: 20px; }
        .toplist .track_action .more {
          display: block;
          text-align: center;
          font-size: 18px;
          padding: 0; }
      .toplist .track .score {
        padding: 5px;
        width: 36px;
        height: 36px;
        margin: 0 5px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center; }
    .toplist .page-size {
      padding: 10px 0; }
      .toplist .page-size span {
        font-size: 12px;
        line-height: 16px; }
      .toplist .page-size-number {
        padding: 0px 6px; }
  .play {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 10px;
    margin-bottom: 18px; }
  /* Control */
  .button-filter {
    display: flex; }
  .button-multi-report {
    margin-right: 0;
    margin-top: 20px; }
  /* buttons */
  .button-status {
    height: 18px;
    width: 18px;
    line-height: 14px;
    margin-left: auto; }
    .button-status i {
      font-size: 8px; }
  .button-nav {
    flex-direction: column-reverse;
    justify-content: center; }
    .button-nav .button-black {
      margin-left: 0; }
  /* toogle button */
  .toogle-button {
    display: block; }
    .toogle-button-label {
      text-align: center;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 15px;
      width: 100%;
      display: inline-block; }
  .list-blank li i {
    margin-right: 10px; }
  .list-blank li span {
    font-size: 15px; }
  /* Player */
  .player-wrapper {
    padding: 0; }
  .player {
    padding: 0;
    display: block;
    width: 100%;
    max-width: 100%; }
    .player-close {
      right: 6px;
      top: 3px; }
    .player-collapse {
      display: none; }
    .player-control {
      display: flex;
      align-items: center;
      margin: 0px 15px;
      margin-top: 20px; }
      .player-control .icon {
        margin-right: 15px; }
    .player .player-bar {
      width: 100%;
      cursor: pointer; }
      .player .player-bar-wrapper {
        width: 100%; }
      .player .player-bar.small {
        width: 40px; }
    .player .volume-control {
      margin-left: auto;
      margin-right: 25px;
      display: flex;
      align-items: center; }
    .player .player-info {
      display: flex;
      align-items: center;
      margin-left: auto;
      border-bottom: 1px solid #4D4D4D; }
      .player .player-info .player-info-text {
        display: block;
        text-align: left;
        margin-left: 20px;
        margin-right: 0px;
        width: 180px;
        padding: 0; }
        .player .player-info .player-info-text .player-name {
          margin-right: 0;
          text-align: left; }
        .player .player-info .player-info-text .player-artist {
          margin-right: 0;
          text-align: left; }
  .image-boundery {
    width: 100%; }
  .box {
    margin-bottom: 10px; }
  .track-info-avatar {
    text-align: left; }
  /* Login view */
  .login-box {
    width: 90%; }
    .login-box-header {
      padding: 30px 0; }
    .login-box-body {
      padding: 30px; }
      .login-box-body-space {
        margin: 30px 0px; }
  /* register view */
  .popup.register {
    max-width: 95%; }
  .register-type {
    display: block;
    padding: 20px;
    text-align: center; }
    .register-type-image {
      margin-bottom: 20px; }
    .register-type-text {
      margin-left: 0;
      text-align: left; }
    .register-type-button {
      width: 100%;
      margin-bottom: 20px;
      font-size: 16px; }
  .register-block {
    display: block;
    text-align: center; }
    .register-block-text {
      text-align: center;
      margin-left: 0; }
      .register-block-text-change {
        text-align: center; }
        .register-block-text-change span {
          cursor: pointer;
          text-decoration: underline; }
  /* trackUploader */
  .step {
    flex-direction: column-reverse; }
    .step-title {
      width: 100%;
      font-size: 28px; }
    .step-text {
      margin-left: 0;
      margin-right: auto;
      margin-bottom: 20px;
      height: 35px; }
  .track-uploader .track-uploaded-name {
    min-width: unset;
    padding: 0 10px;
    width: 100%; }
  .track-uploader .track-uploaded-button {
    width: 250px; }
  .track-uploader .payment-later {
    margin-right: 20px;
    margin-top: 30px; }
  .wrapper-badge .badge-segment {
    margin-right: 10px;
    margin-bottom: 10px;
    width: 155px; }
  /* Size */
  .size-width-large {
    width: 100%; }
  .size-width-medium {
    width: 200px; }
  /* Spaces */
  .space-margin-large-top {
    margin-top: 40px; }
  .space-margin-medium-top-bottom {
    margin: 20px 0; }
  .space-margin-small-bottom {
    margin-bottom: 10px; }
  /* payment */
  .payment .intro {
    display: block; }
    .payment .intro-col {
      width: 90%;
      margin: 0 auto;
      margin-bottom: 15px; }
      .payment .intro-col-title {
        position: relative;
        min-height: unset; }
      .payment .intro-col-desc p {
        text-align: center; }
      .payment .intro-col-middle {
        display: none; }
      .payment .intro-col-bottom {
        padding: 30px; }
        .payment .intro-col-bottom .space-margin-small-top-bottom {
          margin: 0; }
        .payment .intro-col-bottom .space-padding-small-top-bottom {
          padding: 15px 0px; }
        .payment .intro-col-bottom-see-report {
          margin-top: 20px;
          margin-bottom: 0px;
          text-align: center; }
      .payment .intro-col-expand {
        position: absolute;
        bottom: -15px;
        width: calc( 100% - 100px);
        display: flex;
        justify-content: center; }
        .payment .intro-col-expand-buton {
          height: 30px;
          width: 60px;
          border: 1px solid #DBDBDB;
          border-radius: 50px;
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: #fff;
          cursor: pointer; }
    .payment .intro-col-1 {
      border-radius: 15px; }
    .payment .intro-col-2 {
      border-radius: 15px;
      border: 1px solid #DBDBDB; }
  .payment-extend {
    padding: 60px 20px; }
    .payment-extend-title {
      justify-content: center; }
    .payment-extend-question-contact {
      margin: 0 auto;
      margin-top: 40px;
      text-align: center; }
      .payment-extend-question-contact-button {
        margin: 0 auto; }
    .payment-extend-item {
      display: block;
      text-align: center;
      min-height: 160px;
      padding: 25px 0px; }
      .payment-extend-item-img {
        margin: 0 auto;
        width: 125px; }
      .payment-extend-item-text {
        width: 100%; }
  .payment .new-info {
    flex-direction: column;
    max-width: 90%; }
    .payment .new-info .new-info-col {
      width: 100% !important; }
  .checkout-back {
    display: inline-block;
    width: calc( 100% - 40px);
    margin: 20px; }
  .checkout-margin {
    margin-top: 0px; }
  .checkout .heading-1 {
    font-size: 28px;
    line-height: 35px; }
  .checkout-wrapper {
    background: #fff; }
  .checkout-information {
    padding: 30px 20px;
    display: inline-block;
    margin-right: 0px; }
  .checkout .new-check-out-information {
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    margin-bottom: 0; }
  .checkout-prices {
    margin: 10px 20px; }
    .checkout-prices-content {
      padding: 30px 20px; }
  .checkout .wrapper-badge {
    display: inline-block; }
    .checkout .wrapper-badge .badge-segment {
      width: 150px;
      font-size: 13px; }
  .checkout-header-line {
    flex-direction: column;
    justify-content: left; }
    .checkout-header-line .heading-4 {
      width: 100%; }
    .checkout-header-line-right {
      width: 100%;
      margin-left: 0;
      margin-top: 15px; }
  .interview {
    flex-direction: column-reverse; }
    .interview-input {
      margin-bottom: 30px; }
  .input-range-wrapper {
    width: 100%;
    margin: 0; }
  .share-button-groups {
    flex-direction: column; }
    .share-button-groups .button-blank {
      margin-top: 20px; }
    .share-button-groups.first {
      margin-top: 20px;
      margin-bottom: 0px; }
    .share-button-groups.second {
      margin-top: 0px; }
  .input-group-blank .prepend {
    padding: 0px 10px; }
  .input-group-blank input {
    padding: 5px; }
  .input-group-blank .behind {
    padding: 0px 10px; }
  /* menu on header */
  .menu {
    width: 300px; }
  /* Profile */
  .profile-header-buttons {
    flex-direction: column; }
    .profile-header-buttons .button {
      width: 100%;
      margin-right: 0;
      margin-bottom: 20px; }
  /* JUI autocompleted */
  .ui-autocomplete {
    max-height: 200px;
    width: 90%; }
  /* Navigation*/
  .left .desktop-menu {
    display: none; }
  .multil-report {
    margin-top: 0; }
  .multi-report-box-default {
    width: 300px;
    height: 300px; }
  .menu-context-container .control-options {
    right: 0; }
  .sub-menu-context-list {
    right: 100%;
    left: unset; } }

@media (max-width: 740px) {
  /* report */
  .report-header-title {
    display: block; }
  .report-header-button {
    flex-direction: column-reverse;
    margin-top: 60px; }
    .report-header-button-special {
      display: flex; }
    .report-header-button-tablet {
      display: none; }
    .report-header-button .button-black {
      width: 100%;
      justify-content: center; }
      .report-header-button .button-black i {
        margin-left: 20px; }
  .report-track {
    height: 115px;
    margin-bottom: 40px; }
    .report-track-image {
      width: 72px;
      height: 72px; }
    .report-track-texts {
      margin-left: 15px; }
      .report-track-texts .name {
        margin: 0;
        font-size: 13px;
        line-height: 17px; }
      .report-track-texts .artist {
        font-size: 13px;
        line-height: 17px; }
    .report-track-button {
      margin-left: 0;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .report-track-button i {
        margin-left: 0; }
    .report-track-circle {
      width: 28px;
      height: 28px; }
      .report-track-circle span {
        font-size: 14px; }
    .report-track-buttons {
      flex-direction: column-reverse;
      justify-content: center; }
      .report-track-buttons .play {
        margin: 0;
        margin-bottom: 15px; }
  .report-group-icon {
    width: unset;
    width: 100px; }
    .report-group-icon .icon {
      font-size: 30px; }
  .report-group-header {
    width: calc( 100% - 70px);
    padding: 0 20px; }
    .report-group-header-text {
      width: calc( 100% - 35px); }
      .report-group-header-text-title {
        font-size: 15px;
        line-height: 18px; }
      .report-group-header-text-desc {
        font-size: 13px;
        line-height: 18px; }
    .report-group-header-button-div {
      min-height: 74px;
      align-items: end; }
    .report-group-header-button {
      width: 30px;
      height: 30px; }
  .report-group-body {
    padding: 0 25px; }
    .report-group-body-padding {
      padding-top: 25px;
      padding-bottom: 25px; }
    .report-group-body-col-2-50-right {
      margin-top: 40px; }
    .report-group-body-col-2-50 .heading-4 {
      font-size: 15px;
      line-height: 18px; }
    .report-group-body-col-2-50 .heading-5 {
      font-size: 13px;
      line-height: 18px; }
  .report-group-like-item {
    padding-top: 25px;
    padding-bottom: 25px; }
    .report-group-like-item .heading-4, .report-group-like-item .heading-3, .report-group-like-item p {
      font-size: 13px;
      line-height: 18px; }
    .report-group-like-item:nth-child(odd) {
      padding-left: 25px;
      padding-right: 25px; }
    .report-group-like-item:nth-child(even) {
      padding-left: 25px;
      padding-right: 25px; }
    .report-group-like-item-number, .report-group-like-item-number-big {
      width: 56px;
      height: 42px;
      margin-right: 20px;
      border-radius: 15px; }
      .report-group-like-item-number-big span {
        font-size: 15px;
        line-height: 19px; }
    .report-group-like-item-title {
      font-size: 13px;
      line-height: 18px; }
    .report-group-like-item-desc {
      font-size: 13px;
      line-height: 18px; }
  .report-group-tag {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 18px; }
  .report-group-region {
    flex-direction: column; }
    .report-group-region-ul {
      width: 100%;
      max-width: 100%; }
    .report-group-region-map {
      display: inline-block; }
  .report-group-table {
    margin-top: 0px; }
    .report-group-table-row {
      flex-direction: column;
      align-items: flex-start; }
    .report-group-table-col-1 {
      width: 100%; }
    .report-group-table-col-2 {
      width: 100%; }
    .report-group-table-label {
      color: #858585;
      display: none; }
      .report-group-table-label-mobile {
        display: inline-block;
        margin-right: 10px; }
    .report-group-table-value {
      color: #000; }
  .report-group-feedback-title {
    margin-right: 30px; }
    .report-group-feedback-title .heading-4 {
      margin: 0;
      font-size: 15px; }
  .report-group-feedback-comments {
    padding: 40px;
    margin-top: 30px;
    margin-bottom: 30px; }
  .report-group-feedback-footer {
    flex-direction: column;
    justify-content: center; }
    .report-group-feedback-footer-left {
      flex-direction: column; }
      .report-group-feedback-footer-left-text {
        margin-left: 0;
        margin-top: 20px; }
    .report-group-feedback-footer-right {
      margin-left: 0;
      margin-top: 10px; }
  .report-information-left {
    float: unset;
    width: 334px;
    height: 334px; }
  .report-information-right {
    float: unset;
    width: 100%;
    margin-left: 0; }
    .report-information-right-track-info {
      margin-top: 40px; }
  /* Chart */
  .chart-header {
    flex-direction: column;
    margin-bottom: 30px; }
    .chart-header-label {
      border: unset;
      flex-direction: row-reverse;
      padding: 0;
      margin: 0;
      justify-content: space-between;
      height: 24px;
      margin-bottom: 10px; }
      .chart-header-label-dot {
        margin-right: 0; }
      .chart-header-label.active {
        border: unset; }
      .chart-header-label.inactive {
        background: unset; }
  .chart-option {
    flex-direction: column;
    margin-bottom: 10px; }
    .chart-option-name {
      width: 100%;
      margin-bottom: 15px; }
    .chart-option-bar {
      width: 100%; }
  .select-visible-type {
    padding: 10px;
    font-size: 13px; } }

@media (max-width: 320px) {
  .navigation {
    padding-left: 10px;
    padding-right: 10px; }
    .navigation .right .account span {
      width: 100px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; } }
