/*..............................*/
/*__________PAGINATION__________*/
/*..............................*/
.paginPictures,
.paginProfiles {
	display: flex;
	justify-content: center;
	align-items: center;
    flex-wrap: wrap;
	margin-top: 20px;
	margin-bottom: 40px;
}

.paginPictures > a,
.paginProfiles > a {
	text-decoration: none;
	display: block;
	cursor: pointer;
}

.paginPictures > a > div,
.paginProfiles > a > div {
	margin: 0 4px;
	color: #fff;
	font-size: 20px;
	padding: 2px 5px;
	text-align: center;
	transition: .2s;
	border-radius: 5px;
}

.paginPictures > a > div:hover,
.paginProfiles > a > div:hover {
    background-color: #d97600;
}

.paginPictures > a > .active,
.paginProfiles > a > .active {
    background-color: #d97600;
}

.paginPictures > a > .first,
.paginPictures > a > .last,
.paginProfiles > a > .first,
.paginProfiles > a > .last {
	padding: 5px 0px;
}


.goToPageWrap{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

#goToPageNumber{
    text-align: center;
    width: 60px;
    font-size: 20px;
    padding: 2px 5px;
    color: #fff;
    background-color: #333;
    border: 1px solid #a7a7a7;
    transition: .2s;
}
#goToPageNumber:focus{
    outline: none;
    border: 1px solid #d97600;
}
#goToPageNumber:hover{
    border: 1px solid #d97600;
}

#goToPage{
    font-size: 20px;
    padding: 3px 5px;
    text-decoration: none;
    color: #ddd;
    transition: .2s;
}

#goToPage:hover{
    color: #fff;
}

#goToPage i{
    position: relative;
    top: 0;
    left: 0;
    transition: .2s;
}

#goToPage:hover i{
    left: 5px;
    color: #d97600;
}

/*..............................*/
/*__________RESPONSIVE__________*/
/*..............................*/
@media(max-width: 360px){
    .paginProfiles > a > div {
        margin: 0 2px;
        font-size: 20px;
        padding: 2px 4px;
    }
}

@media(max-width: 180px){
    #goToPage span{
        display: none;
    }
}














