* {
  box-sizing: border-box;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
}
body {
  background-color: #ca6454;
  margin: 0;
}
.content {
  max-width: 1024px;
  width: 100%;
  margin: 50px auto 15px auto;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  padding: 25px;
}
.content h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #3b4252;
}
.content h1 .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #9196a5;
  margin-left: 5px;
  font-size: 14px;
}
.content h1 .icon svg {
  fill: #fff;
}
.content .login-txt {
  margin: 0;
  padding: 1rem 0 1rem 0;
  text-align: center;
  color: #3b4252;
}
.content .google-login-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background-color: #d6523e;
  cursor: pointer;
}
.content .google-login-btn .icon {
  display: inline-flex;
  height: 100%;
  padding: 15px 20px;
  align-items: center;
  justify-content: center;
  background-color: #cf412c;

}
.content .google-login-btn .icon svg {
  fill: #fff;
}
.content .google-login-btn:hover {
  background-color: #d44a36;
}
.content .google-login-btn:hover .icon {
  background-color: #c63f2a;
}


.content .login-button-text {
  width : 100%;
  text-align: center;
}



.login-button-container {
  width: 100%;
  display: flex;
}

.login-left, .login-right {
  flex:1;
}

.login-middle {
  flex:2;
}

.login-image {
  padding: 25px;
  text-align: center;
  height: 500px;
}

.login-image img {

  max-height : 100%;
  max-width: 100%;

}




.header {
  height: 50px;
  width: 100%;
  display: flex;
  margin-bottom : 25px;
}


.header h1 {
  height: 100%;
  margin: 0px;
  padding: 0.5rem;
}

.header_left {
  width:50px;
}


.header_middle {
  flex:1;
}

.header div, .header img {
  height : 100%;
}




.select-playlist-container {
  width: 100%;
  display: flex;
}

.select-pl-left, .select-pl-right {
  flex: 1;
}

.select-pl-middle {
  flex: 2;
}

.select-pl-middle > a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  
}

.select-pl-item {
  margin: 0.5rem;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  background: #d6523e;
  border-radius: 5px;

}
.select-pl-item:hover {
  background: burlywood;
}

.denied-home {
  height : 50px;
  text-align: center;
  margin-top: 25px;
}

.denied-home img {
  height: 100%;
}



.sticky-header {
  position: sticky;
  top: 0rem;
  background-color: #fff;
}

.pl-description {
  text-align: center;
}

.player {
  width: 100%;
  padding-bottom: 1rem;
}



.video-js {
  width:100%;
}

.playlist > div {
  width: 100%
}

.playlist-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.playlist-content{
  display: flex;
  flex-direction: column;
}
.playlist-content > .pl-item {
  width:100%;
  margin: 0.5rem 0rem 0.5rem 0rem; 
  display: flex;
  flex-direction: row;
  padding: 0.5rem;
  cursor: pointer;
  background:rgb(243, 201, 177);
  border-radius: 5px;
  align-items: center;
}

.playlist-content > .pl-item:hover {
  background: rgb(238, 177, 142);
}

.playlist-content > .pl-item-selected {
  background: rgb(233, 147, 132);
}


.playlist-container > .pl-item-header {
  width:100%;
  margin: 0.5rem 0rem 0.5rem 0rem; 
  display: flex;
  flex-direction: row;
  padding: 0.5rem;
  background: #e08071;
  border-radius: 5px;
  font-weight: 600;
  align-items: center;
}

.pl-info {
  width:100%;
  margin: 0.5rem 0rem 0.5rem 0rem; 
  display: flex;
  flex-direction: row;
  padding: 0.5rem;
  background: #f1e4c0;
  border-radius: 5px;
  align-items: center;
}

.pl-item-order {
  flex: 1;
  text-align: center;
}

.pl-item-title {
  flex: 5;
  text-align: center;
}

.pl-item-composer {
  flex: 3;
  text-align: center;
}

.pl-item-genre {
  flex: 1;
  text-align: center;
}

.pl-item-tanda {
  flex: 1;
  text-align: center;
}



@media screen and (width < 720px) {
  .login-left, .login-right {
    flex: 0;
  }

  .login-image {
    height: 300px;
  }
  
  .select-pl-left, .select-pl-right {
    flex: 0;
  }
}

