.wrapper-pagination {
    height: 5pc;
    display: flex;
    align-items: center;
    justify-content: flex-end;
	padding-right: 43px;
	font-size: 18pt;
	font-family: Achemine;
	font-weight: bold;
	margin-left:17px;
}
.pagination #text{
	margin-left: 17px;
}
.pager{
	padding-inline-start:0;
	padding-inline-end:40px;
	-webkit-margin-end: 17px;
}
 .pagination__item {
    display: inline-block;
    margin: 10px 10px 0;
    transform: translateX(100%);
    transition: transform ease-in    0.3s;

}
.pagination__link {
    position: relative;
    text-indent: -99em;
    overflow: hiddin;
    display: block;
    width: 35px;
    height: 35px;
	margin-left:-15px;
}
.pagination__link:before, .pagination__link:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /*border: 3px solid #404040;*/
    border: none;
    transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.pagination__link:before {
    background: white;
    /*transform: scale(0.5);*/
	width: 20px;
    height: 20px;
	background-color: #8C8C8C;
	border: solid 7px #292929;
/*	border: solid 7px red;*/
}
.pagination__link:hover:after {
    /*transform: scale(1.1);*/
}
.pagination__link.is_active:before {
    /*transform: scale(0.5);*/
	border: solid 7px #404040;
	width: 20px;
    height: 20px;
	background-color: white;
}
.pagination__link.is_active:after {
    /*transform: scale(0.5);*/
	border: solid 7px #404040;
	width: 20px;
    height: 20px;
	background-color: white;
}

.is-open {
	transform: translateX(0);
  }
