/* GERAL */
* {
	font-family: 'Open Sans', sans-serif;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

a, a:visited, a:focus, a:active, a:hover, a:link {
    outline: 0 none !important;
    text-decoration: none !important;
}

.pos-center {
    text-align: center;
    margin: 0 auto;
}


/*-----------------------------------------------------------------------------------*/
/*   Global
/*-----------------------------------------------------------------------------------*/


body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 23px;
    font-weight: 400;
    color: #444;
    background: #FFF;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

a {
    color: #222;
    text-decoration: none;
    -webkit-transition-property: color, text;
    -webkit-transition-duration: 0.3s, 0.3s;
    -webkit-transition-timing-function: linear, ease-in;
    -moz-transition-property: color, text;
    -moz-transition-duration: 0.3s;
    -moz-transition-timing-function: linear, ease-in;
    -o-transition-property: color, text;
    -o-transition-duration: 0.3s;
    -o-transition-timing-function: linear, ease-in;
}

a, a:visited, a:focus, a:active{
    outline: 0 none !important;
}

a:hover {
    color: #e4422e;
    text-decoration: none;
}

input:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #161616;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #0d6efd;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #161616;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #161616;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #161616;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #161616;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}

   .logo {
    margin-top: 5px;
}                                     

.titleGeral
 {
    width: 100%;
    margin: 0px 0px 0px 0px;
    border-bottom: 0px solid #d0d0d0;
}

.titleGeral .left {
    border-bottom: 0px solid #dd2828;
    display: inline-block;
    font-size: 24px;
    color: #1c1e21;
    font-weight: 600;
    padding: 6px 0px;
    margin: 0 0 -1px 0;
}

.container {
    max-width: 1222px;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}

.single-container
 {
    max-width: 1000px;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}

#ads-top{padding: 50px 0px 0px 0px;}

/*==DESTAQUE==*/
.col-destaque {width: 1222px; height: auto;float:left;margin:auto;
    padding: 0 0 0px 0;}

.destaque {width: 1222px; height: auto;float:left;border-bottom: 0px solid #dbe1e5;padding-top: 32px;padding-bottom: 3rem;}

.destaque .item:nth-child(1) {width: 671px;display: flex;margin: 0px 0px 0px 0px;position: relative;    float: left;}

.destaque .thumb:nth-child(1) {width: 671px; height: 551px; float: left;border-radius: 8px; }

.destaque .item:nth-child(1) .left .titulo{ color: #fff;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 46px;}

.destaque .item:nth-child(1) .left .titulo a{ color: #fff;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 36px;}


.destaque .item .thumbnail{width: 671px;  height: 551px; float: left;border-radius: 8px;background-size: cover;}

.destaque .item .left{
 position: absolute;
    inset: 0;
    z-index: 3;
    padding: 20px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    z-index: 2;background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .85) 100%);border-radius: 8px;}


.destaque .item .left .cast{ color: #030303;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 20px;
	margin-bottom: 8px;
}

.destaque .item .left .cast a{
		color: #fff;
}


.destaque .item .left .titulo{ color: #fff;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 36px;}

.destaque .item .left .titulo a{ color: #fff;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 35px;}

.destaque .item:nth-child(n+2):nth-child(-n+6)  { width: 538px;float:left;margin: 0px 0px 12px 12px;position: relative;}

.destaque .item:nth-of-type(5n-1)  { width: 538px;float:left;margin: 0px 0px 0px 0px !important;padding-top: 2rem;}

.destaque .item:nth-child(n+2):nth-child(-n+6) .thumb { width: 538px;height: 269px; float: left;border-radius: 8px;margin: 0px 0px 0px 0px;}

.destaque .item:nth-child(n+2):nth-child(-n+6) .thumb img {width: 538px;height: 269px; float: left;border-radius: 8px;background-size: cover;}

.destaque .item:nth-child(n+2):nth-child(-n+6) .left{
 position: absolute;
    inset: 0;
    z-index: 3;
    padding: 20px;
    color: #fff;
    display: flex;
    align-items: flex-end;}



.sidebar{
	float:right;	
	color: #030303;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 38px;
	margin: 0px 0px 0px 0px;
}




.destaque .item2 .left .cast a{
		color: #1087ff;
}

.destaque .item:nth-child(n+2):nth-child(-n+6) .left .titulo{color: #030303;
    font-size: 18px; float: left;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 24px;}


.destaque .item:nth-child(n+2):nth-child(-n+6) .thumbnail {width: 538px;height: 269px; float: left;border-radius: 8px;background-size: cover;}

.destaque .item3e .left{
	width:60%;
	color: #030303;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 38px;
 float:left;
margin-left: 24px;}


.destaque .item3e .left .cast{
	float:left;	
	color: #030303;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 38px;
}


.destaque .item3e .left .cast a{
		color: #1087ff;
}

.destaque .item3e .left .titulo{color: #030303;
    font-size: 20px; float: left;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 24px;}


.destaque .item4e { width: 495px; height: 118px; float: left; margin: 0px 0px 16px 0px;}

.destaque .item4e .thumb { width: 164px;height: 118px; float: left;border-radius: 8px;}

.destaque .item4e .thumbnail {width: 164px;height: 118px; float: left;border-radius: 8px;background-size: cover;}

.destaque .iteme4 .left{
	width:60%;
	color: #030303;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 38px;
 float:left;
margin-left: 24px;}


.destaque .item4 .left .cast{
	float:left;	
	color: #1087ff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 38px;
}


.destaque .item4 .left .cast a{
		color: #1087ff;
}

.destaque .item4 .left .titulo{color: #030303;
    font-size: 20px; float: left;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 24px;}


/*==BOX NOTICIAS==*/
.ultimas-noticias {width: 842px; height: auto;margin: 40px 0px 0px 0px;float:left}

.ultimas-noticias .item {width: 842px;display: flex;margin-top: 32px;border-bottom: 1px solid #dbe1e5;padding: 0 0 32px 0;}

.ultimas-noticias .item:nth-of-type(3) {width: 842px;display: inline-block;margin-top: 32px;border-bottom: 1px solid #dbe1e5;padding: 0 0 32px 0;}

.ultimas-noticias .item:nth-of-type(3) .thumb {width: 842px;float: left;border-radius: 8px;}

.ultimas-noticias .item:nth-of-type(3) .thumbnail {width: 842px;float: left;border-radius: 8px;background-size: cover;padding-bottom: 56.25%;}

.ultimas-noticias .item:nth-of-type(3) .left{	
	color: #030303;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 38px;
    float:left;
	margin-left: 0px;
    padding: 10px 0px 0px 0px}


.ultimas-noticias .item:nth-of-type(3) .left{
    margin:10px 0px 0px 0px}

.ultimas-noticias .item:nth-of-type(3) .left .titulo{color: #c4170c;
    font-size: 28px;
	float: left;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 110%;
   }

.ultimas-noticias .item .thumb {width: 378.98px;float: left;border-radius: 8px;}

.ultimas-noticias .item .thumbnail {width: 378.89px; float: left;border-radius: 8px;background-size: cover;padding-bottom: 56.25%;}

.ultimas-noticias .item .left{
	color: #030303;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 38px;
    float:left;
	margin-left: 16px;
    padding: 10px 0px 0px 0px}


.ultimas-noticias .item .left .cast{
	float:left;	
	color: #333;
    font-size: 16px;
    font-weight: 700;
	padding-bottom: 8px;
    letter-spacing: -.02em;
    line-height: 110%;
}

.ultimas-noticias .item .left .cast a{
		color: #333;
}

.ultimas-noticias .item .left .titulo{color: #c4170c;
    font-size: 24px;
	float: left;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 110%}


.ultimas-noticias .item .left .titulo a{color: #c4170c;
   }

.ultimas-noticias .item .left .hora{color: #8995a0;
    font-size: 15px;
	float: left;
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 28px;
	margin:5px 0px 0px 0px
   }

.postswrap {
    width: 842px;
}

.col-lg-12 {
    padding-top: 2rem;
    float: left;
}


.mt-4 {	
	display:flex;
    padding-bottom: .5rem;
    padding-top: .5rem;
	margin:5px 0px 0px;
	padding-left: 1rem;
    padding-right: 1rem;
	background: #;border-radius: 1rem;

}

.mt-4 a{	
	font-size:16px;
	font-weight: 600;
	display:flex;
	color:#fff;
    padding-bottom: .5rem;
    padding-top: .5rem;
	margin:5px 0px 0px;
	padding-left: 1rem;
    padding-right: 1rem;
	background: #c4170c;border-radius: 1rem;

}

.py-2

 {
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.bg-slate-600 {
    --tw-bg-opacity: 1;
	background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));}

.flex {
    display: flex;
	line-height: 1;
}

.single-noticia {width: 700px; height: auto; margin: auto;margin-top:42px;}


.single-noticia .share{width: 100%;margin: 0px 0px 0px 0px;}


.single-noticia .title {font-size: 40px; float: left;font-weight: 700;line-height: 48px;margin-bottom:10px}

.single-noticia .info {width:270px;font-size: 16px;letter-spacing: -.02em;line-height: 20px;float: left;padding-top:10px;padding-bottom:16px}

.info-text {
    margin-top: .75rem;
    float: left;
    width: 100%;
}
.single-noticia .info img{width:40px;height:40px;font-size: 16px; float: left;border-radius: 9999px;margin: 0px 10px 0px 0px;}

.single-noticia .info a {font-size: 14px;font-weight: 600;letter-spacing: -.02em;line-height: 2px;padding: 0px 0px 0px 0px;}

.single-noticia .info p {font-size: 12px;font-weight: 400;color:#464b59; letter-spacing: -.02em;line-height: 2px;padding: 0px 0px 0px 0px;}


.single-noticia .conteudo {float: left;margin:0px 0px 0px 0px}

.single-noticia .conteudo .img {float: left;margin:0px 0px 8px 0px;width:100%}

.single-noticia .conteudo .img img{float: left;margin:0px 0px 8px 0px;width:100%}

.single-noticia p {font-size: 18px;letter-spacing: -.02em;line-height: 28px;    margin: 10px 0;}

.footer{width: 100%;background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%); border-top: 2px solid #dc2626; margin: auto;margin-top:42px;padding: 40px 0px 40px 0px;
    text-align: center;float:left}


.footer p{color:#fff}


.margint5 {
    margin-top: 5px !important;
}

.margint10 {
    margin-top: 10px !important;
}

.margint20 {
    margin-top: 20px !important;
}

.margint30 {
    margin-top: 30px !important;
}

.margint40 {
    margin-top: 40px !important;
}

.margint50 {
    margin-top: 50px !important;
}

.margint60 {
    margin-top: 60px !important;
}

.margint70 {
    margin-top: 70px !important;
}

.margint80 {
    margin-top: 80px !important;
}

.margint90 {
    margin-top: 90px !important;
}

.margint100 {
    margin-top: 100px !important;
}

.margint120 {
    margin-top: 120px !important;
}

.marginb10 {
    margin-bottom: 10px !important;
}

.marginb20 {
    margin-bottom: 20px !important;
}

.marginb30 {
    margin-bottom: 30px !important;
}

.marginb40 {
    margin-bottom: 40px !important;
}

.marginb60 {
    margin-bottom: 60px !important;
}

.marginb90 {
    margin-bottom: 90px !important;
}

.marginb100 {
    margin-bottom: 100px !important;
}

.marginb120 {
    margin-bottom: 120px !important;
}

.padrl20 {
    padding: 0 20px;
}

.padrl50 {
    padding: 0 50px;
}

.padt20 {
    padding-top: 20px;
}

.padt40 {
    padding-top: 40px;
}

.padt50 {
    padding-top: 50px;
}

.padt60 {
    padding-top: 60px;
}

.padb60 {
    padding-bottom: 30px;
}

.pad5 {
    padding: 5px;
}

.pad10 {
    padding: 10px;
}

.pad20 {
    padding: 20px;
}

.pad30 {
    padding: 30px;
}

img {
    max-width: 100%;
    height: auto;
}

.gallery-caption{

}

.bypostauthor{
    
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin: 20px auto;
}


/*-----------------------------------------------------------------------------------*/
/*   Blog
/*-----------------------------------------------------------------------------------*/

.blog-entry{
    margin-bottom: 60px;
}

#blog .blog-back{
    background: #2f2b30;
    padding-bottom: 40px;
}

.post-content-blog h1, h2, h3, h4 , h5, h6{
    padding: 10px 0;
}

.post-format-icon{
    background: #FFF;
    padding: 15px;
    margin-top: 10px;
    text-align: center;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    color: #E24335;
}

blockquote {
    border-left: solid 3px #e4422e;
    padding-left: 10px;
    margin: 20px 0;
}

ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

cite {
    font-size: 13px;
    font-weight: 500;
    color: #e4422e;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 10px;
}

table {
    width: 100% !important;
}

caption {
    padding: 0 0px;
    text-align: left;
    font-weight: bold;
    margin: -2px 0 2px 0;
}

thead {
    font-size: 13px;
}

thead th {
    padding: 4px 4px;
    font-weight: bold;
    border-top: 1px solid #ededed;
    text-align: center;
}

tbody {
    background: #f5f5f5;
}

tbody td {
    background: #f5f5f5;
    border: 1px solid #FFF;
    text-align: center;
    padding: 2px 2px;
}

tbody td:hover {
    background: #ededed;
}

tbody .pad {
    background: none;
}

tbody .pad:hover {
    background: none;
}

dl dt {
    font-weight: 600;
}

dl dd {
    padding-left: 10px;
    padding-top: 3px;
    margin-bottom: 10px;
}

p:empty {
    display: none;
}

dl dd:last-child {
    margin-bottom: 0px;
}

em {
    font-style: italic;
}

q {
    border-left: solid 3px #e4422e;
    padding-left: 15px;
    margin-left: 10px;
    line-height: 24px;
    color: #727272;
}


address {
    margin: 20px 0;
    position: relative;
    padding-left: 50px;
    padding-top: 10px;
    font-style: italic;
    font-size: 12px;
    line-height: 19px;
}

address:before {
    content: "\f041";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #dcdcdc;
    font-size: 18px;
    padding-right: 0.5em;
    position: absolute;
    top: 10px;
    left: 0;
}

strong {
    font-weight: 600;
}

ol strong {
    padding: 0;
}

big {
    font-size: 18px;
}

em {
    font-style:italic;
}

kbd {
    padding: 5px;
    background: #e4422e;
    color: #FFF;
}

pre {
    padding: 20px;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.3s, 0.3s;
    -webkit-transition-timing-function: linear, ease-in;
    -moz-transition-property: all;
    -moz-transition-duration: 0.3s;
    -moz-transition-timing-function: linear, ease-in;
    -o-transition-property: all;
    -o-transition-duration: 0.3s;
    -o-transition-timing-function: linear, ease-in;
}

pre:hover {
    padding: 30px;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.3s, 0.3s;
    -webkit-transition-timing-function: linear, ease-in;
    -moz-transition-property: all;
    -moz-transition-duration: 0.3s;
    -moz-transition-timing-function: linear, ease-in;
    -o-transition-property: all;
    -o-transition-duration: 0.3s;
    -o-transition-timing-function: linear, ease-in;
}

var {
    color: #e4422e;
    font-weight: 600;
}

img[class*="wp-image-"], img[class*="attachment-"], .post img, .post {
    max-width: 100%;
    height: auto;
}


.wp-caption {
    border: solid 1px #e8e8e8;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    font-style: italic;
    max-width: 100%;
}

.wp-caption-text {
    margin-top: 10px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto;
    display: block;
}


.blog-content .gallery dt {
    margin-right: 10px;
}

.blog-content ul, .page-main ul {
    list-style: circle;
    margin-left: 20px;
}

.blog-content ul li, .page-main ul li {
    list-style: circle;
}

.blog-content ol, .page-main ol {
    list-style: decimal;
    margin-left: 20px;
}

.post-materials ul li, .page-main ul li{
    list-style: none;
}

.post-materials ul{
    margin-left: 0;
}

.wp-caption {
    max-width: 100%;
    border: 1px solid #ddd;
    background: #ebebeb;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.wp-caption .wp-caption-text {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.wp-caption img {
    margin-bottom: 10px!important;
    display: block;
}

.post-materials {
    display: block;
    margin: 10px 0;
}

.post-materials ul li {
    float: left;
    margin-right: 15px;
    font-size: 13px;
    color: #222;
}

.post-materials ul li i {
    padding-right: 6px;
    color: #e4422e;
}

.button{
    background: #e4422e;
    border-bottom: solid 3px #1f1b20;
    padding: 5px 18px;
    display: inline-block;
    border-radius: 3px;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.3s, 0.3s;
    -webkit-transition-timing-function: linear, ease-in;
    -moz-transition-property: all;
    -moz-transition-duration: 0.3s;
    -moz-transition-timing-function: linear, ease-in;
    -o-transition-property: all;
    -o-transition-duration: 0.3s;
    -o-transition-timing-function: linear, ease-in;
}

.button a{
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.0300em;
}

.button:hover{
    background: #1f1b20;
}

.continue-reading{
    margin-top: 20px;
}

.continue-reading a{
    font-weight: 600;
}

.post-paginate p {
    color: #e4422e;
}

.post-paginate a {
    color: #888;
}

.blog-sidebar{
    margin-top: 50px;
}



.sidebar-widget{
    margin-bottom: 40px;
}

.sidebar-widget h3{
    margin-top: 20px;
}

.sidebar-widget hr{
   margin: 10px 0;
   background: #e4422e;
   height: 2px;
   width: 20px;
}

.sidebar-widget ul li {
    position: relative;
    line-height: 31px;
}

.sidebar-widget select {
    width: 100%;
    border: solid 1px #e8e8e8;
    background: #FFF;
    height: 40px;
}


/* Blog Pagination */

.pagination {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 20px !important;
    border-top: solid 2px #f0f0f0;
    display: inline-block;
    margin-bottom: 60px;
}

.pagination a:hover{
    color: #fff !important;
}

.prev-post {
    float: right;
    border-radius: 4px;
    padding: 4px 10px;
}


.next-post {
    float: left;
    border-radius: 4px;
    padding: 4px 10px;
    margin: 0;
}

.prev-post:hover, .next-post:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.post-password-form {
    background: #f5f5f5;
    padding: 30px;
}

.post-password-form input[type="password"] {
    border: solid 1px #e8e8e8;
    height: 40px;
}

.post-password-form input[type="submit"] {
    background: #e4422e;
    border: none;
    height: 38px;
    color: #FFF;
    padding: 0 10px;
    float: none;
}

.post-password-form input[type="submit"]:hover {
    background: #282828;
}

/* Custom Pagination */

.custom-pagination{
    margin-bottom: 25px !important;
}

.custom-pagination ul li{
    float:left;
    margin-right:5px;
}

.custom-pagination ul li a{
    padding:8px 13px;
    border:1px solid #e8e8e8;
    background: #f0f0f0;
    font-size:13px;
    color:#333;
}

.custom-pagination ul li a:hover{
    background-color:#e4422e;
    color:#fff !important;
}

.custom-pagination ul li.active a{
    background-color:#e4422e;
    color:#fff;
}


.contact-form-style input[type="submit"] {
    float: right;
    display: inline-block;
    background: #e4422e;
    border:none;
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.0300em;
    border-bottom: solid 3px #1f1b20;
    padding: 5px 14px;
    display: inline-block;
    border-radius: 3px;
}


.contact-form-style input{
    margin-top: 10px;
    padding: 10px;
    border:solid 1px #eaeaea;
}

.contact-form-style textarea{
    margin-top: 20px;
    border:solid 1px #eaeaea;
    height: 220px;
    padding: 10px;
    width: 100%;
}

.user-comment-box{
    background: #f7f7f7;
    padding: 20px;
}

.user-comment-box .author a {
    font-size: 18px;
}

.user-comment-box .date {
    font-size: 10px;
}

ol.comment-list{
    list-style: none;
    margin-left: 0;
}

.comment-content h4{
    padding: 0;
}

.comments .children li{
    list-style: none !important;
    margin: 0;
    margin-left: 20px;
}

.leave-a-comment p{
    font-size:18px !important;
}

.comments-blog-post-top {
    border-bottom: solid 1px #ebebeb;
    padding-top: 10px;
    padding-bottom: 20px;
}

.com-title h4 {
    font-size: 21px;
    text-transform: uppercase;
    color: #222;
}

.com-info{
    margin-top: 10px;
    font-size: 12px;
}

::-webkit-input-placeholder {
    color: #555;
    font-size: 11px;
    letter-spacing:0.0300em;
    font-weight: 600;
}

:-moz-placeholder {
 /* Firefox 18- */
    color: #555;
    font-size: 11px;
    letter-spacing:0.0300em;
    font-weight: 600;
}

::-moz-placeholder {
  /* Firefox 19+ */
    color: #555;
    font-size: 11px;
    letter-spacing:0.0300em;
    font-weight: 600;
}

:-ms-input-placeholder {
    color: #555;
    font-size: 11px;
    letter-spacing:0.0300em;
    font-weight: 600;
}

/*-----------------------------------------------------------------------------------*/
/*   Contact Form
/*-----------------------------------------------------------------------------------*/

/* Contact Form */

.wpcf7 input[type="text"], input[type="email"]{
    border:solid 1px #eaeaea;
    width: 70%;
    background: none;
    display: inline-block;
    margin-bottom: 20px;
    height: 40px;
    padding-left: 10px;
}

.wpcf7 input[type="submit"] {
    float: right;
    display: inline-block;
    background: #e4422e;
    border:none;
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.0300em;
    border-bottom: solid 3px #1f1b20;
    padding: 5px 14px;
    display: inline-block;
    border-radius: 3px;
    margin-top: 20px;
}


.wpcf7 textarea{
    width: 100%;
    border:solid 1px #eaeaea;
    height: 220px;
    padding: 10px;
    width: 100%;
}

.form-submit{
    margin-top: 10px;
}

/*-----------------------------------------------------------------------------------*/
/*   Header
/*-----------------------------------------------------------------------------------*/

.empty-menu{
    color: #FFF;
}

.empty-menu a{
    color: #FFF;
    text-decoration: underline;
}

.menu{
    height: 90px;
    line-height: 90px;
}

.header-search{
    position: relative;
    height: 90px;
    line-height: 90px;
    color: #FFF;
    margin-left: 20px;
    width: 15px;
}

.header-search a i{
    color: #fff;
}

#mini-search-wrapper {
    position: absolute;
    left: -260px;
    top: 70px;
    width: 295px;
    background: #eaeaea;
    border-radius: 5px;
    text-align: center;
    padding: 10px 10px;
    display: none;
    height: 95px;
}

#mini-search-wrapper{
 line-height: 40px;
}

#mini-search-wrapper:before{
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #eaeaea transparent;
    top:-10px;
    right:20px;
}

#mini-search-wrapper input.s-input {
    background: #FFF;
    height: 44px;
    min-width: 180px;
    border: solid 1px #e8e8e8;
    margin: 0;
    padding: 0 5px;
    font-size: 13px;
    margin-left: -10px;
}

#mini-search-wrapper input.s-submit {
  float: right;
  width: 80px;
  display: inline-block;
  background: #e4422e;
  border: none;
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.0300em;
  border-bottom: solid 3px #1f1b20;
  padding: 5px 14px;
  display: inline-block;
  border-radius: 3px;
  line-height: 30px;
}

