.frosted-background {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  color: #353636;
}
.black-semi-opaque {
  background: rgba(0, 0, 0, 0.5);
  padding: 24px 36px;
}
.black-background {
  background: black;
  border-radius: 6px;
}
.hoveranimate {
  transition: color 0.5s ease;
}
.ease-in-out-back {
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.overlay-bottom {
  left: 0;
  right: 0;
  bottom: 0;
  height: max-content;
  top: unset;
}
.overlay-top {
  left: 0;
  right: 0;
  top: 0;
  height: max-content;
}
.overlay-center {
  top: 30%;
  height: max-content;
  left: 5%;
  right: 5%;
}
.overlay-left-center {
  top: 30%;
  height: max-content;
  left: 0;
  right: 5%;
}
.overlay-right-center {
  top: 30%;
  height: max-content;
  left: 5%;
  right: 0;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
.nav .open a {
  background-color: #353636;
}
.nav .open a:focus {
  background-color: #353636;
}
.nav .open a:hover {
  background-color: #4e5050;
}
.navbar {
  border-bottom: 1px solid #434343;
  color: #F5F5F5;
  transition: all 0.5s ease;
  background: black;
}
.navbar ul.navbar-nav {
  position: relative;
}
.navbar ul.navbar-nav li {
  padding-top: 0;
}
@media (min-width: 768px) {
  .navbar ul.navbar-nav li {
    padding-top: 12px;
  }
}
.navbar ul.navbar-nav li a {
  color: #a0a0a0;
  padding-top: 12px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .navbar ul.navbar-nav li a {
    padding-top: 24px;
  }
}
.navbar ul.navbar-nav li a:after {
  transition: transform 0.3s ease-out, border-color 0.3s ease-out;
  position: absolute;
  display: block;
  bottom: -6px;
  width: 100%;
  transform: scaleX(0);
  border-top: 2px solid #000;
  content: '';
  padding-bottom: inherit;
  left: 0;
}
.navbar ul.navbar-nav li a.active {
  color: #0096B1;
}
.navbar ul.navbar-nav li a:hover {
  background: black;
}
.navbar ul.navbar-nav li a:hover:after {
  transform: scaleX(1);
  border-color: #e01f5f;
}
.navbar ul.navbar-nav li ul {
  display: none;
  position: absolute;
  top: 70px;
  width: auto;
  background: #292929;
  z-index: 10;
  width: 250px;
  padding-left: 0;
  list-style: none;
}
.navbar ul.navbar-nav li ul li {
  padding: 8px;
}
.navbar ul.navbar-nav li ul li:hover {
  background: #434343;
}
.navbar ul.navbar-nav li ul li a:after {
  display: none;
}
.navbar ul.navbar-nav li ul li a:hover {
  background: transparent;
  color: #e01f5f;
}
.navbar ul.navbar-nav li:hover ul {
  display: block;
}
.navbar ul.navbar-nav #main-navbar-collapse-1 {
  margin-top: -83px;
}
@media (min-width: 480px) {
  .navbar ul.navbar-nav #main-navbar-collapse-1 {
    margin-top: 0;
  }
}
.navbar ul.navbar-nav #main-navbar-collapse-1 .navbar-collapse {
  margin-bottom: 83px;
}
@media (min-width: 480px) {
  .navbar ul.navbar-nav #main-navbar-collapse-1 .navbar-collapse {
    margin-bottom: 0;
  }
}
.navbar ul.navbar-nav #main-navbar-collapse-1 .container-fluid {
  position: relative;
  margin-top: -83px;
}
@media (min-width: 480px) {
  .navbar ul.navbar-nav #main-navbar-collapse-1 .container-fluid {
    position: initial;
  }
}
.navbar ul.navbar-nav #main-navbar-collapse-1 .navbar-header {
  position: relative;
  top: 83px;
  z-index: 3;
}
@media (min-width: 768px) {
  .navbar ul.navbar-nav #main-navbar-collapse-1 .navbar-header {
    top: 0;
  }
}
.navbar ul.navbar-nav.username {
  color: #353636;
  padding: 15px;
}
.navbar.smaller {
  margin-top: -83px;
  padding-bottom: 6px;
}
.navbar.smaller #advancedSearchExplain {
  padding-left: 24px;
}
.navbar.smaller .search-bar {
  background-position-x: 5px;
}
@media (min-width: 768px) {
  .navbar.smaller .search-bar {
    padding-left: 50px;
  }
}
.navbar.smaller .search-bar .hidden-logo {
  display: block;
  position: fixed;
  left: 13px;
  opacity: 0;
}
.navbar.smaller .search-bar .hidden-logo img {
  width: 24px;
}
.navbar .navbar-header {
  padding: 0 12px;
}
.navbar .navbar-brand-rh {
  float: left;
  font-size: 18px;
  line-height: 20px;
  margin: 2px 16px 0px 0px;
}
@media (min-width: 768px) {
  .navbar .navbar-brand-rh {
    margin: 8px 16px 0px 0px;
  }
}
.navbar .navbar-brand-rh img {
  width: 100%;
}
@media (min-width: 768px) {
  .navbar .navbar-brand-rh img {
    width: 240px;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-brand-rh img {
    width: 270px;
  }
}
.navbar .navbar-right {
  margin-right: 4px;
}
.navbar-toggle {
  border: 1px solid #cecece;
  top: 45px;
  margin-top: -30px;
  right: -24px;
}
.navbar-toggle span.icon-bar {
  background-color: #cecece;
}
.search-bar {
  margin-top: 0;
  margin-left: 7px;
  transition: all 0.5s ease-out;
  background: url(/themes/dewolfe_two/images/dw_logo_background_white.svg) no-repeat;
  background-size: 24px;
  background-position-x: -200px;
}
.search-bar .hidden-logo {
  display: none;
}
@media (min-width: 768px) {
  .search-bar {
    margin-top: 6px;
  }
}
.togleSettings {
  margin-top: 8px;
  color: #a0a0a0;
}
.navbar-collapse.collapse.in .navbar-nav {
  margin-top: 33px;
}
#wunderbar {
  padding: 5px;
  font-size: 0.9em;
  background: #e5e5e5;
  color: black;
  border: 1px solid #F0F0F0;
  border-radius: 6px;
  margin-bottom: 5px;
}
#wunderbar div {
  display: inline-block;
}
#wunderbar input {
  border: none;
  width: 110px;
  background: #e5e5e5;
}
#wunderbar .glyphicon-search {
  padding: 3px 6px 0 5px;
  font-size: 1.3em;
  vertical-align: text-bottom;
}
#wunderbar .btn-transparent {
  color: black;
}
.inspireButton {
  margin-top: 2px;
  margin-right: 8px;
  float: left;
}
.inspireButton .btn {
  margin-top: 2px;
  margin-right: 8px;
  padding-top: 5px;
  padding-bottom: 6px;
}
.inspireButton i {
  font-size: 1.6em;
  margin-top: 3px;
  vertical-align: sub;
}
.inspireButton span {
  color: #a0a0a0;
}
#wunderbarcontrols {
  margin-top: 14px;
  margin-left: 30px;
}
#wunderbarcontrols .btn {
  font-size: 0.85em;
  padding: 0.26em 3em;
  color: #a0a0a0;
}
.tokenbuttonnav {
  background: #a0a0a0;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
}
.tokenbuttonnav span {
  cursor: pointer;
  padding: 0 0 0 5px;
}
.tokenbutton {
  background: #353636 none repeat scroll 0 0;
  border-radius: 4px;
  color: #F5F5F5;
  padding: 2px 9px;
  margin-right: 0.2em;
  border: 1px solid #a0a0a0;
}
.tokenbutton i {
  cursor: pointer;
  transition: color 0.5s ease;
  margin: 0 0 0 12px;
}
.tokenbutton i:hover {
  color: #DC2832;
}
.tokenbutton.Album span {
  font-size: 0.8em;
  color: #ea8086;
  margin-left: 6px;
  display: inherit;
}
.tokenbutton.Playlist span {
  font-size: 0.8em;
  color: #ea8086;
  margin-left: 6px;
}
.btn-default.resultshape {
  background: #cecece;
  color: #a0a0a0;
}
.btn-default.resultshape.selected {
  background: black;
  color: #F0F0F0;
}
#librariesContainer #librarySelector .libSel {
  background-repeat: no-repeat;
  border: 1px solid #4e5050;
  display: inline-block;
  height: 56px;
  margin: 2px;
  vertical-align: top;
  padding: 6px 2px 0 17px;
  position: relative;
  width: 208px;
  background-size: contain;
}
#librariesContainer #librarySelector .libSel:hover {
  background-color: #4e5050;
}
#librariesContainer #librarySelector .libSel.selected {
  color: #cecece;
}
#librariesContainer #librarySelector .libSel .librarytitle {
  margin-left: 45px;
  width: calc(100% - 48px);
  text-align: left;
  white-space: normal;
  font-size: 0.9em;
}
#librariesContainer #librarySelector .libSel .score {
  bottom: 1px;
  left: 0;
  padding: 1px 4px;
  position: absolute;
  width: 100%;
  font-size: 0.9em;
  text-align: right;
  color: #9b9b9b;
}
#advancedSearchExplain {
  color: #a0a0a0;
  font-size: 0.9em;
  font-style: italic;
  line-height: 2em;
  display: inline;
}
#advancedSearchExplain.hide-on-sfx {
  display: none;
}
#advancedsearch {
  display: none;
  background: #292929 none repeat scroll 0 0;
  border-radius: 0 0 8px 8px;
}
#advancedsearch.asOpen {
  border-collapse: separate;
  border-spacing: 5px;
  display: table;
}
#advancedsearch.asOpen .table .row-fluid {
  display: table-row;
}
#advancedsearch.asOpen .table .row-fluid .cell {
  background: #2e2e2e none repeat scroll 0 0;
  display: table-cell;
  padding: 6px 30px;
  vertical-align: top;
  border-radius: 6px;
}
#advancedsearch.asOpen .table .row-fluid .cell .half-cell {
  width: 48%;
  min-width: 310px;
  display: inline-block;
}
#advancedsearch.asOpen .advancedSearchFoot {
  display: inline-block;
  text-align: right;
  border-top: 1px solid #a0a0a0;
  padding: 6px;
  margin-top: 6px;
}
#advancedsearch label {
  display: block;
}
#advancedsearch .bpm_operations {
  text-align: right;
  display: inline-block;
}
#advancedsearch .bpm_operations label {
  display: inline-block;
  text-align: left;
  text-indent: 11px;
}
#advancedsearch .bpm_operations #bpmInput,
#advancedsearch .bpm_operations #bpmMargin {
  width: 70px;
  background: #353636;
  color: white;
  margin: 0 10px;
}
#advancedsearch #predoneTempo .blackblockTitle {
  margin: 0 6px;
}
#advancedsearch .slider {
  width: 100% !important;
  margin: 20px 0;
}
#advancedsearch .slider.slider-disabled .slider-selection {
  background-image: linear-gradient(to bottom, black 0%, black 100%);
}
#advancedsearch .slider.slider-disabled .slider-handle {
  background-image: linear-gradient(to bottom, #353636 0%, #353636 100%);
}
#advancedsearch .slider .slider-track {
  background-image: linear-gradient(to bottom, #000000 0%, #060606 100%);
}
#advancedsearch .slider .slider-selection {
  background-image: linear-gradient(to bottom, #e01f5f 0%, #e01f5f 100%);
}
#advancedsearch .slider .slider-handle {
  background-image: linear-gradient(to bottom, #004870 0%, #004870 100%);
}
#advancedsearch .btn-transparent.active {
  background-color: #a0a0a0;
  color: #F0F0F0;
}
.libraryTypeGroup {
  margin-bottom: 6px;
}
.libraryTypeGroup label {
  border-top: 0;
  margin-top: 0;
}
#launchShoppingCart {
  font-size: 1.5em;
  margin: 0 -6px;
  float: right;
}
#launchShoppingCart .shoppingCartScore {
  margin-left: 6px;
  font-size: 0.7em;
}
body.sfx #wunderbar {
  width: calc(100% - 112px);
}
/* START AUTOCOMPLETE */
.ac_holder {
  position: relative;
}
.ac_field {
  /*background-image:url(../images/autocomplete/autocomplete_leftcap.gif);
	background-position:right 3px;
	background-repeat:no-repeat;*/
}
.ac_field_busy {
  /*background-image:url(../images/autocomplete/autocomplete_spinner.gif);*/
  background-image: url(../images/loading1.gif);
  background-position: right 3px;
  background-repeat: no-repeat;
}
div.autocomplete {
  position: absolute;
  /*background-image: url(../images/autocomplete/ac_pointer.gif);*/
  background-position: top left;
  background-repeat: no-repeat;
  /* MG2: extra padding for animation */
  padding: 10px 0 6px 0;
  box-shadow: 1px 1px 4px rgba(100, 100, 100, 0.8);
  background-color: #e5e5e5;
  width: 320px !important;
  box-sizing: initial;
  overflow: scroll;
  max-height: 80vh;
}
/* MG2: styles for the new divs to have the background visible while animating (had to use 2 inner divs for IE6) */
div.autocomplete_inner1 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
div.autocomplete_inner2 {
  margin-top: 10px;
  height: 100%;
  width: 100%;
  background: url(../images/autocomplete/dropdown_background.png);
}
div.autocomplete div.ac_header,
div.autocomplete div.ac_footer {
  position: relative;
  height: 6px;
  padding: 0 6px;
  background-image: url(../images/autocomplete/ul_corner_tr.gif);
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
  /* MG2: background color for animation */
  background-color: #333;
}
div.autocomplete div.ac_footer {
  background-image: url(../images/autocomplete/ul_corner_br.gif);
  /* MG2: updated positioning for animations */
  position: absolute;
  bottom: 0px;
  padding: 0;
  width: 100%;
}
div.autocomplete div.ac_header div.ac_corner,
div.autocomplete div.ac_footer div.ac_corner {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 6px;
  background-image: url(../images/autocomplete/ul_corner_tl.gif);
  background-color: #333;
  background-position: top left;
  background-repeat: no-repeat;
}
div.autocomplete div.ac_footer div.ac_corner {
  background-image: url(../images/autocomplete/ul_corner_bl.gif);
}
/* MG2: removed the ac_bar classes, weren't used anymore */
div.autocomplete ul {
  list-style: none;
  /* MG: changed margins all to 0, the -4 was causing problems with the maxHeight */
  margin: 0;
  padding: 0;
  /* MG: changed to auto overflow for the maxHeight setting */
  overflow: auto;
  /*background:url(../images/autocomplete/dropdown_background.png);*/
  /* MG: added position: relative, otherwise IE6/7 won't overflow correctly */
  position: relative;
  background: #e5e5e5;
}
div.autocomplete ul li {
  padding: 0;
  /* MG: changed for maxHeight setting, the bottom 4px was causing some problems */
  margin: 0 4px 0;
  text-align: left;
}
div.autocomplete ul li a {
  color: #292929;
  display: block;
  text-decoration: none;
  background-color: transparent;
  /*text-shadow: #000 -1px -1px 2px;*/
  position: relative;
  padding: 0;
  width: 100%;
}
div.autocomplete ul li a:hover {
  background-color: #cccccc;
}
div.autocomplete ul li.ac_highlight a:hover {
  background-color: #cccccc;
}
/* MG: added ac_warning and ac_message class */
/* MG: ac_warning was called as_warning in your css file, i removed that definition */
div.autocomplete ul li a span,
div.autocomplete ul li.ac_warning,
div.autocomplete ul li.ac_message {
  display: block;
  padding: 6px;
  /*font-weight: bold;*/
}
div.autocomplete span.freeText {
  border-top: 1px solid #0096B1;
}
div.autocomplete ul li a span small {
  font-weight: normal;
  color: #0096B1;
}
div.autocomplete ul li.ac_highlight a span small {
  color: #0096B1;
}
div.autocomplete ul li.ac_highlight a {
  background-color: #cccccc;
  /*background-image: url(../images/autocomplete/hl_corner_br.gif);
	background-position: bottom right;
	background-repeat: no-repeat;*/
}
div.autocomplete ul li.ac_highlight a span {
  /*background-image: url(../images/autocomplete/hl_corner_bl.gif);
	background-position: bottom left;
	background-repeat: no-repeat;*/
}
/* MG: IE6 positioned the top left and top right corner images invalidly, changes for this fix are called 'IE6 position fix' */
div.autocomplete ul li a .tl,
div.autocomplete ul li a .tr {
  /* MG: changed background-image:transparent to background-color transparent, as you probably meant */
  background-color: transparent;
  background-repeat: no-repeat;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  /* MG: added left:0, IE6 position fix */
  left: 0;
  padding: 0;
  margin: 0;
}
/* MG: removed the following, IE6 position fix */
/*div.autocomplete ul li a .tr
{
	right: 0;
}*/
div.autocomplete ul li.ac_highlight a .tl {
  /* MG: removed left:0, (was defined twice now), IE6 position fix */
  /*background-image: url(../images/autocomplete/hl_corner_tl.gif);*/
  /* MG: changed 'bottom left' to 'top left', IE6 position fix */
  /*background-position: top left;*/
}
div.autocomplete ul li.ac_highlight a .tr {
  /* MG: changed right: 0; to width: 100%, IE6 position fix */
  width: 100%;
  /*background-image: url(../images/autocomplete/hl_corner_tr.gif);*/
  /* MG: changed 'bottom right' to 'top right', IE6 position fix */
  /*background-position: top right;*/
}
div.autocomplete ul em {
  font-style: normal;
  font-weight: bold;
}
#ac_test_json {
  z-index: 2000;
}
div.autocomplete .sectionHead {
  color: #0096B1;
  padding: 6px;
  border-bottom: 1px solid #0096B1;
}
div.autocomplete li.message {
  color: #292929;
  font-size: 0.7em;
  padding: 6px;
  text-align: right;
}
div.autocomplete .freeText {
  /*padding:8px;*/
  font-weight: bold;
}
div.autocomplete .freeText a {
  padding: 8px 0 6px;
}
/* END AUTOCOMPLETE */
.carousel,
.item,
.active {
  height: 100%;
}
.carousel-inner {
  height: 100%;
}
.carousel {
  height: 300px;
}
.carousel.album-carousel {
  height: unset;
}
.carousel.album-carousel .carousel-indicators {
  bottom: -8px;
}
.carousel.album-carousel .item .trackresults {
  display: inline-block;
}
.carousel.album-carousel .carousel-control {
  top: 42%;
  bottom: 42%;
  background: transparent;
}
.carousel.album-carousel .carousel-control:hover {
  opacity: 1;
}
.carousel.album-carousel .carousel-control.right:after {
  font-family: FontAwesome;
  content: '\f0a9';
  font-size: 46px;
  color: #cecece;
}
.carousel.album-carousel .carousel-control.left:after {
  font-family: FontAwesome;
  content: '\f0a8';
  font-size: 46px;
  color: #cecece;
}
.carousel.album-carousel .rightInnerColumn div {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.carousel .fill {
  width: 100%;
  height: 100%;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
.editable .rollo-boot-slider {
  visibility: hidden;
}
/*
inspired from http://codepen.io/Rowno/pen/Afykb 
*/
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition: opacity 600ms ease;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 1;
}
.carousel-flip .carousel-inner .item {
  opacity: 0;
  transition: opacity 600ms ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.carousel-flip .carousel-inner .active {
  opacity: 1;
}
.carousel-flip .carousel-inner .active.left,
.carousel-flip .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-flip .carousel-inner .next.left,
.carousel-flip .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-flip .carousel-control {
  z-index: 1;
}
/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity


/* Background images are set within the HTML using inline CSS, not here */
.editable {
  min-height: 20px;
  position: relative;
  -webkit-animation: fadein 2s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s;
  /* Firefox < 16 */
  -ms-animation: fadein 2s;
  /* Internet Explorer */
  -o-animation: fadein 2s;
  /* Opera < 12.1 */
  animation: fadein 2s;
}
.editable:after {
  content: 'edit';
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(100, 100, 100, 0.5);
  padding: 2px 4px;
  color: whitesmoke;
  opacity: 0;
  transition: opacity 500ms ease;
}
.editable:hover:after {
  opacity: 1;
}
.editable .trackresults {
  width: 100%;
  display: inline-block;
}
.editable .trackresults.track_listing_injected {
  width: 100%;
}
.editable .trackresults .albumlist {
  width: 100%;
}
.rollo-editor {
  position: fixed;
  z-index: 2080;
  top: 0;
}
h1 {
  font-size: 54px;
  line-height: 62px;
  margin-bottom: 7px;
}
h2 {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 7px;
}
h3 {
  font-size: 22px;
  line-height: 34px;
  margin-bottom: 7px;
}
h4 {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 7px;
}
h5 {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 7px;
}
h6 {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 7px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0px;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans';
  font-weight: 600;
}
.cke_source {
  color: #292929;
}
.cke_panel.cke_combopanel {
  height: 500px !important;
  width: 280px !important;
}
.cke_panel_listItem a {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 12px;
  position: relative !important;
  min-height: 20px;
}
.cke_panel_listItem a .overlay {
  padding: 2px 6px;
}
body.cke_editable {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 0.9em;
  background: #292929;
  color: #F5F5F5;
  font-weight: 300;
}
body.cke_editable .sand {
  background: #e5e5e5;
  color: #292929;
  padding: 2px;
}
body.cke_editable .rollo_tab_content div {
  display: block;
  border: 1px dashed #a0a0a0;
}
body.cke_editable .rollo_tab_content ul {
  list-style: none;
  padding: 0;
  vertical-align: top;
}
body.cke_editable .rollo_tab_content ul li {
  width: 100%;
  display: inline-flex;
  margin: 3px;
  text-align: center;
}
body.cke_editable .rollo_tab_content ul li a {
  width: 100%;
}
body.cke_editable .rollo-boot-slider div.item {
  position: relative;
  height: 350px;
  overflow: scroll;
}
body.cke_editable .rollo-boot-slider div.item img {
  width: 100%;
}
body.cke_editable .rollo-boot-slider div.item div.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border: 1px dashed #cecece;
}
body.cke_editable .rollo-boot-slider div.item div.carousel-caption.overlay-bottom {
  left: 0;
  right: 0;
  bottom: 0;
  height: max-content;
  top: unset;
}
body.cke_editable .rollo-boot-slider div.item div.carousel-caption.overlay-top {
  left: 0;
  right: 0;
  top: 0;
  height: max-content;
}
body.cke_editable .rollo-boot-slider div.item div.carousel-caption.overlay-center-panel {
  top: 30%;
  height: max-content;
  left: 5%;
  right: 5%;
}
body.cke_editable .hover-grow:hover {
  transform: scale(1);
}
body.cke_editable img.force_to_background {
  width: 50% !important;
  position: absolute;
  top: 0;
  z-index: 1;
}
body.cke_editable .background-image-block .inner-box {
  position: absolute;
  top: 0;
  z-index: 2;
}
body.cke_editable .youtube_overlay {
  left: 10%;
  top: 10%;
  bottom: 10%;
  right: 10%;
}
body.cke_editable a {
  color: #0096B1;
  transition: color 300ms ease;
}
body.cke_editable a.btn {
  padding: 6px;
  border: 1px solid #F0F0F0;
  color: #F0F0F0;
  text-decoration: none;
}
body.cke_editable a:hover {
  text-decoration: none;
  color: #006b7e;
}
body.cke_editable .col-md-2 {
  width: 16.6667%;
  display: inline-block;
}
body.cke_editable .col-md-3 {
  width: 25%;
  display: inline-block;
}
body.cke_editable .col-md-6 {
  width: 50%;
  display: inline-block;
}
body.cke_editable .nav-tabs {
  list-style: outside none none;
}
body.cke_editable .nav-tabs li {
  background: lightgray none repeat scroll 0 0;
  float: left;
  margin: 2px;
  padding: 4px 8px;
}
body.cke_editable .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
body.cke_editable .panel-heading .h1,
body.cke_editable .panel-heading .h2,
body.cke_editable .panel-heading .h3,
body.cke_editable .panel-heading .h4,
body.cke_editable .panel-heading .h5,
body.cke_editable .panel-heading .h6,
body.cke_editable .panel-heading h1,
body.cke_editable .panel-heading h2,
body.cke_editable .panel-heading h3,
body.cke_editable .panel-heading h4,
body.cke_editable .panel-heading h5,
body.cke_editable .panel-heading h6 {
  margin: 0;
}
body.cke_editable .panel-heading.lightblue_block {
  background-color: #b3dfda;
  color: #353636;
}
body.cke_editable .panel-heading.blue_block {
  background-color: #a1c6d3;
  color: white;
}
body.cke_editable .panel-heading.orange_block {
  background-color: #ffa34b;
  color: white;
}
body.cke_editable .panel-heading.black_block {
  background-color: black;
  color: white;
}
body.cke_editable .panel-heading.purple_block {
  background-color: #9798b5;
  color: white;
}
body.cke_editable .panel-body {
  padding: 15px;
}
body.cke_editable .front-page-panel-2 {
  position: relative;
  overflow: hidden;
}
body.cke_editable .front-page-panel-2 img {
  position: absolute;
  top: 0;
  width: 100% !important;
  height: 100% !important;
}
body.cke_editable .sfx_price:before {
  content: ' ';
  background: url(images/sfx_box_price.png) no-repeat left center transparent;
  padding: 10px;
}
body.cke_editable .sfx_price_list {
  background: url(images/sfx_box_list.png) no-repeat left center transparent;
  text-indent: 20px;
  text-align: left;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 24px 36px;
  position: absolute;
  margin: 0;
}
.overlay.overlay-bottom {
  left: 0;
  right: 0;
  bottom: 0;
  height: max-content;
  top: unset;
}
.overlay.overlay-top {
  left: 0;
  right: 0;
  top: 0;
  height: max-content;
}
.overlay.overlay-center {
  top: 30%;
  height: max-content;
  left: 5%;
  right: 5%;
}
.overlay.overlay-left-center {
  top: 30%;
  height: max-content;
  left: 0;
  right: 5%;
}
.overlay.overlay-right-center {
  top: 30%;
  height: max-content;
  left: 5%;
  right: 0;
}
.red {
  color: #DC2832;
}
.white {
  color: white;
}
.blue {
  color: #0096B1;
}
.pink {
  color: #e01f5f;
}
.panel-heading.lightblue_block {
  background-color: #0096B1;
}
.panel-heading.blue_block {
  background-color: #004870;
}
.panel-heading.red_block {
  background-color: #DC2832;
}
.panel-heading.black_block {
  background-color: black;
}
.panel-heading.purple_block {
  background-color: #6E3B96;
}
div.lightblue_block {
  background-color: #0096B1;
  padding: 0px 6px;
}
div.blue_block {
  background-color: #004870;
  padding: 0px 6px;
}
div.red_block {
  background-color: #DC2832;
  padding: 0px 6px;
}
div.black_block {
  background-color: black;
  padding: 0px 6px;
}
div.purple_block {
  background-color: #6E3B96;
  padding: 0px 6px;
}
.head-style-1 {
  border-bottom: 1px solid #a0a0a0;
  font-size: 32px;
  line-height: 52px;
}
@media (min-width: 480px ) and (max-width: 992px ) {
  .head-style-1 {
    font-size: 1.3em;
    padding: 0.3em;
  }
}
.head-style-2 {
  border-bottom: 1px solid #cecece;
  background-color: #4e5050;
  color: #cecece;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  font-size: 1.5em;
  margin: 0 0 5px;
  padding: 0.5em;
}
@media (min-width: 480px ) and (max-width: 992px ) {
  .head-style-2 {
    font-size: 1.3em;
    padding: 0.3em;
  }
}
.head-style-3 {
  background-color: #DC2832;
  border-bottom: 1px solid #cecece;
  color: #fff;
  font-size: 1.5em;
  margin: 0 0 5px;
  padding: 0.5em;
}
@media (min-width: 480px ) and (max-width: 992px ) {
  .head-style-3 {
    font-size: 1.3em;
    padding: 0.3em;
  }
}
/* ######## special classes that set Rollo behaviour such as listing CDs #########*/
.album_listing {
  background: url(images/cd_icon.png) no-repeat left center transparent;
  text-indent: 20px;
  text-align: left;
}
.track_listing {
  background: url(images/tracks_icon.png) no-repeat left center transparent;
  text-indent: 20px;
  text-align: left;
}
.library_listing {
  background: url(images/library_icon.png) no-repeat left center transparent;
  text-indent: 20px;
  text-align: left;
}
.rollo_listing {
  background: url(images/rollo_very_small.png) no-repeat left center transparent;
  text-indent: 20px;
  text-align: left;
}
.five_accros {
  margin: 2px;
}
.five_accros img {
  width: calc(50% - 10px);
}
@media (min-width: 992px) {
  .five_accros img {
    width: calc(20% - 10px);
  }
}
.open-sans-font {
  font-family: 'Open Sans', sans-serif;
}
/* ##### resultant classes and directives from rollo inserts #########*/
@media (min-width: 992px) {
  .frontpage .albumlist {
    width: calc(20% - 4px);
  }
}
@media (min-width: 1200px) {
  .frontpage .albumlist {
    width: calc(16.667% - 4px);
  }
}
.cd_list_ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.cd_list_ul img {
  width: 100px;
}
.story_list {
  background: inherit;
}
.story_list ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.story_list ul li {
  padding: 0px 8px 4px 8px;
  position: relative;
  margin: 10px 5px;
  display: inline-block;
  vertical-align: top;
  min-height: 300px;
  border: 1px solid #353636;
  min-width: 200px;
}
.story_list ul li.compact {
  border-top: none;
  border-left: none;
  border-right: none;
  border-color: #b4b6b6;
  height: auto;
  min-height: 230px;
}
.story_list ul li .story-byline {
  bottom: 0;
  width: 100%;
  position: absolute;
}
.story_list ul li .story-synopsis {
  min-height: 125px;
}
.story_list ul li .story-synopsis img {
  margin-right: 12px;
  cursor: pointer;
}
.story_list ul li a.story-more {
  float: right;
  margin: 0 14px 0 2px;
}
.story_list ul li .story-author {
  display: none;
  font-size: 0.8em;
}
.story_list ul li .story-title {
  color: #F0F0F0;
  padding: 0px 4px;
  font-weight: 200;
  transition: color 0.5s ease;
}
.story_list ul li .story-title:hover {
  color: #0096B1;
}
.sand .story_list ul li .story-title {
  color: #353636;
}
.sand .story_list ul li .story-title:hover {
  color: #0096B1;
}
.frosted-panel {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  color: #353636;
  padding: 6px;
}
.frosted-panel-bottom {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  color: #353636;
  padding: 6px;
  position: absolute;
  bottom: 6px;
}
.front-page-panel-1:after {
  position: absolute;
  background: rgba(12, 10, 10, 0.65);
  height: inherit;
  width: 100%;
  content: '';
  z-index: 1;
  top: 0;
}
.front-page-panel-1 div {
  margin: 190px 20%;
  text-align: center;
  height: inherit;
  z-index: 2;
  position: absolute;
}
.hover-grow {
  position: relative;
}
@media (min-width: 992px) {
  .hover-grow {
    opacity: 0.8;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .hover-grow .overlay {
    transition: all 0.2s ease-in;
  }
  .hover-grow .overlay:after {
    transition: transform 0.3s ease-out, border-color 0.3s ease-out;
    position: absolute;
    display: block;
    bottom: -6px;
    width: 100%;
    transform: scaleX(0);
    border-top: 2px solid #000;
    content: '';
    padding-bottom: inherit;
    left: 0;
  }
  .hover-grow.opacity-full {
    opacity: 1 ;
  }
  .hover-grow:hover {
    opacity: 1;
    transform: scale(1.1);
  }
  .hover-grow:hover .overlay {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .hover-grow:hover .overlay:after {
    transform: scaleX(1);
    border-color: #e01f5f;
  }
}
.carousel.carousel-fade .carousel-inner .item {
  transition-property: opacity;
}
.carousel.carousel-fade .carousel-inner .item,
.carousel.carousel-fade .carousel-inner .active.left,
.carousel.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel.carousel-fade .carousel-inner .active,
.carousel.carousel-fade .carousel-inner .next.left,
.carousel.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel.carousel-fade .carousel-inner .next,
.carousel.carousel-fade .carousel-inner .prev,
.carousel.carousel-fade .carousel-inner .active.left,
.carousel.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}
.carousel.carousel-fade .carousel-control {
  z-index: 2;
}
.carousel .carousel-caption {
  text-shadow: none;
  text-align: left;
  color: unset;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.carousel .carousel-caption.overlay-bottom {
  left: 0;
  right: 0;
  bottom: 0;
  height: max-content;
  top: unset;
  padding-bottom: 40px;
}
.carousel .carousel-caption.overlay-top {
  left: 0;
  right: 0;
  top: 0;
  height: max-content;
}
.carousel .carousel-caption.overlay-center-panel {
  top: 30%;
  height: max-content;
  left: 5%;
  right: 5%;
}
.carousel .carousel-indicators {
  bottom: 0;
}
.album_carosel {
  text-align: center;
}
.album_carosel .albumlist {
  width: 100%;
}
.album_carosel .trackresults.album_listing_injected {
  display: inline-block;
  width: 18% !important;
}
table.rolloTable td.previewPage img {
  height: 30px;
  transition: height 0.5s ease;
}
table.rolloTable td.previewPage img:hover {
  height: 120px;
}
img.previewPage {
  height: 30px;
  transition: height 0.5s ease;
}
img.previewPage:hover {
  height: 120px;
}
.vimeoEmbedMute {
  bottom: 30px;
  right: 30px;
  position: absolute;
}
.youtube_overlay {
  background: rgba(44, 47, 56, 0.86);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.youtube_overlay.hidden {
  opacity: 0;
}
.youtube_overlay .overlay-inner {
  padding: 26% 20%;
  cursor: pointer;
  transition: color 0.5s ease;
}
.youtube_overlay .overlay-inner:hover {
  color: #e01f5f;
}
@media (max-width: 992px) {
  div.background-image-block.parallax {
    background-position-y: 0 !important;
  }
}
div.background-image-block .inner-box {
  color: #e5e5e5;
  line-height: 26px;
  position: absolute;
  top: 18%;
  left: 18%;
  width: 36%;
}
.rollo-background-div {
  position: relative;
}
.rollo_tab_menu li {
  display: inline-block;
  margin: 6px;
  padding: 2px 4px;
  cursor: pointer;
  transition: all 1s ease;
  font-size: 18px;
  letter-spacing: 2px;
}
.rollo_tab_menu li.active {
  background: rgba(224, 31, 95, 0.7);
}
.rollo_tab_content div.browseSection {
  display: none;
  min-height: 100vh;
}
.rollo_tab_content div.browseSection ul {
  list-style: none;
}
.rollo_tab_content div.browseSection ul li {
  padding: 6px;
}
.rollo_tab_content div.browseSection ul li a.btn {
  width: 100%;
}
@media (max-width: 992px) {
  .rollo_tab_content div.browseSection ul li a.btn {
    width: 50%;
  }
}
.rollo_tab_content div.browseSection.active {
  display: block;
}
.vimeo-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.vimeo-container iframe,
.vimeo-container object,
.vimeo-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cke_dialog_ui_button_ok span.cke_dialog_ui_button {
  color: white;
}
.rollo-table.table-striped thead tr {
  background-color: #4e5050;
  font-weight: bold;
}
.rollo-table.table-striped thead tr th {
  border-color: #686969;
}
.rollo-table.table-striped tbody tr:nth-of-type(odd) {
  background-color: #353636;
}
.rollo-table.table-striped tbody tr:hover {
  background-color: #292929;
}
.rollo-table.table-striped tbody tr td {
  border-color: #686969;
}
.rollo-table.table-striped tbody tr a {
  color: #F0F0F0;
}
.rollo-table.table-striped tbody tr a:hover {
  color: #e01f5f;
}
.sand .rollo-table.table-striped thead tr {
  background-color: #d7d7d7;
}
.sand .rollo-table.table-striped thead tr th {
  border-color: #bdbdbd;
}
.sand .rollo-table.table-striped tbody tr:nth-of-type(odd) {
  background-color: #F0F0F0;
}
.sand .rollo-table.table-striped tbody tr:hover {
  background-color: #cecece;
}
.sand .rollo-table.table-striped tbody tr td {
  border-color: #bdbdbd;
}
.sand .rollo-table.table-striped tbody tr a {
  color: #353636;
}
.sand .rollo-table.table-striped tbody tr a:hover {
  color: #e01f5f;
}
.slate {
  background: #353636;
}
.smaller-text {
  font-size: small;
}
.smallest-text {
  font-size: x-small;
}
.registration-selector {
  padding: 24px 160px;
}
.country-button {
  text-align: left;
}
.country-button img {
  margin-right: 6px;
}
footer {
  transition: all 0.5s ease;
  background: url(/themes/dewolfe_two/images/dw_logo_background.svg);
  background-size: 100% ;
  background-repeat: no-repeat;
  background-color: #353636;
  padding: 4%;
  line-height: 25px;
  width: 100%;
}
footer p {
  margin: 4px;
}
footer a {
  color: #a0a0a0;
}
footer a:hover {
  color: #0096B1;
  text-decoration: none;
}
.jp-interface {
  padding-top: 10px;
}
.jp-interface .jp-progress {
  padding: 0;
}
.jp-interface .jp-progress .jp-seek-bar {
  background: #cecece;
  margin: 5px 0;
}
.jp-interface .jp-progress .jp-play-bar {
  background: #0096B1;
  position: relative;
  top: -8px;
}
.jp-interface .jp-progress .jp-play-bar,
.jp-interface .jp-progress .jp-seek-bar {
  display: inline-block;
  height: 11px;
}
.jp-vol-knob-holder {
  padding-top: 18px;
}
.jp-vol-knob-holder.col-sm-2 {
  padding-top: 10px;
}
.jp-controls,
.jp-time-holder.showing {
  display: inline-block;
}
.jp-time-holder {
  display: none;
}
.jp-controls .theme-button {
  border-color: #a0a0a0;
  color: #cecece !important;
}
.jp-time-holder div {
  display: inline-block;
  vertical-align: middle;
}
.jp-time-holder div.jp-progress {
  width: calc(100% - 88px);
}
img.jp-album-artwork {
  width: 50px;
  border: 1px solid white;
  margin: 3px 20px 0 0;
  cursor: pointer;
}
.player-footer {
  height: 75px;
  transition: height 0.5s ease-out;
  z-index: 10;
}
.player-footer.colapsed {
  height: 0;
}
.jp-duration {
  text-align: left;
}
.jp-current-time {
  margin-right: 5px;
}
.jp-toggles button {
  margin: 10px 15px 0 0;
}
.jp-volume-controls {
  margin-top: 22px;
}
.jp-volume-controls .jp-volume-bar {
  background: #0096B1;
  display: inline-block !important;
  height: 4px;
  width: 100px;
}
.jp-volume-controls .jp-volume-bar .jp-volume-bar-value {
  background: #0096B1;
  height: 4px;
}
#vol-controls {
  display: none;
}
#vol-controls.show {
  display: inline-block;
}
#jp-vol-slider {
  height: 85px;
  margin: 5px 5px;
}
#jp-vol-slider:hover .slider-handle {
  opacity: 1;
}
#jp-vol-slider.slider-horizontal {
  width: calc(12% - 30px);
}
#jp-vol-slider .slider-selection {
  background: #0096B1;
}
#jp-vol-slider .slider-handle {
  transition: opacity 0.5s ease;
  opacity: 0;
  background: #748F9B;
  margin-top: -5px;
  width: 15px;
  height: 15px;
}
#jp-vol-slider .slider-track {
  height: 5px;
  top: 36px;
}
.player-footer {
  transition: all 0.5s ease;
  background: rgba(41, 47, 51, 0.95) none repeat scroll 0 0;
  bottom: 0;
  font-size: 0.9em;
  position: fixed;
  width: 100%;
  padding: 0px;
}
.player-footer.smaller {
  height: 52px;
}
.player-footer p {
  margin: 4px;
}
.player-footer a {
  color: #cecece;
}
.player-footer a:hover {
  color: #0096B1;
  text-decoration: none;
}
.player-footer-tab {
  background: rgba(41, 47, 51, 0.95) none repeat scroll 0 0;
  bottom: 0;
  position: fixed;
  right: 0;
  z-index: 1001;
  height: 65px;
}
.player-footer-tab.colapsed {
  background-color: rgba(41, 47, 51, 0.95) none repeat scroll 0 0;
}
.player-footer-tab.colapsed .btn.theme-button.toggled {
  background-color: #0096B1;
}
.player-footer-tab #togglePlayerFooter {
  margin: 12px;
  color: #cecece !important;
}
.iconlabel {
  color: white;
  font-size: 2em;
}
#jp_container .iconlabel {
  color: #a0a0a0;
}
#jp_nowPlaying {
  font-size: 1.2em;
  width: 100%;
  cursor: pointer;
  transition: color 0.5s ease;
}
#jp_nowPlayinga {
  color: #a0a0a0;
}
#jp_nowPlayinga:hover {
  color: #0096B1;
}
#jp_nowPlayingadiv.composerLink {
  font-size: 0.8em;
  color: #0096B1;
}
#jp_nowPlaying:hover {
  color: #0096B1;
}
#jp_nowPlaying div.composerLink {
  font-size: 0.8em;
  color: #a8a8a8;
  padding-left: 20px;
}
#jp_nowPlaying div.composerLink a {
  color: #a8a8a8;
}
#jp_nowPlaying div.composerLink a:hover {
  color: #0096B1;
}
.playme,
.jp-play,
.jp-next,
.jp-previous {
  background-color: #0096B1;
}
.playme.toggled,
.jp-play.toggled,
.jp-next.toggled,
.jp-previous.toggled {
  background-color: #004870;
}
body.sfx .jp-interface .jp-progress .jp-play-bar {
  top: -9px;
}
body.sfx .playme span.glyphicon {
  top: 0;
  right: -1px;
}
body.sfx .albumPlay {
  display: none;
}
body .trackHeaderContainer {
  display: none;
}
body .albumHeaderContainer {
  display: none;
}
body .albumHeaderContainer .albumHeader {
  padding: 0;
  width: 100%;
}
body .albumHeaderContainer .albumHeader .albumTitle {
  margin-bottom: 13px;
  vertical-align: top;
  padding: 0;
  position: relative;
}
body .albumHeaderContainer .albumHeader .albumTitle h1 {
  margin-top: 6px;
  font-size: 34px;
  line-height: 34px;
}
@media (min-width: 992px) {
  body .albumHeaderContainer .albumHeader .albumTitle h1 {
    margin-top: 0px;
  }
}
body .albumHeaderContainer .albumHeader .albumTitle h3 {
  margin-top: 0px;
  font-size: 20px;
  border-bottom: 1px solid #292929;
}
body .albumHeaderContainer .albumHeader .albumTitle .download-button {
  position: relative;
  margin: 15px;
}
@media (min-width: 992px) {
  body .albumHeaderContainer .albumHeader .albumTitle .download-button {
    position: absolute;
    bottom: -15px;
    right: -77px;
  }
  body .albumHeaderContainer .albumHeader .albumTitle .download-button:hover {
    opacity: 1;
  }
}
body.album .albumHeaderContainer {
  display: block;
  margin: 12px 6px;
  width: 100%;
}
body.album .trackresults {
  border-top: 1px solid #434343;
}
body.album .resultsInfoContainer,
body.album .keywordsForTracks {
  padding: 10px 8px;
}
body.album .trackresults .trackRow {
  margin: 8px 0;
  padding: 10px 8px;
}
body.track .trackHeaderContainer {
  display: block;
}
body.nightmode .popover {
  color: #292929;
  background: rgba(200, 200, 200, 0.9);
}
body.nightmode .tagCloud a.keyword {
  color: #a0a0a0;
}
body.nightmode #searchResults {
  background: none;
  color: #cecece;
}
body.nightmode #searchResults .albumlist.open {
  background: #292929;
}
body.nightmode #searchResults .albumlist .rightInnerColumn a {
  color: #a0a0a0;
}
body.nightmode #searchResults .albumlist .rightInnerColumn a:hover {
  color: #e01f5f;
}
body.nightmode #searchResults .albumlist .rightInnerColumn .trackDescription {
  color: #a0a0a0;
}
body.nightmode #searchResults .trackHeaderContainer .waveform {
  background-color: transparent !important;
  opacity: 1;
}
body.nightmode #searchResults .trackHeaderContainer .waveform .progress {
  background-color: rgba(255, 0, 118, 0.32);
}
body.nightmode #searchResults .theme-button {
  color: #F5F5F5;
  border-color: #cecece;
}
body.nightmode #searchResults .theme-button.toggled {
  background-color: #0096B1;
}
body.nightmode #searchResults .theme-button.toggled:hover {
  background-color: #00c1e4;
}
body.nightmode #searchResults .theme-button:hover {
  color: #0096B1;
}
body.nightmode #searchResults .trackresults .nestedTracks {
  background: none;
}
body.nightmode #searchResults .trackresults .nestedAlbumTracks {
  background: #292929;
}
body.nightmode #searchResults .trackresults .trackRow {
  border-color: #353636;
}
body.nightmode #searchResults .trackresults .trackRow .waveform {
  opacity: 0.5;
}
body.nightmode #searchResults .trackresults .trackRow.selected .waveform {
  background-color: transparent !important;
  opacity: 1;
}
body.nightmode #searchResults .trackresults .trackRow.selected .waveform .progress {
  background-color: rgba(0, 57, 130, 0.32) !important;
}
body.nightmode #searchResults .trackresults .trackRow .trackDescription {
  color: #a0a0a0;
}
body.nightmode #searchResults .trackresults .trackRow a {
  color: #cecece;
}
body.nightmode #searchResults .trackresults .trackRow a:hover {
  color: #e01f5f;
}
#searchResults {
  padding: 0 12px;
  font-family: Helvetica, Arial, sans-serif;
  background: #e5e5e5;
  color: #292929;
}
#searchResults .resultsInfoContainer {
  margin-top: 12px;
}
#searchResults .albumlist .rightInnerColumn {
  color: #292929;
}
#searchResults .albumlist .rightInnerColumn a {
  color: #292929;
}
#searchResults .albumlist .rightInnerColumn a:hover {
  color: #e01f5f;
}
#searchResults .albumlist .rightInnerColumn .trackDescription {
  color: #292929;
}
.trackresults {
  display: table;
  width: 100%;
  table-layout: fixed;
  padding: 10px 3px;
}
.trackresults .stems-button {
  float: right;
  color: #e01f5f;
  border-radius: 20px;
  font-size: small;
  padding: 4px 18px;
  margin-top: 5px;
}
.trackresults .stems-button:hover {
  background: #cecece;
}
.trackresults.small .albumlist .trackDescription {
  display: none;
}
@media (min-width: 768px) {
  .trackresults.small .albumlist .albumTitle {
    font-size: 80%;
  }
}
@media (min-width: 992px) {
  .trackresults.small .albumlist .albumTitle {
    font-size: 85%;
  }
}
@media (min-width: 1200px) {
  .trackresults.small .albumlist .albumTitle {
    font-size: 100%;
  }
}
.trackresults .albumlist {
  transition: background-color 0.5s ease;
  width: calc(50% - 4px);
  /*.rightInnerColumn {
      color: @gray-darker;
      a{
        color: @gray-darker;
        &:hover{
          color:@theme-block-color_pink;
        }
      }
      .trackDescription {
        color: @gray-darker;
      }
    }*/
}
.trackresults .albumlist.open {
  background-color: #d8d8d8;
}
@media (min-width: 992px) {
  .trackresults .albumlist {
    width: calc(25% - 4px);
  }
}
@media (min-width: 1200px) {
  .trackresults .albumlist {
    width: calc(20% - 4px);
  }
}
.trackresults.albumResults {
  padding: 0 10px;
  margin: 0 5px;
}
.trackresults .nestedTracks {
  display: table-row;
  width: 100%;
  background: #d8d8d8;
}
.trackresults .nestedTracks.open {
  display: table-row;
}
.trackresults .nestedTracks .trackRow {
  margin-left: 50px;
  display: flex;
}
.trackresults .nestedTracks .trackRow.albumtrack .midcol {
  padding-left: 4px;
}
.trackresults .nestedTracks .nested-details {
  margin-top: 8px;
  margin-bottom: 35px;
  background: #9e9e9e2b;
  padding-bottom: 30px;
  border-radius: 4px;
}
.trackresults .nestedTracks .nested-details p {
  margin: 0;
}
.trackresults .trackRow {
  display: flex;
  margin: 5px 0;
  transition: all 0.5s ease 0.2s;
  padding: 0 0 7px 0;
  border-bottom: 1px solid #a0a0a0;
}
@media (min-width: 992px) {
  .trackresults .trackRow {
    margin: 5px 0;
  }
}
.trackresults .trackRow.selected .playme {
  background-color: #0096B1;
}
.trackresults .trackRow.selected .midcol div.trackPlay .waveform {
  background-color: #cecece !important;
}
.trackresults .trackRow.albumtrack .midcol {
  width: 100%;
  padding-left: initial;
  display: block;
  vertical-align: top;
}
.trackresults .trackRow.albumtrack .rightcol {
  text-align: right;
  width: 120px;
  float: right;
}
.trackresults .trackRow.sfx .leftcol {
  width: 100px;
}
@media (min-width: 768px) {
  .trackresults .trackRow.sfx .leftcol {
    width: 155px;
  }
}
@media (min-width: 992px) {
  .trackresults .trackRow.sfx .leftcol {
    width: 150px;
  }
}
.trackresults .trackRow.sfx .leftcol img.trackalbum {
  width: 50px;
  height: 50px;
}
@media (min-width: 768px) {
  .trackresults .trackRow.sfx .leftcol img.trackalbum {
    width: 90px;
    height: 90px;
  }
}
.trackresults .trackRow.sfx .midcol .trackPlay {
  margin-top: 12px;
}
.trackresults .trackRow.sfx .midcol .trackPlay .waveform,
.trackresults .trackRow.sfx .midcol .trackPlay .progress {
  height: 32px !important;
}
.trackresults .trackRow.sfx .rightcol .trackDuration {
  margin-top: 22px;
}
.trackresults .trackRow div {
  display: table-cell;
  vertical-align: top;
}
.trackresults .trackRow a {
  color: #292929;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.trackresults .trackRow a.playme {
  vertical-align: top;
}
.trackresults .trackRow a.playme.toggled {
  color: #F0F0F0;
}
.trackresults .trackRow a.playme.toggled:hover {
  color: #cecece;
}
.trackresults .trackRow a.playme:hover {
  color: #a0a0a0;
}
.trackresults .trackRow .leftcol {
  width: 100px;
}
@media (min-width: 768px) {
  .trackresults .trackRow .leftcol {
    width: 155px;
  }
}
@media (min-width: 992px) {
  .trackresults .trackRow .leftcol {
    width: 150px;
  }
}
.trackresults .trackRow .leftcol img.trackalbum {
  width: 50px;
  height: 50px;
}
@media (min-width: 768px) {
  .trackresults .trackRow .leftcol img.trackalbum {
    width: 135px;
    height: 135px;
  }
}
.trackresults .trackRow .midcol {
  width: 100%;
  padding-left: 0;
}
@media (min-width: 768px) {
  .trackresults .trackRow .midcol {
    padding-left: 20px;
  }
}
.trackresults .trackRow .midcol div {
  display: block;
}
.trackresults .trackRow .midcol div.trackTitle {
  font-size: 1em;
  float: right;
  width: calc(100% - 60px);
}
@media (min-width: 768px) {
  .trackresults .trackRow .midcol div.trackTitle {
    font-size: 1.3em;
    float: none;
    width: inherit;
  }
}
.trackresults .trackRow .midcol div.trackDescription {
  font-size: 0.9em;
}
.trackresults .trackRow .midcol div.composerLink {
  text-align: right;
  margin-bottom: 5px;
  margin-right: 8px;
  font-weight: 700;
}
.trackresults .trackRow .midcol div.trackPlay {
  width: 32px;
  float: left;
}
@media (min-width: 768px) {
  .trackresults .trackRow .midcol div.trackPlay {
    width: 100%;
    float: none;
  }
}
.trackresults .trackRow .midcol div.trackPlay .waveform {
  width: calc(100% - 70px);
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  height: 50px;
  display: inline-block;
  margin-left: 10px;
}
.trackresults .trackRow .midcol div.trackPlay .waveform .progress {
  background-color: rgba(171, 200, 213, 0.5) !important;
  height: 50px;
  width: 0;
}
.trackresults .trackRow .rightcol {
  text-align: right;
  width: 120px;
}
.trackresults .trackRow .rightcol .controlbuttons {
  width: 100%;
  display: inline-block;
}
.trackresults .trackRow .rightcol .controlbuttons .topRow,
.trackresults .trackRow .rightcol .controlbuttons .rowTwo {
  display: block;
  width: 100%;
}
.trackresults .trackRow .rightcol .controlbuttons .btn {
  display: inline-block;
  line-height: 1.6em;
  margin: 3px;
}
.trackresults .trackRow .rightcol .showTracksButton {
  display: block;
  font-weight: 200;
  font-size: small;
  width: 100%;
  background: transparent;
  border: none;
  text-transform: capitalize;
}
.trackresults .trackRow .rightcol .showTracksButton:hover {
  color: #e01f5f;
}
.trackresults .trackRow .rightcol .showTracksButton span.glyphicon {
  position: relative;
  left: 10px;
}
.trackresults .trackRow .rightcol .trackDuration {
  display: block;
  font-size: 0.9em;
  text-align: left;
  width: 100%;
  margin: 12px 21px 0;
}
.trackresults .trackRow .rightcol .price {
  float: right;
  margin-right: 5px;
}
.trackresults .nestedAlbumTracks {
  position: absolute;
  background: #d8d8d8;
  padding: 32px;
  left: 18px;
  z-index: 2;
  width: calc(100% - 36px);
  transition: height 0.2s;
}
.albumHeaderContainer .albumImage {
  width: 100%;
  height: auto;
}
#recomendedAlbums h5 {
  margin: 0;
  line-height: normal;
}
#recomendedAlbums .smallAlbumCover {
  display: inline-block;
  width: calc(50% - 8px);
  margin: 4px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .recomendedAlbums {
    left: 50%;
    position: relative;
  }
}
.recomendedAlbums h5.relatedAlbum {
  background: black;
  border-radius: 6px;
  width: 100%;
  margin: 0;
  padding: 8px;
}
.recomendedAlbums .smallAlbumCover {
  display: inline-block;
  width: calc(50% - 62px);
  margin: 4px;
}
.trackHeaderContainer {
  margin: 20px 0;
  padding: 0;
}
.trackHeaderContainer .stems-button {
  float: right;
  color: #e01f5f;
  border-radius: 20px;
  font-size: small;
  padding: 4px 18px;
  position: absolute;
  right: 108px;
  top: 18px;
  z-index: 2;
}
.trackHeaderContainer .stems-button:hover {
  background: #cecece;
}
.trackHeaderContainer h1 {
  margin-top: 0;
}
.trackHeaderContainer img.trackalbum {
  width: 100%;
}
.trackHeaderContainer .trackDetailsLabel {
  font-weight: 500;
}
.trackHeaderContainer .composerLink {
  display: inline-block;
}
.trackHeaderContainer .playme {
  vertical-align: top;
}
.trackHeaderContainer .trackPlay {
  margin: 25px 0;
  display: flex;
}
.trackHeaderContainer .trackPlay .waveform {
  width: calc(100% - 70px);
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-color: rgba(200, 200, 200, 0.3);
  height: 50px;
  opacity: 0.5;
  display: inline-block;
  margin-left: 10px;
}
.trackHeaderContainer .trackPlay .waveform .progress {
  background-color: rgba(171, 200, 213, 0.8);
  height: 50px;
  width: 0;
}
.trackHeaderContainer .controlbuttons {
  float: right;
  margin: 10px 0;
}
.trackHeaderContainer .controlbuttons div {
  display: block;
}
.trackHeaderContainer .controlbuttons .btn {
  display: inline-block;
  line-height: 1.6em;
  margin: 3px;
}
.trackHeaderContainer .controlbuttons .trackDuration {
  font-size: 1.5em;
  font-weight: 200;
  margin: 63px 10px 0;
}
@media (min-width: 480px ) and (max-width: 992px ) {
  .trackHeaderContainer .controlbuttons .trackDuration {
    margin: 10px 10px 0;
    font-size: 1.3em;
  }
}
.trackHeaderContainer .price {
  text-align: right;
  margin-right: 5px;
}
.resultsInfoContainer .trackCount {
  font-size: 1.2em;
  font-weight: 500;
}
.nightmode .trackPagination a {
  color: #cecece;
}
.nightmode .trackPagination a:hover {
  background: #4e5050;
}
.trackPagination {
  text-align: right;
  float: right;
  margin: 0 0 12px;
}
.trackPagination span.thisPage {
  background: #424343;
  color: #cecece;
}
.trackPagination a {
  color: #292929;
}
.trackPagination a:hover {
  background: #cccccc;
}
.tagCloud {
  display: inline-block;
}
.tagCloud a.keyword {
  color: #292929;
  margin: 0.3em 0.4em;
}
.tagCloud a.keyword:hover {
  color: #e5e5e5;
}
.drag-helper.trackTitle {
  z-index: 5000 !important;
}
.albumlist {
  display: inline-block;
  width: 100%;
  margin: 2px;
  position: relative;
  /*hack to allow absolute postioning of child elements */
  vertical-align: top;
  padding: 12px;
}
.albumlist .leftInnerColumn {
  position: relative;
  /*hack to allow absolute postioning of child elements */
}
.albumlist:hover .rightInnerColumn {
  opacity: 1;
}
.albumlist img {
  width: 100%;
}
.albumlist .albumPlay {
  bottom: 6%;
  left: 8%;
  position: absolute;
  opacity: 0.8;
  z-index: 2;
}
.albumlist .albumPlay .theme-button {
  border: 2px solid #cecece;
  background-color: #a0a0a0;
}
.albumlist .rightInnerColumn {
  width: 100%;
  padding: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.albumlist .rightInnerColumn a {
  color: #cecece;
}
.albumlist .rightInnerColumn a:hover {
  color: #e01f5f;
}
.albumlist .rightInnerColumn .trackDescription {
  border-top: 1px solid #a0a0a0;
  color: #cecece;
  height: 23px;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.albumlist .rightInnerColumn .albumTitle {
  font-weight: 500;
}
.albumlist .rightInnerColumn .albumTitle span.albumref {
  font-size: 0.7em;
}
.albumlist .rightInnerColumn .albumTitle span.albumref:before {
  content: ' - ';
}
.albumlist .rightInnerColumn .albumTitlehover {
  color: green;
}
.albumlist .showTracksButton {
  width: 100px;
  /* border-top-color: white; */
  text-align: center;
  float: right;
  font-size: smaller;
  cursor: pointer;
  padding: 2px;
}
.albumlist .showTracksButton:hover {
  color: #e01f5f;
}
.albumlist .showTracksButton.toggled {
  position: relative;
  top: -2px;
}
.albumlist .showTracksButton span.glyphicon {
  margin-left: 10px;
}
.albumlist .nestedTracks {
  transition: height 0.5s ease-out;
  background: none;
}
.albumlist .nestedTracks .trackRow.albumtrack {
  font-size: 0.8em;
  margin: 0;
  width: 100%;
  display: inline-block;
}
.albumlist .nestedTracks .trackRow.albumtrack .midcol {
  width: 100%;
  padding-left: 0 !important;
}
.albumlist .nestedTracks .trackRow.albumtrack .midcol div {
  display: inline-block;
}
.albumlist .nestedTracks .trackRow.albumtrack .midcol .trackTitle {
  font-size: 13px;
  line-height: 37px;
  overflow: hidden;
  padding: 0 6px;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
  width: calc(100% - 36px);
}
.albumlist .nestedTracks .trackRow.albumtrack .midcol .trackTitle span {
  display: none;
}
.albumlist .nestedTracks .trackRow.albumtrack .midcol .trackDescription {
  display: none;
}
.albumlist .nestedTracks .trackRow.albumtrack .midcol .trackPlay {
  float: left;
  width: 36px;
}
.albumlist .nestedTracks .trackRow.albumtrack .midcol .trackPlay .playme.btn-lg {
  font-size: 12px;
  padding: 6px 10px;
}
.albumlist .nestedTracks .trackRow.albumtrack .midcol .trackPlay .waveform {
  height: 20px;
  margin-top: 14px;
  display: none;
}
.albumlist .nestedTracks .trackRow.albumtrack .midcol .trackPlay .waveform div.progress {
  height: inherit;
}
.albumlist .nestedTracks .trackRow.albumtrack .rightcol {
  display: none;
}
@media (min-width: 480px ) and (max-width: 992px ) {
  .showPlaylist img.trackalbum {
    width: 60px !important;
    height: 60px !important;
  }
}
.album_listing_injected .albumlist {
  width: 100%;
}
.album_listing_injected.dark-on-light a {
  color: #292929;
}
.bottom-border {
  border-bottom: 1px solid #cecece;
}
.playlistToggleButton:hover {
  color: #e01f5f !important;
}
.playlistToggleButton.toggled {
  background: #e01f5f !important;
  color: #F0F0F0;
}
.playlist-container {
  box-shadow: -2px 0 26px 4px rgba(0, 0, 0, 0.41);
  position: fixed;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 100%;
  left: 0;
  padding-left: 0;
  padding-right: 0;
  z-index: 3;
  margin-left: -90%;
  width: 90%;
  background: #4c4c4c;
}
@media (min-width: 768px) {
  .playlist-container {
    margin-left: -60%;
    width: 60%;
  }
}
@media (min-width: 992px) {
  .playlist-container {
    margin-left: -40%;
    width: 40%;
  }
}
.playlist-container .activePlayListTitle {
  padding: 10px;
  margin: 8px 8px;
}
@media (min-width: 768px) {
  .playlist-container .playlistSelectContainer {
    float: right;
  }
}
.playlist-container.smaller {
  top: 205px;
}
@media (min-width: 768px) {
  .playlist-container.smaller {
    top: 205px;
  }
}
@media (min-width: 1200px) {
  .playlist-container.smaller {
    top: 125px;
  }
}
.playlist-container .playlistHeading {
  padding: 15px;
  display: none;
}
@media (min-width: 768px) {
  .playlist-container .playlistHeading {
    display: inline-block;
  }
}
.playlist-container #addPlayList {
  float: right;
}
.playlist-container #cartPlaylist {
  background: #e5e5e5;
  height: 100%;
  color: #292929;
}
.playlist-container #cartPlaylist #templaylistContaier .playlistRow {
  height: 60px;
}
.playlist-container #cartPlaylist #templaylistContaier .playlistRow .playlistRowTitle a {
  font-weight: 600;
  color: #585858;
  transition: color 0.5s ease;
  line-height: 3.5em;
  margin-left: 10px;
}
.playlist-container #cartPlaylist #templaylistContaier .playlistRow .playlistRowTitle a:hover {
  color: #0096B1;
  text-decoration: none;
}
.playlist-container #togglePlaylistState {
  text-shadow: 0 0 1px rgba(20, 20, 20, 0.9);
  background: #e01f5f none repeat scroll 0 0;
  color: white;
  cursor: pointer;
  float: right;
  font-size: 1.3em;
  padding: 1px 25px 8px;
  position: absolute;
  right: -78px;
  top: 32%;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  display: inline-block;
  opacity: 0.8;
}
.playlist-container #togglePlaylistState:hover {
  opacity: 1;
}
.playlist-container .btn-xs {
  line-height: 1.5em;
}
.playlists {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  height: 20vh;
  overflow: scroll;
}
.playlists .playlistHeader {
  background-color: #004870;
  border-bottom: 1px solid #00273d;
  transition: background-color 0.5s ease;
}
.playlists .playlistHeader.active {
  display: none;
  background-color: #e01f5f;
  height: unset;
}
.playlists .playlistHeader.headerOver {
  background-color: #e01f5f;
}
.playlists .playlistHeader .pltitle {
  color: white;
  font-size: 1em;
  padding: 5px 0 5px 20px;
}
.activePlayListContainer {
  width: 99%;
  height: 100%;
  display: inline-block;
  position: absolute;
}
.activePlayListContainer .empty {
  color: #292929;
  padding: 20px 30px;
}
.activePlayListContainer .activePlayListInfo {
  padding: 8px;
}
.activePlayListContainer .activePlayListdescription {
  padding: 0 15px 20px;
  height: 30px;
  overflow: hidden;
  display: inline-block;
  width: calc(100% - 42px);
}
.activePlayListContainer .activePlayListdescription.expanded {
  height: auto;
  overflow: auto;
}
.activePlayListContainer .playlistTracks {
  overflow: scroll;
  background: #e5e5e5;
  width: 101%;
}
.activePlayListContainer .playlistTracks.drag-target {
  border: 2px dashed #0096B1;
}
.activePlayListContainer .playlistSelectContainer {
  float: right;
}
.activePlayListContainer .playlistControlButtons {
  margin-left: 6px;
}
.activePlayListContainer #addPlayList:hover {
  background-color: #e01f5f;
}
.playlistRow {
  box-sizing: padding-box;
  margin: 10px 0;
  width: 100%;
  transition: box-shadow 0.5s ease 0.2s;
  border-bottom: 1px solid #a0a0a0;
  padding: 4px 10px 12px;
}
.playlistRow.selected {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  margin: 5px 0;
}
.playlistRow.drag-helper {
  background: rgba(0, 0, 0, 0.2);
}
.playlistRow .btn {
  margin-top: 10px;
}
.playlistRow div {
  display: inline-block;
  margin: 0 0 0 2px;
}
@media (min-width: 992px) {
  .playlistRow div {
    margin: 0 0 0 4px;
  }
}
.playlistRow div.plcontrolbuttons {
  float: right;
}
.playlistRow div.plcontrolbuttons .popover-title {
  background-color: #353636;
  color: #cecece;
}
.playlistRow .midCol {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 165px);
  /* @media (min-width: @screen-sm-min) {
	  			color:green;
	  		width: calc(100% - 70px);	
	  		}*/
}
.playlistRow .midCol div {
  display: block;
}
@media (min-width: 480px) {
  .playlistRow .midCol {
    width: calc(100% - 200px);
  }
}
@media (min-width: 992px) {
  .playlistRow .midCol {
    width: calc(100% - 230px);
  }
}
@media (min-width: 1200px) {
  .playlistRow .midCol {
    width: calc(100% - 230px);
  }
}
.playlistRow .midCol .playlistRowTitle {
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.9em;
  display: inline-block;
  width: 100%;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.5s ease;
  color: #353636;
}
.playlistRow .midCol .playlistRowTitle:hover {
  color: #0096B1;
}
@media (min-width: 480px) {
  .playlistRow .midCol .playlistRowTitle {
    font-size: 1em;
  }
}
.playlistRow .midCol .playlistRowTitle a {
  font-weight: 500;
  color: #cecece;
  transition: color 0.5s ease;
}
.playlistRow .midCol .playlistRowTitle a:hover {
  color: #0096B1;
  text-decoration: none;
}
.playlistRow .midCol .waveform {
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  height: 18px;
  margin-left: 10px;
}
.playlistRow .midCol .waveform .progress {
  background-color: rgba(171, 200, 213, 0.3) !important;
  height: inherit;
  width: 0;
  margin: 0;
  border-radius: 0;
}
.playlistRow .trackPlay {
  float: left;
}
.playlistRow .popover.left {
  margin-left: 10px;
  max-height: 40vh;
  overflow: auto;
}
ul.playlistMoveList {
  list-style: none;
  padding: 0;
  color: #a0a0a0;
}
ul.playlistMoveList li {
  cursor: pointer;
  padding: 1px 9px;
  color: #292929;
}
ul.playlistMoveList li:hover {
  background: #cecece;
}
#templaylistContaier {
  height: calc(100vh - 324px);
  overflow: scroll;
}
body.nightmode #playlistTracks {
  background: black;
}
body.nightmode #playlistTracks .theme-button {
  color: #F5F5F5;
  border-color: #cecece;
}
body.nightmode #playlistTracks .theme-button.toggled {
  background-color: #0096B1;
}
body.nightmode #playlistTracks .theme-button.toggled:hover {
  background-color: #00c1e4;
}
body.nightmode #playlistTracks .theme-button:hover {
  color: #0096B1;
}
body.nightmode #playlistTracks .empty {
  color: #cecece;
}
body.nightmode #playlistTracks .playlistRowTitle {
  color: #cecece;
}
.modal-dialog .modal-content {
  background: #4c4c4c;
}
.modal-dialog .modal-header,
.modal-dialog .modal-footer {
  background-color: black;
}
.log-in {
  margin-top: 15%;
}
@media (min-width: 992px) {
  .log-in.hard-left {
    margin-left: 25%;
  }
}
.log-in .control-buttons {
  float: right;
}
img.login-logo {
  width: 50%;
}
div.required label:after {
  content: '[required]';
}
/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter: @seiyria
 *			- Github:  seiyria
 *		Rohit Kalkur
 *			- Twitter: @Rovolutionary
 *			- Github:  rovolution
 *
 * =========================================================
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================= */
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 210px;
  height: 20px;
}
.slider.slider-horizontal .slider-track {
  height: 10px;
  width: 100%;
  margin-top: -5px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -10px;
  margin-top: -5px;
}
.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #0480be;
  margin-top: 0;
}
.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}
.slider.slider-vertical {
  height: 210px;
  width: 20px;
}
.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  margin-left: -5px;
  left: 50%;
  top: 0;
}
.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}
.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-left: -5px;
  margin-top: -10px;
}
.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #0480be;
  margin-left: 0;
}
.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}
.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}
.slider.slider-disabled .slider-handle {
  background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
}
.slider.slider-disabled .slider-track {
  background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
  cursor: not-allowed;
}
.slider input {
  display: none;
}
.slider .tooltip.top {
  margin-top: -36px;
}
.slider .tooltip-inner {
  white-space: nowrap;
}
.slider .hide {
  display: none;
}
.slider-track {
  position: absolute;
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.slider-selection {
  position: absolute;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 6px;
}
.slider-selection.tick-slider-selection {
  background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
}
.slider-track-low,
.slider-track-high {
  position: absolute;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 6px;
}
.slider-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #337ab7;
  background-image: -webkit-linear-gradient(top, #149bdf 0%, #0480be 100%);
  background-image: -o-linear-gradient(top, #149bdf 0%, #0480be 100%);
  background-image: linear-gradient(to bottom, #149bdf 0%, #0480be 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  filter: none;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  border: 0px solid transparent;
}
.slider-handle.round {
  border-radius: 50%;
}
.slider-handle.triangle {
  background: transparent none;
}
.slider-handle.custom {
  background: transparent none;
}
.slider-handle.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 0.8;
  border: 0px solid transparent;
}
.slider-tick.round {
  border-radius: 50%;
}
.slider-tick.triangle {
  background: transparent none;
}
.slider-tick.custom {
  background: transparent none;
}
.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick.in-selection {
  background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
  opacity: 1;
}
.bootstrap-select {
  width: 220px \0;
  /*IE9 and below*/
}
.bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}
.bootstrap-select.fit-width {
  width: auto !important;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 220px;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.bootstrap-select.form-control:not([class*="col-"]) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
  float: right;
}
.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}
.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
  outline: none !important;
}
.bootstrap-select.btn-group.bs-container {
  position: absolute;
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 1060;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
  display: block;
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 4px 8px;
}
.bs-actionsbox {
  width: 100%;
  box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}
