.btn {
  border-radius: 8px;
  padding: 4px 4px 4px 20px !important;
  line-height: 1 !important;
  gap: 20px;
  display: flex;
  align-items: center;
  width: fit-content;
  cursor: pointer;
}

.btn.btn-primary {
  background-color: var(--surface);
  color: var(--white);
}

.btn.btn-secondary {
  background-color: var(--surface-primary);
  color: var(--white);
}

.btn .icon {
  background-image: url("../img/icon-arrow.svg") !important;
  background: no-repeat;
  background-position: center;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.btn.btn-primary:hover .icon {
  background-color: var(--surface-primary);
}
.btn.btn-secondary:hover .icon {
  background-color: var(--surface);
}
.btn .text {
  font-size: var(--fz-20);
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
}
.global-slider-style-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-direction: row-reverse;
}
.global-slider-style-1 .btn-next,
.global-slider-style-1 .btn-prev {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #dee5e9;
  position: static;
  border-radius: 8px;
}

.global-slider-style-1 .btn-next {
  left: 100%;
  top: 50%;
}
.global-slider-style-1 .btn-prev {
  right: 100%;
  top: 50%;
}

@media (min-width: 1200px) {
  .global-slider-style-1 .btn-next,
  .global-slider-style-1 .btn-prev {
    position: absolute;
  }
  .global-slider-style-1 .btn-prev {
    transform: translate(-50%, -50%);
  }
  .global-slider-style-1 .btn-next {
    transform: translate(50%, -50%);
  }
  .global-slider-style-1 {
    margin-top: 0px;
  }
}
