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

.preview-button {
    margin-right: 5px;
    vertical-align: text-top;
    color: #00244d;
    cursor: pointer;
}