/* Contains the styles for the page popup. */

/* Contains the common CSS constants for the whole application. */
/*#region Common colors*/
/*#endregion Common colors*/
/*#region Shadow colors*/
/*#endregion Shadow colors*/
/*#region Text*/
/* Dark color for text in the application */
/*#endregion Text*/
/*#region Content constants*/
/*#endregion*/
/*#region Z-indexes*/
/* Has to be higher than map canvas. */
/* Has to be higher than expanded map place holder. */
/* Has to be higher than expand map button. */
/* The layouts z indexes are for internal purposes only.
                                They are not for styling. */
/*#endregion Z-indexes*/
/*#region Global time picker constants*/
/*#endregion Global time picker constants*/
/* Contains mixins for the application. Mixins are methods that simplify the reuse of a block of CSS
   code with parameters. */
/* The cursor is shown as a pointer over the element */
#PagePopupOverlay {
  background-color: rgba(200, 200, 200, 0.7);
  display: table;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  table-layout: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
}
#PagePopupOverlayContent {
  display: table-cell;
  position: relative;
  vertical-align: middle;
  width: 100%;
}
#PagePopupWindow {
  background-color: #f9f7f0;
  display: inline-block;
  font-size: 0;
  margin: auto;
  min-height: 400px;
  min-width: 430px;
  overflow: hidden;
  vertical-align: middle;
  z-index: 10001;
}
#PagePopupHeader {
  background-color: #2972e1;
  color: white;
  display: inline-block;
  font-size: 20px;
  height: 45px;
  -o-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}
#PagePopupTitle {
  float: left;
  padding: 10px;
}
#PagePopupWindowCloseButton {
  cursor: pointer;
  cursor: hand;
  float: right;
  padding: 10px;
}
#PagePopupContent {
  position: relative;
}
#PagePopupActions {
  background-color: #f9f7f0;
  border-bottom: 1px solid #edeae3;
  font-size: 12px;
  padding-bottom: 8px;
  padding-left: 15px;
  padding-top: 5px;
  text-align: left;
  -o-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
#PagePopupPartialView {
  background-color: #f9f7f0;
  display: block;
  font-size: 12px;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
  vertical-align: middle;
  -webkit-overflow-scrolling: touch;
}
#PagePopupLoading {
  background-color: #f9f7f0;
  background-image: url("Images/Loading.gif");
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 355px;
  min-width: 430px;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 800px) {
  #PagePopupOverlay {
    position: static;
  }
  #PagePopupWindow {
    height: 100% !important;
    min-height: 200px;
    min-width: 290px;
    width: 100% !important;
  }
  #PagePopupLoading {
    min-height: 200px;
    min-width: 290px;
  }
  #PagePopupContentWhenNotAvailable {
    font-size: 12px;
    padding: 20px;
    text-align: left;
    width: 250px;
  }
  /* The popup content can be available on
                                  small devices.
                                  PagePopupContentNotAvailableOnSD class is
                                  applied when the content is not available
                                  on small devices.*/
  
  #PagePopupContent.PagePopupContentNotAvailableOnSD {
    display: none;
  }
}
@media screen and (min-width: 801px) {
  #PagePopupContentWhenNotAvailable {
    display: none;
  }
}
