html {
  height: 100%;
  width: 100%;
}

body {
  font-size: 100%;
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

input {
  padding: 1em;
  border-radius: 0.2em;
  border-style: solid;
  border-color: black;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

input[type=file] {
  padding: 0;
  border-radius: 0;
  border-style: none;
}

input[type=file]:focus {
  background: none;
  color: black;
}

a {
  color: white;
}

img.heart, img.heart_red {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

img.heart:hover, .heart_scale {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

input:focus {
  background: linear-gradient(-150deg, #e5aa68, #11040b);
  color: #ffffff;
}

.blue {
  color: #009dff;
}

.beside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.submit:hover {
  background: #11040b;
  color: #ffffff;
}

.transparent_button {
  background: rgba(0, 0, 0, 0.2);
  border-color: white;
  border-radius: 1em;
  border-style: solid;
  color: white;
  font-size: 1em;
  padding: 1em 2em 1em 2em;
  -webkit-transition: 1s;
  transition: 1s;
}

.transparent_button:hover {
  background: rgba(0, 0, 0, 0.6);
}

.button {
  border-color: #009dff;
  border-radius: 1em;
  border-style: solid;
  color: #009dff;
  font-size: 1em;
  padding: 0.25em 2em 0.25em 2em;
  -webkit-transition: 1s;
  transition: 1s;
  height: 2em;
}

.button:hover {
  background: #009dff;
  color: white;
}

.button[disabled] {
  border-color: grey;
  color: grey;
}

.button[disabled]:hover {
  background: none;
}

.line {
  width: 1px;
  height: 1.5em;
  background-color: #a5a5a5;
}

.text-gradient {
  background-image: linear-gradient(-150deg, #e5aa68, #11040b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-white {
  color: white;
}

.bg {
  background: linear-gradient(-150deg, #e5aa68, #11040b);
}

.bg_studio {
  background-image: url(../images/sound_studio_raw.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.bg_concert {
  background-image: url(../images/concert_raw.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.bg_concert_logo {
  background-image: url(../images/concert_raw_logo.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.bg_concert::after, .bg_concert_logo::after {
  content: "";
  background-color: black;
  opacity: 0.4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
}

.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#post_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border-bottom: 0.05em solid #a5a5a5;
}

#post_container form {
  width: 100%;
}

.message {
  margin: 2em 5% 0.5em 5%;
  width: 85%;
  height: 2.5em;
  padding: 2.5%;
  font-size: 1.5em;
  font-family: Arial, Helvetica, sans-serif;
  resize: none;
  background: none;
  border-style: dotted;
}

.message_buttons {
  margin: 0 4em 2em 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.message-container {
  max-width: 90%;
  margin: 1.5em;
}

.message-top {
  min-height: 5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.message-top .profile_picture {
  margin-right: 1.5em;
}

.message-top .message-top-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 80%;
}

.message-username-date span {
  color: #009dff;
}

.message-content {
  margin-top: 0.3em;
  margin-bottom: 0.5em;
}

.message-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 80%;
}

.message-actions .message-open-comments {
  color: #a5a5a5;
  text-decoration: underline;
}

.message-actions .message-open-comments:hover {
  color: #009dff;
  cursor: pointer;
}

.message-comments {
  height: 0;
  width: 25em;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: 1s;
  transition: 1s;
}

.message-comments .message-container {
  border-left: #a5a5a5 0.1em solid;
  padding-left: 0.5em;
}

.message-comments .message-actions {
  width: 4em;
}

.message-comments-visible {
  height: auto;
}

.commenttextarea {
  background: none;
  border: none;
  padding: 0.5em;
  font-family: sans-serif;
  resize: none;
  height: 2em;
}

.logo {
  -webkit-transition: -webkit-transform .8s ease-in-out;
  transition: -webkit-transform .8s ease-in-out;
  transition: transform .8s ease-in-out;
  transition: transform .8s ease-in-out, -webkit-transform .8s ease-in-out;
}

.logo:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.profile_picture {
  border-radius: 100%;
  border-color: black;
  border-style: solid;
  border-width: 0.1em;
}

#signup_container, #signin_container {
  height: 70vh;
  width: 50vh;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0.25em;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em;
  margin: 0.5em;
  margin-top: 2em;
}

#signup_container form, #signin_container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  height: 100%;
}

#signup_container .grid-c2, #signin_container .grid-c2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30% 70%;
      grid-template-columns: 30% 70%;
}

#signup_container .grid-c2 span, #signin_container .grid-c2 span {
  text-align: start;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-bottom: 2em;
}

#signup_container .grid-c2 input, #signin_container .grid-c2 input {
  margin-bottom: 2em;
}

#topbar {
  height: 3em;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 0.05em solid #a5a5a5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
}

#profile_content {
  min-height: 200em;
  height: auto;
  width: 70%;
  background-color: #ffffff;
  margin-top: 5em;
}

.profile-content-ami {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

#activity {
  width: 33.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#music {
  width: 33.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#upload-song {
  margin: 1.5em;
  margin-bottom: 0;
  border-style: solid;
  border-width: 1px;
  border-color: #009dff;
  background-color: #2baeff;
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10em;
  color: white;
}

#upload-icon {
  height: 100%;
}

#upload-progress {
  height: 3.5em;
  width: 3.5em;
}

#upload-progress-container {
  height: 3.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

label[for=fileupload] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

label[for=fileupload] small {
  margin-top: 1em;
}

#load-songs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.song-container {
  margin: 1.5em;
  margin-bottom: 0;
  width: 85%;
  height: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.song-cover {
  height: 4em;
  width: 4em;
  min-width: 4em;
  min-height: 4em;
  background-color: #009dff;
}

.song-play-container {
  position: absolute;
  height: 4em;
  width: 4em;
  min-width: 4em;
  min-height: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.song-play {
  height: 2em;
  width: 2em;
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.song-play:hover {
  opacity: 1;
}

.song-title {
  color: white;
}

.song-title-bar {
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: #009dff;
  width: 100%;
  padding: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.song-progress-bar-container {
  width: 100%;
  height: 0.5em;
  background-color: white;
}

.song-progress-bar {
  height: 0.5em;
  width: 0;
  background-color: #009dff;
}

.song-time-container {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 60%;
}

#info {
  width: 33.3%;
}

#info_inner {
  margin: 1.5em;
}

#profile_header {
  width: 100%;
  height: 10em;
  border-bottom: 0.05em solid #a5a5a5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#profile_header_child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 40%;
  margin-left: 1.5em;
}

#profile_header_child2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
      grid-template-columns: 50% 50%;
  -ms-grid-rows: 50% 50%;
      grid-template-rows: 50% 50%;
  width: 45%;
  margin-right: 1.5em;
}

#profile_menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 1.5em;
}

.profile_title {
  font-weight: bold;
  font-size: 1.5em;
}

.profile_subscriber_count {
  color: #009dff;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

.profile_subscription_count {
  color: #009dff;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

@media only screen and (max-width: 900px) {
  #profile_header {
    height: 15em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  #profile_header_child {
    width: 95%;
    margin-left: 5%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  #profile_header_child2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 31% 37% 0 25%;
        grid-template-columns: 31% 37% 0 25%;
    -ms-grid-rows: 100%;
        grid-template-rows: 100%;
    width: 93%;
    margin-left: 7%;
    margin-top: 1.5em;
  }
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 90%;
  }
  #signup_container {
    width: 100%;
    border-radius: 0;
    padding: 0;
  }
  #profile_content {
    margin-top: 3em;
    width: 100%;
  }
  .load-comments-container {
    width: 90%;
  }
  .message-actions {
    width: 90%;
  }
  #activity {
    width: 100%;
  }
  #music {
    display: none;
    width: 0;
  }
  #info {
    display: none;
    width: 0;
  }
}
/*# sourceMappingURL=style.css.map */