@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700|Raleway:100,400,700,900&display=swap');
body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  background-color: rgba(239, 239, 239, 1.00);
  padding-top: 60px;
}
header {
  top: 0;
  height: 60px;
  width: 100%;
  position: fixed;
  background-color: #DBAB32;
  z-index: 100;
}
header h1 {
  position: absolute;
  width: calc(100% - 80px);
  height: calc(100% - 30px);
  margin: 15px;
  color: rgba(255, 255, 255, 1.00);
  font-size: 23pt;
}
header h1:after {
  content: "";
  width: 0;
  height: 0;
  background-color: transparent;
  position: absolute;
  left: 0;
  bottom: -10px;
}
header h1 a {
  border-bottom: dotted;
}
header .avatar {
  height: calc(150% - 10px);
  border-radius: 3px;
  margin-top: 10px;
  position: absolute;
  right: 15px;
  top: 0;
  transition-duration: 0.2s;
  transform-origin: right top;
}
header .avatar:hover {
  height: 300%;
}
strong {
  font-weight: 700;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin: 0 0 30px 0;
  line-height: 1;
  position: relative;
}
h1 {
  font-weight: 900;
  text-align: left;
  font-size: 40pt;
}
h1:after {
  content: "";
  width: 30%;
  height: 3px;
  background-color: #DBAB32;
  position: absolute;
  left: 0;
  bottom: -10px;
}
#pageContent {
  transition-duration: 0.3s;
}
.blur {
  filter: blur(10px);
}
#backgroundImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.2;
}
.forms {
  display: none;
  width: 400px;
  height: 450px;
  position: fixed;
  z-index: 10;
  left: 50%;
  top: 50%;
  margin-left: -200px;
  margin-top: -200px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.forms h1 {
  font-size: 40px;
  margin: 20px 20px 30px 20px;
}
.forms svg.close {
  height: 20px;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  padding: 20px;
  opacity: 0.5;
}
.forms svg.close:hover {
  opacity: 1;
}
.forms img.avatar, .forms img.cover {
  height: 150px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 3px;
  transition-duration: 0.1s;
}
.forms img.avatar:hover, .forms img.cover:hover {
  opacity: 0.80;
  transform: scale(1.03);
}
.forms input {
  font-family: 'Open Sans', sans-serif;
  padding: 5px 7px;
  border: none;
  font-size: 15pt;
  width: 80%;
  border-radius: 5px;
  margin-bottom: 5px;
  text-align: center;
  background-color: transparent;
}
.forms label input[type="radio"] {
  width: 1px;
  height: 1px;
  opacity: 0;
}
.forms label {
  margin: 5px;
  padding: 7px 10px;
  background-color: rgba(125, 125, 125, 0.50);
  border-radius: 10px;
}
.forms label.checked {
  background-color: #DBAB32;
}
.forms input[type="submit"], .forms input[type="button"] {
  width: 83%;
  margin-top: 20px;
  padding: 10px 7px;
  font-size: 13pt;
  background-color: rgba(219,171,50,1.00);
  cursor: pointer;
}
.forms input[type="submit"]:hover, .forms input[type="button"]:hover {
  background-color: rgba(219,171,50,0.70);
}
.modalWindow {
  display: none;
  position: fixed;
  overflow: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 16, 16, 0.7);
  z-index: 11;
}
.modalWindow svg.close {
  height: 50px;
  position: absolute;
  z-index: 2;
  top: 0px;
  right: 0px;
  padding: 30px;
  opacity: 0.5;
}
.modalWindow svg.close path {
  fill: rgba(255, 255, 255, 1);
}
.modalWindow svg.close:hover {
  opacity: 1;
}
.modalWindow .avatars {
  text-align: center;
  padding: 5%;
}
.modalWindow .avatars img {
  height: 150px;
  margin: 15px;
  border-radius: 3px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition-duration: 0.1s;
}
.modalWindow .avatars img:hover {
  opacity: 0.80;
  transform: scale(1.03);
}
.modalWindow .search {
  text-align: center;
  padding: 5%;
}
.modalWindow .search input {
  font-family: 'Open Sans', sans-serif;
  padding: 10px;
  border: solid 0.8px rgba(149, 149, 149, 1.00);
  color: rgba(255, 255, 255, 1.00);
  font-size: 25pt;
  width: 60%;
  border-radius: 7px;
  margin-bottom: 10px;
  text-align: center;
  background-color: transparent;
}
.modalWindow .search input[type="submit"] {
  font-family: 'Open Sans', sans-serif;
  padding: 10px;
  border: solid 0.8px rgba(149, 149, 149, 1.00);
  color: rgba(108, 108, 108, 1.00);
  font-size: 25pt;
  width: 20%;
  border-radius: 7px;
  margin-bottom: 10px;
  text-align: center;
  margin-left: 25px;
  background-color: rgba(255, 255, 255, 1.00);
}
.modalWindow .search .results {
  margin-top: 35px;
}
.modalWindow .search .results img {
  height: 200px;
  margin: 15px;
  border-radius: 3px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition-duration: 0.1s;
}
.modalWindow .search img:hover {
  opacity: 0.80;
  transform: scale(1.03);
}
#listVinyles {
  text-align: center;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
