.gd-modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.20);
backdrop-filter: blur(2px);
  z-index: 999999;
}
.gd-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gd-modal__dialog {
  max-width: 500px;
  width: 500px;
  background: #ffffff;
  border-radius: 40px;
  padding: 40px;
  color: #000000;
}
.gd-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gd-modal__header p {
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.gd-modal__close {
  cursor: pointer;
}
.gd-modal__header svg {
  width: 20px;
  height: 20px;
}
.gd-modal__actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 30px;
}
/* .gd-btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
} */
body .gd-btn {
  color: #fff !important;
  text-align: center !important;
  font-family: Poppins !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 19.2px !important;
}
html body .gd-modal__actions .gd-btn-cancle {
  color: #fff !important;
  border-radius: 40px !important;
  background-color: #212121 !important;
  border: 1px solid #212121 !important;
  padding: 8px 20px !important;
  align-items: center;
}
body .gd-btn-yes {
  border-radius: 40px !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  background-color: #fff !important;
  padding: 8px 20px !important;
  align-items: center !important;
}
@media (max-width: 768px) {
  .gd-modal.is-open {
    padding: 0 20px;
    
  }
  .gd-modal__dialog {
    padding: 20px;
    border-radius: 20px;
  }
  .gd-modal__actions {
    margin-top: 20px;
  }
}
/* gd-logout.css --- IGNORE --- */