/* Components styles */

/* =========================
   Buttons
========================= */

.sr-btn {
  width: 230px;
  height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;

  text-decoration: none;
}

.sr-btn--light {
  background: #ECEFF2;
  color: #464855;
}

.sr-btn--outline {
  background: #464855;
  color: #ffffff;
  border: 1px solid #ECEFF2;
}

/* =========================
   Slider arrows
========================= */

.sr-review-arrow,
.sr-article-arrow,
.sr-products-arrow {
  width: 50px;
  height: 50px;

  border-radius: 25px;
  border: 1px solid rgba(70, 72, 85, 0.5);

  background: transparent;

  padding: 0;

  font-size: 20px;
  line-height: 1;
  color: #464855;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 1;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.sr-review-arrow:hover,
.sr-article-arrow:hover,
.sr-products-arrow:hover {
  background: transparent;
  border-color: #464855;
}

.sr-review-arrow,
.sr-article-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.sr-review-arrow--prev,
.sr-article-arrow--prev {
  left: -70px;
}

.sr-review-arrow--next,
.sr-article-arrow--next {
  right: -70px;
}


/* Product slider arrows wrapper */

.sr-products-arrows {
  margin-top: 24px;

  display: flex;
  justify-content: center;
  gap: 10px;
}