.pre-header{
    background: #1f1b20;
    border-radius: 4px;
    color: #FFF;
    height: 50px;
}

.pre-header a{
    color: #FFF;
}

.slicknav_menu {
    display:none;
}

/* Header Social */

.social-icons{
    height: 90px;
    line-height: 90px;
    font-size: 16px;
}

.social-icons ul li{
    float: left;
    margin-left: 20px;
}

.social-icons ul li i.fa-facebook{ 
    color: #4964A1; 
}

.social-icons ul li i.fa-twitter{ 
    color: #55ACEE; 
}

.social-icons ul li i.fa-instagram{ 
    color: #3F729B; 
}

.social-icons ul li i.fa-tumblr{ 
    color: #35465C; 
}

.social-icons ul li i.fa-youtube-play{ 
    color: #E52D27; 
}

.social-icons ul li i.fa-google-plus{ 
    color: #DD4B39; 
}

.social-icons ul li i.fa-lastfm{ 
    color: #C3000D; 
}

.social-icons ul li i.fa-soundcloud{ 
    color: #FF8800; 
}

.social-icons ul li i.fa-spotify{ 
    color: #7AB800; 
}

/* Nav */

.sf-menu, .sf-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sf-menu ul {
    position: absolute;
    display: none;
    top: 90%;
    left: 10px;
    z-index: 99;
}

