#supportWidget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

#supportWidgetDialog {
  margin-bottom: 88px;
  margin-right: 15px;
  max-width: 600px;
  width: calc(100vw - 30px);
  box-sizing: border-box;
  background-color: white;
  flex-direction: column;
  border-width: 1px;
  gap: 8px;
  border-radius: 5px;
  padding:20px;
  border-style:none;
}

#supportWidgetDialog[open] {
  display: flex;
}
@media (width <= 360px) {
  #supportWidgetDialog {
    margin-right: 0;
    width: 100vw;
  }
}

#closeSupportWidgetFormBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: large;
  border-radius: 50%;
  border: none;
  background-clip: border-box; /* Only show background-color inside the border */
  background-color: transparent;
}

#closeSupportWidgetFormBtn:hover {
  background-color: #6ea6d140;
}

#closeSupportWidgetFormBtn:active {
  background-color: #6ea6d180;
}

#supportWidgetDialog #successMessage {
  color: #232E3D;
  width: 100%;
  text-align: center;
}

#supportWidgetLauncher {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  background-color: #141f33;
  border: white 2px solid;
  border-radius: 50%;
  cursor: pointer;
  padding: 4px;
  box-shadow: 1px 2px 3px #6ea6d1;
}

#supportWidgetLauncher.isOpen {
  transform: scale(1.1);
  transform-origin: center;
}

#supportWidgetLauncher:hover {
  transform: scale(1.1);
  transform-origin: center;
}

#supportWidgetLauncher svg {
  width: 23px;
  height: 23px;
  margin: auto;
}

::backdrop {
  background-color: #232E3D;
  opacity: 0.64;
}
