#popup-container {
  position: fixed;
  right: 0;
  bottom: 0;
  max-width: 370px;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  border-radius: 10px;
  display: none;
  z-index: 1000; }
  @media (max-width: 767px) {
    #popup-container {
      max-width: max-content; } }
  #popup-container .btn-reject {
    margin-bottom: 0;
    margin-left: 20px;
    min-width: max-content;
    height: 40px; }
  #popup-container .btn-default {
    margin-bottom: 0;
    height: 40px; }

.popup-content {
  padding: 10px;
  text-align: left; }

.popup-content h2 {
  margin-top: 0;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px; }

.popup-content p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 20px; }

.popup-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between; }

/* Form Popup Content */
/* Close Button */
#close-form-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: white; }

/* Form Labels and Inputs */
.toast-message {
  color: #0a0a0a;
  font-size: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  font-weight: 600;
  justify-content: center;
  text-transform: uppercase;
  font-family: "Barlow-Regular"; }
  @media (max-width: 767px) {
    .toast-message {
      font-size: 14px;
      text-align: center;
      line-height: 20px; } }

.invalid {
  border-color: red; }

.error-message {
  color: #f93333;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500; }

.pdp-minute-popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  z-index: 100;
  height: 100%; }
