.pricing-panel {
  z-index: 5;
  position: fixed;
  top: 0;
  right: -300px;
  width: 250px;
  height: 96%;
  background: #fffdfe;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
  transition: right 0.5s ease;

  display: flex;
  flex-direction: column;

  .individual-price {
    margin-bottom: 10px;
  }
  .group-price {
    margin-top: 0;
  }
}
.pricing-panel.show {
  right: 0;
}
.toggle-btn {
  z-index: 5;
  position: fixed;
  padding: 10px 15px;
  background: #4f6097;
  border-radius: 12px 0px 12px 0px;
  color: white;
  border: none;
  font-size: medium;
  cursor: pointer;
  transform: rotate(-0.25turn);
  top: 30%;
  right: 0%;
}
.close-btn {
  z-index: 5;
  position: absolute;
  top: 10px;
  right: 0px;
  background: #bedaef;
  font-size: medium;
  color: black;
  border: none;
  padding: 5px 10px;
  border-radius: 12 0 12 0;
  cursor: pointer;
}
.overlay {
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.overlay.show {
  display: block;
}
.pribina-s {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 768px) {
  .toggle-btn {
    right: -6%;
  }
}
@media (min-width: 769px) {
  .toggle-btn {
    right: -3%;
  }
}

@media (min-width: 1001px) {
  .toggle-btn {
    right: -1.5%;
  }
}
