/*-----------------------------------------------------------------------------
 * This files defines the color palette for the PWP.
 *----------------------------------------------------------------------------*/
/* Zeteo Colors */
/* Zeteo Tints */
/* Highlight color for hovered autocomplete suggestions */
/* Sidebar background color */
/* Color of "normal" buttons */
/* Color of secondary buttons */
/* Default color of links */
/* Default color of external links */
/* Background color of the search box */
/* Border and triangle color of dropdowns */
/* Footer Background Color */
/* header background color */
/*-----------------------------------------------------------------------------
 * Alerts (Drupal messages)
 *----------------------------------------------------------------------------*/
/* Legacy Colors */
/* Grayscale */
/*-----------------------------------------------------------------------------
 * This file defines the break points for device screen size classifications --
 * what counts as a 'small', 'medium', 'large', 'mobile', etc. device.
 *----------------------------------------------------------------------------*/
/*****************************************************************************
 * Provides mixins specific to PWP headings
 *****************************************************************************/
/*-----------------------------------------------------------------------------
 * This file defines LESS mixins that are not tied to any particular module or
 * purpose, but rather, are universally useful.
 *----------------------------------------------------------------------------*/
/**
 * @brief
 *	Styles a button that includes a drop-down menu with a caret to open the menu
 */
/**
 * @brief
 *	Prevents an element from being highlighted/selected
 */
/**
 * @brief
 *	Adds the (prefixed) transition timing property
 */
/**
 * @brief
 *	Adds the (prefixed) cursor
 */
/**
 * @brief
 *	Provides the default style for an item in a drop-down menu (including
 *  autocomplete)
 */
/**
 * @brief
 *	Provies the style for the currently highighted item in a drop-down menu
 *	(including autocomplete)
 */
/*-----------------------------------------------------------------------------
 * The following items provide a default style for PWP dropdowns
 *----------------------------------------------------------------------------*/
/* The default padding for the modal and dropdown */
/* The default style for the thick edge of a dropdown */
/* The default dimensions of the dropdown triangle */
/**
 * @brief
 *	Generates the style for the main/containing element of a dropdown
 */
/**
 * @brief
 *	Generates the style for triangles of dropdowns that are positioned below the
 *	"parent" element
 */
/**
 * @brief
 *	Generates the style for triangles of dropdowns that are positioned above the
 *	"parent" element
 */
/**
 * @brief
 *	Generates the default style for headigs of a dropdown
 */
/*-----------------------------------------------------------------------------
 * The following items provide a default style for PWP modals
 *----------------------------------------------------------------------------*/
/* The height for the modal heading */
/**
 * @brief
 *	Generates the default style for the modal box
 */
/**
 * @brief
 *	Generates the default style for the modal content
 */
/**
 * @brief
 *	Generates the default style for the modal header
 */
/**
 * @brief
 *	Generates styling for the resources displayed using images.
 */
.slide-container {
  overflow: hidden;
}
.slider {
  transition: all 1s;
}
.sliden {
  transform: translateX(-1000%);
}
.expander {
  transition: all 1s;
}
.expanded {
  transform: scaleX(5);
}
/*-----------------------------------------------------------------------------
 * Default modal widget styles
 *----------------------------------------------------------------------------*/
#modal-overlay-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Enable scroll for mobile */
  overflow-y: scroll;
}
#modal-overlay-container::-webkit-scrollbar {
  display: none;
}
.modal-overlay-background {
  /* Fix position so cannot scroll beyond it */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.pwp-modal {
  border-top: 3px solid #8c8b89;
  padding: 20px;
  position: absolute;
  /* Default color for content */
  color: #8c8b89;
  border-top: none;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-filter: "alpha(opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  z-index: 20;
  width: auto;
  min-height: auto;
  max-width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Default "main" header style for content */
}
.pwp-modal input[type=text] {
  border: 1px solid #dbd5cd;
  padding: 0 3px;
}
@media (max-width: 768px) {
  .pwp-modal {
    width: 90%;
    height: 90%;
    top: 0;
  }
}
.pwp-modal.allow-overflow #modal-content {
  overflow-y: visible;
}
.pwp-modal #modal-header {
  /* Provide a set height for use to calculate content height */
  width: 100%;
  height: 40px;
  background-color: #8c8b89;
}
.pwp-modal #modal-header .close-modal {
  color: black;
  background-color: inherit;
  float: right;
  margin: 3px;
  cursor: pointer;
  padding: 7px 10px;
}
.pwp-modal #modal-header .close-modal:hover {
  color: #ffffff;
  background-color: #ac4644;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.pwp-modal #modal-content {
  padding: 20px;
  clear: both;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .pwp-modal #modal-content {
    /* Center the content vertically and horizontally*/
    display: flex;
    align-self: center;
    justify-content: center;
    /* Calculate the height based on the fixed header height */
    height: calc(100% - 40px);
  }
  .pwp-modal #modal-content .position-content {
    /* This causes the margin to align at top of #modal-content */
    margin: auto;
    align-self: center;
    padding: 1em;
  }
}
.pwp-modal h2 {
  font-size: 25px;
  font-family: Arial;
  font-weight: bold;
  color: black;
  font-size: 100%;
  text-transform: uppercase;
  margin: 0;
}
