.previousBtn {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: red;
  border-radius: 8px;
  background: rgb(33, 104, 176);
  background: linear-gradient(126deg, #1631ef 0%, #0d1a73 100%);
  cursor: pointer;
  transition: 0.3s;

  &:hover {
    opacity: 0.8;
  }
}
.previousBtn svg {
  width: 20px;
  fill: #fbfdff;
}

/* Media query */
/* =========== */
@media screen and (max-width: 600px) {
  .previousBtn {
    width: 36px;
    height: 36px;
  }
  .previousBtn svg {
    width: 12px;
  }
}
