/*-----------------------------------------------------------------------------
 * 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);
}
@font-face {
  font-family: Helvetica_now;
  src: url('/themes/custom/zeteo/font/Helvetica_now.woff');
}
@font-face {
  font-family: Helvetica_now_bold;
  src: url('/themes/custom/zeteo/font/Helvetica_now_bold.woff');
}
body {
  font-family: Helvetica_now, Helvetica, sans-serif;
}
.black-text {
  color: black;
}
.bold-text {
  font-weight: bold;
}
.dark-text {
  color: #53565a;
}
.white-text {
  color: #ffffff;
}
.oxford-text {
  color: #00244d;
}
.cerulean-text {
  color: #0077c8;
}
.sky-text {
  color: #72cdf4;
}
.light-text {
  color: #8c8b89;
}
.error-text {
  color: #ac4644;
}
.hxxl {
  font-size: 52px;
  line-height: 64px;
}
.hxl {
  font-size: 40px;
  line-height: 54px;
}
.hlg {
  font-size: 28px;
  line-height: 40px;
}
.hmd {
  font-size: 24px;
  line-height: 32px;
}
.hsm {
  font-size: 20px;
  line-height: 30px;
}
.hxs {
  font-size: 16px;
  line-height: 24px;
}
.lc {
  font-size: 18px;
  line-height: 28px;
}
.bc {
  font-size: 16px;
  line-height: 24px;
}
.bcsm {
  font-size: 14px;
  line-height: 22px;
}
.bcxs {
  font-size: 12px;
  line-height: 16px;
}
/*-----------------------------------------------------------------------------
 * Browser-default style overrides for PWP-styled inputs (checkboxes and radio
 * buttons)
 *----------------------------------------------------------------------------*/
.pwp-input {
  /* Indicate to the user that these items are clickable */
  cursor: pointer;
  /* Hide the browser's default rendering of checkboxes and radio buttons */
  /* Show our custom checkbox/radio button right before the label */
  /* Styles for checked/unchecked checkboxes */
  /* Styles for checked/unchecked radio buttons */
  /* A special utility class (.outline) to display a border around our custom
	 * checkboxes (without this class, these checkboxes are invisible against
	 * white backgrounds)
	 */
}
.pwp-input[type=checkbox],
.pwp-input[type=radio] {
  display: none;
}
.pwp-input + label.pwp-input:before {
  height: 13px;
  width: 13px;
  background-size: cover;
  display: inline-block;
  vertical-align: text-top;
  content: " ";
  margin-right: 5px;
}
.pwp-input[type=checkbox]:not(:checked) + label.pwp-input:before {
  background-image: url("../img/unchecked_checkbox.svg");
}
.pwp-input[type=checkbox]:checked + label.pwp-input:before {
  background-image: url("../img/checked_checkbox.svg");
}
.pwp-input[type=radio]:not(:checked) + label.pwp-input:before {
  background-image: url("../img/unchecked_radio.svg");
}
.pwp-input[type=radio]:checked + label.pwp-input:before {
  background-image: url("../img/checked_radio.svg");
}
.pwp-input[type=checkbox]:not(:checked) + label.pwp-input.outline:before,
.pwp-input[type=checkbox]:checked + label.pwp-input.outline:before {
  border: 1px solid #dbd5cd;
}
[disabled=disabled] + .pwp-input {
  filter: grayscale(100%);
  cursor: not-allowed;
}
/*-----------------------------------------------------------------------------
 * Automatically style checkboxes and radio buttons within a tableselect to
 * be PWP-styled inputs
 *----------------------------------------------------------------------------*/
.table-select-processed input[type=checkbox],
.table-select-processed input[type=radio] {
  /* Indicate to the user that these items are clickable */
  cursor: pointer;
  visibility: hidden;
  /* Show our custom checkbox/radio button right before the label */
  /* Styles for checked/unchecked checkboxes */
  /* Styles for checked/unchecked radio buttons */
}
.table-select-processed input[type=checkbox]:after,
.table-select-processed input[type=radio]:after {
  visibility: visible;
  height: 13px;
  width: 13px;
  background-size: cover;
  display: block;
  vertical-align: middle;
  content: " ";
  border: 1px solid #dbd5cd;
}
.table-select-processed input[type=checkbox][type=checkbox]:not(:checked):after,
.table-select-processed input[type=radio][type=checkbox]:not(:checked):after {
  background-image: url("../img/unchecked_checkbox.svg");
}
.table-select-processed input[type=checkbox][type=checkbox]:checked:after,
.table-select-processed input[type=radio][type=checkbox]:checked:after {
  background-image: url("../img/checked_checkbox.svg");
}
.table-select-processed input[type=checkbox][type=radio]:not(:checked):after,
.table-select-processed input[type=radio][type=radio]:not(:checked):after {
  background-image: url("../img/unchecked_radio.svg");
}
.table-select-processed input[type=checkbox][type=radio]:checked:after,
.table-select-processed input[type=radio][type=radio]:checked:after {
  background-image: url("../img/checked_radio.svg");
}
/*-----------------------------------------------------------------------------
 * Styles for elements that occur PRIOR TO the main list of search results
 *----------------------------------------------------------------------------*/
