@keyframes slideInFromRight {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

html {
  background-color: rgb(20, 20, 20);
}
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-img {
  height: 45vh;
}

.anime-img {
  width: 200px;
  height: 300px;
  border-radius: 10px;
}

img:hover {
  opacity: 0.5;
}

.control.has-icons-right .input:focus-.icon {
  color: white;
}

.ico {
  margin-right: 12px;
  color: white;
}

.title-text-box {
  display: flex;
}

.side-box {
  display: flex;
  justify-content: space-between;
}

.side-text {
  color: gray;
}

.side-data {
  color: rgb(75, 177, 106);
}

.recs {
  padding: 15px;
  box-shadow: 0px 0px 15px -1px rgb(15, 15, 15);
  background-color: rgb(30, 30, 30);
  border-radius: 15px;
}

.title.title {
  color: white;
  font-size: 16px;
  font-weight: normal;
}

.slider {
  animation: 1s ease-out 0s 1 slideInFromRight;
}

/*  Work-around for transitions to work, must be a better way */
.rec0,
.rec1,
.rec2,
.rec3,
.rec4 {
  width: 475.11px;
}

.genre-section {
  padding-top: 15px;
  padding-left: 0px;
}

.disappear {
  display: none;
}

.search-load {
  padding-top: 10px;
  padding-bottom: 0px;
}

#mal-input#mal-input {
  background-color: rgb(75, 177, 106);
  border: none;
  color: white;
  box-shadow: 0px 0px 25px -8px rgba(61, 211, 118, 0.795),
    inset 1px 1px 2px 2px rgba(0, 0, 0, 0.37);
}

#mal-input#mal-input::placeholder {
  color: rgba(255, 255, 255, 0.425);
}

.genre.genre {
  background-color: rgb(75, 177, 106);
  color: white;
}

.user-title {
  padding-top: 25px;
}

.title-box {
  width: 100%;
  margin: 3px;
  background-color: rgb(75, 177, 106);
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0px 0px 30px -8px rgba(61, 211, 118, 0.795),
    inset 0px 1px 0px 0px rgba(255, 255, 255, 0.384);
}

label.checkbox {
  padding-top: 10px;
}

.error {
  padding: 40px;
}

.media.media {
  border: none;
  margin: 0;
}

@media all and (max-width: 780px) {
  .column.column {
    margin: 0px 20px;
  }
  .rec0,
  .rec1,
  .rec2,
  .rec3,
  .rec4 {
    width: auto;
  }
  .anime-img {
    width: 100px;
    height: 160px;
    border-radius: 10px;
  }
  .side-box {
    font-size: 11px;
  }
  .tag.tag {
    font-size: 10px;
  }
  .genre-section {
    padding: 10px 0px;
  }
  .title-box {
    width: 100%;
    margin: 3px;
    background-color: rgb(75, 177, 106);
    padding: 10px;
    border-radius: 5px;
  }
}