.bs-donebutton {
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}
.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}
select.bs-select-hidden,
select.selectpicker {
  display: none !important;
}
select.mobile-device {
  position: absolute !important;
  top: 0;
  left: 0;
  display: block !important;
  width: 100%;
  height: 100% !important;
  opacity: 0;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pbCIPrQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Arimo';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/arimo/v29/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxcABrE.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18E.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVc.ttf) format('truetype');
}
body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  color: #cecece;
  line-height: 26px;
  background: #1C1C1C;
  font-weight: 300;
}
body.album .resultsInfoContainer,
body.album .keywordsForTracks {
  margin: 0 -5px;
}
body.album .keywordsForTracks {
  border-radius: 0 0 6px 6px;
}
body.album .resultsInfoContainer {
  border-radius: 6px 6px 0 0;
}
@media (max-width: 768px) {
  body {
    font-size: 1.6em;
  }
}
body.sfx .show-on-sfx {
  display: block;
}
body.sfx .hide-on-sfx {
  display: none;
}
body .show-on-sfx {
  display: none;
}
.well {
  background: #363636;
  border: 1px solid #434343;
}
.well label {
  color: #cecece;
}
.close {
  text-shadow: none;
  color: #cecece;
  opacity: 0.9;
}
.panel {
  background-color: #4e5050;
}
.panel.panel-default .panel-heading {
  background-color: #353636;
  color: #cecece;
}
.panel.panel-default .panel-footer {
  background-color: #353636;
  color: #cecece;
}
a {
  color: #e01f5f;
  transition: color 300ms ease;
}
a:hover {
  text-decoration: none;
  color: #006b7e;
}
i.right-pad {
  padding-right: 10px;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #a0a0a0;
  font-size: 1.1em;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #a0a0a0;
  font-size: 1em;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #a0a0a0;
  font-size: 1em;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #a0a0a0;
  font-size: 1em;
}
input .form-control.error,
input input.ui-state-error {
  border-color: #CC0000;
}
textarea,
input {
  outline: none;
}
label {
  margin: 6px 0;
  font-weight: 200;
  color: #828282;
}
label p {
  margin: 0;
}
label.error {
  font-size: 0.8em;
  color: #e01f5f;
  font-weight: 300;
  margin: 6px;
}
.btn-lg .glyphicon {
  top: 0;
  left: 1px;
}
.solid-white {
  background: white;
}
.bottom-shadow {
  box-shadow: 1px 1px 5px #a0a0a0;
}
.popover-title {
  margin: 0;
  padding: 1px 14px;
  font-size: 14px;
  background-color: #6b6b6b;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
  color: gray;
}
.quasi-table {
  display: table;
}
.quasi-table .row {
  display: table-row;
}
.quasi-table .row .quasi-td {
  display: table-cell;
}
.front-page-box .editable {
  min-height: 400px;
}
.front-page-box .trackresults {
  width: 49%;
  display: inline-block;
}
.front-page-box .trackresults.track_listing_injected {
  width: 100%;
}
.front-page-box .trackresults .albumlist {
  width: 100%;
}
.front-page-box .twitter-timeline-rendered {
  height: 400px !important;
}
.no-gutter {
  padding-left: 0;
  padding-right: 0;
}
.double-gutter {
  padding-left: 30px;
  padding-right: 30px;
}
.no-left-pad {
  padding-left: 0;
}
.width-half {
  width: 50%;
}
.width-third {
  width: 33.3%;
}
.width-quarter {
  width: 25%;
}
.hard-left {
  margin-left: 0;
  padding-left: 0;
}
@media (min-width: 480px ) and (max-width: 992px ) {
  .hard-left {
    margin-left: 30px/2;
  }
}
.hard-right {
  margin-right: 0;
  padding-right: 0;
}
@media (min-width: 480px ) and (max-width: 992px ) {
  .hard-right {
    margin-right: 30px/2;
  }
}
.main-content {
  min-height: calc(100vh - 333px);
  margin-top: 255px;
  margin-bottom: 0;
  overflow-x: hidden;
  max-width: 100%;
}
@media (min-width: 768px) {
  .main-content {
    margin-top: 255px;
  }
}
@media (min-width: 992px) {
  .main-content {
    margin-top: 140px;
  }
}
.main-content.fluid-footer {
  margin-bottom: 104px;
  margin-top: 255px;
}
@media (min-width: 768px) {
  .main-content.fluid-footer {
    margin-top: 255px;
  }
}
@media (min-width: 1200px) {
  .main-content.fluid-footer {
    margin-top: 170px;
  }
}
.main-content.showPlaylist .playlist-container {
  display: block;
  margin-left: 0;
}
.main-content.showPlaylist .rightPanel {
  margin-left: 90%;
}
@media (min-width: 768px) {
  .main-content.showPlaylist .rightPanel {
    margin-left: 60%;
    width: calc(100% - 60%);
  }
}
@media (min-width: 992px) {
  .main-content.showPlaylist .rightPanel {
    margin-left: 40%;
    width: calc(100% - 40%);
  }
}
.rightPanel {
  overflow: hidden;
}
.block_colour_one {
  background: #e01f5f;
}
.main-wrapper {
  padding: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 255px;
  background-color: #ececec;
}
.all-for-footer {
  margin-bottom: 104px;
}
.margin-14 {
  margin: 14px;
}
.vert-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 480px ) and (max-width: 992px ) {
  .vert-20 {
    margin: 0;
  }
}
.sand {
  background: #e5e5e5;
  color: #353636;
}
.story-pagination,
.library-pagination {
  text-align: right;
}
.story-pagination button,
.library-pagination button {
  margin: 12px 6px;
}
.btn {
  transition: all 300ms ease;
  font-weight: 300;
}
.btn-primary {
  background-color: #0096B1;
}
.btn-secondary {
  background-color: #e01f5f;
}
.btn-secondary:hover {
  background-color: #0096B1;
  color: white;
}
.btn-transparent {
  background: none;
  border: 1px solid #a0a0a0;
  color: #a0a0a0;
}
.btn-transparent.btn-large {
  border: 2px solid;
  padding: 14px;
  letter-spacing: 0.2em;
  color: white;
  border-color: white;
  text-transform: uppercase;
}
.btn-transparent.active {
  background-color: #0096B1;
  color: #F0F0F0;
}
.btn-transparent:hover {
  background: #e01f5f;
  border-color: #e01f5f;
  color: #cecece !important;
}
.btn-confirm {
  background: #e01f5f;
  border: 1px solid #a0a0a0;
  color: #cecece;
}
.btn-confirm:hover {
  background-color: #b3194c;
  color: #cecece;
}
.theme-button {
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #727272;
  color: #292929;
}
.theme-button span {
  line-height: 1.6em;
}
.theme-button:hover {
  color: #e01f5f;
}
.theme-button.btn-xs span {
  left: 0;
  font-size: 0.8em;
}
.theme-button.playme.btn-sm span {
  font-size: 0.8em;
  left: 1px;
  top: 1px;
}
.theme-button.toggled {
  background-color: #e01f5f;
  color: #F5F5F5;
}
.theme-button.toggled:hover {
  color: #cecece !important;
}
.btn-default {
  background-color: black;
  border: 1px solid #686969;
  color: #cecece;
}
.btn-default.selected {
  color: #292929;
}
.btn-default:hover {
  background-color: #4e5050;
  color: #cecece;
}
.theme-button_2 {
  border-radius: 10%;
  background-color: #353636;
  color: #F5F5F5;
  line-height: unset;
}
.theme-button_2 span {
  line-height: unset;
  left: 1px;
}
.theme-button_2:hover {
  color: #353636 !important;
}
.theme-button_2.btn-xs span {
  left: 0;
  font-size: 0.8em;
}
.transparent_button {
  border: none;
  background: none;
  color: #e01f5f;
}
.theme-button_3 {
  color: #F5F5F5;
  background: none;
  line-height: unset;
}
.theme-button_3 span {
  line-height: unset;
  left: 1px;
}
.theme-button_3:hover {
  color: #e01f5f !important;
}
.theme-button_3.btn-xs span {
  left: 0;
  font-size: 0.8em;
}
.drag-helper {
  z-index: 10;
}
[contenteditable="false"] {
  position: relative;
}
[contenteditable="false"]:after {
  content: 'click to edit';
  color: white;
  position: absolute !important;
  top: 0px;
  right: 0px;
  background: #31a9bf;
  font-size: 10px;
  padding: 0px 14px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 500ms ease;
}
[contenteditable="false"]:hover {
  border: 1px dashed #a0a0a0;
}
[contenteditable="false"]:hover:after {
  opacity: 1;
}
[contenteditable="true"] {
  background: hsl(0, 0%, 90%);
  color: #444343;
  box-shadow: 1px 1px 13px #252222;
  border: 2px inset #e5e5e5;
  margin: 2px;
  border-radius: 4px;
}
[contenteditable="true"]:focus {
  outline: none;
}
.spinner {
  display: none;
  position: fixed;
  text-align: center;
  top: 50%;
  width: 100%;
  z-index: 1000;
}
.spinner.active {
  display: block;
}
.spinner .glyphicon-spin {
  font-size: 20em;
  color: #cecece;
  animation: spin 700ms infinite linear;
}
.spinner img {
  width: 100%;
}
@media (min-width: 992px) {
  .spinner img {
    width: auto;
  }
}
.gly-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
#autoLaoding {
  width: 100%;
  text-align: center;
}
#autoLaoding i {
  font-size: 5em;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
