*,
html,
body {
  outline: none !important;
  list-style: none;
}

body {
  color: #fff;
  background: #000;
  cursor: default;
}

.container-fluid {
  padding: 0;
}

.container {
  min-height: inherit;
}

.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;
}

.bold {
  font-weight: bold;
}

.line {
  display: block;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#EA384D), to(#D31027));
  background: linear-gradient(to right, #EA384D, #D31027);
  margin-top: 22px;
}

.hr {
  display: block;
  width: 100%;
  height: 2px;
  background: #232323;
  margin: 12px 0;
}

.sm_title {
  font-size: 1.2em;
}

.md_title {
  font-size: 2.5em;
  padding: 1px;
  text-align: center;
}

.secTxt {
  opacity: 0.5;
  color: #fff;
  -webkit-transition: all .8s ease;
  transition: all .8s ease;
}

.btn_c {
  background: -webkit-gradient(linear, left top, right top, from(#EA384D), to(#D31027));
  background: linear-gradient(to right, #EA384D, #D31027);
  border-radius: 50px;
  color: #fff;
  border: 0;
}

.black_overlay {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
  min-height: inherit;
  width: 100%;
  position: absolute;
  padding: 1px;
  z-index: 3;
}

header {
  max-height: 60px;
}

header nav ul {
  margin: 0;
}

header nav ul li {
  display: inline-block;
}

header .logo div {
  font-size: 2.5em;
}

header .logo div span {
  color: #D31027;
}

li a {
  display: block;
  padding: 12px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

li a:hover {
  color: #fff;
  background: #EA384D;
}

.strip {
  min-height: 500px;
  background: url("../images/strip.jpg") no-repeat center;
  background-size: cover;
  overflow: hidden;
}

.grid_main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4fr 1fr;
      grid-template-columns: 4fr 1fr;
  grid-gap: 2em;
}

@media (max-width: 992px) {
  .grid_main {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.search_bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0;
}

.search_bar .search {
  width: 100%;
  height: 50px;
  border: 1px solid #232323;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin: 0;
  padding: 0;
  margin-right: 0.8em;
}

.search_bar .search i {
  color: #fff;
  padding: 0 14px;
}

.search_bar .search input {
  border: 0;
  outline: none;
  background-color: transparent;
  width: inherit;
  height: inherit;
  color: #fff;
}

.search_bar .search .close {
  visibility: visible;
  position: absolute;
  top: calc(100%-50%);
  right: 0;
  color: #fff;
  z-index: 1;
}

.search_bar .search input:placeholder-shown ~ .close {
  visibility: hidden;
}

.search_bar .search input::-webkit-search-cancel-button {
  position: absolute;
  right: -20px;
  -webkit-appearance: none;
  top: calc(100%-50%);
  height: 30px;
  width: 30px;
  z-index: 2;
  cursor: pointer;
}

.search_bar .search .sort {
  max-width: 110px;
}

.grid_songs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 2fr 2fr 1fr 1fr;
      grid-template-columns: 2fr 2fr 2fr 1fr 1fr;
  border-bottom: 2px solid #232323;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  padding: 12px;
  -webkit-transition: all .8s ease;
  transition: all .8s ease;
  text-align: center;
}

@media (max-width: 750px) {
  .grid_songs {
    -ms-grid-columns: 1fr 2fr 1fr;
        grid-template-columns: 1fr 2fr 1fr;
  }
}

.grid_songs:hover {
  background-color: white;
  color: #000;
  border-radius: 12px;
}

.grid_songs:hover .secTxt {
  color: #000;
}

.grid_songs .song_name {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  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;
}

i {
  background: -webkit-gradient(linear, left top, right top, from(#EA384D), to(#D31027));
  background: linear-gradient(to right, #EA384D, #D31027);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.play {
  width: 40px;
  height: 40px;
  padding: 10px;
  background: #fff;
  border-radius: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

aside ul {
  margin: 0;
  padding: 0;
  width: 100%;
}

aside ul li {
  width: 100%;
}
/*# sourceMappingURL=main.css.map */