.select-window__substrate {
  position: fixed;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(134, 142, 223, 0.95);
  padding: 15px;
  /*! border: 12px solid #3072db; */ /*! border-top: 40px solid #3072db; */
  border-radius: 5px;
  font: bold 1px 'Open Sans Condensed', sans-serif;
}

.select-window_start .select-window__substrate{
  top: 100%;
  bottom: 0;
  right: 50%;
  left: 50%;
  font-size: 0;
  transition: 0.3s;
}

.select-window_selected .select-window__substrate{
  top: 15%;
  bottom: 15%;
  right: 20%;
  left: 20%;
  font: bold 33px 'Open Sans Condensed', sans-serif;
  line-height: 50px;
  transition: 0.3s;
}

.select-window__song_name {
  font: bold 33px 'Open Sans Condensed', sans-serif;
  line-height: 50px;
  text-shadow: 1px 2px 1px #034e6e;
  color: white;
  text-decoration: none;
  outline: none;
  
}

.select-window_start .select-window__song_name {
  font-size: 0;
  transition: 0.3s;
}

.select-window_selected a {
  text-shadow: 1px 2px 1px #034e6e;
  transition: color 0.7s ease-in 0.3s;
}

.select-window_selected a:link {
  color: white;
  text-decoration: underline;
  outline: none;
}

.select-window_selected a:visited {
  color: #fdff41;
  text-decoration: none;
  outline: none;
}

.select-window_selected a:hover {
  color: #fdff41;
  outline: none;
  /*text-shadow: 0 0 120px white,0 0 120px white,0 0 120px white,0 0 120px white,0 0 120px white,0 0 120px white;
  transition: 0.5s;*/
}

.select-window__close {
  position: fixed;
  z-index: 1001;
  background: #fff;
  cursor: pointer;
}

.select-window_start .select-window__close {
  opacity: 0.2;
  transition: 0.5s;
}

.select-window_selected .select-window__close {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.55;
  transition: 0.5s;
}

.select-window__link-to-song {
  z-index: 1002;
  top: 45px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 31px solid;
  border-image: url(../img/border-image.png) 41;
  text-align: center;
}

.select-window__title {
  z-index: 1002;
  top: 0px;
  position: absolute;
  display: inline-block;
  font: 22px 'Lobster', cursive;
  line-height: 28px;
  color: white;
  text-align: center;
  width: 100%;
  height: 100%;
  padding-top: 10px;
  box-sizing: border-box;
}

/*.select-window__song_name:last-child {
   display: none !important;
}*/


@media screen and (max-width: 650px) {
  
.select-window__song_name {
  font: bold 24px 'Open Sans Condensed', sans-serif;
  line-height: 30px;
}

.select-window__title {
  font: 18px 'Lobster', cursive;
  line-height: 24px;
  color: white;
  text-align: center;
} 
  
  .select-window_selected .select-window__substrate{
  top: 15%;
  bottom: 15%;
  right: 5%;
  left: 5%;
  font: bold 22px 'Open Sans Condensed', sans-serif;
  line-height: 30px;
  transition: 0.3s;
}

}