#searchResults {
  transition: padding-left, opacity 0.5s ease;
  /* &.asOpen{
		margin-top: 555px;
		@media (min-width: @screen-md-min){
			margin-top:370px;
		}
		@media (min-width: @screen-lg-min){
			margin-top: 340px;
		}
	}*/
}
#searchResults.fade {
  opacity: 0.2;
}
@media (min-width: 768px) {
  #wrapper {
    padding-left: 250px;
  }
  #wrapper.toggled {
    padding-left: 0;
  }
  #sidebar-wrapper {
    width: 250px;
  }
  #wrapper.toggled #sidebar-wrapper {
    left: 20px;
    height: 40px;
    overflow: hidden;
    opacity: 0.9;
  }
  #page-content-wrapper {
    position: relative;
  }
  #wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0;
  }
}
.downloadRow {
  border-bottom: 1px solid #dfdfdf;
  box-sizing: padding-box;
  margin: 10px 0;
  padding: 4px 10px;
  width: 100%;
  transition: box-shadow 0.5s ease 0.2s;
}
.downloadRow.selected {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  margin: 5px 0;
}
.downloadRow div {
  display: inline-flex;
  margin: 0 0 0 4px;
}
.downloadRow div.plcontrolbuttons {
  float: right;
}
.downloadRow div.midCol {
  display: inline-block;
  vertical-align: top;
  /* @media (min-width: @screen-sm-min) {
	  			color:green;
	  		width: calc(100% - 70px);	
	  		}*/
}
.downloadRow div.midCol div {
  display: block;
}
@media (min-width: 480px) {
  .downloadRow div.midCol {
    width: calc(100% - 120px);
  }
}
@media (min-width: 992px) {
  .downloadRow div.midCol {
    width: calc(100% - 120px);
  }
}
@media (min-width: 1200px) {
  .downloadRow div.midCol {
    width: calc(100% - 120px);
  }
}
.downloadRow div.midCol .downloadRowTitle {
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  width: 100%;
}
.downloadRow div.midCol .downloadRowTitle a {
  font-weight: 500;
  color: #292929;
  transition: color 0.5s ease;
}
.downloadRow div.midCol .downloadRowTitle a:hover {
  color: #0096B1;
  text-decoration: none;
}
.downloadRow div.midCol .completed,
.downloadRow div.midCol .fileType {
  font-size: 0.8em;
  margin: 0 12px;
  float: right;
  color: #353636;
}
.downloadRow div.midCol .waveform {
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  height: 18px;
  margin-left: 10px;
  opacity: 0.5;
}
.downloadRow div.midCol .waveform .progress {
  background-color: rgba(171, 200, 213, 0.3) !important;
  height: inherit;
  width: 0;
  margin: 0;
  border-radius: 0;
}
.browse-box .nav-tabs > li {
  margin-right: 1px;
}
.browse-box .nav-tabs > li.active a {
  background-color: white;
}
.browse-box .nav-tabs > li a {
  background-color: #cecece;
  color: #a0a0a0;
  padding: 6px 12px;
}
.browse-box .nav-tabs > li a:hover {
  background-color: #d8d8d8;
}
.browse-box .modal-title i {
  padding: 0 8px;
}
.browse-box #browseLinks {
  margin: 8px 0;
}
#acceptanceForm .panel-footer {
  min-height: 56px;
}
#acceptanceForm .checkbox-inline {
  display: inline;
}
#acceptanceForm .checkbox-inline input {
  position: relative;
}
.dropdown-menu {
  background: #353636;
  color: #cecece;
}
.dropdown-menu .bs-searchbox .form-control {
  background: #353636;
  color: #cecece;
}
.dropdown-menu li a {
  color: #cecece;
}
.reactive-height {
  transition: all 0.5s ease;
}
.media-list img {
  width: 125px;
}
.media-list div {
  display: inline-block;
  vertical-align: top;
}
.media-list .media-left {
  float: left;
  width: 125px;
}
.media-list .media-body {
  padding: 6px;
  width: 80%;
}
.media-controls {
  width: 10%;
}
.iconColors span {
  color: #CC0000;
}
.iconColors.toggled span {
  color: #77B300;
}
.toggledColors i {
  color: #CC0000;
}
.toggledColors.toggled i {
  color: #77B300;
}
.anchor {
  margin-top: -200px;
  padding-top: 200px;
}
#userDownloadsBody {
  background: #e5e5e5;
}
.lyrics .lyric-body {
  height: auto;
  overflow: hidden;
}
.lyrics.closed .lyric-body {
  height: 0;
}
.btn.country_selector {
  margin: 4px 0;
}
.btn.country_selector.btn-default.selected {
  background: #e01f5f;
  color: #cecece;
}
.btn.country_selector span.button-text {
  position: absolute;
  left: 50px;
  top: 12px;
}
