@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap");

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color:#ebebeb;;
}
/* GENERAL */
.dandy-text{
    display:inline-block;
    /*font-size: 72px;*/
    /* Here you can change angle of gardient also as 45deg here */
    background: linear-gradient(45deg,#FF0000,#FF7F00,#FFFF00,#00FF00,#0000FF,#4B0082,#8B00FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size:100%;
    font-family: "American Typewriter",'Courier New', Courier, monospace;
    text-shadow: -8px 1px 18px #ebebeb

}
a {
  color: #4f5337;
  text-decoration: none;
}
a:hover{
  color:#add9d9;
  text-decoration: underline;
}
/* GENERAL */

/* HEADER-FOOTER */
.column {
    flex: 1;
    /*padding: 10px; ....add to footer */
    text-align: center;
    box-sizing: border-box;
}
/* HEADER */
    header {
        display: flex;
        justify-content: space-between;
        padding:10px;
        background-color: #4f5337;
        color: #add9d9;
       
    }
    header .ttd-logo {
        border:0;
        text-align: left;
        padding: 0;
        font-size: xx-large;
        /*background-color: #ebebeb;*/
        border-radius: 10px;
       
    }
    header .ttd-logo a{
        text-decoration: none;
    }
    header .ttd-logo img {
        width: 10%;
    }
    header .unity-compass{
        padding: 0%;
    }
    header .unity-compass img{
        width: 10%;
    }
    header .sm-store{
        font-size: 35px;
       
    }
    header .sm-store a{
        color:#ebebeb;
    }
    header .sm-store a:hover{
      color:#add9d9;
  }
/* END HEADER */ 



/* MORE INFO */
section.more-info{
  /*quick-about-us*/
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../img/ttdlogo3.png');
  background-size: contain;     /* This will cover the entire viewport */
  background-repeat: no-repeat;  /* Prevents the image from repeating */
  background-position: center center; /* Centers the image */

  
  margin:0 auto;
  padding:15px 15px 15px 15px;
  width: 75%;
  height: 850px;
  overflow: scroll;

}   
/* END MORE INFO */



/* MAIN */ 
/**/
main {
  box-sizing: border-box;
}
body .main-section  {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10px;
  font-family: 'DM Sans', sans-serif;
  transition: background .4s ease-in;
  background-color: #add9d9;
  border-bottom: 5px solid #4f5337;
  
  &.blue {
    background-color: #add9d9;
  }
}
/* radios */
main input[type=radio] {
  display: none;
}
/* CARDS */
main .dcards {
  /*  position: relative; */
   width: 100%;
   height: 100%;
   margin-bottom: 550px;
}

main .dcards .dcard {
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform .4s ease;
  cursor: pointer;
  border-radius: 10px;
  background-color: #add9d9;
}

main .dcards .dcard img{
 
  width: 100%;
  max-height: 550px;
  height: 464px;
  border-radius: 10px 10px 0px 0px;
  object-fit: cover;
}
main .dcards .dcard img:hover{
  overflow: hidden;
}
main .dcards .dcard .dcard-title{
  font-size: 20px;
  text-align: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: bold;
  color:#4f5337;
  display:block;
}
main .dcards .dcard .dcard-action{
  background-color:#4f5337;
  padding:3px;
  border-radius: 0px 0px 10px 10px;
  text-align: right;
  color: #add9d9;
}

main .container {
  width: 100%;
  max-width: 800px;
  max-height: 600px;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* Leftmost card (2 places to the left) */
main #item-1:checked ~ .dcards #song-4,
main #item-2:checked ~ .dcards #song-5,
main #item-3:checked ~ .dcards #song-1,
main #item-4:checked ~ .dcards #song-2,
main #item-5:checked ~ .dcards #song-3 {
  transform: translatex(-80%) scale(.7);
  opacity: .3;
  z-index: -1;
}

/* Left card (1 place to the left) */
main #item-1:checked ~ .dcards #song-5,
main #item-2:checked ~ .dcards #song-1,
main #item-3:checked ~ .dcards #song-2,
main #item-4:checked ~ .dcards #song-3,
main #item-5:checked ~ .dcards #song-4 {
  transform: translatex(-40%) scale(.8);
  opacity: .8;
  z-index: 0;
}

/* Right card (1 place to the right) */
main #item-1:checked ~ .dcards #song-2,
main #item-2:checked ~ .dcards #song-3,
main #item-3:checked ~ .dcards #song-4,
main #item-4:checked ~ .dcards #song-5,
main #item-5:checked ~ .dcards #song-1 {
  transform: translatex(40%) scale(.8);
  opacity: .8;
  z-index: 0;
}

/* Rightmost card (2 places to the right) */
main #item-1:checked ~ .dcards #song-3,
main #item-2:checked ~ .dcards #song-4,
main #item-3:checked ~ .dcards #song-5,
main #item-4:checked ~ .dcards #song-1,
main #item-5:checked ~ .dcards #song-2 {
  transform: translatex(80%) scale(.7);
  opacity: .3;
  z-index: -1;
}

/* Main card */
main #item-1:checked ~ .dcards #song-1,
main #item-2:checked ~ .dcards #song-2,
main #item-3:checked ~ .dcards #song-3,
main #item-4:checked ~ .dcards #song-4,
main #item-5:checked ~ .dcards #song-5 {
  transform: translatex(0) scale(1);
  opacity: 1;
  z-index: 1;

  img {
    box-shadow: 0px 0px 5px 0px rgba(81, 81, 81, 0.47);
  }
}



main #item-1:checked ~ .player #test {
  transform: translateY(0);
}

main #item-2:checked ~ .player #test {
  transform: translateY(-40px);
}

main #item-3:checked ~ .player #test {
  transform: translateY(-80px);
}

main #item-4:checked ~ .player #test {
  transform: translateY(-120px);
}

main #item-5:checked ~ .player #test {
  transform: translateY(-160px);
}
.stashie_animation:hover{
  overflow: visible!important;
}
    /* Overwrites */
    .carousel-inner .carousel-item{
      width: 500px;
      height: 500px;
      border-radius: 10px;
      /* border:1px solid RED;*/
    }
    /* Overwrites */

/* END MAIN */ 
/* UC */


.more-details h3{
  padding:5px;
  border-radius: 5px;
  border:1px solid #4f5337;
}
.more-details li{
  list-style-type: none;
}
.more-details div{
  margin: 20px 0;
}
.more-details .ucsymbol{
  text-align: center;
}
/* End UC */

/* FOOTER */ 
.footer {
  display: flex;
  justify-content: space-between;
  padding:20px;
  margin-top:50px;
  background-color: #4f5337;
  color: #add9d9;
}
.footer a{
  color: #add9d9;
}
.footer a:hover{
  color: #add9d9;
}

/* END FOOTER */ 

/* All Media query for screens less than 768px */
    @media (max-width: 768px) {
      header {
          flex-direction: column;
      }
      header .ttd-logo img {
          width: 25%;
      }
      header .ttd-logo{
          text-align: center;
      }
      .dandy-text{
          display: none;
      }
      header .sm-store{
        font-size: 40px;
      }
      
      .footer {
          flex-direction: column;
      }
      .column {
          margin-bottom: 10px;
      }
      section.more-info{
        width: 100%;
        background: none;
        margin:auto;
        height: auto;
        padding:5px;
      }
    }
/* END All Media query for screens less than 768px */
