/**
 * All files combined:
 * 1. shikwasa-base.css - modified
 * 2. shikwasa-chapter.css - modified
 * 3. Custom styles
 */

/* Origin: shikwasa-base.css */
.shk {
  --color-primary: #0d6efd;
  --color-opac: #b9b9b94d;
  --color-theme: #ffffff;
  --color-secondary: #767676;
  --color-text: #333;
  --color-shadow: #b9b6b680;
  --color-handle-shadow-mobile: #b9b6b6;

  --background-body: var(--color-theme);
  --color-title: var(--color-text);
  --color-artist: var(--color-secondary);
  --color-button: var(--color-primary);
  --color-button-disabled: var(--color-opac);
  --color-button-active-background: var(--color-opac);
  --color-handle: var(--color-primary);
  --color-handle-disabled: #b9b9b9;
  --color-bar-loaded: var(--color-opac);
  --color-bar-played: var(--color-primary);
  --color-time: var(--color-secondary);
  --color-spinner: var(--color-primary);
  --color-live-symbol: var(--color-primary);
  --color-live-text: var(--color-primary);
  --shadow-body: 2px 2px 8px -2px var(--color-shadow);
  --shadow-body-mobile: 0 -2px 6px -2px var(--color-shadow);
  --shadow-handle: 0px 2px 10px 2px var(--color-shadow);
  --shadow-handle-mobile: 2px 2px 8px -2px var(--color-handle-shadow-mobile);
}
.shk[data-theme="dark"] {
  --color-theme: #333;
  --color-secondary: #b9b6b6;
  --color-text: #f8f9fa;
  --color-handle-shadow-mobile: #141414;
  --color-shadow: #14141480;
}
@media (prefers-color-scheme: dark) {
  .shk[data-theme="auto"] {
    --color-theme: #333;
    --color-secondary: #b9b6b6;
    --color-text: #fff;
    --color-handle-shadow-mobile: #141414;
    --color-shadow: #14141480;
  }
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translateX(-100%);
  }
}
.shk {
  font-weight: 400;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.42;
  cursor: auto;
  position: relative;
  border: none;
  color: var(--color-text);
}
.js-focus-visible:focus:not(.focus-visible),
.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}
.shk[data-fixed-type='fixed'] {
  position: fixed;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 100%;
}
.shk[data-fixed-type="fixed"][data-fixed-pos="top"] {
  top: 0;
  bottom: auto;
}
.shk[data-seeking] .shk-player {
  cursor: grabbing;
}
.shk button {
  font-family: inherit;
}
.shk-player {
  height: 120px;
  box-sizing: border-box;
  border-radius: 2px;
  background: var(--background-body);
  position: relative;
  z-index: 10;
}
.shk-body {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  user-select: none;
  position: relative;
}
.shk-cover {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  margin-right: 16px;
  background-repeat: no-repeat;
  background-size: cover;
}
.shk-main {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.shk-text {
  overflow: hidden;
}
.shk-artist,
.shk-title {
  white-space: nowrap;
  margin: auto;
}
.shk-artist {
  text-overflow: clip;
  font-weight: 500;
  color: var(--color-artist);
}
.shk-title_wrap[data-overflow] {
  mask-image: linear-gradient(to right,transparent,#202124 5%,#202124 95%,transparent);
}
.shk-title_inner {
  display: inline-flex;
  overflow: visible;
}
.shk-title_wrap[data-overflow] .shk-title_inner {
  padding: 0 3%;
  box-sizing: border-box;
  white-space: nowrap;
  animation-duration: inherit;
}
.shk-title_wrap[data-overflow] .shk-title_inner::after {
  display: inline-block;
  content: attr(data-title);
}
.shk-title_wrap[data-overflow] .shk-title_inner::after,
.shk-title {
  font-weight: 300;
  font-size: 1.33em;
  color: var(--color-title);
}
.shk-title_wrap[data-overflow] .shk-title_inner::after,
.shk-title_wrap[data-overflow] .shk-title {
  animation: marquee linear infinite;
  animation-duration: inherit;
  padding-right: 60px;
}
.shk-btn {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-button);
  fill: currentColor;
  box-sizing: content-box;
  padding: 10px;
  position: relative;
  font-size: 1em;
  line-height: normal;
}
.shk-btn:disabled {
  color: var(--color-button-disabled);
  cursor: not-allowed;
}
.shk-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-button-active-background);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0,0,0.2,1), visibility linear 1s;
}
.shk-btn:not(:disabled):active::after {
  opacity: 1;
  visibility: visible;
}
a.shk-btn:visited {
  color: var(--color-button);
}
.shk-btn svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.shk-controls {
  position: relative;
  width: 280px;
  margin: 0 auto;
  flex: 0 0 auto;
}
.shk-controls .shk-btn {
  border-radius: 100%;
}
.shk-controls > div {
  flex-flow: row nowrap;
  align-items: center;
  display: flex;
}
.shk-controls_basic {
  justify-content: space-between;
}
.shk-controls_extra {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  margin-right: 44px;
  /* padding-right: 0 8px; */
  padding-right: 0;
  white-space: nowrap;
  overflow: hidden;
  z-index: 10;
  justify-content: flex-end;
  background: var(--background-body);
  transition: width .2s ease-in-out, opacity .1s .1s linear, visibility .2s;
}
.shk[data-extra] .shk-controls_extra {
  opacity: 1;
  visibility: visible;
  width: calc(100% - 44px);
  transition: width .2s ease-in-out, opacity .1s linear;
}
.shk[data-extra] .shk-controls_extra .shk-btn {
  display: inline-block;
}
.shk-btn_toggle svg {
  width: 32px;
  height: 32px;
}
.shk[data-play="paused"] .shk-btn_play,
.shk[data-play="playing"] .shk-btn_pause {
  display: inline;
}
.shk[data-play="paused"] .shk-btn_pause,
.shk[data-play="playing"] .shk-btn_play {
  display: none;
}
.shk-btn_speed {
  font-size: 0.86em;
  font-weight: 400;
  width: 44px;
  height: 44px;
  padding: 0;
}
.shk-btn_more {
  position: relative;
  z-index: 11;
  transform: none;
  transition: transform .2s .1s;
}
.shk[data-extra] .shk-btn_more {
  transform: rotate(90deg);
}
svg.shk-btn_unmute,
.shk[data-mute] svg.shk-btn_mute {
  display: inline-block;
}
svg.shk-btn_mute,
.shk[data-mute] svg.shk-btn_unmute {
  display: none;
}
.shk-bar_wrap {
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.shk-bar {
  position: relative;
  height: 4px;
  width: 100%;
  box-sizing: border-box;
  background: var(--background-body);
}
.shk-bar_loaded,
.shk-bar_played {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width ease-in .1s;
}
.shk-bar_loaded {
  background: var(--color-bar-loaded);
}
.shk-bar_played {
  background: var(--color-bar-played);
}
.shk[data-seeking] .shk-bar_played {
  transition: none;
}
.shk-bar-handle {
  background: var(--color-handle);
  position: absolute;
  right: -10px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  box-sizing: content-box;
  cursor: grab;
  border-radius: 20px;
}
.shk-bar-handle:disabled {
  cursor: not-allowed;
  box-shadow: none;
  background-color: var(--color-handle-disabled);
}
.shk-bar-handle:active {
  cursor: grabbing;
}
.shk-display {
  position: absolute;
}
.shk-loader {
  display: none;
  vertical-align: middle;
  color: var(--color-spinner);
}
.shk[data-loading] .shk-loader {
  display: inline-block;
}
.shk-loader svg {
  width: 12px;
  height: 12px;
  animation: rotate 1.4s linear infinite;
  position: relative;
}
.shk-visuallyhidden:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.shk-time {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.8em;
  font-weight: 300;
  color: var(--color-time);
}
.shk .shk-live {
  display: none;
  align-items: center;
  text-transform: uppercase;
  font-size: 0.8em;
  font-family: sans-serif;
  color: var(--color-live-text);
}
.shk .shk-live::before {
  content: '';
  background: var(--color-live-symbol);
  border-radius: 50%;
  width: 0.5em;
  height: 0.5em;
  margin-right: 2px;
}
.shk-icons {
  display: none;
}
.shk[data-live] .shk-bar,
.shk[data-live] .shk-time {
  display: none;
}
.shk[data-live] .shk-live {
  display: inline-flex;
}
/* @media (min-width: 641px) {
  .shk-player {
    margin-top: 4px;
    padding: 20px 16px;
    box-shadow: var(--shadow-body);
  }
  .shk-main {
    align-items: flex-end;
    padding: 10px 0;
    max-width: calc(100% - 96px);
    flex-direction: row;
  }
  .shk-text {
    flex: 2 1 auto;
  }
  .shk-bar_wrap {
    position: absolute;
    top: -4px;
    left: 0px;
    right: 0px;
    padding: 4px 0 16px;
  }
  .shk-bar {
    transition: height .15s ease-in;
  }
  .shk-bar_wrap:hover .shk-bar {
    height: 10px;
  }
  .shk-bar-handle {
    top: -9.5px;
    border: 4px solid transparent;
    box-shadow: var(--shadow-handle);
    transform: scale(.0001);
    transition: all .1s ease-in;
  }
  .shk-bar-handle.focus-visible,
  .shk-bar_wrap:hover .shk-bar-handle:not(:disabled) {
    border-color: #fff;
    transform: scale(0.8);
  }
  .shk-display {
    top: -6px;
    right: 8px;
  }
  .shk-loader {
    margin-right: 4px;
  }
  .shk-time_duration::before {
    content: '/';
    margin: 0 4px;
  }
}
@media (max-width: 640px) { */
  .shk-player {
    padding: 5px 16px;
    box-shadow: var(--shadow-body-mobile);
  }
  /* .shk[data-fixed-type="auto"] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  } */
  .shk[data-fixed-type="auto"][data-fixed-pos="top"] {
    top: 0;
    bottom: auto;
  }
  .shk[data-live] .shk-bar_wrap {
    height: 4px;
  }
  .shk-cover {
    display: none;
  }
  .shk-main {
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .shk-text {
    flex: 0 0 auto;
  }
  .shk-text {
    width: 100%;
    text-align: center;
  }
  .shk-artist_wrap {
    font-size: 0.8em;
    line-height: 1.1;
  }
  .shk-artist {
    display: inline-block;
  }
  .shk-title_wrap[data-overflow] .shk-title_inner::after,
  .shk-title {
    font-size: 1em;
    line-height: 1;
  }
  .shk-bar_wrap {
    padding: 8px 0;
    margin: 0 60px;
  }
  .shk-bar-handle {
    display: inline-block;
    top: -8px;
    box-shadow: var(--shadow-handle-mobile);
  }
  .shk-bar {
    background: var(--color-opac);
    border-radius: 2px;
  }
  .shk-display {
    top: -16px;
    left: 0;
    right: 0;
  }
  .shk-loader {
    position: absolute;
    left: -10px;
    top: -5px;
  }
  .shk-time {
    margin: 0 5px;
    font-size: 0.7em;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    flex-flow: row nowrap;
  }
  .shk-time_now {
    width: 40px;
    text-align: right;
  }
  .shk-time_duration {
    width: 40px;
    text-align: left;
  }
  .shk-live {
    position: absolute;
    right: 0;
    top: 0;
  }
/* } */


/* Origin: shikwasa-chapter.css */
@keyframes stretch {
  0%,
  100% {
    box-shadow: 0 0;
  }
  50% {
    box-shadow: 0 -5px;
  }
}
.shk .shk-controls_extra .shk-btn.shk-btn_chapter {
  display: none;
}
.shk[data-has-chapter] .shk-controls_extra .shk-btn.shk-btn_chapter {
  display: inline-block;
}
.shk-chapter {
  position: absolute;
  /* height: 0; */
  bottom: 0;
  left: 20px;
  right: 20px;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px rgba(0, 41, 37, 0.07);
  border: 1px solid rgba(0, 41, 37, 0.05);
  border-radius: 2px;
  background: var(--color-theme);
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: height ease-in-out .2s, bottom ease-in-out .1s, opacity linear .1s, visibility .1s .2s;
}
.shk[data-show-chapter] .shk-chapter {
  visibility: visible;
  /* height: 340px; */
  bottom: 120px;
  opacity: 1;
  transition: height ease-in-out .2s, bottom ease-in-out .1s, opacity linear .1s;
}
.shk-btn_close {
  position: absolute;
  top: 4px;
  right: 4px;
  fill: var(--color-primary);
  font-size: 0;
}
.shk-btn .shk-icon_close {
  width: 16px;
  height: 16px;
}
.shk-chapter_main {
  overflow-x: hidden;
  overflow-y: scroll;
  height: calc(100% - 60px);
  margin: 40px 0 20px;
  box-sizing: border-box;
  padding: 0 40px;
  mask-image: linear-gradient(to bottom,transparent,#202124 5%,#202124 95%,transparent);
  scroll-behavior: smooth;
}
.shk-chapter_list {
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}
.shk-chapter_item {
  margin: 5px 0;
}
.shk-chapter .shk-chapter_btn {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  color: var(--color-text);
  overflow: hidden;
}
.shk-chapter .shk-chapter_btn:after {
  border-radius: 2px;
}
.shk-chapter_btn div {
  color: currentColor;
  fill: currentColor;
}
.shk-chapter_item[data-active] .shk-chapter_btn div {
  color: var(--color-primary);
  font-weight: 600;
}
.shk-icon_chapter {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.shk[data-play="playing"] .shk-chapter_item[data-active] .shk-icon_playing,
.shk[data-play="playing"] .shk-chapter_item[data-active] .shk-icon_playing:before,
.shk[data-play="playing"] .shk-chapter_item[data-active] .shk-icon_playing:after {
  display: block;
}
.shk-icon_playing,
.shk-icon_playing:before,
.shk-icon_playing:after {
  display: none;
  background: currentColor;
  color: currentColor;
  animation: stretch 1s infinite ease-in-out;
  width: 3px;
  left: 4px;
  top: 6px;
  height: 5px;
}
.shk-icon_playing {
  position: relative;
  animation-delay: 0.16s;
}
.shk-icon_playing:before,
.shk-icon_playing:after {
  position: absolute;
  top: 0;
  content: '';
}
.shk-icon_playing:before {
  left: -4px;
  animation-delay: -0.16s;
}
.shk-icon_playing:after {
  left: 4px;
}
.shk-icon_triangle {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}
.shk[data-play="playing"] .shk-chapter_item[data-active] .shk-icon_triangle {
  display: none;
}
.shk-icon_triangle svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.shk-chapter_duration {
  color: var(--color-secondary);
  font-weight: 200;
  margin: 0 5%;
  flex-shrink: 0;
  min-width: 60px;
  text-align: left
}
.shk-chapter_title_wrap {
  overflow: hidden;
  white-space: nowrap;
  flex-grow: 1;
}
.shk-chapter_item[data-active] .shk-chapter_title_wrap[data-overflow] {
  mask-image: linear-gradient(to right,transparent,#202124 2%,#202124 98%,transparent);
}
.shk-chapter_title_inner {
  display: flex;
  animation-duration: inherit;
}
.shk-chapter_item[data-active] .shk-chapter_title_wrap[data-overflow] .shk-chapter_title_inner {
  padding: 0 3%;
  box-sizing: border-box;
}
.shk-chapter_item[data-active] .shk-chapter_title_wrap[data-overflow] .shk-chapter_title_inner::after {
  display: block;
  content: attr(data-chapter);
}
.shk-chapter_title {
  color: var(--color-text);
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shk-chapter_item[data-active] .shk-chapter_title {
  overflow: visible;
}

.shk-chapter_item[data-active] .shk-chapter_title_wrap[data-overflow] .shk-chapter_title_inner::after,
.shk-chapter_item[data-active] .shk-chapter_title_wrap[data-overflow] .shk-chapter_title {
  animation: marquee linear infinite;
  animation-duration: inherit;
  padding-right: 60px;
  color: currentColor;
}
@media (max-width: 640px) {
  .shk-chapter {
    left: 10px;
    right: 10px;
  }
  .shk-chapter_main {
    padding: 0 10px;
  }
}


/* Custom styles */
html,
body {

	/* 1. Fixed dimensions */
	overflow: hidden;
	width: 300px;
	height: 600px;

	margin: 0 auto;
	font-family: sans-serif;
	background-color: #eee;
}
.image {
	position: relative;

	/* 1. Fixed dimensions */
	width: 300px;
	height: 480px;

	/* 2. Variable dimensions */
	/* height: 0;
	padding-bottom: 160%; */

	background-image: url("image.jpg");
	background-position: 50% 0%;
	background-repeat: no-repeat;
	background-size: cover;
}
.button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.player.simple .shk-player {
	padding-top: 12px;
}
.player.simple .shk-cover {
	display: none;
}
.player.simple .shk-artist_wrap {
	visibility: hidden;
	height: 8px;
}
.shk-chapter {
	left: 5px;
	right: 5px;
	background-color: rgba(255, 255, 255, .9);
}
.shk-chapter_main {
	padding: 0 10px;
}
.shk-btn_speed {
	visibility: hidden;
}
