/* Popup styles */
.gt-popup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1004;
}

.gt-popup__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--darkBlue);
  color: #fff;
  border: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gt-popup__toggle:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.gt-popup__toggle img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.gt-popup__panel {
  position: fixed;
  right: 20px;
  bottom: 86px;
  width: min(90vw, 380px);
  max-height: 80vh;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.gt-popup__panel[hidden] {
  display: none;
}

.gt-popup__header {
  padding: 12px 16px;
  background: var(--darkBlue, #0a2740);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gt-popup__title {
  font-weight: 600;
  margin: 0;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
}

.gt-popup__close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.gt-popup__body {
  padding: 16px;
  overflow: auto;
  max-height: calc(80vh - 52px);
}

.gt-popup__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1003;
}

.gt-popup__backdrop[hidden] {
  display: none;
}

.gt-popup__body form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gt-popup__body form * {
  margin: 0;
}

.gt-popup__body form label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.gt-popup__body form input:focus,
.gt-popup__body form textarea:focus {
  outline: none;
  border-color: #0a2740;
}

.gt-popup__body form input:focus-visible,
.gt-popup__body form textarea:focus-visible {
  outline: none;
  border-color: #0a2740;
}

.gt-popup__body form input,
.gt-popup__body form textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid #000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.gt-popup__body form input[type="submit"] {
  background: #0a2740;
  color: #fff;
  border: 0;
  padding: 10px;
  border-radius: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border: 1px solid #0a2740;
  cursor: pointer;
}
.gt-popup__body form input[type="submit"]:hover {
  background: #fff;
  color: #0a2740;
  border: 1px solid #0a2740;
}