.sf-menu .sub-menu .sub-menu {
    top: 0;
}

.sf-menu ul li ul {
    position: absolute;
    display: none;
    top: -37px;
    left: 100%;
    z-index: 99;
}

.sf-menu li:hover > ul, .sf-menu li.sf-menuHover > ul {
    display: block;
}

.sf-menu li {
    white-space: nowrap;
    -webkit-transition: background .2s;
    transition: background .2s;
    float: left;
    padding-left: 25px;
    letter-spacing: 1px;
}

.sf-menu li a {
    display: block;
    position: relative;
    zoom: 1;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
}

.menu-container-top .sf-menu li a {
    display: block;
    position: relative;
    zoom: 1;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
}

.sf-menu li a:hover {
    text-decoration: none;
    color: #e4422e !important;
}

.sf-menu ul li {
    width: 100%;
    min-width: 200px;
    background: #101010;
    padding: 10px;
    border-bottom: 1px solid #222;
    line-height: 30px;
    padding: 10px 24px;
}

.sf-menu ul li:hover {
    background: #222;
}

.sf-menu ul li:last-child {
    border-bottom: 0;
}

.sf-menu ul li a {
    color: #a8a8a8 !important;
    font-size: 14px;
}

.sf-menu ul li a:hover {
    color: #a8a8a8 !important;
}

