@import "fonts.css";

@import "entypo.css";

@import "flaticon.css";

@import "lightbox.css";
/*------------------------------------------------------------
>>> NOTE: This CSS file is compiled from the original "style.less" file.

[Master Stylesheet]

Project:	BeatsMusic
Version:	1.3
Last change:	11/06/2014

>>> TABLE OF CONTENTS:

0.0 - General Styles
1.0 - Navigation
2.0 - Revolutin Slider
3.0 - jPlayer Home (top-section)
4.0 - Albums With Sidebar
	4.1 - Inside Album
5.0 - Events
	5.1 - Latest Events Home (top-section)
	5.2 - Events Gallery Sidebar
	5.3 - Events Categories
	5.4 - Event List Sidebar
	5.5 - Inside Event
6.0 - Top Section Home
7.0 - Blog Content
	7.1 - Sidebar
	7.4 - Blog Inside Post
8.0 - Page Header 
9.0 - ........
10.0 - Artists
11.0 - Contact Page
12.0 - Gallery 
	12.1 - Gallery Inside Photo
	12.2 - Gallery Inside Video
13.0 - Footer
14.0 - Import Style Switcher
--------------------------------------------------------------


--------------------------------------------------------------
0.0 - General Styles
--------------------------------------------------------------*/
/*======= Less Mixins =======*/
.lnone {
  list-style: none;
  list-style-type: none;
}
/*======= Less Typography =======*/
.ll {
  font-family: 'Lato';
  font-weight: 300;
}
.lr {
  font-family: 'Lato';
  font-weight: 400;
}
.lb {
  font-family: 'Lato';
  font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2c2c2c;
  font-family: 'Lato';
  font-weight: 400;
}
p {
  font-family: 'Lato';
  font-weight: 400;
  color: #bbbbbb;
  font-size: 14px;
  line-height: 18px;
}
/*======= Body Background =======*/
body {
  background: #181818;
}
/*======= Preloader ======*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2c2c2c;
  z-index: 999999;
}
#preloader #loadanimation {
  position: absolute;
  width: 100px;
  height: 20px;
  left: 50%;
  top: 50%;
  margin: -10px 0 0 -50px;
  background: url(../img/elements/loader-11.gif) center center no-repeat;
}
/*======= Line Separator ======*/
.line-separator {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background: #2c2c2c;
}
.block-sep {
  height: 70px;
}
/*--------------------------------------------------------------
1.0 - Navigation
--------------------------------------------------------------*/
.navbar {
  background: #e10052;
  border: none;
  border-radius: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .navbar {
    position: relative;
    background: #1f1f1f;
  }
}
@media screen and (max-width: 991px) {
  .navbar .container {
    width: 100%;
  }
}
.navbar .navbar-collapse {
  border: none;
  box-shadow: 0 0 0 0;
}
.navbar .navbar-header {
  background: #e10052;
}
.navbar .navbar-header .navbar-brand {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  padding: 10px 10px 10px 60px;
  background: url(../img/elements/beat.png) 15px 15px no-repeat;
}
@media screen and (min-width: 992px) {
  .navbar .navbar-header .navbar-brand {
    padding: 30px 0 30px 60px;
    background: url(../img/elements/beat.png) 15px 35px no-repeat;
  }
}
.navbar .navbar-header button {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: transparent;
  margin-top: 8px;
  margin-bottom: 7px;
}
.navbar .navbar-header button span {
  background-color: #fff !important;
  height: 3px;
}
.navbar .navbar-header button:hover,
.navbar .navbar-header button:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background-color: transparent;
  background: none;
}
.navbar .navbar-nav {
  list-style: none;
  list-style-type: none;
}
@media screen and (min-width: 992px) {
  .navbar .navbar-nav {
    float: right;
  }
}
.navbar .navbar-nav > li {
  -webkit-transition: all 2s linear;
  -moz-transition: all 2s linear;
  -ms-transition: all 2s linear;
  -o-transition: all 2s linear;
  transition: all 2s linear;
  /*  Submenu */

}
.navbar .navbar-nav > li > a {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  padding: 30px 10px;
  color: #fff;
}
.navbar .navbar-nav > li > a i.icon-down-open {
  color: rgba(44, 44, 44, 0.5);
}
.navbar .navbar-nav > li > a span.clearfix {
  display: block;
  clear: right;
}
.navbar .navbar-nav > li > a span.under {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav > li > a span.under {
    display: none;
  }
}
.navbar .navbar-nav > li > a.selected {
  color: #fff;
}
.navbar .navbar-nav > li > a.selected i.icon-down-open {
  color: rgba(44, 44, 44, 0.5);
}
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:focus {
  color: #fff;
  text-shadow: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.navbar .navbar-nav > li > a:hover i.icon-down-open,
.navbar .navbar-nav > li > a:focus i.icon-down-open {
  color: rgba(44, 44, 44, 0.5);
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav > li > a {
    padding: 5px 0;
  }
}
@media screen and (min-width: 1200px) {
  .navbar .navbar-nav > li > a {
    padding: 30px 20px;
  }
}
.navbar .navbar-nav > li:last-child > a {
  padding-right: 0 !important;
}
.navbar .navbar-nav > li > ul {
  background: none;
  border-top: none;
  position: absolute;
  min-width: 220px;
  padding: 0;
  list-style: none;
  list-style-type: none;
  border-radius: 0;
}
.navbar .navbar-nav > li > ul.left {
  right: 0;
  left: auto;
}
.navbar .navbar-nav > li > ul li a {
  display: block;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #dfdfdf;
  padding: 5px 15px !important;
  text-decoration: none;
}
.navbar .navbar-nav > li > ul li a i {
  padding-right: 5px;
}
.navbar .navbar-nav > li > ul li a:before {
  content: "- ";
}
@media screen and (min-width: 992px) {
  .navbar .navbar-nav > li > ul li a {
    padding: 10px 15px !important;
    border-bottom: 1px solid #393939;
    background: #2c2c2c;
  }
  .navbar .navbar-nav > li > ul li a:before {
    content: "";
  }
  .navbar .navbar-nav > li > ul li a:hover {
    background: #343434 !important;
    color: #ffffff;
  }
}
.navbar .navbar-nav > li > ul li a:hover {
  background: #d2004c;
  color: #ffffff;
}
.navbar .navbar-nav > li > ul li:last-child a {
  border-bottom: 0;
}
@media screen and (min-width: 992px) {
  .navbar .navbar-nav > li:hover > ul {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
  }
  .navbar .navbar-nav > li {
    border-top: 1px solid #393939;
  }
  .navbar .navbar-nav > li:last-child {
    border-bottom: 1px solid #393939;
  }
  .navbar .navbar-nav > li.open a {
    background: #2c2c2c;
  }
  .navbar .navbar-nav > li.open > a {
    color: #e10052;
  }
  .navbar .navbar-nav > li.open > a i.icon-down-open:before {
    content: "\e819";
  }
  .navbar .navbar-nav > li a {
    padding-left: 15px;
    padding-right: 15px;
    background: #1f1f1f;
  }
  .navbar .navbar-nav > li a i.icon-down-open {
    color: #767676;
    font-size: 12px;
  }
  .navbar .navbar-nav > li a i.icon-down-open:before {
    content: "\e816";
  }
  .navbar .navbar-nav > li a:hover i.icon-down-open,
  .navbar .navbar-nav > li a:focus i.icon-down-open,
  .navbar .navbar-nav > li a.selected i.icon-down-open {
    color: #767676;
  }
  .navbar .navbar-nav > li a:hover {
    background: #121212;
  }
  .navbar .navbar-nav > li ul.dropdown-menu li {
    border-top: 1px solid #393939;
  }
  .navbar .navbar-nav > li ul.dropdown-menu li a:hover {
    background: #121212;
  }
}
/*--------------------------------------------------------------
2.0 - Revolution Slider
--------------------------------------------------------------*/
.tp-banner-container {
  position: relative;
  margin-top: 92px;
  overflow: hidden !important;
  max-height: 720px !important;
}
@media screen and (max-width: 991px) {
  .tp-banner-container {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  
}
.tp-banner-container .tp-banner > ul {
  width: auto !important;
  overflow: hidden !important;
}
.tp-banner-container .tp-banner > ul li .countdown-2 {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}
.tp-banner-container .tp-banner > ul li .countdown-2 li {
  display: block;
  float: left;
  width: 100px;
  height: 100px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid #e10052;
  margin: 12px;
  text-align: center;
  box-sizing: content-box;
}
.tp-banner-container .tp-banner > ul li .countdown-2 li span {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 45px;
  line-height: 70px;
  color: #fff;
}
.tp-banner-container .tp-banner > ul li .countdown-2 li p {
  margin: 0;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #e10052;
}
@media screen and (max-width: 991px) {
  .tp-banner-container .tp-banner > ul li .countdown-2 li {
    width: 60px;
    height: 60px;
    border-radius: 3px;
    border: 2px solid #e10052;
    margin: 6px;
  }
  .tp-banner-container .tp-banner > ul li .countdown-2 li span {
    font-size: 26px;
    line-height: 40px;
  }
}
@media screen and (max-width: 400px) {
  .tp-banner-container .tp-banner > ul li .countdown-2 li {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    border: 1px solid #e10052;
    margin: 3px;
  }
  .tp-banner-container .tp-banner > ul li .countdown-2 li span {
    font-size: 18px;
    line-height: 25px;
  }
  .tp-banner-container .tp-banner > ul li .countdown-2 li p {
    font-size: 10px;
    line-height: 15px;
  }
}
.tp-banner-container .tp-banner > ul li .special-cap {
  display: block;
  position: absolute;
  top: 0;
  margin-top: -2500px;
  left: 0;
  width: 50%;
  height: 5000px;
  background: rgba(0, 0, 0, 0.4);
}
.tp-banner-container .tp-banner > ul li .custom-cap {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.tp-banner-container .tp-banner > ul li .custom-cap span.colored {
  color: #e10052;
}
.tp-banner-container .tp-banner > ul li .custom-cap.cap-1 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  padding: 15px 30px;
}
.tp-banner-container .tp-banner > ul li .custom-cap.cap-1-1 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  padding: 15px 30px;
}
@media screen and (max-width: 767px) {
  .tp-banner-container .tp-banner > ul li .custom-cap.cap-1-1.xs {
    font-size: 80px;
    line-height: 80px;
    padding: 15px 30px;
  }
}
.tp-banner-container .tp-banner > ul li .custom-cap.cap-2 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 24px;
  line-height: 25px;
  padding: 10px 30px;
}
@media screen and (max-width: 767px) {
  .tp-banner-container .tp-banner > ul li .custom-cap.cap-2.xs {
    font-size: 48px;
    line-height: 50px;
    padding: 15px 30px;
    margin-top: 50px;
  }
}
.tp-banner-container .tp-banner > ul li .custom-cap.cap-3 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.7);
}
.tp-banner-container .tp-banner > ul li .custom-cap.cap-4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.7);
}
.tp-banner-container .tp-banner > ul li .custom-cap span.artist {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.tp-banner-container .tp-banner > ul li .custom-button {
  text-decoration: none;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 1em;
  line-height: 1em;
  padding: 1.2em 3em 1.2em 1.5em;
  background: #121212;
  color: #fff;
}
.tp-banner-container .tp-banner > ul li .custom-button i {
  font-size: 1.2em;
  color: #fff;
  line-height: 1em;
  padding-right: .8em;
}
@media screen and (max-width: 767px) {
  .tp-banner-container .tp-banner > ul li .custom-button.xs {
    font-size: 32px;
    line-height: 32px;
    padding: 15px 30px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 450px) {
  .tp-banner-container .tp-banner > ul li .custom-button.xs {
    font-size: 48px;
    line-height: 50px;
    padding: 15px 30px;
    margin-top: 50px;
  }
}
.tp-banner-container .tp-banner > ul li .custom-button.colored {
  background: #e10052 !important;
}
.tp-banner-container .tp-banner > ul li .custom-button:hover {
  background: #363636;
}
.tp-banner-container .tp-banner > ul li .custom-button:hover.colored {
  background: #cd004b !important;
}
.tp-banner-container .tp-banner > ul li img {
  width: 100%;
  height: auto !important;
}
.tp-banner-container .tparrows {
  width: 100px !important;
  height: 100px !important;
  background: #121212 !important;
  color: #fff;
  position: absolute !important;
  top: 50% !important;
  margin-top: -50px !important;
  border-radius: 50%;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.tp-banner-container .tparrows:before {
  font-family: 'entypo';
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  line-height: 100px;
  text-align: center;
  width: 50px;
  font-size: 30px;
}
.tp-banner-container .tparrows:hover {
  background: #e10052 !important;
  color: #fff;
}
.tp-banner-container .tparrows.tp-leftarrow {
  left: -55px !important;
}
.tp-banner-container .tparrows.tp-leftarrow:before {
  content: '\e874' !important;
  margin-left: 50px;
}
.tp-banner-container .tparrows.tp-rightarrow {
  right: -55px !important;
}
.tp-banner-container .tparrows.tp-rightarrow:before {
  content: '\e875' !important;
}
.tp-banner-container .tp-bannertimer {
  visibility: hidden !important;
}
/*--------------------------------------------------------------
3.0 - jPlayer Home (top-section)
--------------------------------------------------------------*/
.player-container {
  border: 8px solid #101010;
  background: #1f1f1f;
}
@media screen and (max-width: 991px) {
  .player-container {
    margin-top: 30px;
  }
}
.player-container .player {
  background: rgba(44, 44, 44, 0);
  width: 100%;
  display: block;
  position: relative;
  border: 1px solid #292929;
}
.player-container .player .jp-gui {
  position: relative;
  width: 100%;
  display: block;
  height: 46px;
}
.player-container .player .jp-gui ul.jp-controls {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  float: left;
  padding-left: 15px;
}
.player-container .player .jp-gui ul.jp-controls li {
  display: block;
  float: left;
}
.player-container .player .jp-gui ul.jp-controls li a {
  box-sizing: content-box;
  text-decoration: none;
  outline: none;
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid #626262;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 12px;
  text-align: center;
}
.player-container .player .jp-gui ul.jp-controls li a i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #626262;
  font-size: 10px;
  line-height: 18px;
  width: 18px;
  height: 18px;
  text-align: center;
  margin: 0;
}
.player-container .player .jp-gui ul.jp-controls li a.jp-play i {
  margin-left: 1px;
}
.player-container .player .jp-gui ul.jp-controls li a:hover {
  border-color: #aeaeae;
}
.player-container .player .jp-gui ul.jp-controls li a:hover.jp-mute,
.player-container .player .jp-gui ul.jp-controls li a:hover.jp-unmute {
  border-color: rgba(255, 255, 255, 0);
}
.player-container .player .jp-gui ul.jp-controls li a:hover i {
  color: #aeaeae;
}
.player-container .player .jp-gui span.separator {
  display: block;
  width: 1px;
  height: 100%;
  background: #292929;
  float: left;
}
.player-container .player .jp-gui .sound {
  padding-top: 13px;
}
.player-container .player .jp-gui .sound .jp-mute,
.player-container .player .jp-gui .sound .jp-unmute {
  text-decoration: none;
  outline: none;
  margin-left: 10px;
}
.player-container .player .jp-gui .sound .jp-mute i,
.player-container .player .jp-gui .sound .jp-unmute i {
  color: #626262;
  font-size: 13px;
  line-height: 14px;
}
.player-container .player .jp-gui .sound .jp-mute:hover i,
.player-container .player .jp-gui .sound .jp-unmute:hover i {
  color: #aeaeae;
}
.player-container .player .jp-gui .jp-progress {
  position: relative;
  float: left;
  width: 180px;
  height: 7px;
  margin-top: 20px;
  margin-left: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .player-container .player .jp-gui .jp-progress {
    width: 80px !important;
  }
}
.player-container .player .jp-gui .jp-progress .jp-seek-bar {
  width: 0;
  height: 100%;
  cursor: pointer;
  background: #525252;
}
.player-container .player .jp-gui .jp-progress .jp-seek-bar .jp-play-bar {
  width: 0;
  height: 100%;
  background: #e10052;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .player-container .player .jp-gui .jp-progress {
    width: 100px;
  }
}
.player-container .player .jp-playlist ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.player-container .player .jp-playlist ul li .jp-playlist-item {
  text-decoration: none;
  outline: none;
  display: block;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 41px;
  padding: 0 20px;
  background: #1f1f1f;
  color: #fff;
  border-top: 1px solid #2c2c2c;
}
.player-container .player .jp-playlist ul li .jp-playlist-item:before {
  font-family: "flaticon";
  content: '\e003';
  display: inline-block;
  font-size: 14px;
  font-weight: 200;
  text-align: center;
  color: #626262;
  line-height: 41px;
  padding: 0 20px 0 0;
  margin-right: 20px;
  border-right: 1px solid #292929;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.player-container .player .jp-playlist ul li .jp-playlist-item:hover:before {
  color: #e10052;
}
.player-container .player .jp-playlist ul li.jp-playlist-current .jp-playlist-item {
  color: #e10052;
}
.player-container .player .jp-playlist ul li.jp-playlist-current .jp-playlist-item:before {
  color: #e10052;
}
/*--------------------------------------------------------------
4.0 - Albums With Sidebar
--------------------------------------------------------------*/
.albums-with-sidebar {
  display: block;
  width: 100%;
  background: #101010;
  padding: 45px 20px;
}
@media screen and (min-width: 1200px) {
  .albums-with-sidebar {
    padding: 45px 30px;
  }
}
@media screen and (max-width: 991px) {
  .albums-with-sidebar {
    padding: 45px 15px;
  }
}
@media screen and (max-width: 767px) {
  .albums-with-sidebar {
    padding: 45px 10px;
  }
}
.albums-with-sidebar .album-content .album-cover {
  display: block;
  position: relative;
  float: left;
  width: 46%;
  padding-right: 30px;
}
.albums-with-sidebar .album-content .album-cover a {
  text-decoration: none;
  outline: none;
  display: block;
  position: relative;
  background: #1f1f1f;
  overflow: hidden;
  padding: 15px 15px 15px 25%;
}
.albums-with-sidebar .album-content .album-cover a:hover i {
  background: #e10052;
  color: #fff;
}
.albums-with-sidebar .album-content .album-cover a i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: #2c2c2c;
  color: #626262;
  font-size: 24px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.albums-with-sidebar .album-content .album-cover a i:before {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
}
.albums-with-sidebar .album-content .album-cover a h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  margin: 0;
}
.albums-with-sidebar .album-content .album-cover a p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  color: #626262;
  margin: 5px 0 0;
  text-transform: none;
}
.albums-with-sidebar .album-content .info {
  display: block;
  width: 54%;
  float: left;
}
.albums-with-sidebar .album-content .info h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  margin: 0;
}
.albums-with-sidebar .album-content .info > ul {
  list-style: none;
  list-style-type: none;
  margin: 15px 0 0;
  padding: 0 0 0 0;
  display: table;
  clear: right;
}
.albums-with-sidebar .album-content .info > ul li {
  display: block;
  float: left;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  padding-right: 10px;
}
.albums-with-sidebar .album-content .info > ul li i {
  font-size: 14px;
  line-height: 14px;
  color: #7b7b7b;
  margin-right: 7px;
}
.albums-with-sidebar .album-content .info > ul li i:before,
.albums-with-sidebar .album-content .info > ul li i:after {
  margin: 0;
}
.albums-with-sidebar .album-content .info p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #c2c2c2;
  margin: 20px 0 0;
}
.albums-with-sidebar .album-content .info .player-container {
  display: table;
  width: 100%;
  border: none;
  background: #1f1f1f;
  margin-top: 20px;
}
.albums-with-sidebar .album-content .info .player-container .jp-progress {
  width: 180px !important;
  float: left;
}
@media screen and (max-width: 767px) {
  .albums-with-sidebar .album-content .info .player-container .jp-progress {
    width: 80px !important;
  }
}
@media screen and (max-width: 991px) {
  .albums-with-sidebar .album-content .info .player-container {
    margin-top: 20px;
  }
}
.albums-with-sidebar .album-content .info .player-container .player {
  background: #1f1f1f;
  width: 100%;
  display: table;
  position: relative;
  border: 1px solid #292929;
}
.albums-with-sidebar .album-content .info .player-container .player .jp-guy ul.jp-controls {
  padding-left: 5px;
}
.albums-with-sidebar .album-content .info .player-container .player .jp-guy ul.jp-controls li a {
  margin-right: 5px;
}
.albums-with-sidebar .album-content .info .player-container .player .jp-playlist {
  width: 100%;
}
.albums-with-sidebar .album-content .info .player-container .player .jp-playlist ul li {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .albums-with-sidebar .album-content .album-cover {
    width: 100%;
    max-width: 360px;
    padding-right: 0;
    margin-bottom: 30px;
    float: none;
  }
  .albums-with-sidebar .album-content .info {
    float: none;
    width: 100%;
  }
}
.albums-with-sidebar .line-block {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  height: 90px;
}
.albums-with-sidebar .line-block .line {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 45px;
  background: #2c2c2c;
}
.albums-with-sidebar .article-pagination ul {
  display: table;
  width: 100%;
  padding: 25px 0;
  margin: 65px 0 0;
  list-style: none;
  list-style-type: none;
  border-top: 1px solid #464646;
  border-bottom: 1px solid #464646;
}
.albums-with-sidebar .article-pagination ul li {
  float: left;
  margin-right: 10px;
  margin-top: 0;
}
.albums-with-sidebar .article-pagination ul li a {
  display: block;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #e10052;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.albums-with-sidebar .article-pagination ul li a.selected {
  background: #464646;
  color: #fff;
}
.albums-with-sidebar .article-pagination ul li a:hover {
  background: #464646;
  color: #fff;
}
.albums-with-sidebar .article-pagination ul li:last-child {
  float: right;
  margin-right: 0;
}
.albums-with-sidebar .article-pagination ul li:last-child a {
  width: auto;
  background: none;
}
.albums-with-sidebar .article-pagination ul li:last-child a i {
  color: #fff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.albums-with-sidebar .article-pagination ul li:last-child a:hover {
  background: none;
  color: #e10052;
}
.albums-with-sidebar .article-pagination ul li:last-child a:hover i {
  color: #e10052;
}
/*--------------------------------------------------------------
4.1 - Inside Album
--------------------------------------------------------------*/
.inside-album .album {
  display: block;
  position: relative;
  max-width: 360px;
}
.inside-album .album a {
  text-decoration: none;
  text-transform: uppercase;
  outline: none;
  display: block;
  position: relative;
  background: #1f1f1f;
  overflow: hidden;
  padding: 15px 15px 15px 25%;
}
.inside-album .album a:hover i {
  background: #e10052;
  color: #fff;
}
.inside-album .album a i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: #2c2c2c;
  color: #626262;
  font-size: 24px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.inside-album .album a i:before {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
}
.inside-album .album a h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  margin: 0;
}
.inside-album .album a p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  color: #626262;
  margin: 5px 0 0;
  text-transform: none;
}
.inside-album ul.details {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.inside-album ul.details li {
  display: block;
  margin: 10px 0 0;
  padding: 10px 0;
  border-bottom: 1px solid #292929;
}
.inside-album ul.details li span {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #fff;
  text-transform: uppercase;
}
.inside-album ul.details li span.colored {
  font-family: 'Lato';
  font-weight: 700;
  color: #e10052;
}
.inside-album .player-container {
  margin-top: 0 !important;
  display: table;
  width: 100%;
  border: none;
  background: #1f1f1f;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .inside-album .player-container {
    margin-top: 30px !important;
  }
}
.inside-album .player-container .jp-progress {
  width: 280px !important;
  float: left;
}
@media screen and (max-width: 767px) {
  .inside-album .player-container .jp-progress {
    width: 80px !important;
  }
}
@media screen and (max-width: 991px) {
  .inside-album .player-container {
    margin-top: 20px;
  }
}
.inside-album .player-container .player {
  background: #1f1f1f;
  width: 100%;
  display: table;
  position: relative;
  border: 1px solid #292929;
}
.inside-album .player-container .player .jp-guy ul.jp-controls {
  padding-left: 5px;
}
.inside-album .player-container .player .jp-guy ul.jp-controls li a {
  margin-right: 5px;
}
.inside-album .player-container .player .jp-playlist {
  width: 100%;
}
.inside-album .player-container .player .jp-playlist ul li {
  width: 100%;
}
.inside-album h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  margin: 30px 0 0;
}
.inside-album p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #c2c2c2;
  margin: 20px 0 0;
}
.inside-album a.buy {
  display: table;
  text-decoration: none;
  outline: none;
  text-transform: uppercase;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 14px;
  color: #fff;
  padding: 13px 50px;
  background: #e10052;
  margin-top: 30px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.inside-album a.buy:hover {
  background: #2c2c2c;
}
.inside-album .video-container-embeded {
  margin-top: 30px;
}
.inside-album .video-container-embeded iframe {
  border: none !important;
}
.inside-album .simillar-albums {
  padding-top: 50px;
}
.inside-album .simillar-albums h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 19px;
  line-height: 20px;
  color: #fff;
  margin: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #2c2c2c;
}
.inside-album .simillar-albums .albums {
  display: block;
  margin: -5px;
  padding-top: 45px;
}
.inside-album .simillar-albums .albums .album {
  width: 25%;
  padding: 5px;
  float: left;
}
@media screen and (max-width: 767px) {
  .inside-album .simillar-albums .albums .album {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .inside-album .simillar-albums .albums .album {
    width: 100%;
    max-width: 360px;
    float: none;
  }
}
/*--------------------------------------------------------------
5.1 - Latest Events Home
--------------------------------------------------------------*/
.latest-events {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border: 8px solid #101010;
  background: #1f1f1f;
  clear: both;
}
@media screen and (max-width: 767px) {
  .latest-events {
    margin-top: 30px;
  }
}
.latest-events li {
  border-top: 1px solid #272727;
  height: 69px;
  clear: both;
}
.latest-events li:last-child {
  border-bottom: 1px solid #272727;
  height: 70px;
}
.latest-events li a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}
.latest-events li a:hover .location {
  background: #ae003f;
}
.latest-events li a .location {
  display: block;
  width: 60px;
  height: 68px;
  text-align: center;
  background: #e10052;
  float: left;
  margin-right: 20px;
}
.latest-events li a .location i {
  font-size: 26px;
  line-height: 68px;
  color: #fff;
}
.latest-events li a h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14.5px;
  line-height: 16px;
  color: #fff;
  margin: 0;
  padding-top: 15px;
}
.latest-events li a p {
  margin: 8px 0 0;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11.5px;
  line-height: 12px;
  color: #626262;
  text-transform: uppercase;
}
/*--------------------------------------------------------------
5.2 - Events gallery Sidebar
--------------------------------------------------------------*/
.events-gallery-sidebar {
  display: block;
  width: 100%;
  background: #101010;
  padding: 45px 20px;
}
@media screen and (min-width: 1200px) {
  .events-gallery-sidebar {
    padding: 45px 30px;
  }
}
@media screen and (max-width: 991px) {
  .events-gallery-sidebar {
    padding: 50px 15px;
  }
}
@media screen and (max-width: 767px) {
  .events-gallery-sidebar {
    padding: 50px 10px;
  }
}
.events-gallery-sidebar .event {
  display: block;
  position: relative;
  clear: both;
}
.events-gallery-sidebar .event .event-preview {
  display: block;
  position: relative;
  float: left;
  max-width: 285px;
  margin-right: 30px;
}
@media screen and (max-width: 991px) {
  .events-gallery-sidebar .event .event-preview {
    max-width: 360px;
    margin-right: 0;
    margin-bottom: 30px;
    float: none;
  }
}
.events-gallery-sidebar .event .event-preview a {
  text-decoration: none;
  outline: none;
  display: block;
  position: relative;
  background: #1f1f1f;
  overflow: hidden;
  padding: 15px 15px 15px 25%;
}
.events-gallery-sidebar .event .event-preview a:hover i {
  background: #626262;
}
.events-gallery-sidebar .event .event-preview a i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: #e10052;
  color: #fff;
  font-size: 24px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.events-gallery-sidebar .event .event-preview a i:before {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
}
.events-gallery-sidebar .event .event-preview a h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  margin: 0;
}
.events-gallery-sidebar .event .event-preview a p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  color: #626262;
  margin: 5px 0 0;
}
.events-gallery-sidebar .event .info {
  display: block;
}
.events-gallery-sidebar .event .info h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  margin: 0;
}
.events-gallery-sidebar .event .info ul {
  list-style: none;
  list-style-type: none;
  margin: 15px 0 0;
  padding: 0 0 0 0;
  display: table;
  clear: right;
}
.events-gallery-sidebar .event .info ul li {
  display: block;
  float: left;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  padding-right: 10px;
}
.events-gallery-sidebar .event .info ul li i {
  font-size: 14px;
  line-height: 14px;
  color: #7b7b7b;
  margin-right: 7px;
}
.events-gallery-sidebar .event .info ul li i:before,
.events-gallery-sidebar .event .info ul li i:after {
  margin: 0;
}
.events-gallery-sidebar .event .info p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #c2c2c2;
  margin: 20px 0 0;
}
.events-gallery-sidebar .event .info a {
  display: inline-block;
  text-decoration: none;
  outline: none;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  text-transform: uppercase;
  background: #e10052;
  padding: 9px 25px;
  margin-right: 10px;
  margin-top: 20px;
  border-bottom: 2px solid #ae003f;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.events-gallery-sidebar .event .info a.details {
  background: #272727;
  border-color: #1a1a1a;
}
.events-gallery-sidebar .event .info a:hover {
  background: #ae003f;
  border-color: #940036;
}
.events-gallery-sidebar .event .info a:hover.details {
  background: #1a1a1a;
  border-color: #121212;
}
.events-gallery-sidebar .line-block {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  height: 90px;
}
.events-gallery-sidebar .line-block .line {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 45px;
  background: #2c2c2c;
}
.events-gallery-sidebar .article-pagination {
  margin-top: 65px;
}
.events-gallery-sidebar .article-pagination ul {
  display: block;
  padding: 25px 0;
  list-style: none;
  list-style-type: none;
  border-top: 1px solid #464646;
  border-bottom: 1px solid #464646;
}
.events-gallery-sidebar .article-pagination ul li {
  float: left;
  margin-right: 10px;
  margin-top: 0;
}
.events-gallery-sidebar .article-pagination ul li a {
  display: block;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #e10052;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.events-gallery-sidebar .article-pagination ul li a.selected {
  background: #464646;
  color: #fff;
}
.events-gallery-sidebar .article-pagination ul li a:hover {
  background: #464646;
  color: #fff;
}
.events-gallery-sidebar .article-pagination ul li:last-child {
  float: right;
  margin-right: 0;
}
.events-gallery-sidebar .article-pagination ul li:last-child a {
  width: auto;
  background: none;
}
.events-gallery-sidebar .article-pagination ul li:last-child a i {
  color: #fff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.events-gallery-sidebar .article-pagination ul li:last-child a:hover {
  background: none;
  color: #e10052;
}
.events-gallery-sidebar .article-pagination ul li:last-child a:hover i {
  color: #e10052;
}
/*--------------------------------------------------------------
5.3 - Events Categories
--------------------------------------------------------------*/
.categories-event > ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  float: right;
}
@media screen and (max-width: 767px) {
  .categories-event > ul {
    float: none;
    text-align: center;
  }
  .categories-event > ul li {
    margin: 10px auto 0;
  }
}
.categories-event > ul li {
  display: inline-block;
  height: 28px;
}
.categories-event > ul li a {
  display: block;
  height: 28px;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 28px;
  color: #fff;
  padding: 0 20px;
  background: #464646;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.categories-event > ul li a.selected {
  background: #e10052;
  color: #fff;
}
.categories-event > ul li a:hover {
  background: #e10052;
  color: #fff;
}
/*--------------------------------------------------------------
5.4 - Event List Sidebar
--------------------------------------------------------------*/
.events-container {
  padding-bottom: 30px;
}
.events-container ul {
  display: block;
  width: 100%;
  list-style: none;
  list-style-type: none;
  margin: 40px 0;
  padding: 0;
  overflow: visible;
}
.events-container ul li {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #1f1f1f;
  border-top: 1px solid #2c2c2c;
  margin-top: 2px;
  padding-left: 80px;
}
.events-container ul li i {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  background: #e10052;
  color: #fff;
  font-size: 24px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.events-container ul li i:before {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
}
.events-container ul li .info {
  display: block;
  float: left;
  padding: 18px 0;
}
.events-container ul li .info span.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  display: block;
  clear: right;
}
.events-container ul li .info span.location {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #626262;
  text-transform: uppercase;
}
.events-container ul li a {
  display: block;
  float: right;
  width: 130px;
  height: 35px;
  text-decoration: none;
  text-align: center;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12px;
  line-height: 35px;
  text-transform: uppercase;
  color: #fff;
  background: #e10052;
  border-bottom: 2px solid #ae003f;
  margin: 20px 30px 0 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.events-container ul li a.sold {
  background: #272727;
  border-color: #181818;
}
.events-container ul li a:hover {
  background: #ae003f;
  border-color: #940036;
}
.events-container ul li a:hover.sold {
  background: #2c2c2c;
  border-color: #181818;
}
@media screen and (max-width: 550px) {
  .events-container ul li .info {
    float: none;
    clear: right;
    padding: 5px 0;
  }
  .events-container ul li a {
    float: none;
    margin: 0 0 8px;
  }
}
.events-container {
  display: block;
  width: 100%;
  background: #101010;
  padding: 45px 20px;
}
@media screen and (min-width: 1200px) {
  .events-container {
    padding: 45px 30px;
  }
}
@media screen and (max-width: 991px) {
  .events-container {
    padding: 45px 15px;
  }
}
@media screen and (max-width: 767px) {
  .events-container {
    padding: 45px 10px;
  }
}
.events-container ul {
  margin: 0;
}
.events-container ul li {
  margin-top: 20px;
}
.events-container ul li:first-child {
  margin-top: 0;
}
/*--------------------------------------------------------------
5.5 - Inside Event
--------------------------------------------------------------*/
.inside-event .event {
  display: block;
  position: relative;
  width: 100%;
  max-width: 360px;
}
.inside-event .event a {
  text-decoration: none;
  text-transform: uppercase;
  outline: none;
  display: block;
  position: relative;
  background: #1f1f1f;
  overflow: hidden;
  padding: 15px 15px 15px 25%;
}
.inside-event .event a:hover i {
  background: #626262;
}
.inside-event .event a i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: #e10052;
  color: #fff;
  font-size: 24px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.inside-event .event a i:before {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
}
.inside-event .event a h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  margin: 0;
}
.inside-event .event a p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  color: #626262;
  margin: 5px 0 0;
}
.inside-event .left-area .next-event .countdown ul {
  display: block;
  padding: 30px 0 0 0;
  margin: 0 -5px;
  list-style: none;
  list-style-type: none;
}
.inside-event .left-area .next-event .countdown ul li {
  display: block;
  float: left;
  width: 25%;
  padding: 10px 5px 0;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .inside-event .left-area .next-event .countdown ul li {
    width: 50%;
  }
}
@media screen and (max-width: 350px) {
  .inside-event .left-area .next-event .countdown ul li {
    width: 50%;
  }
}
.inside-event .left-area .next-event .countdown ul li span {
  display: block;
  width: 100%;
  border: 1px solid #2c2c2c;
  font-family: 'Lato';
  font-weight: 300;
  font-size: 30px;
  line-height: 70px;
  color: #e10052;
  text-align: center;
  overflow: hidden;
}
.inside-event .left-area .next-event .countdown ul li p {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 10px;
  line-height: 20px;
  background: #181818;
  border: 1px solid #2c2c2c;
  border-top: none;
  text-transform: uppercase;
  overflow: hidden;
}
.inside-event .left-area .next-event .info {
  padding-top: 20px;
}
.inside-event .left-area .next-event .info .text {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 50%;
  float: left;
}
.inside-event .left-area .next-event .info .text li {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12.5px;
  line-height: 14px;
  color: #fff;
  padding-top: 15px;
}
.inside-event .left-area .next-event .info .text li i {
  color: #e10052;
  font-size: 12.5px;
  line-height: 14px;
  margin-right: 5px;
}
.inside-event .left-area .next-event .info .text li i:before {
  margin: 0;
}
.inside-event .left-area .next-event .info .buttons {
  display: block;
  float: left;
  width: 50%;
  padding-left: 15px;
  padding-top: 5px;
}
.inside-event .left-area .next-event .info .buttons a {
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  width: 100%;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 11px;
  line-height: 14px;
  padding: 9px 0;
  margin-top: 10px;
  text-align: center;
  color: #fff;
  background: #e10052;
  border-bottom: 2px solid #940036;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.inside-event .left-area .next-event .info .buttons a.details {
  background: #2c2c2c;
  border-bottom: 2px solid #1f1f1f;
}
.inside-event .left-area .next-event .info .buttons a:hover {
  background: #393939;
  border-bottom: 2px solid #1f1f1f;
}
.inside-event .left-area .next-event .info .buttons a:hover.details {
  background: #393939;
  border-bottom: 2px solid #1f1f1f;
}
@media screen and (max-width: 767px) {
  .inside-event .right-area {
    width: 100%;
    margin-top: 45px;
  }
}
.inside-event .right-area .googleMap {
  display: block;
  width: 100%;
  position: relative;
  height: 325px;
}
.inside-event .right-area .googleMap #googleMap {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.inside-event .right-area h5 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  margin: 45px 0 0;
}
.inside-event .right-area p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #c2c2c2;
  margin: 20px 0 0;
}
.inside-event .right-area .video-container-embeded {
  margin-top: 30px;
}
.inside-event .right-area .video-container-embeded iframe {
  border: none !important;
}
.inside-event .simillar-events {
  padding-top: 50px;
}
.inside-event .simillar-events h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 19px;
  line-height: 20px;
  color: #fff;
  margin: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #2c2c2c;
}
.inside-event .simillar-events .events {
  display: block;
  margin: -5px;
  padding-top: 45px;
}
.inside-event .simillar-events .events .event {
  width: 25%;
  padding: 5px;
  float: left;
}
@media screen and (max-width: 767px) {
  .inside-event .simillar-events .events .event {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .inside-event .simillar-events .events .event {
    width: 100%;
    max-width: 360px;
    float: none;
  }
}
/*--------------------------------------------------------------
6.0 - Top Section Home
--------------------------------------------------------------*/
.top-section {
  position: relative;
}
.top-section .slideUp {
  padding-top: 70px;
}
.top-section .album {
  border: 8px solid #101010;
  background: #1f1f1f;
  max-width: 361px;
  max-height: 362px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .top-section .album img {
    height: 286px;
    width: auto;
  }
}
.top-section .album .info {
  display: block;
  height: 60px;
  width: 100%;
}
.top-section .album .info .buy {
  display: block;
  width: 60px;
  height: 60px;
  background: #2c2c2c;
  float: left;
  text-align: center;
  margin-right: 20px;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.top-section .album .info .buy:hover {
  background: #e10052;
}
.top-section .album .info .buy:hover i {
  color: #fff;
}
.top-section .album .info .buy i {
  font-size: 26px;
  line-height: 60px;
  color: #626262;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.top-section .album .info .buy i:before,
.top-section .album .info .buy i:after {
  margin: 0;
}
.top-section .album .info h5 {
  margin: 0;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  padding-top: 12px;
}
.top-section .album .info p {
  margin: 5px 0 0;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11.5px;
  color: #626262;
  line-height: 12px;
}
.top-section .button-section {
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -13px;
  width: 26px;
  height: 26px;
  background: #101010;
  text-align: center;
  cursor: pointer;
}
.top-section .button-section:hover i {
  color: #fff;
}
.top-section .button-section.rotated {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  bottom: -26px;
}
.top-section .button-section i {
  font-size: 12px;
  line-height: 26px;
  color: #e10052;
}
/*--------------------------------------------------------------
7.0 - Blog content
--------------------------------------------------------------*/
.blog-content {
  display: block;
  width: 100%;
  background: #101010;
  padding: 45px 20px;
}
@media screen and (min-width: 1200px) {
  .blog-content {
    padding: 45px 30px;
  }
}
@media screen and (max-width: 991px) {
  .blog-content {
    padding: 45px 15px;
  }
}
@media screen and (max-width: 767px) {
  .blog-content {
    padding: 45px 10px;
  }
}
.blog-content .article {
  display: block;
  width: 100%;
  padding-bottom: 75px;
  margin-bottom: 75px;
  border-bottom: 1px solid #2c2c2c;
}
.blog-content .article.last {
  margin-bottom: 0;
  border-bottom: none;
}
.blog-content .article .blog-img {
  position: relative;
  float: left;
  margin-right: 20px;
}
.blog-content .article .blog-img i {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  background: #e10052;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #fff;
}
.blog-content .article .article-content .heading {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog-content .article .article-content .heading:hover {
  color: #e10052;
}
.blog-content .article .article-content ul.article-info {
  list-style: none;
  list-style-type: none;
  padding: 20px 0 0 0;
  margin: 0;
}
.blog-content .article .article-content ul.article-info li {
  display: inline-block;
}
.blog-content .article .article-content ul.article-info li a {
  display: block;
  text-decoration: none;
  outline: none;
  color: #c2c2c2;
  font-size: 12px;
  padding-right: 15px;
  padding-left: 10px;
  border-right: 1px solid #464646;
  font-family: 'Lato';
  font-weight: 400;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog-content .article .article-content ul.article-info li a i {
  color: #505050;
}
.blog-content .article .article-content ul.article-info li a:hover {
  color: #e10052;
}
.blog-content .article .article-content ul.article-info li:first-child a {
  padding-left: 0;
}
.blog-content .article .article-content ul.article-info li:last-child a {
  border-right: none;
}
@media screen and (max-width: 991px) {
  .blog-content .article .article-content ul.article-info li {
    display: block;
  }
  .blog-content .article .article-content ul.article-info li a {
    padding-left: 0;
    border: none;
  }
}
.blog-content .article .article-content p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #c2c2c2;
  margin: 20px 0 25px;
}
.blog-content .article .article-content .continue-reading {
  text-decoration: none;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #e10052;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog-content .article .article-content .continue-reading:hover {
  color: #acacac;
}
.blog-content .article-pagination ul {
  display: block;
  padding: 25px 0;
  list-style: none;
  list-style-type: none;
  border-top: 1px solid #464646;
  border-bottom: 1px solid #464646;
}
.blog-content .article-pagination ul li {
  float: left;
  margin-right: 10px;
  margin-top: 0;
}
.blog-content .article-pagination ul li a {
  display: block;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #e10052;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog-content .article-pagination ul li a.selected {
  background: #464646;
  color: #fff;
}
.blog-content .article-pagination ul li a:hover {
  background: #464646;
  color: #fff;
}
.blog-content .article-pagination ul li:last-child {
  float: right;
  margin-right: 0;
}
.blog-content .article-pagination ul li:last-child a {
  width: auto;
  background: none;
}
.blog-content .article-pagination ul li:last-child a i {
  color: #fff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog-content .article-pagination ul li:last-child a:hover {
  background: none;
  color: #e10052;
}
.blog-content .article-pagination ul li:last-child a:hover i {
  color: #e10052;
}
/*--------------------------------------------------------------
7.1 - Sidebar
--------------------------------------------------------------*/
.sidebar {
  display: block;
  width: 100%;
  background: #101010;
  padding: 45px 20px;
}
@media screen and (min-width: 1200px) {
  .sidebar {
    padding: 45px 30px;
  }
}
@media screen and (max-width: 991px) {
  .sidebar {
    padding: 45px 15px;
  }
}
@media screen and (max-width: 767px) {
  .sidebar {
    margin-top: 50px;
    padding: 45px 10px;
  }
}
.sidebar .search-widget {
  position: relative;
  height: 46px;
  width: 100%;
  overflow: hidden;
  background: #1d1d1d;
}
.sidebar .search-widget form.search {
  position: relative;
  width: 100%;
  border-radius: 0;
  height: 46px;
  overflow: hidden;
  padding-right: 46px;
}
.sidebar .search-widget form.search input[type="text"] {
  position: relative;
  border: none;
  background: none;
  width: 100%;
  color: #fff;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  padding: 12px 5px 12px 10px;
}
.sidebar .search-widget form.search input[type="text"]:focus {
  outline: none;
}
.sidebar .search-widget form.search button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  width: 46px;
  height: 46px;
  padding: 0;
  overflow: hidden;
  background: #e10052;
}
.sidebar .search-widget form.search button[type="submit"] i {
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  line-height: 24px;
  margin: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.sidebar .search-widget form.search button[type="submit"]:hover i {
  color: #2c2c2c;
  border-color: #2c2c2c;
}
.sidebar .search-widget form.search button[type="submit"]:focus {
  outline: none;
}
.sidebar .heading {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  margin-top: 75px;
  display: inline-block;
}
.sidebar .line-sep {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  background: #2c2c2c;
}
.sidebar .line-sep span.line {
  display: block;
  width: 33%;
  height: 1px;
  background: #e10052;
}
.sidebar .popular-items ul.icons {
  display: inline-block;
  position: relative;
  list-style: none;
  list-style-type: none;
  margin: 75px 0 0;
  padding: 0;
}
.sidebar .popular-items ul.icons li {
  float: left;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: #e10052;
  text-align: center;
  margin-left: 8px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.sidebar .popular-items ul.icons li a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  outline: none;
}
.sidebar .popular-items ul.icons li:hover {
  background: #2c2c2c;
}
.sidebar .popular-items ul.icons li:first-child {
  background: none;
  width: auto;
  margin-left: 0;
  margin-right: 10px;
}
@media screen and (max-width: 1200px) {
  .sidebar .popular-items ul.icons li:first-child {
    float: none;
  }
}
.sidebar .popular-items ul.icons li:first-child .heading {
  margin: 0;
  line-height: 40px;
}
@media screen and (max-width: 1200px) {
  .sidebar .popular-items ul.icons li:nth-child(2) {
    margin-left: 0;
  }
}
.sidebar .tab-content {
  padding-top: 10px;
  clear: both;
}
.sidebar .tab-content .tab-pane a {
  display: block;
  text-decoration: none;
  outline: none;
  padding-top: 30px;
  clear: both;
}
.sidebar .tab-content .tab-pane a:hover h5 {
  color: #e10052;
}
.sidebar .tab-content .tab-pane a img {
  margin-right: 15px;
  float: left;
}
.sidebar .tab-content .tab-pane a h5 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 13px;
  margin: 0;
  color: #fff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.sidebar .tab-content .tab-pane a p {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12.5px;
  line-height: 13px;
  color: #fff;
  margin: 10px 0 5px;
}
.sidebar .tab-content .tab-pane a .stars i {
  font-size: 13px;
  line-height: 13px;
  text-decoration: none;
  color: #e10052;
}
.sidebar .tab-content .tab-pane a .stars i:before,
.sidebar .tab-content .tab-pane a .stars i:after {
  margin: 0;
}
.sidebar .next-event .countdown ul {
  display: block;
  padding: 30px 0 0 0;
  margin: 0 -5px;
  list-style: none;
  list-style-type: none;
}
.sidebar .next-event .countdown ul li {
  display: block;
  float: left;
  width: 25%;
  padding: 10px 5px 0;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar .next-event .countdown ul li {
    width: 50%;
  }
}
@media screen and (max-width: 350px) {
  .sidebar .next-event .countdown ul li {
    width: 50%;
  }
}
.sidebar .next-event .countdown ul li span {
  display: block;
  width: 100%;
  border: 1px solid #2c2c2c;
  font-family: 'Lato';
  font-weight: 300;
  font-size: 30px;
  line-height: 70px;
  color: #e10052;
  text-align: center;
  overflow: hidden;
}
.sidebar .next-event .countdown ul li p {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 10px;
  line-height: 20px;
  background: #181818;
  border: 1px solid #2c2c2c;
  border-top: none;
  text-transform: uppercase;
  overflow: hidden;
}
.sidebar .next-event .info {
  padding-top: 20px;
}
.sidebar .next-event .info .text {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 50%;
  float: left;
}
.sidebar .next-event .info .text li {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12.5px;
  line-height: 14px;
  color: #fff;
  padding-top: 15px;
}
.sidebar .next-event .info .text li i {
  color: #e10052;
  font-size: 12.5px;
  line-height: 14px;
  margin-right: 5px;
}
.sidebar .next-event .info .text li i:before {
  margin: 0;
}
.sidebar .next-event .info .buttons {
  display: block;
  float: left;
  width: 50%;
  padding-left: 15px;
  padding-top: 5px;
}
.sidebar .next-event .info .buttons a {
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  width: 100%;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 11px;
  line-height: 14px;
  padding: 9px 0;
  margin-top: 10px;
  text-align: center;
  color: #fff;
  background: #e10052;
  border-bottom: 2px solid #940036;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.sidebar .next-event .info .buttons a.details {
  background: #2c2c2c;
  border-bottom: 2px solid #1f1f1f;
}
.sidebar .next-event .info .buttons a:hover {
  background: #393939;
  border-bottom: 2px solid #1f1f1f;
}
.sidebar .next-event .info .buttons a:hover.details {
  background: #393939;
  border-bottom: 2px solid #1f1f1f;
}
@media screen and (max-width: 1199px) {
  .sidebar .next-event .info .text {
    width: 100%;
  }
  .sidebar .next-event .info .buttons {
    width: 100%;
    padding-left: 0;
    max-width: 260px;
  }
}
.sidebar .gallery-photos .gallery {
  list-style: none;
  list-style-type: none;
  padding: 0;
  padding-top: 40px;
  margin: 0 -5px;
}
.sidebar .gallery-photos .gallery li {
  float: left;
  padding: 5px;
}
.sidebar .gallery-photos .gallery li a {
  display: block;
  border: 1px solid rgba(225, 0, 82, 0);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.sidebar .gallery-photos .gallery li a:hover {
  border: 1px solid #e10052;
}
.sidebar .recent-articles .articles {
  padding-top: 25px;
}
.sidebar .recent-articles .articles a {
  display: block;
  padding-top: 20px;
  text-decoration: none;
  outline: none;
  clear: both;
}
.sidebar .recent-articles .articles a:hover h5 {
  color: #e10052;
}
.sidebar .recent-articles .articles a img {
  float: left;
  margin-right: 20px;
}
.sidebar .recent-articles .articles a h5 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 14.5px;
  line-height: 16px;
  color: #fff;
  margin: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.sidebar .recent-articles .articles a p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13.33px;
  line-height: 16px;
  color: #c2c2c2;
  margin-top: 10px;
}
.sidebar .our-artists {
  padding-top: 75px;
}
.sidebar .our-artists h4 {
  margin-top: 0;
}
.sidebar .our-artists .slider-controls {
  display: block;
  position: relative;
  float: right;
  width: 56px;
  height: 20px;
}
.sidebar .our-artists .slider-controls .carousel-control {
  display: block;
  position: relative;
  float: left;
  width: 20px;
  height: 20px;
  text-shadow: none;
  filter: alpha(opacity=100);
  opacity: 1;
  background-image: none !important;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false) !important;
  background: #e10052;
  margin: 0 3px 0 0;
}
.sidebar .our-artists .slider-controls .carousel-control.left span {
  left: 0;
  margin-left: 0;
}
.sidebar .our-artists .slider-controls .carousel-control.right span {
  right: 0;
  margin-right: 0;
}
.sidebar .our-artists .slider-controls .carousel-control:hover {
  filter: alpha(opacity=100);
  opacity: 1;
}
.sidebar .our-artists .slider-controls .carousel-control:hover span {
  background: none;
  color: #2c2c2c;
}
.sidebar .our-artists .slider-controls .carousel-control .glyphicon {
  width: 20px;
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  background: none;
  margin: 0;
  top: auto;
  left: auto;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.sidebar .our-artists .member {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  margin-top: 45px;
}
.sidebar .our-artists .member .img-container {
  display: block;
  overflow: hidden;
  position: relative;
}
.sidebar .our-artists .member .img-container a {
  display: block;
  position: absolute;
  bottom: -40px;
  left: 50%;
  margin-left: -45px;
  width: 40px;
  height: 40px;
  background: #e10052;
  text-align: center;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.sidebar .our-artists .member .img-container a:hover {
  background: #2c2c2c;
}
.sidebar .our-artists .member .img-container a.twitter {
  left: auto;
  right: 50%;
  margin-right: -45px;
}
.sidebar .our-artists .member .img-container a i {
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #fff;
}
.sidebar .our-artists .member .img-container:hover a {
  bottom: 0;
}
.sidebar .our-artists .member .info {
  position: relative;
  display: block;
  width: 100%;
  background: #1f1f1f;
  overflow: hidden;
  min-height: 60px;
  padding-left: 80px;
}
.sidebar .our-artists .member .info i {
  display: block;
  position: absolute;
  width: 60px;
  height: 100%;
  background: #2c2c2c;
  text-align: center;
  font-size: 24px;
  line-height: 60px;
  color: #5c5c5c;
  left: 0;
  top: 0;
}
.sidebar .our-artists .member .info h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin: 0;
  margin-top: 10px;
  white-space: nowrap;
}
.sidebar .our-artists .member .info p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11.5px;
  line-height: 20px;
  color: #626262;
  margin-top: 0;
  white-space: nowrap;
}
/*--------------------------------------------------------------
7.2 - Blog masonry home 2 cols
--------------------------------------------------------------*/
.blog-masonry {
  margin: -15px -15px 0;
}
.blog-masonry .masonry-trigger {
  display: block;
  width: 1px;
  height: 1px;
  position: fixed;
  left: -1px;
  bottom: -1px;
  background: rgba(44, 44, 44, 0);
}
@media screen and (max-width: 500px) {
  .blog-masonry .masonry-trigger {
    display: none;
  }
}
.blog-masonry .article {
  display: block;
  float: left;
  width: 50%;
  padding: 15px;
}
@media screen and (max-width: 500px) {
  .blog-masonry .article {
    width: 100% !important;
    max-width: 390px !important;
    float: none;
    clear: both !important;
    margin: 0 auto;
  }
}
.blog-masonry .article .img {
  display: block;
  position: relative;
  overflow: hidden;
}
.blog-masonry .article .img i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background: #e10052;
}
.blog-masonry .article .content {
  display: block;
  background: #101010;
  padding: 35px 15px 0;
}
.blog-masonry .article .content h4 {
  font-family: 'Lato';
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.blog-masonry .article .content ul.info {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 20px 0 10px;
}
.blog-masonry .article .content ul.info li {
  display: inline-block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #c2c2c2;
  margin-right: 5px;
}
@media screen and (min-width: 1200px) {
  .blog-masonry .article .content ul.info li {
    border-right: 1px solid #393939;
    padding-right: 10px;
    margin-right: 10px;
  }
  .blog-masonry .article .content ul.info li:last-child {
    border: none;
  }
}
.blog-masonry .article .content ul.info li span {
  color: #505050;
  font-size: 12px;
  line-height: 16px;
  padding-right: 7px;
}
.blog-masonry .article .content ul.info li span:before,
.blog-masonry .article .content ul.info li span:after {
  margin: 0;
}
.blog-masonry .article .content p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #c2c2c2;
  padding-top: 10px;
  margin: 0;
}
.blog-masonry .article .content a.read-more {
  text-decoration: none;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 40px;
  height: 40px;
  display: block;
  width: 50%;
  margin-top: 50px;
  margin-left: -15px;
  background: #e10052;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog-masonry .article .content a.read-more:hover {
  background: #464646;
  color: #fff;
}
/*--------------------------------------------------------------
7.3 - Blog masonry 3 cols
--------------------------------------------------------------*/
.blog-masonry.fullwidth .article {
  width: 33.33333333%;
}
@media screen and (max-width: 991px) {
  .blog-masonry.fullwidth .article {
    width: 50% !important;
    max-width: 390px !important;
    float: none;
    clear: both !important;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .blog-masonry.fullwidth .article {
    width: 100% !important;
    max-width: 390px !important;
    float: none;
    clear: both !important;
    margin: 0 auto;
  }
}
/*--------------------------------------------------------------
7.4 - Blog Inside Post
--------------------------------------------------------------*/
.blog-inside-post {
  /* Comment form */

}
.blog-inside-post .wrapper {
  background: #101010;
  padding: 45px 20px;
}
@media screen and (min-width: 1200px) {
  .blog-inside-post .wrapper {
    padding: 45px 30px;
  }
}
@media screen and (max-width: 991px) {
  .blog-inside-post .wrapper {
    padding: 45px 15px;
  }
}
@media screen and (max-width: 767px) {
  .blog-inside-post .wrapper {
    margin-top: 50px;
    padding: 45px 10px;
  }
}
.blog-inside-post .wrapper .blog-img {
  position: relative;
}
.blog-inside-post .wrapper .blog-img i {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  background: #e10052;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #fff;
}
.blog-inside-post .wrapper .blog-article-content .heading {
  display: block;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
  outline: none;
  margin-top: 25px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog-inside-post .wrapper .blog-article-content .heading:hover {
  color: #e10052;
}
.blog-inside-post .wrapper .blog-article-content ul.article-info {
  list-style: none;
  list-style-type: none;
  padding: 20px 0 0 0;
  margin: 0;
}
.blog-inside-post .wrapper .blog-article-content ul.article-info li {
  display: inline-block;
}
.blog-inside-post .wrapper .blog-article-content ul.article-info li a {
  display: block;
  text-decoration: none;
  outline: none;
  color: #c2c2c2;
  font-size: 12px;
  padding-right: 15px;
  padding-left: 10px;
  border-right: 1px solid #464646;
  font-family: 'Lato';
  font-weight: 400;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog-inside-post .wrapper .blog-article-content ul.article-info li a i {
  color: #505050;
}
.blog-inside-post .wrapper .blog-article-content ul.article-info li a:hover {
  color: #e10052;
}
.blog-inside-post .wrapper .blog-article-content ul.article-info li:first-child a {
  padding-left: 0;
}
.blog-inside-post .wrapper .blog-article-content ul.article-info li:last-child a {
  border-right: none;
}
.blog-inside-post .wrapper .blog-article-content p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #c2c2c2;
  margin: 20px 0 0;
}
.blog-inside-post .wrapper .blog-article-content .quote {
  padding: 20px 0;
}
.blog-inside-post .wrapper .blog-article-content .quote h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  margin: 25px 0 0;
  padding: 20px 0;
  border-top: 1px solid #2c2c2c;
  border-bottom: 1px solid #2c2c2c;
}
.blog-inside-post .wrapper .blog-article-content .quote h4 i {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e10052;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  margin-right: 10px;
}
.blog-inside-post .wrapper .blog-article-content .quote q {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  margin: 20px 0;
  padding: 0 20px;
  clear: right;
}
.blog-inside-post .wrapper .blog-article-content .quote q:before,
.blog-inside-post .wrapper .blog-article-content .quote q:after {
  font-size: 22px;
  line-height: 22px;
  color: #e10052;
}
.blog-inside-post .wrapper .blog-article-content .quote span.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #e10052;
  margin-left: 20px;
}
.blog-inside-post .wrapper ul.tags {
  padding: 10px 0 20px 0;
  margin: 40px 0 0 0;
  border-top: 1px solid #2c2c2c;
  border-bottom: 1px solid #2c2c2c;
}
.blog-inside-post .wrapper ul.tags li {
  display: block;
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  padding: 10px 20px;
  margin-right: 10px;
  margin-top: 10px;
  background: #e10052;
  color: #fff;
}
.blog-inside-post .wrapper ul.tags li:first-child {
  font-size: 14px;
  color: #fff;
  padding-left: 0;
  background: none;
}
.blog-inside-post .comments {
  padding-top: 20px;
}
.blog-inside-post .comments .comment {
  padding: 20px;
  margin-top: 10px;
  background: #101010;
}
.blog-inside-post .comments .comment img {
  display: block;
  float: left;
  padding: 0 20px 0 0;
}
.blog-inside-post .comments .comment .info {
  display: block;
  padding-bottom: 10px;
}
.blog-inside-post .comments .comment .info .name {
  display: block;
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  color: #e10052;
  line-height: 16px;
}
.blog-inside-post .comments .comment .info .date {
  display: block;
  float: right;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #fff;
}
.blog-inside-post .comments .comment .info .date i {
  color: #e10052;
}
@media screen and (min-width: 1200px) {
  .blog-inside-post .comments .comment .info .date {
    padding-right: 30px;
  }
}
.blog-inside-post .comments .comment .message {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  line-height: 14px;
}
@media screen and (max-width: 767px) {
  .blog-inside-post .comments .comment .info .name {
    clear: right;
    float: none;
    line-height: 20px;
  }
  .blog-inside-post .comments .comment .info .date {
    clear: right;
    float: none;
    line-height: 20px;
  }
}
.blog-inside-post .contact-form h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #e10052;
}
.blog-inside-post .contact-form form .form-group .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.blog-inside-post .contact-form form .form-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.blog-inside-post .contact-form form .form-group .form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.blog-inside-post .contact-form form .form-group .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.blog-inside-post .contact-form form .form-group .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.blog-inside-post .contact-form form .form-group .form-control:focus {
  border-color: #e10052;
  -webkit-box-shadow: 0 0 5px rgba(225, 0, 82, 0.5);
  box-shadow: 0 0 5px rgba(225, 0, 82, 0.5);
}
.blog-inside-post .contact-form form .form-group .form-control:hover {
  border-color: #e10052;
  -webkit-box-shadow: 0 0 5px rgba(225, 0, 82, 0.5);
  box-shadow: 0 0 5px rgba(225, 0, 82, 0.5);
}
.blog-inside-post .contact-form form .form-group textarea,
.blog-inside-post .contact-form form .form-group input {
  border-radius: 0;
  border-color: #1f1f1f;
  background: #101010;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
}
.blog-inside-post .contact-form button {
  border: none;
  border-radius: 0;
  background: #e10052;
  color: #fff;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  padding: 12px 30px;
  margin-top: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog-inside-post .contact-form button:hover {
  background: #464646;
}
/*--------------------------------------------------------------
8.0 - Page header
--------------------------------------------------------------*/
.page-header-2 {
  display: block;
  width: 100%;
  background: #1f1f1f;
  padding: 50px 0;
}
@media screen and (min-width: 992px) {
  .page-header-2 {
    margin-top: 93px;
  }
}
.page-header-2 h2 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 30px;
  line-height: 32px;
  color: #fff;
  margin: 0;
}
.page-header-2 ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.page-header-2 ul li {
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #fff;
  margin-top: 10px;
}
.page-header-2 ul li a {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #fff;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.page-header-2 ul li a:hover {
  color: #e10052;
}
.page-header-2 ul li i {
  font-size: 14px;
  line-height: 16px;
  color: #e10052;
  margin: 0 3px 0 2px;
}
.page-header-2 ul li i:before,
.page-header-2 ul li i:after {
  margin: 0;
}
/*--------------------------------------------------------------
10.0 - Artists
--------------------------------------------------------------*/
.members {
  margin: 0 -8px;
}
.members .member {
  position: relative;
  display: block;
  float: left;
  overflow: hidden;
  width: 25%;
  max-width: 360px;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .members .member {
    width: 50%;
  }
}
@media screen and (max-width: 460px) {
  .members .member {
    width: 100%;
  }
}
.members .member .img-container {
  display: block;
  overflow: hidden;
  position: relative;
}
.members .member .img-container a {
  display: block;
  position: absolute;
  bottom: -40px;
  left: 50%;
  margin-left: -45px;
  width: 40px;
  height: 40px;
  background: #e10052;
  text-align: center;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.members .member .img-container a:hover {
  background: #2c2c2c;
}
.members .member .img-container a.twitter {
  left: auto;
  right: 50%;
  margin-right: -45px;
}
.members .member .img-container a i {
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #fff;
}
.members .member .img-container:hover a {
  bottom: 0;
}
.members .member .info {
  position: relative;
  display: block;
  width: 100%;
  background: #1f1f1f;
  overflow: hidden;
  min-height: 60px;
  padding-left: 80px;
}
.members .member .info i {
  display: block;
  position: absolute;
  width: 60px;
  height: 100%;
  background: #2c2c2c;
  text-align: center;
  font-size: 24px;
  line-height: 60px;
  color: #5c5c5c;
  left: 0;
  top: 0;
}
.members .member .info h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin: 0;
  margin-top: 10px;
  white-space: nowrap;
}
.members .member .info p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11.5px;
  line-height: 20px;
  color: #626262;
  margin-top: 0;
  white-space: nowrap;
}
/*--------------------------------------------------------------
11.0 - Contact Page
--------------------------------------------------------------*/
.contact-2 {
  display: block;
  width: 100%;
  position: relative;
}
.contact-2 .googleMap #googleMap {
  width: 100%;
  height: 100%;
  min-height: 570px;
}
.contact-2 .contact-form {
  width: 300px;
  padding: 20px 20px 40px;
  z-index: 10;
  position: absolute;
  top: 70px;
  right: 100px;
  left: auto;
  border-radius: 3px;
  border: 1px solid #2c2c2c;
  background: #1f1f1f;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .contact-2 .contact-form {
    right: 5%;
    left: auto;
    width: 90%;
    max-width: 300px;
  }
}
.contact-2 .contact-form h4 {
  font-family: 'Lato';
  font-weight: 400;
  color: #c2c2c2;
}
.contact-2 .contact-form form .form-group .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.contact-2 .contact-form form .form-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.contact-2 .contact-form form .form-group .form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.contact-2 .contact-form form .form-group .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.contact-2 .contact-form form .form-group .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.contact-2 .contact-form form .form-group .form-control:focus {
  border-color: #e10052;
  -webkit-box-shadow: 0 0 5px rgba(225, 0, 82, 0.5);
  box-shadow: 0 0 5px rgba(225, 0, 82, 0.5);
}
.contact-2 .contact-form form .form-group .form-control:hover {
  border-color: #e10052;
  -webkit-box-shadow: 0 0 5px rgba(225, 0, 82, 0.5);
  box-shadow: 0 0 5px rgba(225, 0, 82, 0.5);
}
.contact-2 .contact-form form .form-group textarea,
.contact-2 .contact-form form .form-group input {
  border-radius: 0;
  border-color: #2c2c2c;
  background: #1f1f1f;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
}
.contact-2 .contact-form form button {
  border: 1px solid #393939;
  border-radius: 0;
  background: #1f1f1f;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 32px;
  padding: 0;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.contact-2 .contact-form form button:hover {
  border-color: #e10052;
  -webkit-box-shadow: 0 0 5px rgba(225, 0, 82, 0.5);
  box-shadow: 0 0 5px rgba(225, 0, 82, 0.5);
}
/*--------------------------------------------------------------
12.0 - Gallery
--------------------------------------------------------------*/
.gallery {
  margin: 0 -2px;
}
.gallery .item {
  display: block;
  position: relative;
  float: left;
  overflow: hidden;
  padding: 0 2px 4px;
  width: 25%;
  max-width: 360px;
}
@media screen and (max-width: 991px) {
  .gallery .item {
    width: 33.333333%;
    max-width: 360px;
  }
}
@media screen and (max-width: 650px) {
  .gallery .item {
    width: 50%;
    max-width: 360px;
  }
}
@media screen and (max-width: 450px) {
  .gallery .item {
    width: 100%;
    max-width: 360px;
  }
}
.gallery .item a {
  text-decoration: none;
  outline: none;
  display: block;
  position: absolute;
  bottom: 30px;
  left: 2px;
  background: rgba(0, 0, 0, 0.7);
  padding: 7px;
  width: 70%;
  overflow: hidden;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.gallery .item a:hover {
  background: rgba(225, 0, 82, 0.9);
}
.gallery .item a span.name {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 16px;
  line-height: 17px;
  color: #fff;
  text-transform: uppercase;
}
.gallery .item a span.number {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 14px;
  color: #fff;
  text-transform: uppercase;
}
/*--------------------------------------------------------------
12.1 - Gallery Inside Photo
--------------------------------------------------------------*/
.gallery.inside-photo .item a {
  display: block;
  height: 40px;
  width: 120px;
  padding: 0;
  overflow: hidden;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 40px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  left: 50%;
  margin-left: -60px;
  bottom: -40px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.gallery.inside-photo .item:hover a {
  bottom: 20px;
}
/*--------------------------------------------------------------
12.2 - Gallery Inside Video
--------------------------------------------------------------*/
.gallery.inside-video .video-embeded {
  position: relative;
  max-width: 360px ;
}
.gallery.inside-video .video-embeded iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100% !important;
  width: 100% !important;
  border: none !important;
  z-index: 1000!important;
}
/*--------------------------------------------------------------
13.0 - Footer
--------------------------------------------------------------*/
.footer {
  position: relative;
  background: #121212;
  -webkit-backface-visibility: hidden;
}
.footer h4.heading {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
.footer .line-sep {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  background: #2c2c2c;
}
.footer .line-sep span.line {
  display: block;
  width: 33%;
  height: 1px;
  background: #e10052;
}
.footer .colored {
  color: #e10052;
}
.footer .about-us {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  
}
@media screen and (min-width: 1200px) {
  .footer .about-us {
    padding-right: 50px;
  }
  .footer .about-us .line-sep .line {
    width: 29%;
  }
  .footer .about-us .info img {
    padding-right: 30px;
  }
}
.footer .about-us p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  margin: 15px 0 0;
}
.footer .about-us p.first {
  margin-top: 40px;
}
.footer .about-us .info {
  padding-top: 10px;
}
.footer .about-us .info img {
  float: right;
  margin-top: 15px;
}
.footer .about-us .info p {
  margin-top: 15px;
}
.footer .comments {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  
}
@media screen and (min-width: 1200px) {
  .footer .comments {
    padding-left: 40px;
    padding-right: 40px;
  }
  .footer .comments .line-sep .line {
    width: 60%;
  }
}
.footer .comments .line-sep {
  margin-bottom: 15px;
}
.footer .comments .comment {
  padding-top: 25px;
  clear: both;
}
.footer .comments .comment img {
  float: left;
  margin-right: 15px;
}
.footer .comments .comment p {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
}
.footer .comments .comment p a {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
  text-decoration: underline;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.footer .comments .comment p a:hover {
  color: #e10052;
}
.footer .tags {
  padding-top: 60px;
}
@media screen and (min-width: 1200px) {
  .footer .tags {
    padding-left: 50px;
  }
}
.footer .tags ul {
  list-style: none;
  list-style-type: none;
  padding: 37px 0 0 0;
  margin: 0;
}
.footer .tags ul li {
  float: left;
}
.footer .tags ul li a {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11.33px;
  line-height: 11px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  margin: 4px 4px 0 0;
  background: #1f1f1f;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.footer .tags ul li a:hover {
  background: #e10052;
}
.footer .copyright {
  display: block;
  width: 100%;
  margin-top: 60px;
  background: #0b0b0b;
}
.footer .copyright p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12.5px;
  line-height: 14px;
  padding: 28px 0;
  margin: 0;
}
/*--------------------------------------------------------------
14.0 - Import Style Switcher
--------------------------------------------------------------*/
/*===== Style switcher =====*/
#style-switcher-container {
  position: fixed;
  width: 120px;
  height: 120px;
  z-index: 15000;
  left: -120px;
  top: 0;
  padding: 0;
  margin-top: 93px;
  background: none;
}
@media screen and (max-width: 991px) {
  #style-switcher-container {
    margin-top: 10px;
  }
}
#style-switcher-container #style-switcher {
  display: block;
  position: relative;
  list-style: none;
  list-style-type: none;
  width: 120px;
  height: 120px;
  background: #1f1f1f;
  padding: 10px;
  margin: 0;
  float: left;
  border-bottom-right-radius: 3px;
}
#style-switcher-container #style-switcher li {
  display: inline-block;
}
#style-switcher-container #style-switcher li a {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 3px;
}
#style-switcher-container #style-switcher li a.button-switcher {
  width: 100px;
  height: 25px;
  background: #393939;
  text-decoration: none;
  line-height: 25px;
  text-align: center;
  font-size: 12px;
  font-family: 'Lato';
  font-weight: 400;
  color: #fff;
  margin-top: 5px;
}
#style-switcher-container #style-switcher li a.button-switcher:hover {
  background: #525252;
}
#style-switcher-container .switcher-toggle {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  background: #393939;
  margin-left: 120px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
#style-switcher-container .switcher-toggle i {
  color: #e10052;
  font-size: 20px;
  line-height: 30px;
  width: 30px;
  cursor: pointer;
}
