﻿.popup-window {
  background: white;
  border: 1px solid #333333;
  box-shadow: 0 0 75px black;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 31;
}
@media (max-width: 1000px) {
  .popup-window {
    z-index: 960;
    left: 0 !important;
    margin-left: 0% !important;
    margin-right: 0% !important;
    margin-top: 0px !important;
    min-height: auto !important;
    box-shadow: 0 0 0px black !important;
    border-top: none !important;
    border-bottom: 2px solid #333333 !important;
    border-left: none !important;
    border-right: none !important;
    top: 0 !important;
    width: 100% !important;
  }
}
.popup-background {
  background: #333333;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 30;
}
.popup-content {
  padding: 70px 20px 20px;
}
.popup-content .popup-header {
  background: none repeat scroll 0 0 #333333;
  color: white;
  font-family: "DINWeb Bold", Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: normal;
  height: 52px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding: 14px 60px 6px 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media (min-width: 480px) {
  .popup-content .popup-header {
    font-size: 24px;
    padding: 12px 60px 6px 20px;
  }
}
.popup-close {
  background: url(/Images/close-x-sprite.png) no-repeat center bottom;
  height: 16px;
  width: 51px;
  top: 16px;
  right: 16px;
  position: absolute;
  z-index: 1;
}
.popup-close:hover {
  cursor: pointer;
  background-position: 0 -16px;
}
.popup-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding-block-start: 20px;
  margin-block-start: 20px;
  border-block-start: 2px solid black;
}
.popup-footer.NoTopMargin {
  margin-block-start: 0;
}
.popup-footer input[type="button"]:last-child,
.popup-footer input[type="submit"]:last-child,
.popup-footer button:last-child {
  margin-inline-start: auto;
}