.sf-menu .menu-item-has-children ul {
    float: none;
}

.sf-menu .menu-item-has-children {
    position: relative;
    margin-right: 20px;
}

.sf-menu .sub-menu .menu-item-has-children {
    position: relative;
    margin-right: 0px;
}

.sf-menu .menu-item-has-children:before {
    content: "\f078";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #FFF !important;
    font-size: 9px;
    padding-right: 0.5em;
    position: absolute;
    top: 0px;
    right: -23px;
}

.menu-container-top .sf-menu .menu-item-has-children:before {
    content: "\f078";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #fff !important;
    font-size: 9px;
    padding-right: 0.5em;
    position: absolute;
    top: 0px;
    right: -23px;
}

.sf-menu ul.sub-menu .menu-item-has-children:before {
    content: "\f054";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #a8a8a8 !important;
    font-size: 9px;
    padding-right: 0.5em;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #101010;
}

.sf-menu ul.sub-menu ul.sub-menu .menu-item-has-children:before {
    display: none;

}
.sf-menu li ul.sub-menu li ul.sub-menu li ul.sub-menu {
    display: none !important;
}

ul.sub-menu li.menu-item-has-children:hover:before {
    background: #222;
}

ul.sub-menu li ul li{
    float: none !important;
}

.sf-menu .menu-item-has-children:hover:before {
    color: #e4422e !important;
}

