@charset "UTF-8";

.previous {
  display: inline-block;
  border-radius: 4px;

  border: none;
  
  text-align: center;
  font-size: 18px;
  padding: 10px;
  width: 100px;
  height: 100px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 0px;
  align-content: center;
  margin-bottom: 20px;
}
.Next {
  display: inline-block;
  border-radius: 4px;
 
  border: none;
 
  text-align: center;
  font-size: 18px;
  padding: 10px;
  width: 100px;
  height: 100px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 0px;
  align-content: center;
  
  margin-bottom: 20px;
}
.previous span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.previous span:after {
  content: '\00bb';
  transform: rotate(180deg);
  position: absolute;
  opacity: 0;
  top: 0;
  left: -20px;
  transition: 0.5s;
}
.previous:hover span {
  padding-left: 25px;

}
.previous:hover span:after {
  opacity: 1;
  left: 0;
}


.Next span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.Next span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.Next:hover span {
  padding-right: 25px;

}
.Next:hover span:after {
  opacity: 1;
  right: 0;
}

@media screen and (max-width: 768px) {

  .previous {
    height: 120px;}
    .Next {
      
      height: 120px;
    }

}