@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(/material-design-icons/iconfont/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(/material-design-icons/iconfont/MaterialIcons-Regular.woff2) format('woff2'),
    url(/material-design-icons/iconfont/MaterialIcons-Regular.woff) format('woff'),
    url(/material-design-icons/iconfont/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/** Custom stuff **/
/* .modal-background {
  background-color: rgba(255, 255, 255, 80%);
} */

.tabs.is-toggle li.is-active a {
  background-color: #323137c2;
  border-color: #000000;
  color: #fff;
  z-index: 1;
}

.tabs a {
  color: white;
}

.tabs:not(:last-child) {
  margin-bottom: 0rem;
}

.transparent {
  padding: 10px;
  display: block;
}

input[type=range].slider {
  margin: 0;
  /* margin-left: 1rem; */
  /* margin-right: 1rem; */
}

.button {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.has-background-dark-transparent {
  background-color: #312d2d80;
}

/** Spinner start **/
.sk-fading-circle {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: rgb(177, 217, 144);
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

/** Spinner end **/


.scroll-list {
  padding: 5px;
  overflow-x: hidden;
  overflow-y: auto;
  height: 1200px;
  scroll-behavior: smooth;
}

.scroll-list .current {
  background-color: #ffffff82;
}

/* .list-item:hover {
  background-color: #ffffff82;
  font-size: larger;
} */
.list-item .list-item-content {
  padding: 5px;
}

.list-item:not(.box) {
  padding: 0.5em;
}

.list-item-controls {
  padding-left: 5px;
}

.list-item-controls a {
  padding: 20px;
}


.play-button {
  position: absolute;
  width: 100px;
  height: 100px;
  line-height: 1;
  /* needed if using Bootstrap */
  text-align: center;
  color: #eaeaea;
  background-color: rgba(255, 255, 255, .4);
  border-radius: 50px;
  transition: color, background-color .2s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  /* font-size: 48px; */
}

.play-button:hover,
.play-button:focus {
  color: #49c78e;
  background-color: rgba(255, 255, 255, .8);
  cursor: pointer;
}

.play-button::after {
  /*
  Font Awesome recommends these styles
  https://fontawesome.com/how-to-use/on-the-web/advanced/css-pseudo-elements
  */
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  /*
  Define the font family, weight, and icon
  */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 60px;
  content: "\f04b";
  /* positioning tweaks */
  padding-top: 20px;
  padding-left: 10px;
}

.load-more-button::after {
  content: "\f101";
  font-size: 90px;
}



.centered {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  width: max-content;
}

.is-bottom {
  top: 73%;
}

.player-button-play {
  width: 80px;
  height: 80px;
  float: left;
  margin: 5px;
  line-height: 1;
  /* needed if using Bootstrap */
  text-align: center;
  color: #3a3535c8;
  background-color: rgba(255, 255, 255, 0.648);
  border-radius: 50px;
  transition: color, background-color .2s ease;
}

.player-button-play:active {
  transform: scale(0.98);
  box-shadow: 3px 2px 22px 1px rgb(0 0 0 / 24%);
}

.player-button-play:hover,
.player-button-play:focus {
  color: #49c78e;
  background-color: rgba(255, 255, 255, .8);
  cursor: pointer;
}


.player-button-play::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f04b";
  padding-top: 20px;
  padding-left: 5px;
}

.player-button-play::after {
  font-size: 40px;
}

.player-button-pause::after {
  content: "\f04c";
  padding-left: 0px;
}


.player-button-next {
  width: 60px;
  height: 60px;
  transform: translate(0%, 20%);
}

.player-button-next::after {
  font-size: 40px;
  content: "\f051";
  padding-top: 10px;
  padding-left: 0px;

}

.player-button-prev {
  width: 60px;
  height: 60px;
  transform: translate(0%, 20%);
}

.player-button-prev::after {
  font-size: 40px;
  content: "\f048";
  padding-top: 10px;
  padding-left: 0px;
}

.small-button {
  background-color: #ffffff00;
  color: #ffffff;
  margin: 5px;
  border-width: thin;
  width: 40px;
  height: 40px;
  font-size: 22px;
  vertical-align: middle;
  cursor: pointer;
}

.small-button .material-icons {
  font-size: 22px;
}

.is-large-icon {
  font-size: 36px;
  padding-left: 5px;
  transition: transform .2s ease;

}

.is-large-icon:hover,
.is-large-icon:focus {
  transform: scale(1.2);
}

.section {
  overflow: hidden;
}

.modal-background {
  background-color: #6c6e754e;
}

.white-icon {
  color: white;
}

.main-content {
  padding-bottom: 80px;
}

.page-foot {
  background-color: #323137c2;
  color: white;

  position: fixed;
  bottom: 0;
  z-index: 9;

  width: 100%;
  height: 80px;
  padding: 5px;

  display: flex;
  align-items: center;
}

p.has-overflow-ellipsis-text {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 580px;
  overflow: hidden;
}

p.has-overflow-ellipsis-text-large {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 700px;
  overflow: hidden;
}

p.has-min-width {
  min-width: 700px;
}


@media screen and (max-width: 700px) {
  p.has-overflow-ellipsis-text {
    max-width: 160px;
  }
  p.has-overflow-ellipsis-text-large {
    width: 260px;
  }
  p.has-min-width {
    min-width: 260px;
  }
  p.level-item {
    width: 190px;
    justify-content: left;
  }
  p.level-item {
    width: 160px;
    justify-content: left;
  }
}

input.input-size {
  width: 400px;
}

@media screen and (max-width: 700px) {
  input.input-size {
    width: 220px;
  }
}

.small-button-footer {
  padding: 8px;
  font-size: 1.6em;
}

.modal {
  padding-bottom: 80px;
}

#app {
  user-select: none;
}

.card {
  background-color: transparent;
  padding: 10px;
}

.card-footer-item {
  background-color: rgba(255, 255, 255, 0.634);
  margin: 15px;
}

.image-center-half-size {
  width: 50%;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}

.available-width {
  width: -moz-available;
  width: -webkit-fill-available;
}

.breadcrumb a {
  color: white;
}

.wtree {
  li {
    list-style-type: none;
    margin: 5px 2px 5px 10px;
    position: relative;

    &:before {
      content: "";
      position: absolute;
      top: -10px;
      left: -10px;
      border-left: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      width: 10px;
      height: 15px;
    }

    &:after {
      position: absolute;
      content: "";
      top: 5px;
      left: -10px;
      border-left: 1px solid #ddd;
      border-top: 1px solid #ddd;
      width: 10px;
      height: 100%;
    }

    &:last-child:after {
      display: none;
    }

    span {
      display: block;
      border: 1px solid #ddd;
      /*padding: 5px;*/
      color: #fff;
      text-decoration: none;
    }
  }
}

.wtree {
  li {
    span {

      &:hover,
      &:focus {
        background: #eee;
        color: #000;
        border: 1px solid #aaa;

        &+ul {
          li {
            span {
              background: #eee;
              color: #000;
              border: 1px solid #aaa;
            }
          }
        }
      }

      &:hover+ul,
      &:focus+ul {
        li {
          &:after, &:before {
            border-color: #aaa;
          }
        }
      }
    }
  }
}