/* Header Alphabet */

.lyric-alphabet{
    width: 84% !important;
    line-height: 50px;
}

.lyric-alphabet ul{
 padding-left: 10px;
}

.lyric-alphabet ul li{
    float: left;
    line-height: 50px;
}

.lyric-alphabet ul li:hover{
    background: #000;
}

.lyric-alphabet ul li a{
    font-size: 13px;
    font-weight: 600;
    padding: 0px 14px;
    display: inline-block;
}

.lyric-alphabet ul li a:hover{
    color: #e4422e;
}

.submit-lyric{
    background: #e4422e;
    width: 16%;
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    line-height: 50px;
}

.submit-lyric a{
    width: 100%;
    line-height: 50px !important;
    display: block;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    letter-spacing: 0.0500em;

}

.submit-lyric a:hover{
    color: #f5f5f5 !important;
}

.lyric-home{
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding-bottom: 150px;
  background: #302932;
}

.lyric-search{
    padding:130px 0 75px 0;
}

.lyric-search h1{
    color: #FFF;
    font-size: 35px;
    letter-spacing: 0.0300em;
}

.lyric-search-input{
    margin-top: 35px;
}



.lyric-search-input input[type="submit"] {
    width: 100%;
    position: relative;
    border:none;
    background: none;
}

.big-letter{
    margin-top: 120px;
}

.big-letter h1{
    font-size: 150px;
}

/* Popular Lyrics */
.content-capsule{
    position: relative;
}

.content-pull{
    width: 100%!important;
    position: absolute;
    top:-100px;
    left:0;
}

.popular-lyrics-container, .page-container{
    position: relative;
}

.popular-lyrics, .latest-lyrics-container{
    background: #FFF;
    padding: 28px 20px 20px 20px;
}

.latest-lyrics-container{
    padding-bottom: 40px !important;
}

.second-container{
    background: #fff;
    padding: 25px 0px 5px 25px;
}

.second-padding{
    padding: 5px 25px !important;
}

.latest-lyrics-container{
    padding-bottom: 30px;
}

.latestnew.title{
    margin-left: 15px;
    margin-bottom: 5px;
}

.latestnew.title h3 i{
    font-size: 21px;
    color: #e4422e;
    padding-right: 7px;
}

.popular-lyrics .title h3 i, .latest-lyrics-container h3 i{
    font-size: 21px;
    color: #e4422e;
    padding-right: 7px;
}

.full-screen-list ul li{
    position: relative;
    height: 350px;
    margin-bottom: 20px;
}

.full-screen-list ul li:last-child{
    margin-right: 0;
}

.full-screen-list ul li a:hover{
    text-decoration: underline !important;
}

.full-screen-list ul li{
    background-size: cover !important;
    background-position: center center !important; 
}

.full-screen-list-inside ul li{
    float: left;
    position: relative;
    height: 350px;
    width: 205px;
    margin-right: 16px !important;
    margin-bottom: 20px;
    background-size: cover !important;
    background-position: center center !important;
}

.full-artist-album-list ul li{
    margin-right: 13px !important;
    margin-bottom: 15px !important;
}

.full-screen-list-inside ul li:last-child{
    margin-right: 0;
}

.full-screen-list-inside ul li a:hover{
    text-decoration: underline !important;
}

#popular-list .owl-controls{
    width: 100% !important;
}

#popular-list .owl-prev{
    position: absolute;
    left: -45px;
    top:50%;
    width: 75px;
    height: 80px;
    background: rgba(255,255,255,0.8);
    margin-top:-50px;
}

#popular-list .owl-prev:after{
    content: "\f053";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #000 !important;
    font-size: 35px;
    position: absolute;
    top: 30px;
    left: 25px;
}

#popular-list .owl-next{
    position: absolute;
    right: -45px;
    top:50%;
    width: 75px;
    height: 80px;
    background: rgba(255,255,255,0.8);
    margin-top:-50px;
}

#popular-list .owl-next:after{
    content: "\f054";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #000 !important;
    font-size: 35px;
    position: absolute;
    top: 30px;
    left: 25px;
}

.item-text{
    position: absolute;
    padding: 10px;
    z-index: 99999999;
    bottom: 15px;
}

.item-text h3{
    line-height: 21px;
    padding-bottom: 5px;
}

.item-text a,.item-text h3{
    color: #FFF;
}

.item-text a:hover{
    color: #FFF !important;
}

