/*-----------------------------------------------------------------------------
 * 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;
}

/*-----------------------------------------------------------------------------
 * Style for the search box region
 *----------------------------------------------------------------------------*/
.pwp-search-box-region-container {
    background: #2c5265;
    color: #ffffff;
    padding: 15px 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Styles for the search box input */
    /* Styles for the list of filters below the search box input */
    /* Style for the More/Filters button */
}

.pw-ab-test-group-b .pwp-search-box-region-container {
    padding-bottom: 0;
}

.pwp-search-box-region-container .search-input-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    /* The "x" in the right side of the search */
}

.pwp-search-box-region-container .search-input-container .clear-search {
    position: absolute;
    top: 26px / 2;
    right: 26px / 2;
    color: #dbd5cd;
    font-size: 24px;
    cursor: pointer;
    display: none;
    /* The following mixin and two rules provide the "bounce" effect
			 * when the "x" is hovered/clicked
			 */
    -webkit-transition: all 100ms;
    -moz-transition: all 100ms;
    -ms-transition: all 100ms;
    -o-transition: all 100ms;
    transition: all 100ms;
}

.pwp-search-box-region-container .search-input-container .clear-search:hover {
    transform: scale(1.25);
}

.pwp-search-box-region-container .search-input-container .clear-search:active {
    transform: scale(0.85);
}

.pwp-search-box-region-container .search-input-container .magnifying-glass {
    position: absolute;
    top: 26px / 2;
    left: 26px / 2;
    color: #dbd5cd;
    font-size: 24px;
    cursor: text;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    transform: scale(1);
    opacity: 1;
}

.pwp-search-box-region-container .search-input-container .magnifying-glass.searchbox-populated {
    transform: scale(0.2);
    opacity: 0;
}

.pwp-search-box-region-container .search-input-container .search-box,
.pwp-search-box-region-container .search-input-container .search-box-style {
    height: 50px;
    font-size: 24px;
    font-weight: normal;
    font-family: inherit;
    color: #8c8b89;
    border: unset;
    box-shadow: unset;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    padding-left: 40px;
}

.pwp-search-box-region-container .search-input-container .search-box::-webkit-input-placeholder,
.pwp-search-box-region-container .search-input-container .search-box-style::-webkit-input-placeholder {
    font-style: italic;
}

.pwp-search-box-region-container .search-input-container .search-box::-moz-placeholder,
.pwp-search-box-region-container .search-input-container .search-box-style::-moz-placeholder {
    font-style: italic;
}

.pwp-search-box-region-container .search-input-container .search-box :-ms-input-placeholder,
.pwp-search-box-region-container .search-input-container .search-box-style :-ms-input-placeholder {
    font-style: italic;
}

.pwp-search-box-region-container .search-input-container .search-box::-ms-clear,
.pwp-search-box-region-container .search-input-container .search-box-style::-ms-clear {
    /* Hide the 'x' button that Edge/IE 10+ show by default */
    width: 0;
    height: 0;
}

.pwp-search-box-region-container .search-input-container .search-box.searchbox-populated,
.pwp-search-box-region-container .search-input-container .search-box-style.searchbox-populated {
    padding-left: 12px;
}

.pwp-search-box-region-container .search-input-container .search-box:focus,
.pwp-search-box-region-container .search-input-container .search-box-style:focus {
    box-shadow: none;
    outline: none;
}

.pwp-search-box-region-container a.advanced-search-link {
    color: #ffffff;
    font-weight: bold;
    border: solid 1px #ffffff;
    margin-right: 20px;
}

.pwp-search-box-region-container a.advanced-search-link:hover,
.pwp-search-box-region-container a.advanced-search-link:active {
    text-decoration: underline;
}

.pwp-search-box-region-container .resource-type-filters {
    height: 35px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Generous spacing between filters listed directly in the search box
		 * region
		 */
}

.pwp-search-box-region-container .resource-type-filters label {
    font-weight: normal;
    margin-right: 30px;
}

.pw-ab-test-group-b .pwp-search-box-region-container .resource-type-filters {
    display: block;
    margin-left: 0;
    height: 40px;
}

.pw-ab-test-group-b .pwp-search-box-region-container .resource-type-filters label {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-width: 0 1px 0 0px;
    padding: 10px 15px;
    margin-right: 0;
    position: relative;
    box-sizing: border-box;
}

.pw-ab-test-group-b .pwp-search-box-region-container .resource-type-filters label:before {
    display: none;
}

.pw-ab-test-group-b .pwp-search-box-region-container .resource-type-filters label:first-of-type {
    border-width: 0 1px 0 1px;
}

.pw-ab-test-group-b .pwp-search-box-region-container .resource-type-filters input:checked+label {
    background: #5bbdd0;
    color: #ffffff;
}

.pw-ab-test-group-b .pwp-search-box-region-container .resource-type-filters input:checked+label:after {
    display: inline-block !important;
    content: "\f057" !important;
    font: normal normal normal 14px/1 FontAwesome;
    position: relative;
    background-image: none !important;
    margin-left: 10px;
}

.pw-ab-test-group-b .pwp-search-box-region-container .resource-type-filters input:checked+label:before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: none !important;
    background-color: #2e5366 !important;
    height: 3px;
    width: 100%;
    content: " ";
}

.pwp-search-box-region-container .more-filters {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 0;
    margin-top: 5px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pwp-search-box-region-container .more-filters.mobile-show {
    margin-left: 12px;
}

.pw-ab-test-group-b .pwp-search-box-region-container .more-filters {
    padding-top: 10px;
    margin-left: 15px;
}

.pwp-popover .resource-types {
    /* Styles the list of checkboxes in the "More"/"Filters" dropdown */
}

.pwp-popover .resource-types label.pwp-input {
    display: block;
    font-weight: normal;
    margin-left: 10px;
    margin-bottom: 0;
    font-size: 90%;
    margin-top: 5px;
}

#block-pwp-search-pwp-search-box {
    background: #2c5265;
}