#listVinyles form {
  padding: 0 0 30px 0;
  opacity: 0.3;
  transition-duration: 0.1s;
}
#listVinyles form:hover {
  opacity: 1;
}
#listVinyles form input {
  text-align: center;
  width: auto;
  max-width: 60%;
  padding: 0;
  height: 50px;
  background-color: transparent;
  border: solid 1px rgba(137, 137, 137, 0.00);
  margin: 0 10px;
  border-radius: 50px;
  font-size: 17pt;
  font-weight: 300;
  font-family: 'Open Sans';
  vertical-align: top;
    
    transition-duration: 0.2s;
}
#listVinyles form input[type="submit"] {
  width: 50px;
  font-size: 25pt;
  padding-bottom: 10px;
    opacity: 0;
}
#listVinyles form:hover input {
  border: solid 1px rgba(137, 137, 137, 1.00);
}
#listVinyles form:hover input[type="submit"] {
    opacity: 1;
}
#listVinyles h2 {
  margin: 50px 0 0 0;
}
#listVinyles a.back {
  display: inline-block;
  width: auto;
  margin: 30px 0;
  padding: 10px 20px;
  border: solid 1px rgba(155, 155, 155, 1.00);
  border-radius: 10px;
}
#listVinyles a.back.advice {
  border: solid 1px rgba(155, 155, 155, 1.00);
  background-color: rgba(155, 155, 155, 1.00);
}
#listVinyles .item {
  width: 200px;
  display: inline-block;
  position: relative;
  margin: 20px 30px;
  vertical-align: top;
}
#listVinyles .item.pending {
  opacity: 0.7;
}
#listVinyles .item.pending:hover {
  opacity: 1;
}
#listVinyles .item.pending .vinylDisk {
  display: none;
}
#listVinyles .item.pending img.cover {
  opacity: 0.5;
  filter: blur(5px);
}
#listVinyles .item.pending:hover img.cover {
  border-radius: 3px;
  transform: translateX(0) translateY(0) rotate(0);
  box-shadow: none;
  opacity: 1;
  filter: none;
}
#listVinyles .item img.cover {
  width: 200px;
  height: 200px;
  position: relative;
  z-index: 5;
  transform-origin: 10% 90%;
  transition-duration: 0.5s;
  border-radius: 3px;
}
#listVinyles .item .vinylDisk {
  width: 96%;
  top: 1%;
  left: 2%;
  position: absolute;
  z-index: 0;
  transition-duration: 0.5s;
}
#listVinyles .item .vinylDisk img.disk {
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
}
#listVinyles .item .vinylDisk img.sticker {
  position: absolute;
  width: 35%;
  top: 32%;
  left: 32%;
  border-radius: 50%;
  z-index: 0;
}
#listVinyles .item:hover .vinylDisk {
  transform: rotate(390deg);
  left: 30%;
}
#listVinyles .item:hover img.cover {
  border-radius: 0;
  transform: translateX(-30px) translateY(15px) rotate(-5deg);
  box-shadow: 3px 0 3px rgba(0, 0, 0, 0.3);
}
#listVinyles .item .menu {
  position: absolute;
  width: 100%;
  margin-top: -20px;
  opacity: 0;
  transition-duration: 0.3s;
}
#listVinyles .item .menu svg {
  height: 17px;
  padding: 5px 5px;
    border-radius: 3px;
    opacity: 0.7;
}
#listVinyles .item .menu svg:hover {
    opacity: 1;
    background-color: rgba(255,255,255,0.30);
}
#listVinyles .item .menu svg.owned, #listVinyles .item .menu svg.pending {
  padding: 3px 3px;
  margin: 2px 7px;
  border-radius: 20px;
}
#listVinyles .item .menu svg.owned {
  background-color: rgba(60, 143, 20, 1.00);
}
#listVinyles .item .menu svg.pending {
  background-color: rgba(20, 100, 143, 1.00);
}
#listVinyles .item .menu svg.owned path, #listVinyles .item .menu svg.pending path {
  fill: rgba(255, 255, 255, 1);
}
#listVinyles .item:hover .menu {
  margin-top: -10px;
  opacity: 1;
}
#listVinyles .item.add {
  opacity: 0.6;
  margin-top: 40px;
  vertical-align: middle;
}
#listVinyles .item.add svg {
  height: 50px;
  margin: 20px 0;
  transition-duration: 0.3s;
}
#listVinyles .item.add svg path {}
#listVinyles .item.add:hover {
  opacity: 1;
}
#listVinyles .item.add:hover svg {
  transform: scale(1.1);
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: rgba(34, 34, 34, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }
  input {
    color: rgba(255, 255, 255, 1.00);
  }
  .forms {
    background-color: rgba(33, 33, 33, 1.00);
  }
  svg path {
    fill: rgba(255, 255, 255, 1);
  }
  header {
    background-color: #292D53;
  }
  #listVinyles .item {
    color: rgba(255, 255, 255, 1.00);
  }
  #listVinyles .item .menu svg path, #listVinyles .item.add svg path {
    fill: rgba(255, 255, 255, 1);
  }
}
@media only screen and (max-width: 550px) {
    
  .forms {
    display: none;
    width: 300px;
    height: 500px;
    position: fixed;
    z-index: 10;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -250px;
  }
  header h1 {
    margin-top: 20px;
    font-size: 15pt;
  }
  header .avatar {
    height: calc(130% - 10px);
  }
  header .avatar:hover {
    height: 160%;
  }
  #listVinyles .item {
    width: 150px;
    margin: 20px 15px;
    vertical-align: top;
  }
  #listVinyles .item img.cover {
    width: 150px;
    height: 150px;
  }
  #listVinyles .item:hover img.cover {
    transform: translateX(-10px) translateY(9px) rotate(-5deg);
  }
}