.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #50525A;
}

.header > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__social__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.4rem;
  font-size: 20px;
  color: #939599;
}

.header__social__item:hover {
  color: #fff;
  text-decoration: none;
}

.header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__logo a img {
  height: 50px;
  width: 100%;
}

.header__action > div {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.header__action__searchBtn {
  color: #939599;
}

.header__action__searchBtn:hover {
  color: #fff;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.header__action__user {
  margin: 0 1rem;
}

.header__action__user > button {
  background-color: transparent;
  border: 0;
  outline: 0;
  color: #939599;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.header__action__user > button:hover {
  color: #fff;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.header__action__hMenu {
  padding: 0.3rem;
  background-color: #C00D0E;
  border-radius: 2px;
  color: #fff;
}

.subMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0 0 5px 5px;
}

.subMenu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  padding: 0.5rem 0.7rem;
  color: #fff;
  font-size: 14px;
  -webkit-transition: background-color .1s;
  transition: background-color .1s;
}

.subMenu a:nth-of-type(1) {
  border-radius: 0 0 0 5px;
}

.subMenu a:hover {
  background-color: #000;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
  text-decoration: none;
}

.searchBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 0;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.searchBar div {
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.searchBar.searchBar--actived {
  height: 45px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.searchBar.searchBar--actived div {
  opacity: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.searchBar .searchBar__inputWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 11;
      -ms-flex: 11;
          flex: 11;
}

.searchBar .searchBar__inputWrap input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 0.5rem;
  outline: 0;
  border: 0;
  background-color: #ccc;
  color: #000;
}

.searchBar .searchBar__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.searchBar .searchBar__btnWrap button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #C00D0E;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.searchResult {
  height: 0;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  background-color: #fff;
  border-radius: 0 0 7px 7px;
}

.searchResult.searchBar--actived {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.searchResult.searchBar--actived div {
  opacity: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.searchResult > a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.searchResult > a:hover {
  background-color: #f8f8f8;
}

#rightBar {
  background-color: #000 !important;
}

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

.allCategories .categori__title {
  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;
  background-color: #C00D0E;
}

.allCategories .categori__title h3 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 17px;
  margin: 0;
  padding: 0;
  letter-spacing: 0.4px;
  font-weight: 700;
}

.allCategories .categori__title button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  font-size: 17px;
}

.allCategories .categori__title button:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.allCategories ul.categori__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.allCategories ul.categori__wrap li.itemList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.allCategories ul.categori__wrap li.itemList a {
  position: relative;
  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;
  width: 100%;
  color: #c0c0c0;
  font-size: 18px;
  line-height: -0.2px;
  font-weight: 400;
  border-bottom: 1px solid #191919;
  padding-left: .3rem;
  padding-right: .3rem;
  -webkit-transition: color .2s;
  transition: color .2s;
}

.allCategories ul.categori__wrap li.itemList a:after, .allCategories ul.categori__wrap li.itemList a:before {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0%;
  -webkit-transition: width .2s;
  transition: width .2s;
}

.allCategories ul.categori__wrap li.itemList a:after {
  left: 0;
  background-color: #191919;
}

.allCategories ul.categori__wrap li.itemList a:before {
  right: 0;
  background-color: #C00D0E;
}

.allCategories ul.categori__wrap li.itemList a:hover {
  border-bottom: 1px solid transparent;
  color: #fff;
  text-decoration: none;
  -webkit-transition: color .2s;
  transition: color .2s;
}

.allCategories ul.categori__wrap li.itemList a:hover:after, .allCategories ul.categori__wrap li.itemList a:hover:before {
  -webkit-transition: width .3s;
  transition: width .3s;
  z-index: -1;
}

.allCategories ul.categori__wrap li.itemList a:hover:after {
  width: 92%;
}

.allCategories ul.categori__wrap li.itemList a:hover:before {
  width: 8%;
}

.allCategories ul.categori__wrap li.itemList a i {
  font-size: 14px;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.allCategories ul.categori__wrap li.itemList a.active i {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.allCategories ul.categori__wrap .dropdown-container {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.allCategories ul.categori__wrap .dropdown-container a, .allCategories ul.categori__wrap .itemList a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: #000;
  letter-spacing: -.3px;
  display: block;
  border: none;
  background: none;
  width: 100%;
  border-bottom: 1px solid #eee;
  text-align: left;
  cursor: pointer;
  outline: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.allCategories ul.categori__wrap .dropdown-container a.active, .allCategories ul.categori__wrap .itemList a.active {
  background-color: #222;
}

.allCategories ul.categori__wrap .dropdown-container > a, .allCategories ul.categori__wrap .dropdown-container .itemList > a {
  padding-left: 1.3rem;
}

.allCategories ul.categori__wrap .dropdown-container > .dropdown-container a {
  padding-left: 1.7rem;
}

.allCategories ul.categori__wrap .dropdown-container > .dropdown-container .dropdown-container a {
  padding-left: 2.4rem;
}

.allCategories ul.categori__wrap .dropdown-container > .dropdown-container .dropdown-container .dropdown-container a {
  padding-left: 3.1rem;
}

.fixedNavbar__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 1300;
  background-color: #EEEEEE;
  margin: 0 auto;
  height: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.fixedNavbar__wrap[data-page="audio"] {
  border-radius: 0;
}

.fixedNavbar__wrap__items {
  position: relative;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.2rem 0;
}

.fixedNavbar__wrap__items:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .2s;
  transition: all .2s;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  height: 4px;
  background-color: #C00D0E;
  border-radius: 20px;
  z-index: -1;
}

.fixedNavbar__wrap__items i {
  color: #5D5D5D;
  font-size: 18px;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.fixedNavbar__wrap__items h5 {
  color: #5D5D5D;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.5px;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.fixedNavbar__wrap__items:hover {
  text-decoration: none;
}

.fixedNavbar__wrap__items:hover:after {
  bottom: 0px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.fixedNavbar__wrap__items:hover h5, .fixedNavbar__wrap__items:hover i {
  color: #C00D0E;
  -webkit-transition: color .2s;
  transition: color .2s;
}

.fixedNavbar__wrap__items.active:after {
  bottom: 0px;
}

.fixedNavbar__wrap__items.active h5, .fixedNavbar__wrap__items.active i {
  color: #C00D0E;
}

#footer {
  margin-bottom: 50px;
}

#infoSideBar {
  padding-bottom: 50px;
}

@media (max-width: 575px) {
  .header > div.header__social {
    display: none;
  }
  .header__logo a img {
    height: 35px;
    width: 100%;
  }
  .fixedNavbar__wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 5px;
    height: 50px;
  }
  .fixedNavbar__wrap__items i {
    font-size: 18px;
  }
  #footer {
    margin-bottom: 50px;
  }
  #infoSideBar {
    padding-bottom: 50px;
  }
}

@media (max-width: 450px) {
  .fixedNavbar__wrap__items i {
    font-size: 15px;
  }
  .fixedNavbar__wrap__items h5 {
    font-size: 11px;
    font-weight: 600;
  }
}

@media (max-width: 350px) {
  .fixedNavbar__wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 5px;
    height: 60px;
  }
  .fixedNavbar__wrap__items i {
    font-size: 14px;
  }
  .fixedNavbar__wrap__items h5 {
    font-size: 10px;
  }
  #footer {
    margin-bottom: 60px;
  }
  #infoSideBar {
    padding-bottom: 60px;
  }
}

@media print {
  .noPrint {
    display: none;
  }
}
