/*
 * DO NOT EDIT THIS FILE.
 * Edit .pcss.css file instead and recompile.
*/

/**
 * @file
 */

/*
  Custom CSS properties and mixins.
  These are "compiled" by postcss/postcss-custom-properties for IE11 compatibility.
  CSS variables (those that start with --) are included in the generated CSS. Sass style variables (those that start with $) are for internal processing.
*/

/* Internal variables */

/*1px */

/*16px */

/*4px */

/*5.33333333px */

/*8px */

/*24px */

/*32px */

/*48px */

/*max-width + 32px; */

/* Mixins */

/* */

/* Hide elements visually, but keep them available for screen-readers. */

/* */

/* Used for information required for screen-reader users to understand and use */

/* the site where visual display is undesirable. Information provided in this */

/* manner should be kept concise, to avoid unnecessary burden on the user. */

/* "!important" is used to prevent unintentional overrides. */

/* */

.ui-widget-overlay {
  background-color: black;
  opacity: .8;
}

.ui-dialog {
  box-shadow: var(--box-shadow);
  border-radius: var(--base-border-radius);
}

.ui-dialog.ui-widget-content {
    border: none;
  }

.ui-dialog .ui-dialog-titlebar {
    background: var(--c-dark-gray);
    color: white;
    border: none;
    border-radius: var(--base-border-radius) var(--base-border-radius) 0 0;
    padding: 0 0 0 1em;
    height: 4rem;
    position: relative;
    display: flex;
    align-items: center;
  }

.ui-dialog .ui-dialog-buttonpane {
    border-radius: 0 0 var(--base-border-radius) var(--base-border-radius);
    /*border: none; */
    /*background: var(--c-canvas); */
  }

.ui-dialog .ui-dialog-titlebar-close {
    line-height: 800%;
    overflow: hidden;
    top: 0;
    right: 0;
    border-radius: 0 var(--base-border-radius) 0 0;
    background-color: white;
    height: 4rem;
    border: none;
    margin: 0;
    width: 4rem;
    transition: background-color var(--transition);
  }

.ui-dialog .ui-dialog-titlebar-close .ui-icon {
      background-image: url("data:image/svg+xml,%3Csvg width='47' height='47' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23961B1E' stroke-width='8' fill='none' fill-rule='evenodd' stroke-linecap='round'%3E%3Cpath d='M31.60344777 14.93640669L14.54644753 31.99340693M14.65283268 15.51921837L31.4970637 32.36344941'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center center;
      height: 47px;
      width: 47px;
      top: calc(100% - 47px);
      left: calc(100% - 47px);
    }

.ui-dialog .ui-dialog-titlebar-close:hover {
      background-color: var(--c-light-gray);
    }

.ui-dialog .ui-dialog-titlebar-close:hover .ui-icon {
        background-position: center center;
        background-image: url("data:image/svg+xml,%3Csvg width='47' height='47' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%230066cc' stroke-width='8' fill='none' fill-rule='evenodd' stroke-linecap='round'%3E%3Cpath d='M31.60344777 14.93640669L14.54644753 31.99340693M14.65283268 15.51921837L31.4970637 32.36344941'/%3E%3C/g%3E%3C/svg%3E");
      }
