/* Loader icon for add image */
.overlay{	
    position: absolute;
    height: 100px;
    width: 100px;
    top: 42%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    background-size: 100%;
    z-index: 100;
    display: none;
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    100% { 
        transform: rotate(360deg); 
    }
}

/* Pagination style  */

#paginationArea a, #paginationArea strong {
  padding: 6px 10px;
  margin: 3px;
  border: 1px solid #ddd;
  text-decoration: none;
}

#paginationArea {
  margin-top: 15px;
}

#paginationArea strong,
#paginationArea a.active {
  background: #2c6ed5;
  color: white;
}

#prevPageBtn {
  pointer-events: none;
  opacity: 0.4;
}