@charset "utf-8";
/* CSS Document */

.art-container{
  display: block !important;
  width: 100%;
  background-color: #21212;
  margin:0 auto;
  padding: 0;
  border-radius: 5px;
}

.art-title{
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #c2b685;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.art-title p{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height:100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-left: 2px solid #b39d4d;
  text-transform: uppercase;
  margin: 0px;
}

.art-title p:first-child{
  border-left: none;
}

.art-item{
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.art-item p {
  width: 100%;
  text-align: center;
  color: #fff;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
}

.art-item-impar{
  background-color: #101010;
}

.art-item-par{
  background-color: #191919;
}


@media screen and (max-width: 320px) {
     container {
       display: block;
       overflow-x: auto;
     }
}

.easyPaginateNav {    
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  padding: 10px 0;
  width: 100% !important;
}

/* Paginador */
.easyPaginateNav a {
    border: 1px solid #202020;
    border-radius: 4px;
    margin: 5px;
    padding:5px 10px;
}

.easyPaginateNav a.current {
    background: #050505;
    border: 1px solid #050505;
    font-weight:bold;text-decoration:none;
    color: yellow;
  }

#easyPaginate div {
    display:flex !important;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .easyPaginateNav a {
    padding: 2px 5px;
  }
}