.canvas {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: scroll;
}

#canvas_mobile_menu {
  z-index: 100;
}

.dialog {
  position: absolute;
  top: -300vh;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s;
}
.dialog .wrap {
  background-color: #fff;
  box-shadow: 0 15px 40px rgba(47, 54, 157, 0.18);
  padding: 20px 40px;
  margin: 20px 10px;
  position: relative;
}
.dialog * {
  transition: all 0.5s;
}
.dialog.visible {
  top: 0;
}
.dialog .cross {
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("/images/cross.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dialog .cross:hover {
  transition: all 0.2s ease;
  transform: rotate(90deg);
}
.dialog h4, .dialog h6 {
  margin-top: 20px;
}
.dialog .title-photo {
  margin: 20px -40px;
}
.dialog .title-photo img {
  width: 100%;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
}
.dialog .title-photo.obj-center img {
  object-position: center;
}
.dialog .title-photo.obj-bot img {
  object-position: bottom;
}
.dialog .loading {
  margin: 80px 40px;
  text-align: center;
}
.dialog .loading img {
  width: 200px;
  max-width: 100%;
}
.dialog .loading span {
  display: block;
  font-size: 22px;
  color: #584EB2;
  margin-top: 20px;
  animation: blink 3s linear infinite;
}
@keyframes blink {
  0% {
    color: #584eb2;
  }
  50% {
    color: rgba(34, 34, 34, 0);
  }
  100% {
    color: #584eb2;
  }
}
.dialog .feed-back .b-privacy {
  width: 100%;
}
.dialog .feed-back .b-privacy label {
  display: flex;
}
.dialog .feed-back .b-privacy label span {
  padding: 0 0 0 10px;
  font-size: 14px;
}

#dialog_text {
  width: 100%;
  max-width: 1000px;
}

#dialog_callback {
  width: 100%;
  max-width: 1000px;
}

#dialog_callback, #dialog_order {
  width: 100%;
  max-width: 470px;
}

#dialog_info {
  position: fixed;
  width: 100%;
  max-width: 360px;
}

/*# sourceMappingURL=dialog.css.map */
