/* write css here to edit website */
/*============================== Global ===========================*/
/*=================================================================*/
.main-title-h2 {
  text-align: center;
  padding-bottom: 1rem;
  /* position: absolute;
  left: 50%;
  transform: translate(-50%, 0);  */
}

/*============================== Header ===========================*/
/*=================================================================*/
.header-logo img {
  position: absolute;
  height: 50px;
  width: auto;
  top: 20px;
  left: 20px;
  transition: 0.5s all;
}
.header-logo img:hover {
  transform: scale(1.05);
}
/*============================== Footer ===========================*/
/*=================================================================*/
footer {
  position: fixed;
  bottom: 0;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  padding: 10px;
  color: #49654D;
  letter-spacing: 3px;
}
footer p {
  font-size: 0.5rem;
}
footer a {
  font-size: 0.5rem;
  color: var(--tsuru-gold);
  text-decoration: none;
}
footer a:hover {
  color: #49654D;
}
/*============================== Home =============================*/
/*=================================================================*/
.home-full-screen {
  height: 100vh;
  width: 100%;
}
.home-main-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); 
  text-align: center;
}
.home-main-title h3 {
  margin-top: 70px;
  color: #318A97;
  opacity: 1;  
  animation: flickerAnimation 4s infinite;
}
@keyframes flickerAnimation {
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
@-o-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
.animate-flicker {
   -webkit-animation: flickerAnimation 1s infinite;
   -moz-animation: flickerAnimation 1s infinite;
   -o-animation: flickerAnimation 1s infinite;
    animation: flickerAnimation 1s infinite;
}
/*============================ kies orkest ========================*/
/*=================================================================*/
.album-container {
  padding: 10px;
}
.album {
  background: #FFFFFF;
  position: relative;
  margin: auto;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: var(--standard-border-radius);
  box-shadow: 5px 5px 15px rgba(54, 79, 60, 0.4);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.album:hover {
  transform: scale(1.05);
}
.cover {
  background-repeat: no-repeat;
  background-size: 300px;
  width: 100%;
  height: auto;
  border-radius: 5px;
  position: absolute;
}
.overlay-cover {
  height: 300px;
  width: 300px;
  /* background: linear-gradient(rgba(54, 79, 60, 0.25), rgba(73, 101, 77, 0.55)); */
  /* background: linear-gradient(rgba(112, 112, 112, 0.25), rgba(94, 94, 94, 0.55)); */
  border-radius: 5px;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); 
}
.rec-white {
  height: 275px;
  width: 275px;
  border: 1px solid #ffffff;
  border-radius: var(--standard-border-radius);
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); 
}
.cover-info-container {
  height: 115px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(35px);
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.cover-text {
  text-align: center;
  margin-top: 21px;
}
.cover-title-main, .cover-title-sub {
  text-transform: uppercase;
  margin: 0;
}
.cover-title-main {
  font-size: 0.8em;
  /* letter-spacing: 3px; */
  color: #364F3C;
}
.cover-title-sub {
  font-size: 0.6em;
  /* letter-spacing: 1.5px; */
  color: #557c5f;
  margin-top: 5px;
}






/*=============================== Orkest ==========================*/
/*=================================================================*/


.cover-cd {
  width: 400px;
  height: auto;
  border-radius: 30px;
}


.go-back {
  color: #a0a0a0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding-left: 15px;
  position: absolute;
  margin-left: -150px;
  padding-top: 120px;
}
.go-back::before,
.go-back::after {
  content: "";
  display: block;
  left: 0px;
  position: absolute;
  top: 128px;
  transition: left 0.1s;
}
.go-back::before {
  border-color: #a0a0a0;
  border-style: solid;
  border-width: 0 0 3px 3px;
  height: 10px;
  margin-top: -6px;
  width: 10px;

  transform: rotate( 45deg );
  -webkit-transform: rotate( 45deg );
}















































/* @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');

html {
  
    box-sizing: border-box ;
    
    
}

html *,
html *::before,
html *::after {

    box-sizing: inherit ;
    scrollbar-width: none ;
  
}


body{
  
    margin: 0 ;
    height: 100vh ;
    display: flex ;
    user-select: none ;
    align-items: center ;
    justify-content: center ;
    background-color: #e5e7e9 ;
    font-family: 'Quicksand', sans-serif ;
    -webkit-tap-highlight-color: transparent ;
    transition: background-color  var(--cubic-slider) ;

}   */

.img {

    width: 100% ;
    display: block ;
    object-fit: cover ;

}

.list {

    margin: 0 ;
    padding: 0 ;
    list-style-type: none ;

}

.flex {

    display: flex ;
    align-items: center ;
    justify-content: space-between ;

}

.uppercase{
  
    text-transform: uppercase ;
  
}

.player {

    /* width: 17.15em ; */
    width: 425px ;
    display: flex ;
    overflow: hidden ;
    font-size: 1.22em ;
    border-radius: 1.35em ;
    flex-direction: column ;
    background-color: white ;
    height: var(--parent-height) ;

    box-shadow: 0 2px 6px 1px #0000001f ;

}

.player__header {

    z-index: 1 ;
    gap: 0 .4em ;
    width: 100% ;
    display: flex;
    height: 5.85em ;
    flex-shrink: 0 ;
    position: relative;
    align-items: flex-start ;
    border-radius: inherit ;
    justify-content: flex-end ;
    background-color: white  ;
    padding: .95em 0.6em 0 1.2em ;
    box-shadow: 0 2px 6px 1px #0000001f ;
    transition: height var(--cubic-header), box-shadow var(--duration), padding var(--duration) ease-in-out ;

}

.player__header.open-header {

    height: 100% ;
    padding-left: 0 ;
    padding-right: 0 ;
    box-shadow: unset ;

}

.player__img {

    width: 3.22em ;
    height: 3.22em ;
    border-radius: 1em ;

}

.player__img--absolute {
  
    top: 1.4em ;
    left: 1.2em ;
    position: absolute ;
    
}

.slider {

    flex-shrink: 0 ;
    overflow: hidden ;
    transition: width var(--cubic-header), height var(--cubic-header), top var(--cubic-header), left var(--cubic-header);
    
}

.slider.open-slider{

    top: 0 ;
    left: 0 ;
    width: 100% ;
    height: 14.6em ;

}

.slider__content {

    display: flex ;
    height: 100% ;
    will-change : transform ;
    transition: transform var(--cubic-slider);

}

.slider__img {

    filter: brightness(75%) ;

}

.slider__name, 
.slider__title {
  
    overflow: hidden ;
    white-space: nowrap ;

}

.text-wrap {

    display: block ;
    white-space: pre ;
    width: fit-content ;
    animation: text-wrap var(--duration-text-wrap) infinite ;

}

@keyframes text-wrap {

    75%{
      
        transform: translate3d(-51.5%, 0, 0) ;
      
    }

    100%{
      
        transform: translate3d(-51.5%, 0, 0) ;

    }
    
}

.player__button {

    all: unset ;
    z-index: 100 ;
    width: 2.5em ;
    height: 2.5em ;
    cursor: pointer ;

}

.playlist {

    transform: scale(0) ;
    transition: transform calc(var(--duration) / 2) ;
    
}

.slider.open-slider .playlist {

    transform: scale(1) ;
    transition: transform var(--cubic-play-list) ;


}

.player__button--absolute--nw {

    top: 5.5% ;
    left: 5.5% ;
    position: absolute ;
    
}

.player__button--absolute--center {
    
    top: 0 ;
    left: 0 ;
    right: 0 ;
    bottom: 0 ;
    margin: auto ;
    position: absolute ;

}

#pause-icon {

    display: none ;
    
}

