/*-----------------------------------------------------------------------------
 * 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 popover widget styles
 *----------------------------------------------------------------------------*/
.pwp-popover-outer {
  position: absolute;
  z-index: 1000;
  /* Utility class to allow the popover to be shown above its parent */
}
.pwp-popover-outer .triangle-top {
  border-color: transparent transparent #8c8b89 transparent;
  border-style: solid;
  border-width: 0 5px 7px 5px;
  content: " ";
  height: 0;
  left: 0;
  position: absolute;
  top: -10px;
  width: 0;
}
.pwp-popover-outer .triangle-bottom {
  border-color: #8c8b89 transparent transparent transparent;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  content: " ";
  height: 0;
  left: 0;
  position: absolute;
  top: auto;
  bottom: -10px;
  width: 0;
}
.pwp-popover-outer:not(.top) .triangle-bottom {
  display: none;
}
.pwp-popover-outer.top .triangle-top {
  display: none;
}
.pwp-popover-outer .triangle-top,
.pwp-popover-outer .triangle-bottom {
  position: relative;
  top: initial;
  bottom: initial;
  z-index: 10;
}
.pwp-popover-outer .pwp-popover {
  background: #ffffff;
  border-top: 3px solid #8c8b89;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  padding: 20px;
  position: absolute;
  /* Default color for content */
  color: #8c8b89;
  position: relative;
  padding: 20px 20px 20px 20px;
  /* Utility class to remove the default padding from the popover */
  /* Default "main" header style for content */
}
.pwp-popover-outer .pwp-popover input[type=text] {
  border: 1px solid #dbd5cd;
  padding: 0 3px;
}
.pwp-popover-outer .pwp-popover .exit-btn {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  cursor: pointer;
  padding: 10px 14px;
  margin-top: 15px;
  margin-right: 15px;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -ms-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
.pwp-popover-outer .pwp-popover .exit-btn:hover {
  background: #ac4644;
  color: #ffffff;
}
.pwp-popover-outer .pwp-popover.no-exit .exit-btn {
  display: none;
}
.pwp-popover-outer .pwp-popover.no-padding {
  padding: 0;
}
.pwp-popover-outer .pwp-popover.no-padding:not( .no-exit ) {
  padding: 0 60px 0 0;
}
.pwp-popover-outer .pwp-popover div.pop-header {
  margin-top: 25px;
  min-width: 350px;
  display: flex;
}
.pwp-popover-outer .pwp-popover div.pop-header.no-btn {
  margin-top: 0px;
  margin-bottom: 20px;
}
.pwp-popover-outer .pwp-popover div.pop-header div {
  flex: 1;
}
.pwp-popover-outer .pwp-popover div.pop-header div.pop-title {
  flex: 2;
  font-size: 20px;
  font-family: Arial;
  font-weight: bold;
  color: black;
  padding-top: 15px;
  margin-right: 10px;
}
.pwp-popover-outer .pwp-popover div.pop-header div.pop-title.no-btn {
  padding-top: 0px;
}
.pwp-popover-outer .pwp-popover .css-table {
  border-collapse: collapse;
  width: calc(100% + 30px);
}
.pwp-popover-outer .pwp-popover .css-row {
  cursor: pointer;
}
.pwp-popover-outer .pwp-popover .css-cell {
  padding: 5px;
  vertical-align: middle;
}
.pwp-popover-outer .pwp-popover .css-cell.icon {
  font-size: 28px;
  vertical-align: unset;
}
.pwp-popover-outer .pwp-popover .css-cell.title {
  min-width: 250px;
  vertical-align: unset;
  padding-left: 10px;
}
.pwp-popover-outer .pwp-popover .css-cell.title span label {
  color: black;
  font-weight: bold;
}
.pwp-popover-outer .pwp-popover .divider {
  border-top-style: solid;
  border-width: 1px;
  border-color: #8c8b89;
}
.pwp-popover-outer.top .pwp-popover {
  border-top: none;
  border-bottom: 3px solid #8c8b89;
}
@media (max-width: 500px) {
  .pwp-popover {
    max-width: 280px;
  }
  .pwp-popover .pop-header {
    flex-direction: column;
  }
  .pwp-popover .pop-header .btn-white.btn-right {
    margin-left: 0px;
    margin-right: auto;
  }
}