.pre-search-result-list {
  width: 100%;
  margin-bottom: 20px;
}
.pre-search-result-list .nav {
  padding-left: 12px;
}
.search-autocorrection,
.search-suggestion {
  font-size: 130%;
}
.black-heading {
  color: black;
  font-size: 30px;
  width: 100%;
}
.alert.filters-block {
  margin: 0 0 20px;
}
.alert.filters-block p {
  margin-bottom: 10px;
}
/*-----------------------------------------------------------------------------
 * Styles for elements that occur WITHIN the main list of search results
 *----------------------------------------------------------------------------*/
body.a-b-test-alt-sr-display-group-b .bibliographical-items {
  display: none !important;
}
body.a-b-test-alt-sr-display-group-b .title > .b-group-author-and-type {
  display: inline-block;
}
body.a-b-test-alt-sr-display-group-b .b-group-url {
  display: block;
}
body.a-b-test-alt-sr-display-group-b .action-buttons {
  float: right;
}
.ccel-result .title {
  color: #8c8b89;
  font-weight: 300;
}
.save-resource-popup-content {
  color: black;
}
.save-resource-popup-content i.fa-regular {
  color: #0077c8;
  font-size: 28px;
  margin-right: 10px;
}
.save-resource-popup-content [data-role=create-folder]:not(:last-child) {
  margin-bottom: 10px;
}
.save-resource-popup-content .folders-checkboxes ul {
  list-style-type: none;
  padding: 0 15px;
  margin-bottom: 0;
}
.save-resource-popup-content .folders-checkboxes ul label {
  font-weight: normal;
}
.save-resource-popup-content .folders-checkboxes ul .bookmark {
  margin-bottom: 0;
  font-size: 16px;
  /* Hide the browser's default rendering of checkboxes */
  /* Show our custom checkbox right before the label */
  /* Styles for checked/unchecked checkboxes */
}
.save-resource-popup-content .folders-checkboxes ul .bookmark[type=checkbox] {
  display: none;
}
.save-resource-popup-content .folders-checkboxes ul .bookmark + label:before {
  height: 13px;
  width: 13px;
  background-size: cover;
  display: inline-block;
  margin-right: 5px;
  font-family: FontAwesome;
  color: #84a23c;
}
.save-resource-popup-content .folders-checkboxes ul .bookmark[type=checkbox] + label:before {
  content: "\f097";
}
.save-resource-popup-content .folders-checkboxes ul .bookmark[type=checkbox]:checked + label:before {
  content: "\f02e";
}
.save-resource-popup-content.not-logged-in {
  max-width: 175px;
  margin-top: 40px;
}
.save-resource-popup-content .save-popover-icons {
  color: #53565a;
  font-size: 20px;
}
.save-resource-popup-content .save-popover-button-text {
  font-weight: normal;
  font-size: 15px;
  color: #8c8b89;
  cursor: pointer;
}
.save-resource-popup-content .custom-folder {
  position: relative;
  color: #53565a;
  font-size: 20px;
}
.save-resource-popup-content .custom-status-icon {
  position: absolute;
  bottom: -2px;
  right: 3px;
  color: #37aac1;
  font-size: 1em;
}
.save-resource-popup-content .non-folder-icons {
  position: relative;
  text-align: center;
  right: 3px;
}
.save-resource-popup-content .css-row.highlighted {
  background-color: #b6c092;
}
.save-resource-popup-content .notes-button {
  position: relative;
  right: 5px;
}
.save-resource-popup-content .notes-textarea {
  height: 15em;
}
.save-resource-popup-content .share-folder-url.form-control {
  cursor: text;
  background: white;
}
.save-resource-popup-content .divider .css-cell {
  padding-top: 10px;
}
.resource-edit-menu > a {
  padding: 5px 15px;
  font-weight: normal;
  display: block;
  color: #8c8b89;
}
.resource-edit-menu > a:hover:not(.disabled),
.resource-edit-menu > a:active:not(.disabled) {
  text-decoration: none;
  background: #e3f5fd;
  color: black;
}
.resource-edit-menu > a.disabled,
.resource-edit-menu > a.disabled:hover,
.resource-edit-menu > a.disabled:active {
  color: #dbd5cd;
  text-decoration: none;
}
.blacklist-resource-in-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: block;
}
.add-comment-popup-content {
  margin-left: 10px;
  margin-right: 10px;
}
.add-comment-popup-content h2 {
  padding-top: 10px;
}
.add-comment-popup-content .buttons {
  padding-bottom: 10px;
}
.recommendation-expanded .recommendation-author {
  font-weight: bold;
}
.recommendation-expanded .recommendation-author.css-table {
  width: 200%;
}
.recommendation-expanded .css-row.cursor_default {
  cursor: default;
}
.recommendation-expanded .css-cell.recommender-image {
  width: 0;
  padding: 0;
  vertical-align: top;
}
.recommendation-expanded .css-cell:not(.recommender-image) {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  vertical-align: top;
}
.recommendation-expanded .css-cell:not(.recommender-image) .recommendation-text {
  white-space: pre-wrap;
}
.recommendation-expanded .css-cell:not(.recommender-image) .edit-link,
.recommendation-expanded .css-cell:not(.recommender-image) .delete-link {
  color: #0077c8;
  cursor: pointer;
  text-decoration: none;
}
.recommendation-expanded .css-cell:not(.recommender-image) .edit-link:hover,
.recommendation-expanded .css-cell:not(.recommender-image) .delete-link:hover,
.recommendation-expanded .css-cell:not(.recommender-image) .edit-link:focus,
.recommendation-expanded .css-cell:not(.recommender-image) .delete-link:focus {
  color: #2a6496;
  text-decoration: underline;
}
.recommendation-expanded .css-cell:not(.recommender-image):last-child {
  padding-right: 15px;
}
.survey-thanks {
  display: none;
}
.subtitle-link {
  margin-top: 10px;
  margin-left: 2px;
}
@media (max-width: 500px) {
  .pwp-search-result.topical-study-result .css-table .css-row .css-cell.resource-image-container {
    display: none;
  }
  .pwp-search-result .resource-image-container .resource-image {
    width: unset;
    height: 200px;
  }
}
/* ---------------------------------------------------------------------------------------------
 *  For A/B Testing
 * --------------------------------------------------------------------------------------------- */