.item1{
    width: 100%;
    height: 350px;
    z-index: 99999;
    position: absolute;
    background: #d71a8d; /* Old browsers */
    background: -moz-linear-gradient(top,  #d71a8d 0%, #f84327 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d71a8d), color-stop(100%,#f84327)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #d71a8d 0%,#f84327 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #d71a8d 0%,#f84327 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #d71a8d 0%,#f84327 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #d71a8d 0%,#f84327 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d71a8d', endColorstr='#f84327',GradientType=0 ); /* IE6-9 */
    opacity: .9;
}

.item2{
    width: 100%;
    height: 350px;
    z-index: 99999;
    position: absolute;
    background: #684dbe; /* Old browsers */
    background: -moz-linear-gradient(top,  #684dbe 0%, #2387dc 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#684dbe), color-stop(100%,#2387dc)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #684dbe 0%,#2387dc 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #684dbe 0%,#2387dc 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #684dbe 0%,#2387dc 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #684dbe 0%,#2387dc 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#684dbe', endColorstr='#2387dc',GradientType=0 ); /* IE6-9 */
    opacity: .9;
}

.item3{
    width: 100%;
    height: 350px;
    z-index: 99999;
    position: absolute;
    background: #523498; /* Old browsers */
    background: -moz-linear-gradient(top,  #523498 0%, #903071 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#523498), color-stop(100%,#903071)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #523498 0%,#903071 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #523498 0%,#903071 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #523498 0%,#903071 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #523498 0%,#903071 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#523498', endColorstr='#903071',GradientType=0 ); /* IE6-9 */
    opacity: .9;

}

.item4{
    width: 100%;
    height: 350px;
    z-index: 99999;
    position: absolute;
    background: #edc40a; /* Old browsers */
    background: -moz-linear-gradient(top,  #edc40a 0%, #cf482f 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#edc40a), color-stop(100%,#cf482f)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #edc40a 0%,#cf482f 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #edc40a 0%,#cf482f 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #edc40a 0%,#cf482f 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #edc40a 0%,#cf482f 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#edc40a', endColorstr='#cf482f',GradientType=0 ); /* IE6-9 */
    opacity: .9;

}

.lyric-search-input ::-webkit-input-placeholder {
    color: #848484;
    font-size: 14px;
    letter-spacing:0.0300em;
    font-family: PT Sans;
    font-weight: 400;
}

.homepage-advertisement{
    background: #fff;
    padding: 0 20px;
    padding-top: 20px;
    padding-bottom: 12px;
}

.homepage-news{
    background: #fff !important;
    padding:0 5px;
    padding-top: 27px;
    padding-bottom: 10px;
}

.lyric-search-input :-moz-placeholder {
 /* Firefox 18- */
    color: #848484;
    font-size: 14px;
    letter-spacing:0.0300em;
    font-family: PT Sans;
    font-weight: 400;
}

.lyric-search-input ::-moz-placeholder {
  /* Firefox 19+ */
    color: #848484;
    font-size: 14px;
    letter-spacing:0.0300em;
    font-family: PT Sans;
    font-weight: 400;
}

.lyric-search-input :-ms-input-placeholder {
    color: #848484;
    font-size: 14px;
    letter-spacing:0.0300em;
    font-family: PT Sans;
    font-weight: 400;
}

/* Lyrics */

.latest-lyrics ul li{
    float: left;
    width: 33.3%;
    padding: 16px;
    padding-left: 50px;
    position: relative;
}

.latest-lyrics .song-number{
    position: absolute;
    left: 20px;
}

.latest-lyrics ul li:nth-child(2n+1){
    background: #f5f5f5;
}


.latest-lyrics h5{
    padding: 0;
}

/*-----------------------------------------------------------------------------------*/
/*   Lyrics
/*-----------------------------------------------------------------------------------*/

.lyrics-title{
    position: absolute;
    bottom:105px;
}

.lyrics-title h3{
    color: #fff;
}

.lyrics-title.album{
    bottom: 120px !important;
}

.padding{
    padding: 30px;
}

.padding-in{
    padding: 25px;
}

.artist-padding{
    padding: 13px;
}

.lyric-line{
 border-bottom: solid 1px #f0f0f0;
 padding-bottom: 10px;
}

.lyric-text{
    font-size: 15px;
    line-height: 25px;
}

.lyric-print i{
    padding-right: 3px;
}

.lyric-print a{
    color: #e4422e;
}

.background-single-lyrics{
    height: 500px;
    padding-bottom: 500px;
    background-size: cover;
}

.single-lyrics-overlay{
    position: relative;
    background: rgba(31,27,32,.7);
    height: 500px;
    padding-bottom: 500px;
}

.lyrics-title{
    max-width: 1140px;
}

.lyrics-title h3 a{
    color: #e4422e;
}

.lyrics-title h1{
    color: #FFF;
    font-size: 45px;
    padding-right: 15px;
    line-height: 35px;
}

.lyrics-title h4 a{
    color: #c9c9c9;
    line-height: 40px;
}

.lyrics-title h4{
    color: #c9c9c9;
}

.single-widget{
    margin-bottom: 20px;
}

.single-widget h4{
    border-bottom: solid 1px #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.lyric-bottom{
    border-top: solid 1px #f0f0f0;
    border-bottom: solid 1px #f0f0f0;
    padding: 15px 0;
}

.lyric-bottom .added{
    margin-top: 10px;
    margin-right: 5px;
}

.lyric-bottom h3{
    padding: 5px 0;
}

.lyric-bottom h4{
    padding: 0;
    margin-top: 7px;
    margin-right: 5px;
}

.lyric-share{
    margin-top: 3px;
}

.lyric-share ul li{
    float: left;
    list-style: none;
    margin-left: 5px;
}

.lyric-share ul li:hover{
    opacity: 0.9;
}

.lyric-share ul li i{
    width: 30px;
    line-height: 30px;
    height: 30px;
    display: inline-block;
    color: #FFF;
    text-align: center;
}

.lyric-share ul li i.fa-facebook{ 
    background: #4964A1; 
}

.lyric-share ul li i.fa-twitter{ 
    background: #55ACEE; 
}

.table-title{
    font-weight: 600;
}

.album-line{
    background: #f6f6f6;
    padding: 15px 0;
}

.list-line{
    border-bottom: solid 1px #f0f0f0;
    padding: 10px 0;
    padding-bottom: 20px;
}

div.list-line:last-child{
    border-bottom:none;
}

.big-font a{
    font-size: 18px;
}
/*-----------------------------------------------------------------------------------*/
/*   Submit Lyrics
/*-----------------------------------------------------------------------------------*/

#user-submitted-posts label{
    font-size: 14px;
    color: #444;
    line-height: 24px;
    margin-bottom: 3px !important;
}

#user-submitted-posts input{
    border: solid 1px #eaeaea;
    width: 90%;
    background: none;
    display: inline-block;
    margin-top: 3px !important;
    height: 40px;
    padding-left: 10px;
    margin-bottom: 15px !important;
}

#user-submitted-posts textarea{
    border: solid 1px #eaeaea;
    width: 90%;
    background: none;
    display: inline-block;
    margin-top: 3px !important;
    padding-left: 10px;
    margin-bottom: 15px !important;
    width: 90% !important;
}

#user-submitted-posts .usp-video-embed textarea{
    height: 80px;
}