.mediaplayer-button {
  margin: auto;
  font-size: 30px;
  margin-left: 10px;
  color: #a0a0a0;
}

.play-pause-btn {
  margin: auto;
  font-size: 30px;
  margin-left: 10px;
  color: #ffffff;
}
.play-play-btn {
  margin: auto;
  font-size: 30px;
  margin-left: 12px;
  color: #ffffff;
}

.player__controls {

    width: 77% ;
    gap: .5em 0 ;
    display: flex ;
    flex-wrap: wrap ;
    align-items: center ;
    will-change: contents ;
    align-content: center ;
    justify-content: center ;
    transition: transform var(--cubic-header) , width var(--cubic-header) ;

}

.player__controls.move {

    width: 88% ;
    transform: translate3d(-1.1em , calc(var(--parent-height) - 153%) , 0) ;
    
}

.player__context {

    margin: 0 ;
    width: 100% ;
    display: flex ;
    line-height: 1.8 ;
    flex-direction: column ;
    justify-content: center ;
    text-transform: capitalize ;

}

.slider__context {

    width: 56.28% ;
    cursor: pointer ;
    text-align: center ;
    padding-bottom: .2em ;
    will-change: contents ;
    transition: width var(--cubic-header) ;
    animation: calc(var(--duration) / 2) var(--cubic-slider-context) ;

}

@keyframes opacity {
   

    0% {

        opacity: 0 ;

    }

    90%{

        opacity: 1 ;

    }

}

.player__controls.move .slider__context{
    
    width: 49.48% ;

}

.player__title {

    font-size: .7em ;
    font-weight: bold ;
    color: #00000086 ;

}

.progres {

    width: 90% ;
    height: .25em ;
    cursor: pointer ;
    border-radius: 1em ;
    touch-action : none ;
    background-color: #e5e7ea ;
    transition: width var(--cubic-header) ;

}

.player__controls.move .progres{

    width: 98% ;
    
}

.progres__filled {

    width: 0% ;
    height: 100% ;
    display: flex ;
    position: relative ;
    align-items: center ;
    border-radius: inherit ;
    background-color: #78adfe ;
    
}

.progres__filled::before {

    right: 0 ;
    width: .35em ;
    content: " " ;
    height: .35em ;
    border-radius: 50% ;
    position: absolute ;
    background-color: #5781bd ;
    
}

.player__playlist {

    height: 100% ;
    overflow: auto ;   
    padding: 1.05em .9em 0 1.2em ; 

}

.player__playlist::-webkit-scrollbar {
    
    width: 0 ;

}

.player__song {

/*     gap: 0 .65em ; */
    display: flex ;
    cursor: pointer ;
    margin-bottom: .5em ;
    padding-bottom: .7em ;
    border-bottom: .1em solid #d8d8d859 ;

}

.player__song .player__context {

    line-height: 1.5 ;
    margin-left: .65em ;

}

.player__song-name {

    font-size: .88em ;

}

.player__song-time {

    font-size: .65em ;
    font-weight: bold ;
    color: #00000079 ; 
    height: fit-content ;
    align-self: flex-end ;

}

.audio {

    display: none !important ;

}