.main-container.single-column-view {
  /* TODO: Following A/B testing, move resource-guide-related rules back to the resource
		 * guide module) */
}
.main-container.single-column-view .current-page-title {
  display: none;
}
.main-container.single-column-view .resource-guide {
  max-width: 100%;
  width: max-content;
  margin-bottom: 10px;
}
.main-container.single-column-view .resource-guide a {
  font-weight: bold;
}
.main-container.single-column-view .contextual-links-region {
  margin-left: 10px;
  margin-right: 10px;
}
.main-container.single-column-view .contextual-links-region .search-sidebar {
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 2px #d1d1d0;
}
.main-container.single-column-view .sidebar-content,
.main-container.single-column-view .content-section {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.main-container.single-column-view .region-sidebar.region {
  padding-bottom: 0;
}
.main-container.single-column-view .new-expander {
  position: absolute;
  background: #d1d1d0;
  color: #8c8b89;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  font-weight: bold;
  line-height: 32px;
  font-size: 24px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.main-container.single-column-view .new-expander.expanded {
  transform: unset;
}
.main-container.single-column-view [data-expand-gae-label] {
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -ms-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  max-height: 225px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.main-container.single-column-view [data-expand-gae-label].scripture-page {
  padding: 20px;
}
.main-container:not(.single-column-view) .resource-guides {
  display: none;
}
@media (max-width: 1045px) {
  .main-container.single-column-view .contextual-links-region {
    margin-left: 25px;
    margin-right: 15px;
  }
}
@media (max-width: 700px) {
  div.main-container.single-column-view .region-sidebar.region-sidebar {
    padding: 0;
  }
  .main-container.single-column-view .contextual-links-region {
    margin-left: 5px;
    margin-right: 5px;
  }
}
