.barrier-popup__dialog {
  border: 0;
  border-radius: 1.5625rem;
  padding: 3.75rem;
  gap: 1.5rem 1.8125rem;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  margin: 1.875rem;
  max-width: 37.5rem;
  margin: 0 auto;
  z-index: 4;
}
.barrier-popup__dialog-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
  margin: 0;
  padding-bottom: 0.75rem;
}
.barrier-popup__dialog-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin: 0 0 1.5rem;
}
.barrier-popup__dialog-buttons {
  display: flex;
  gap: 1.25rem;
  width: 100%;
}
.barrier-popup__dialog-buttons .bc__button {
  width: 12.5rem;
  max-height: 2.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
}
@media screen and (max-width: 600px) {
  .barrier-popup__dialog {
    padding: 2.5rem 1.25rem;
    margin: 0 auto;
    height: fit-content;
    position: fixed;
    border-radius: 0;
    bottom: 0;
    top: auto;
    transform: none;
  }
  .barrier-popup__dialog-buttons .bc__button {
    width: 9.5rem;
    font-size: 1rem;
  }
}

.dialog-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  z-index: 3;
}
