.RoundButton {
  border-radius: 50%;
  border: none;
  transition: color 0.25s;
  /**/
  /**/
  /**/
}
.RoundButton--L {
  height: 40px;
  min-width: 40px;
  width: 40px;
  padding: 8px;
  font-size: 16px;
}
.RoundButton--dark {
  color: white;
  background: var(--brown);
}
.RoundButton--dark:hover {
  color: var(--accent-color);
}
.RoundButton--dark:active {
  filter: brightness(2);
}
.RoundButton--green {
  background-color: #008353;
}
.RoundButton--green:hover {
  background-color: rgba(0, 131, 83, 0.8);
}

/**/
.AppButton, .NoBorderButton {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  font-family: var(--font-main);
}

/**/
.NoBorderButton {
  border: none;
  background-color: transparent;
}

.Collapse {
  display: block;
  overflow: hidden;
}
.Collapse__transition {
  transform-origin: top;
  height: 0;
  transform: scaleY(0);
  opacity: 0;
  transition: height 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
}
.Collapse__show {
  /* height will be set dynamically via JS */
  height: auto;
  transform: scaleY(1);
  opacity: 1;
}

.EmbedCollapse {
  display: block;
  max-height: 0px;
  overflow: hidden;
}
.EmbedCollapse__show {
  /* Warning: if content will be larger, part of content will be hidden. */
  max-height: 9em;
}
.EmbedCollapse__transition {
  transition: max-height 0.5s linear 0s;
}

/*
Breakpoints mixin
@param {String} $point - name of breakpoint
add '-up' if you want (min-width: $point) and leave with no suffix for (max-width: $point - 1px)
*/
/**
 *
 */
/**
 *
 */
/**
 *
 */
/**/
/**
 *
 */
/*
Breakpoints mixin
@param {String} $point - name of breakpoint
add '-up' if you want (min-width: $point) and leave with no suffix for (max-width: $point - 1px)
*/
/**
 *
 */
/**
 *
 */
/**
 *
 */
/**/
/**
 *
 */
/**
 * CSS breakpoint values.
 */
/**
 * CSS breakpoint height values.
 */
/**
 *
 */
:root {
  --font-main: "Helvetica", system-ui, -apple-system, "Segoe UI", Roboto,
      "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
      "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
      "Noto Color Emoji";
  --font-mono: "Helvetica", SFMono-Regular, Menlo, Monaco, Consolas,
      "Liberation Mono", "Courier New", monospace;
  --font-size: 16px;
  /**/
  --content-max-width: 568px;
  --desktop-content-max-width: 900px;
  --header-height: 52px;
  --footer-height: 72px;
  --page-max-width: 768px;
  --side-padding: 20px;
  /**/
  --accent-color: var(--orange);
  --border-color: var(--grey);
  --header-bg-color: var(--dark);
  --footer-bg-color: var(--dark);
  --main-bg-color: var(--beige);
  --song-bg-color: #fff;
  --text-color: var(--dark-grey);
  --title-color: var(--dark);
  --shadow-color: rgba(56, 55, 142, 0.15);
  /**/
  --beige: #FFFAED;
  --brown: #26231B;
  --dark: #0B0800;
  --dark-grey: #6c6c6c;
  --grey: #C0C0C0;
  --orange: #F5C149;
}
@media (min-width: 768px) and (min-height: 500px) {
  :root {
    --footer-height: 82px;
  }
}

.AppModal.tingle-modal {
  cursor: default !important;
  background: rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s;
  padding: 0;
  overflow: auto;
}
.AppModal.tingle-modal--visible .tingle-modal-box {
  animation: fadeIn 0.3s;
}
.AppModal .tingle-modal__close {
  height: 40px;
  width: 40px;
  min-height: 40px;
  top: 8px;
  left: 99999px;
  right: 0;
  color: var(--dark);
  padding: 4px;
  border-radius: 50%;
  line-height: 0.9;
  cursor: pointer !important;
  position: sticky;
  background: white;
  margin-right: 8px;
  box-shadow: 0 4px 20px 0 var(--shadow-color);
  transition: color 0.25s;
}
.AppModal .tingle-modal__close:hover {
  color: var(--accent-color);
}
.AppModal .tingle-modal__closeIcon {
  display: inline-block;
  width: 18px !important;
  margin: 0;
}
.AppModal .tingle-modal__closeLabel {
  display: none;
}
.AppModal .tingle-modal-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100% - 40px);
  width: auto;
  max-width: 90%;
  min-width: 80%;
  margin: 0px auto;
  background-color: transparent;
}
@media (min-width: 768px) {
  .AppModal .tingle-modal-box {
    max-width: 500px;
    min-width: 500px;
  }
}
.AppModal .tingle-modal-box__content {
  width: 100%;
  margin: 30px 0;
  border-radius: 24px;
  padding: var(--side-padding);
  background-color: var(--song-bg-color) !important;
}

/*
Breakpoints mixin
@param {String} $point - name of breakpoint
add '-up' if you want (min-width: $point) and leave with no suffix for (max-width: $point - 1px)
*/
/**
 *
 */
/**
 *
 */
/**
 *
 */
/**/
/**
 *
 */
/*
Breakpoints mixin
@param {String} $point - name of breakpoint
add '-up' if you want (min-width: $point) and leave with no suffix for (max-width: $point - 1px)
*/
/**
 *
 */