#user-submitted-posts .selectize-input{
    border: solid 1px #eaeaea !important;
    padding: 0 10px !important;
    border-radius: 0;
    width: 90%;
    height: 40px !important;
}

#user-submitted-posts .selectize-input input{
    margin-top: 0 !important;
}

#user-submitted-posts .selectize-input{
    padding-top: 0px !important;
}

#user-submitted-posts .selectize-input.has-items{
    padding-top: 10px !important;
}

#user-submitted-posts .selectize-field{
    font-size: 14px;
    color: #444;
    line-height: 24px;
}

#user-submitted-posts .selectize-input.input-active{
    padding-top: 0 !important;
}

#user-submitted-posts .selectize-field input::-webkit-input-placeholder {
    font-size: 14px;
    color: #888;
    line-height: 24px;
    font-weight: 400;
    margin-top: 0 !important;
}

#user-submitted-posts .selectize-field input:-moz-placeholder { /* Firefox 18- */
    font-size: 14px;
    color: #888;
    line-height: 24px;
    font-weight: 400;
    margin-top: 0 !important;
}

#user-submitted-posts .selectize-field input::-moz-placeholder {  /* Firefox 19+ */
    font-size: 14px;
    color: #888;
    line-height: 24px;
    font-weight: 400;
    margin-top: 0 !important; 
}

#user-submitted-posts .selectize-field input:-ms-input-placeholder {  
    font-size: 14px;
    color: #888;
    line-height: 24px;
    font-weight: 400;
    margin-top: 0 !important; 
}

#usp-submit{
    width: 90%;
}

#usp-submit input[type="submit"] {
  float: right;
  width: 100px;
  display: inline-block;
  background: #e4422e;
  border: none;
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.0300em;
  border-bottom: solid 3px #1f1b20;
  padding: 5px 14px;
  display: inline-block;
  border-radius: 3px;
  margin-top: 20px;
}

#user-submitted-posts #usp-success-message{
    font-size: 14px;
    color: #888;
    line-height: 24px;
}

#user-submitted-posts .selectize-input.focus{
    border-color: #eaeaea;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#user-submitted-posts .selectize-control.single .selectize-input:after{
  border-color: #999 transparent transparent transparent !important;
}

#user-submitted-posts .selectize-control.single .selectize-input.dropdown-active:after{
    border-width: 0 5px 5px 5px;
    margin-top: -4px;
    border-color: transparent transparent #999 transparent !important;
}

/*-----------------------------------------------------------------------------------*/
/*   404
/*-----------------------------------------------------------------------------------*/

.single-lyrics-overlay.error_page{
    height: 200px;
    padding-bottom: 200px;
}

.error_icon{
    margin-top: 60px;
}

.error_icon i{
    font-size: 120px;
}

.error_title{
    font-size: 40px;
    margin: 30px 0;
}


/* Updated from 1.0.5 */


.print-lyrics{
    display: none;
}

/* Updated from 1.1 */

.lyric-text p{ margin: 30px 0;}


.searchcats{
    position: absolute;
    bottom: 0px;
    opacity: 0;
    z-index: -1;
    width: 100%;
    height: 30px;
}

.searchcats ul{
    padding-left: 20px;
}

.searchcats ul li{
    float: left;
    margin-right: 20px;
    color: #fff;
}

.searchcats ul li input{
    margin-right: 4px;
}

.searchminicats ul li{
    float: left;
    margin-right: 20px;
    color: #000;
}

.searchminicats ul li input{
    margin-right: 4px;
}



ul.genre-list{
    border-top:solid 1px #e8e8e8;
    clear: both;
    padding-bottom: 10px;
    margin-top: 30px;
}

ul.genre-list li{
    float: left;
    margin-right: 5px;
}



ul.genre-list li {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
}


ul.genre-list li a{
    color: #333;
}



h3.translated{
    border-bottom: solid 1px #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}


ul.related-list li{
    border-bottom:solid 1px #e8e8e8;
    padding-top: 10px;
    padding-bottom: 10px;
}

ul.related-list li:last-child{
    border:none;
}



ul.genre-page-list li{
    border-bottom:solid 1px #e8e8e8;
    padding-top: 10px;
    padding-bottom: 10px;
}

ul.genre-page-list li:last-child{
    border:none;
}


b{ font-weight: 600;  }


.lyric-text td{
    text-align: left;
    padding:10px;
}


.add-more-artists{
    display: none;
    padding-left: 30px;
}

.add-more-artists label{
    display: inline-block;
    width: auto !important;
    padding: 10px;
    background: #FEFEE3;
}


.lyric-alphabet.no-button{
    width: 100% !important;
    line-height: 50px;
}


.lyric-alphabet.no-button ul li a{
    padding: 0 17.5px;
}


.footer-widgets{
    background: #FFF;
    padding: 30px;
    margin:30px 15px;
    margin-bottom: 5px;
}

.media_background{
    padding: 6px;
}



.share{align-items: center;
    display: flex;
    gap: 12px;
    justify-content: start;
	width: 100%;text-align: center;
	padding-top:12px;
	padding-bottom:40px;

}


.share .facebook{
       width:100%;
	  background:#f5f6f7;
	  border-radius:12px;
	  padding-top:8px;
	  padding-bottom:6px
}

.share .whatsapp{
       width:100%;background:#f5f6f7;
	  border-radius:12px;
	  padding-top:8px;
	  padding-bottom:6px}

.share .mais{
       width:100%;
	  background:#f5f6f7;
		  border-radius:12px;
	  padding-top:8px;
	  padding-bottom:6px
}

.share ul li a{
    width: 40px;
    height: 40px;
    background: #cce0ff;
    color: #818d99;
    display: inline-block;
    margin: 0;    
    text-transform: Capitalize;
    cursor: pointer;
    z-index: 93;
    border-radius: 100px;
margin: 0px 8px 0px 0px;text-align: center;}

.share ul li svg{
       display: inline-block;
    margin: 0;    
    text-transform: Capitalize;
    cursor: pointer;
    z-index: 93;
    border-radius: 100px;
padding: 7px 0px 0px 0px;text-align: center;}


i.fa.fa-whatsapp {
	font-size: 21px;
    font-family: FontAwesome;
}

i.fa.fa-facebook {
	    font-size: 21px;
	font-weight:500px;
    font-family: FontAwesome;text-align: center;
	
}

i.fa.fa-twitter {
	font-size: 21px;
    font-family: FontAwesome;
}

i.fa.fa-linkedin-in {
	font-size: 21px;
    font-family: FontAwesome;
}

.single-ads-top {
    margin: auto;
    float: left;
    width: 100%;
	padding: 32px 10px 32px 0px 
}

@media (max-width: 768px) {
.container
 {
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
}
	
	
.col-destaque {
    width: 100%;
    height: auto;
    float: left;
    margin: auto;
    padding: 0 0 0px 0;
}
	
	
.single-noticia
 {
     width: 100%;
    height: auto;
    margin: auto;
    margin-top: 42px;
}
	
.destaque
 {
    width: 100%;
    height: auto;
    float: left;
    border-bottom: 0px solid #dbe1e5;
    padding-top: 32px;
    padding-bottom: 2rem;
}
	

.destaque .item:nth-child(1)

 {
    width: 100%;
    display: flex;
    margin: 0px 0px 12px 0px;
    position: relative;
    float: left;
}
	
.destaque .thumb:nth-child(1)
 {
    width: 100%;
    height: auto;
    float: left;
    border-radius: 8px;
}
	
.destaque .item .thumbnail {
    width: 100%;
    height: auto;
    float: left;
    border-radius: 8px;
    background-size: cover; padding-bottom: 56.25%;
}	
	
.destaque .item:nth-child(n+2):nth-child(-n+6) {
    width: 100%;
    float: left;
    margin: 0px 0px 12px 0px;
    position: relative;
}
	
.destaque .item:nth-child(1) .left .titulo
 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 30px;
}	
	
	
.destaque .item:nth-child(1) .left .titulo a
 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 30px;
}
	
