html,
body {
  height: 100%;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}
 
/*
#container {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}  
*/


.content {
  max-width: 500px;
  margin: auto;
}
  

#lyricslines { 
  list-style-type: none;
  margin: 0; 
  margin: 0 auto;
  padding: 0.4em; 
  width: 100%; 
  
border-width:1px;
border-style:solid;
border-color:black;
border-spacing:4px;
/* background-color: Wheat; */
text-align: center;

display: flex;
text-align: center;
justify-content: center;
flex-direction: column;
 /* white-space: nowrap; */
/** position: relative;
display: list-item;  **/

}

#lyricslines li { 
  margin: 0 3px 3px 3px; 
  padding: 0.4em; 
  padding-left: 1.5em; 
  font-size: 1.0em; 

  text-align:center;

  display: flex; 
justify-content: center;
flex-direction: column;
/** white-space: nowrap; **/
  /**  transform: translateX(-50%); **/

}


.lineMove{
  -webkit-transition: top 2s;
  -moz-transition: top 2s;
  -ms-transition: top 2s;
  -o-transition: top 2s;
  transition: top 2s;

justify-content: center;
flex-direction: column;
/** transform: translateX(10%); **/

}


.drag-item-style {
  color: white;
  background:green;
  cursor: grab;
} 
.drop-item-style {
  color: black;
  background: yellow;
} 
.ui-state-default {
  border-radius: 15px; 
  cursor: grab;
}

.switch {
  position: relative;
  display: inline-block;
  width: 196px;
  height: 36px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: springgreen;
  -webkit-transition: .4s;
  transition: .8s;
  border-radius: 6px;
}


.slider:before {
  position: absolute;
      width: 0;
      height: 0;
      content: "";
      top: 12%;
      left: 2%;
      border-top: 14px solid transparent;
      border-left: 22px solid blue;
      border-bottom: 14px solid  transparent;
      transition: 0.4s;
}

input:checked + .slider {
  background-color: pink; 
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {

transform: translateX(166px) rotate(180deg)
}


.slider:after {
  content:'\00a0TAMIL LYRICS\00a0';
  color: black;
  font-weight: bold;
  display: block;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  font-size: 10px;
  font-family: Verdana, sans-serif;
}
input:checked + .slider:after {
  content:'ENGLISH LYRICS';
}

#help,
#clue {
  color: rgb(58, 58, 60);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

.title {
  color: white;
  /** font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif; **/
  font-size: 2.0rem; 
  font-weight: bold;
  margin: 0.4rem 0 0.4rem 0; 
  /** margin: 0 auto; **/
  text-align: center;
  background-color: indigo;
}

th {
  border-radius: 25px;
  background-color: lightcoral;
}



@media only screen and (max-width: 480px) {
  .title {
    font-size: 1.5rem;
  }
}

.grayit {
  filter: grayscale(100%);
}

.grayquit {
  filter: grayscale(100%) opacity(50%) blur(5px);
}

.disappear {
  display: none;
}
.appear {
  display: inline;
}


.dim {
    /* For Internet Explorer */
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, .3);
      
    /* For other browsers */
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .3);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
 /*  background-color: rgb(0, 0, 0); */
  background-color: rgba(0, 0, 0, 0.7);  
}

.modal-content {
  background-color: rgb(18, 18, 19); 
  margin: 5% auto;
  padding: 20px;
  width: 80%;
  color: gainsboro;
  font-size: 1.3em;
  max-width: 500px;
  max-height: 28em;
  overflow-y: scroll;
}

.modal-content hr {
  border: 1px solid rgb(255,255,255);
      color: gainsboro;
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: green;
  /* text-decoration: none; */
  cursor: pointer;
}