/**
 *
 */
/**
 *
 */
/**/
/**
 *
 */
/**
 * CSS breakpoint values.
 */
/**
 * CSS breakpoint height values.
 */
/**
 *
 */
:root {
  --font-main: "Helvetica", system-ui, -apple-system, "Segoe UI", Roboto,
      "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
      "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
      "Noto Color Emoji";
  --font-mono: "Helvetica", SFMono-Regular, Menlo, Monaco, Consolas,
      "Liberation Mono", "Courier New", monospace;
  --font-size: 16px;
  /**/
  --content-max-width: 568px;
  --desktop-content-max-width: 900px;
  --header-height: 52px;
  --footer-height: 72px;
  --page-max-width: 768px;
  --side-padding: 20px;
  /**/
  --accent-color: var(--orange);
  --border-color: var(--grey);
  --header-bg-color: var(--dark);
  --footer-bg-color: var(--dark);
  --main-bg-color: var(--beige);
  --song-bg-color: #fff;
  --text-color: var(--dark-grey);
  --title-color: var(--dark);
  --shadow-color: rgba(56, 55, 142, 0.15);
  /**/
  --beige: #FFFAED;
  --brown: #26231B;
  --dark: #0B0800;
  --dark-grey: #6c6c6c;
  --grey: #C0C0C0;
  --orange: #F5C149;
}
@media (min-width: 768px) and (min-height: 500px) {
  :root {
    --footer-height: 82px;
  }
}

* {
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  height: 100dvh;
  max-height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.64px;
  color: var(--text-color);
  background-color: var(--song-bg-color);
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--title-color);
}

h1,
.h1 {
  font-size: 38px;
}

h2,
.h2 {
  font-size: 30px;
}

h3,
.h3 {
  font-size: 24px;
}

h4,
.h4 {
  font-size: 20px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 16px;
}

a,
a:link,
a:visited,
a:active {
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/**/
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* fixed ratio couple */
.app-fixed-ratio-container {
  position: relative;
}
.app-fixed-ratio-container:before {
  display: block;
  content: "";
  width: 100%;
  /* this value influences the ratio */
  padding-top: 56.3%;
}

.app-fixed-ratio-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/**/
.Layout {
  overflow: hidden;
  height: 100%;
  background-color: var(--main-bg-color);
}
.Layout__content {
  position: relative;
  height: calc(100% - var(--footer-height));
  overflow: auto;
}

/**/
.Main {
  min-height: calc(100% - var(--header-height));
  background-color: var(--main-bg-color);
}
@media (min-width: 768px) and (min-height: 500px) {
  .Main {
    margin-top: var(--header-height);
  }
}
.Main__container {
  margin: 0 auto;
  max-width: var(--content-max-width);
}
.enable-transition .Main__container {
  transition: max-width 0.5s ease;
}
.translation-only-mode .Main__container {
  max-width: var(--desktop-content-max-width);
}
.Main__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  padding: 0px var(--side-padding) 24px;
}

/**/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: "icomoon";
  src: url("icomoon.woff?dj7qdp") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-up-a-z-old:before {
  content: "\e904";
}

.icon-arrow-up-a-z:before {
  content: "\e905";
}

.icon-arrow-up-from-bracket:before {
  content: "\e906";
}

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

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

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

.icon-list-music-bold:before {
  content: "\e90a";
}

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

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

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

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

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

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

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

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

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

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

/*
Breakpoints mixin
@param {String} $point - name of breakpoint
add '-up' if you want (min-width: $point) and leave with no suffix for (max-width: $point - 1px)
*/
/**
 *
 */
/**
 *
 */
/**
 *
 */
/**/
/**
 *
 */
/*
Breakpoints mixin
@param {String} $point - name of breakpoint
add '-up' if you want (min-width: $point) and leave with no suffix for (max-width: $point - 1px)
*/
/**
 *
 */
/**
 *
 */
/**
 *
 */
/**/
/**
 *
 */
/**
 * CSS breakpoint values.
 */
/**
 * CSS breakpoint height values.
 */
/**
 *
 */
:root {
  --font-main: "Helvetica", system-ui, -apple-system, "Segoe UI", Roboto,
      "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
      "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
      "Noto Color Emoji";
  --font-mono: "Helvetica", SFMono-Regular, Menlo, Monaco, Consolas,
      "Liberation Mono", "Courier New", monospace;
  --font-size: 16px;
  /**/
  --content-max-width: 568px;
  --desktop-content-max-width: 900px;
  --header-height: 52px;
  --footer-height: 72px;
  --page-max-width: 768px;
  --side-padding: 20px;
  /**/
  --accent-color: var(--orange);
  --border-color: var(--grey);
  --header-bg-color: var(--dark);
  --footer-bg-color: var(--dark);
  --main-bg-color: var(--beige);
  --song-bg-color: #fff;
  --text-color: var(--dark-grey);
  --title-color: var(--dark);
  --shadow-color: rgba(56, 55, 142, 0.15);
  /**/
  --beige: #FFFAED;
  --brown: #26231B;
  --dark: #0B0800;
  --dark-grey: #6c6c6c;
  --grey: #C0C0C0;
  --orange: #F5C149;
}
@media (min-width: 768px) and (min-height: 500px) {
  :root {
    --footer-height: 82px;
  }
}