.destaque .item .left .titulo a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 25px;
}
	
.destaque .item:nth-child(n+2):nth-child(-n+6) .thumb {
    width: 100%;
    height: auto;
    float: left;
    border-radius: 8px;
    margin: 0px 0px 0px 0px;
}	
	
	
.destaque .item:nth-child(n+2):nth-child(-n+6) .thumbnail
 {
    width: 100%;
    height: auto;
    float: left;
    border-radius: 8px;
    background-size: cover;
	}	
	
	
	
.ultimas-noticias {
    width: 100%;
    height: auto;
    margin: 16px 0px 0px 0px;
    float: left;
}
	
.ultimas-noticias .item
 {
    width: 100%;
    display: inline-block;
    margin-top: 32px;
    border-bottom: 1px solid #dbe1e5;
    padding: 0 0 32px 0;
}	
	
.ultimas-noticias .item .left
 {
    color: #030303;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 38px;
    float: left;
    margin-left: 0px;
    padding: 10px 0px 0px 0px;
}	
	
.ultimas-noticias .item .thumb {
    width: 100%;
    ;
    float: left;
    border-radius: 8px;
}
	
.ultimas-noticias .item .thumbnail {
    width: 100%;   
    float: left;
    border-radius: 8px;
    background-size: cover;
}

.ultimas-noticias .item:nth-of-type(3)
 {
    width: 100%;
    display: inline-block;
    margin-top: 32px;
    border-bottom: 1px solid #dbe1e5;
    padding: 0 0 32px 0;
}

.ultimas-noticias .item:nth-of-type(3) .thumb
 {
    width: 100%;
    
    float: left;
    border-radius: 8px;
}

.ultimas-noticias .item:nth-of-type(3) .thumbnail {
    width: 100%;
    
    float: left;
    border-radius: 8px;
    background-size: cover;
}	
	
}

@media (max-width: 800px) {
.container
 {
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
}
	
	
.col-destaque {
    width: 100%;
    height: auto;
    float: left;
    margin: auto;
    padding: 0 0 0px 0;
}
	
	
.single-noticia
 {
     width: 100%;
    height: auto;
    margin: auto;
    margin-top: 42px;
}
	
.destaque
 {
    width: 100%;
    height: auto;
    float: left;
    border-bottom: 0px solid #dbe1e5;
    padding-top: 32px;
    padding-bottom: 2rem;
}
	

.destaque .item:nth-child(1)

 {
    width: 100%;
    display: flex;
    margin: 0px 0px 12px 0px;
    position: relative;
    float: left;
}
	
.destaque .thumb:nth-child(1)
 {
    width: 100%;
    height: auto;
    float: left;
    border-radius: 8px;
}
	
.destaque .item .thumbnail {
    width: 100%;
    height: auto;
    float: left;
    border-radius: 8px;
    background-size: cover; padding-bottom: 56.25%;
}	
	
.destaque .item:nth-child(n+2):nth-child(-n+6) {
    width: 100%;
    float: left;
    margin: 0px 0px 12px 0px;
    position: relative;
}
	
.destaque .item:nth-child(1) .left .titulo
 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 110%;
}	
	
	
.destaque .item:nth-child(1) .left .titulo a
 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 110%;
}
	
.destaque .item .left .titulo a {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 110%;
}
	
.destaque .item:nth-child(n+2):nth-child(-n+6) .thumb {
    width: 100%;
    height: auto;
    float: left;
    border-radius: 8px;
    margin: 0px 0px 0px 0px;
}	
	
	
.destaque .item:nth-child(n+2):nth-child(-n+6) .thumbnail
 {
    width: 100%;
    height: auto;
    float: left;
    border-radius: 8px;
    background-size: cover;
	}	
	
	
	
.ultimas-noticias {
    width: 100%;
    height: auto;
    margin: 16px 0px 0px 0px;
    float: left;
}
	
.ultimas-noticias .item
 {
    width: 100%;
    display: inline-block;
    margin-top: 32px;
    border-bottom: 1px solid #dbe1e5;
    padding: 0 0 32px 0;
}	
	
.ultimas-noticias .item .left
 {
    color: #030303;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 38px;
    float: left;
    margin-left: 0px;
    padding: 10px 0px 0px 0px;
}	
	
.ultimas-noticias .item .thumb {
    width: 100%;
    ;
    float: left;
    border-radius: 8px;
}
	
.ultimas-noticias .item .thumbnail {
    width: 100%;   
    float: left;
    border-radius: 8px;
    background-size: cover;
}

.ultimas-noticias .item:nth-of-type(3)
 {
    width: 100%;
    display: inline-block;
    margin-top: 32px;
    border-bottom: 1px solid #dbe1e5;
    padding: 0 0 32px 0;
}

.ultimas-noticias .item:nth-of-type(3) .thumb
 {
    width: 100%;
    
    float: left;
    border-radius: 8px;
}

.ultimas-noticias .item:nth-of-type(3) .thumbnail {
    width: 100%;
    
    float: left;
    border-radius: 8px;
    background-size: cover;
}	
	
}



.lg\:h-14 {
        height: 3.5rem;
    }