.dialog-v2 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-areas: "main";
  z-index: 100;
  overflow: auto;
}

.dialog-v2__overlay {
  grid-area: main;
  background: rgba(0, 0, 0, 0.3);  
}

.dialog-v2__top {
  margin-bottom: 24px;
}

.dialog-v2__bottom {
  margin-bottom: 24px;
}

.dialog-v2__main {
  grid-area: main;
  place-self: center;
  margin-top: 80px;
  margin-bottom: 80px;
  place-self: center;
}

.dialog-v2__window {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px;
  border-radius: 8px;
  background-color: #fff;
  min-width: 320px;
  width: 560px;
  max-width: 100vw;
  margin-top: 0;
  margin-bottom: 0;
}

.dialog-v2__titlebar {
  display: flex;
  gap: 24px;
}

.dialog-v2__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.dialog-v2__close {
  margin-left: auto;
  color: #676767;
  cursor: pointer;
}

.dialog-v2__actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

@media (max-width: 570px) {
  .dialog-v2__window {
    max-width: none;
    width: auto;
    margin-left: 5px;
    margin-right: 5px;
  }
}
