/* Document settings */
body {
  background-color: #dadada;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.wrapper {
  flex: 1;
}
html {
  background-color: inherit;
}
.hide {
  display: none;
}
/* Vibe Cannon Image Logo Settings */
.logo {
  text-align: center;
  max-height: 250px;
}
#cannon-img {
  max-height: 300px;
}
/* Titles for the three columns */
#title {
  text-align: center;
  font-size: xx-large;
  font-weight: 900;
  margin: 20px;
}
/* Responsive columns settings */
.columns {
  background-color: inherit;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.is-mobile {
  width: 90%;
}
#search-area, #results, #lyrics{
  box-shadow: 0px 8px 5px #8d8d8d, 0px -8px 5px #8d8d8d;
}
/* Search area css settings */
#search-area {
  border: 1px solid;
  border-radius: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.search {
  width: 90%;
  margin: 10px;
}
.field {
  text-align: center;
  width: 225px;
  margin: 0 auto;
}
/* Tooltip css */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 125px;
  background-color: darkslategray;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}
.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  font-size: 85%;
}
/* iTunes area */
#itunes-area{
  text-align: initial !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
#track-info{
  text-align: initial !important;
}
#track-info p:nth-child(1)
{
  font-size: 23px;
}
.previewLinks{
  color: #fa233b;
}
#album-art{
  margin-top: 5px;
}
.button {
  margin-left: 5px;
}
#useVimeo {
  margin-top: 10px;
  font-weight: 900;
  margin-right: 5px;
}
/* Video section css settings */
#results {
  border: 1px solid;
  border-radius: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
#video-img {
  max-height: 200px;
}
/* Lyrics section css settings */
#lyrics {
  border: 1px solid;
  border-radius: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
#lyrics-img {
  margin-top: 50px;
  max-width: 240px;
}
/* Styles for footer with dark/light theme*/
.footer {
  background-color: rgba(90, 85, 85, 0.828) ;
  color: black;
  text-align: center;
  padding: 10px;
  width: 100%;
}
.footer-d {
  background-color: #272626;
  color: white;
  text-align: center;
  padding: 10px;
  width: 100%;
}
/* Dark theme and Light theme color settings */
.dark {
  background-color: #202020;
  color: white;
  height: 100vh;
}
.light {
  background-color: #dadada;
  color: black;
  height: 100vh;
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #b8b8b8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* Styling the Switch button */
.switch {
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 1%;
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
  color: white;
  text-align: center;
  font-size: 21px;
  font-weight: 400;
  user-select: none;
  text-indent: -5px;
}
.slider.round:before {
  border-radius: 50%;
}
input:checked + .slider {
  background-color: black;
}
input:focus + .slider {
  box-shadow: 0 0 1px black;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

#share-link{
  align-content: center;
}

/* Lyrics Styling*/
#lyricsPlacement {
  overflow: auto;
  max-height: 1025px;
  line-height: 2;
 }
#feedback {
  color: red;
}
.errorModal{
  margin: auto;
 margin-bottom: 25px;
 text-align: center;
 font-size: 20px;
}
.make-inline{
 display: inline;
}

/*Media Queries for videos*/
@media (min-width: 280px) and (max-width: 386.98px) { 
  iframe {
   width: 250px !important;
    height: 315px !important;
  }
}
@media (min-width: 387px) and (max-width: 575.98px) { 
  iframe {
    width: 325px !important;
    height: 315px !important;
  }
}
@media (min-width: 1024px) and (max-width: 1110.98px) { 
  iframe {
    width: 325px !important;
    height: 315px !important;
  }
}


 

 
