.lid-btn
{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.btn_page {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: fit-content;
  min-width: 200px;
  padding: 15px;
  background: #ff7f00;
  border-radius: 10px;
  outline: 0px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.0125em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  transition: all 0.3s ease 0s;
  color: #fff;
}

.btn_page:before {
  content: '\e90c';
		font-family: 'icomoon' !important;
		color: #fff;
		font-size: 20px;
		speak: never;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		margin-right: 12px;
		transition: 0.3s;
}


.btn_page:after {
  content: '\e90b';
		font-family: 'icomoon' !important;
		color: #fff;
		font-size: 20px;
		speak: never;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		margin-left: 12px;
		transition: 0.3s;
}

.btn_page:hover{
  color: #ff7f00;
  background-color: #fff;
  color:reff7f00d;
  box-shadow: inset 0 0 0 1px #ff7f00;
  transition: 0.3s;
}

.btn_page:hover::before
{
  color: #ff7f00;
}

.btn_page:hover::after
{
  color: #ff7f00;
}
@media screen and (max-device-width: 438px) {
.btn_page {
  margin-top: 10px;
}

