@charset "UTF-8";

/* Vendor */

/**
 * A prefix appended to all background-image URLs.
 */

/**
 * Colours common to the UI,
 */

/**
 * A mixin for performing a rotate transform across multiple browsers.
 */

/**
 * The modifier classes here are applied by the root node and indicate the
 * the state of the root node managing interactions (e.g dragging and resizing).
 */

.ce--dragging,
.ce--resizing {
  /**
   * Prevent the user selecting any content in the page while we're dragging
   * or resizing.
   */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ce--dragging {
  cursor: move !important;
}

.ce--resizing {
  cursor: nwse-resize !important;
}

/**
 * All editiable elements are assigned the .ce-element class. Modifiers are used
 * to identify the type of element (e.g image, text, list, etc.) and to indicate
 * state (e.g resizing, focused, etc.)
 */

.ce-element {
  /* Types of element */
  /**
   * As image elements are represented as a `<div>` in the DOM we use the
   * background to display the image.
   */
  /**
   * Like images, video elements are represented as a `<div>` in the DOM,
   * unlike images there is source image to apply to the background, instead
   * we display a video icon in the background and use the after element to
   * display information about the video's source.
   */
  /* The various states for elements */
  /**
   * When an element that supports text content is empty (e.g '') some
   * browsers don't provide a height for the element and so it can appear to
   * disappear until the user adds content. To resolve this issue we use a
   * pseudo element to ensure the element contains content.
   */
  /* Element is being dragged */
  /**
   * Element is being dropped on to. Depending on the position of the element
   * being dragged over the element (the mouse cursor) the drop modifiers
   * provide a guide to the placement of the dragging element after it's
   * dropped.
   */
  /*
  Table rows cannot be handled in the same way as other elements for drop
  styling and instead they must only use a background image.
  */
  /**
   * Element has focus `--focused` (only one element can have focus) or the
   * mouse cursor is currently over the element.
   */
  /**
   * When the mouse cursor is over the corners of a resizable element (e.g an
   * image or video) the following modifiers are applied to indicate to the
   * user they can resize the element in a given direction.
   */
}

.ce-element--type-image,
.ce-element--type-video {
  background-repeat: no-repeat;
  position: relative;
  cursor: pointer;
  z-index: 1;
  /**
   * Image and video elements use pseudo elements to display information
   * such as the size of the element and for videos the `src` also.
   */
  /**
   * The before element is used to display the size of the element, by
   * default the size is hidden unless the user moves the mouse cursor
   * over the element or the element is being resized.
   */
}

.ce-element--type-image:after,
.ce-element--type-image:before,
.ce-element--type-video:after,
.ce-element--type-video:before {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  color: white;
  display: none;
  font-family: arial, sans-serif;
  font-size: 10px;
  line-height: 10px;
  padding: 4px 4px 3px;
  position: absolute;
}

.ce-element--type-image:before,
.ce-element--type-video:before {
  content: attr(data-ce-size);
  right: 10px;
  top: 10px;
}

.ce-element--type-image.ce-element--over:before,
.ce-element--type-image.ce-element--resizing:before,
.ce-element--type-video.ce-element--over:before,
.ce-element--type-video.ce-element--resizing:before {
  display: block;
}

.ce-element--type-image {
  background-position: 0 0;
  background-size: cover;
  /**
   * The after element is used by images to ensure that the clip mask
   * applied by a border radius does not affect the selectable region or
   * edge.
   */
}

.ce-element--type-image:after {
  background: transparent;
  content: "";
  display: block;
  left: 0;
  position: relative;
  top: 0;
  height: 100%;
  width: 100%;
}

.ce-element--type-video {
  background: #333 url(/images/vendor/ContentTools/build/video.svg?afa41b74d922e4d1b438600c20d0d9cf) center/auto 48px no-repeat;
}

.ce-element--type-video:after {
  bottom: 10px;
  content: attr(data-ce-title);
  display: block;
  left: 10px;
}

.ce-element--empty:after {
  content: "...";
  display: inline-block;
  font-style: italic;
  opacity: 0.5;
}

.ce-element--empty[data-ce-placeholder]:after {
  content: attr(data-ce-placeholder);
}

.ce-element--dragging {
  background-color: rgba(51, 51, 51, 0.1) !important;
  opacity: 0.5;
  /**
   * HACK: Forces the the element being dragged not to obscure elements
   * that can be dropped on (for example an image floated over a
   * paragraph).
   */
  z-index: -1;
  /**
   * For images and videos we set the outline color instead of changing
   * the inner style.
   */
}

.ce-element--dragging.ce-element--type-image,
.ce-element--dragging.ce-element--type-video {
  background-color: #333 !important;
  opacity: 1;
  outline-color: rgba(51, 51, 51, 0.1) !important;
}

.ce-element--drop {
  position: relative !important;
}

.ce-element--drop:before {
  background: #f39c12 url(/images/vendor/ContentTools/build/drop-vert-above.svg?196754c80f6b1536264d0fbe090d5d12) center/auto 32px repeat;
  bottom: 0;
  content: "" !important;
  left: 0;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
}

.ce-element--drop-below:before {
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: rotate(180deg);
}

.ce-element--drop-left:before {
  background-image: url(/images/vendor/ContentTools/build/drop-horz.svg?d18cdcedf8299668e25de3dca0a91101);
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: rotate(0deg);
}

.ce-element--drop-right:before {
  background-image: url(/images/vendor/ContentTools/build/drop-horz.svg?d18cdcedf8299668e25de3dca0a91101);
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: rotate(180deg);
}

.ce-element--drop.ce-element--type-table-row {
  background: #f39c12 url(/images/vendor/ContentTools/build/drop-vert-above.svg?196754c80f6b1536264d0fbe090d5d12) center/auto 32px repeat;
}

.ce-element--drop.ce-element--type-table-row:before {
  display: none;
}

.ce-element--drop.ce-element--type-table-row.ce-element--drop-below {
  background: #f39c12 url(/images/vendor/ContentTools/build/drop-vert-below.svg?0816d061c88604009ffda55ff22a6e4d) center/auto 32px repeat;
}

.ce-element--focused,
.ce-element--over {
  background-color: rgba(243, 156, 18, 0.1);
  outline: none;
  /**
   * For images and videos we add an outline so as not to distort their
   * appearance.
   */
}

.ce-element--focused.ce-element--type-image,
.ce-element--focused.ce-element--type-image-fixture,
.ce-element--focused.ce-element--type-video,
.ce-element--over.ce-element--type-image,
.ce-element--over.ce-element--type-image-fixture,
.ce-element--over.ce-element--type-video {
  background-color: #333;
  outline: 4px solid rgba(243, 156, 18, 0.35);
}

.ce-element--resize-top-left {
  cursor: nw-resize;
}

.ce-element--resize-top-right {
  cursor: ne-resize;
}

.ce-element--resize-bottom-right {
  cursor: se-resize;
}

.ce-element--resize-bottom-left {
  cursor: sw-resize;
}

/**
 * When an element is dragged a helper element is created that follows the mouse
 * cursor, the helper represents the element being dragged in a simplified form.
 */

.ce-drag-helper {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
  color: #4e4e4e;
  font: arial, sans-serif;
  font-size: 12px;
  height: 120px;
  left: 0;
  line-height: 135%;
  margin: 5px 0px 0px 5px;
  overflow: hidden;
  padding: 15px;
  position: absolute;
  top: 0;
  width: 120px;
  word-wrap: break-word;
  z-index: 9;
  /**
   * A pseudo element is used to display the type of element the helper
   * represents.
   */
  /**
   * For elements that have text content displayed within the helper we clip
   * the content and use a pseudo element to fade out any verical overflow.
   */
  /**
   * Image helpers display a version of the image as a background image within
   * the helper element.
   */
}

.ce-drag-helper:before {
  background: #2980b9;
  color: white;
  content: attr(data-ce-type);
  display: block;
  font-family: arial, sans-serif;
  font-size: 10px;
  line-height: 10px;
  padding: 4px 4px 3px;
  position: absolute;
  right: 0;
  top: 0;
}

.ce-drag-helper--type-list:after,
.ce-drag-helper--type-list-item-text:after,
.ce-drag-helper--type-pre-text:after,
.ce-drag-helper--type-table:after,
.ce-drag-helper--type-table-row:after,
.ce-drag-helper--type-text:after {
  background-image: linear-gradient(rgba(255, 255, 255, 0), white 66%);
  bottom: 0;
  content: "";
  display: block;
  height: 40px;
  left: 0;
  position: absolute;
  width: 100%;
}

.ce-drag-helper--type-image {
  background-repeat: no-repeat;
  background-size: cover;
}

/**
 * The alignment of elements such as images and videos horizontally is achieved
 * through the `align-left` and `align-right` classes. We provide basic stylings
 * for these classes so that this style sheet works out the box, it is however
 * expected that these styles will be extended if not overridden by the site
 * CSS.
 */

.ce-element--type-image,
.ce-element--type-video {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ce-element--type-image.align-left,
.ce-element--type-video.align-left {
  clear: initial;
  float: left;
}

.ce-element--type-image.align-right,
.ce-element--type-video.align-right {
  clear: initial;
  float: right;
}

/**
 * Special class applied to a temporary element which is inserted into a parent
 * element to measure the width excluding padding.
 */

.ce-measure {
  display: block !important;
}

/* Settings */

/**
 * All widgets are assigned a z-index equal to or higher than this setting. The
 * base z-index can be adjusted to overcome z-index conflicts with existing page
 * elements.
 */

/**
 * For UI widgets that appear on the page (as opposed to appearing in front of a
 * modal screen) we define a base background colour.
 */

/**
 * The colour used when casting shadows for widgets that appear to float.
 */

/**
 * Confirm, Cancel and Edit actions are common amoung the various ui components.
 * Each action has an associated/common colour.
 */

/**
 * The background colour used to highlight editiable regions to users when they
 * hold down the shift key.
 */

/**
 * Tooltips feature for a number of components, their base appearance is
 * configured using a mixin.
 */

/**
 * The following settings relate to typography. For portability we limit the the
 * use of fonts to:
 *
 * - `type-icon` used for displaying icons (courtesy of http://icomoon.io).
 * - `type-text` used for displaying text.
 *
 */

@font-face {
  font-family: "icon";
  src: url(/fonts/vendor/ContentTools/build/images/icons.woff?8ffad8ecb97689fdf1865fe16856871e);
  font-weight: normal;
  font-style: normal;
}

/* UI */

/*
The widget CSS class should be applied any UI element that's insert into the DOM
and not within a widget, the widget CSS class resets the style for of all
supported child elements.
*/

.ct-widget,
.ct-widget * {
  /* Reset */
  /* Defaults */
  box-sizing: border-box;
}

.ct-widget div,
.ct-widget span,
.ct-widget iframe,
.ct-widget a,
.ct-widget b,
.ct-widget i fieldset,
.ct-widget form,
.ct-widget label,
.ct-widget legend,
.ct-widget table,
.ct-widget caption,
.ct-widget tbody,
.ct-widget tfoot,
.ct-widget thead,
.ct-widget tr,
.ct-widget th,
.ct-widget td,
.ct-widget * div,
.ct-widget * span,
.ct-widget * iframe,
.ct-widget * a,
.ct-widget * b,
.ct-widget * i fieldset,
.ct-widget * form,
.ct-widget * label,
.ct-widget * legend,
.ct-widget * table,
.ct-widget * caption,
.ct-widget * tbody,
.ct-widget * tfoot,
.ct-widget * thead,
.ct-widget * tr,
.ct-widget * th,
.ct-widget * td {
  border: 0;
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

.ct-widget ol,
.ct-widget ul,
.ct-widget * ol,
.ct-widget * ul {
  list-style: none;
}

.ct-widget table,
.ct-widget * table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ct-widget {
  opacity: 0;
  font-family: arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 9999;
  transition-property: opacity;
  transition-duration: 0.25s;
  transition-timing-function: ease-in;
}

.ct-widget--active {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.25s;
  transition-timing-function: ease-in;
}

/**
 * Attributes are similar to sections in that they are used to divide up
 * configuration blocks within a dialog's view. However attributes
 * exclusively support text inputs (no switches) and both the name and value of
 * an attribute can be modified (unlike sections where the label is fixed).
 */

.ct-widget .ct-attribute {
  border-bottom: 1px solid #eee;
  height: 48px;
  vertical-align: top;
  /**
   * Each section has a name and value component, both of which can be
   * modified.
   */
}

.ct-widget .ct-attribute::after {
  clear: both;
  content: "";
  display: table;
}

.ct-widget .ct-attribute__name {
  background: #f6f6f6;
  border: none;
  color: #646464;
  float: left;
  height: 47px;
  outline: none;
  padding: 0 16px;
  font-family: arial, sans-serif;
  font-size: 14px;
  line-height: 48px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 25%;
  /**
   * If the the attributes name is invalid then the `invalid` modifier
   * is set against the input (programmatically).
   */
}

.ct-widget .ct-attribute__name--invalid {
  color: #e74c3c;
}

.ct-widget .ct-attribute__value {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: white;
  border: none;
  color: #646464;
  float: right;
  height: 47px;
  outline: none;
  padding: 0 16px;
  font-family: arial, sans-serif;
  font-size: 14px;
  line-height: 48px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 75%;
}

/**
 * Cropmarks define the region within an image that will be cropped. They appear
 * in the image dialog when crop is active.
 */

.ct-widget .ct-crop-marks {
  height: 320px;
  left: 73px;
  position: absolute;
  top: 0;
  width: 427px;
  /**
   * The clipper is used to prevent the rulers extending outside of the
   * image.
   */
  /**
   * The cropping region is defined by 2 L shaped framing rulers at
   * opposite corners.
   */
  /**
   * The rulers defing the crop region can be moved by the user, handles
   * provide a draggable handle for each ruler.
   */
}

.ct-widget .ct-crop-marks__clipper {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ct-widget .ct-crop-marks__ruler--top-left {
  position: absolute;
}

.ct-widget .ct-crop-marks__ruler--top-left:after {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: none;
  border-right: none;
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.25), inset 1px 1px 1px rgba(0, 0, 0, 0.25);
  content: "";
  height: 999px;
  left: 0;
  position: absolute;
  top: 0;
  width: 999px;
}

.ct-widget .ct-crop-marks__ruler--bottom-right {
  position: absolute;
}

.ct-widget .ct-crop-marks__ruler--bottom-right:after {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: none;
  border-left: none;
  bottom: 0;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25), inset -1px -1px 1px rgba(0, 0, 0, 0.25);
  content: "";
  height: 999px;
  position: absolute;
  right: 0;
  width: 999px;
}

.ct-widget .ct-crop-marks__handle {
  background: #2980b9;
  border: 1px solid #409ad5;
  border-radius: 7px;
  cursor: pointer;
  height: 15px;
  margin-left: -7px;
  margin-top: -7px;
  position: absolute;
  width: 15px;
}

.ct-widget .ct-crop-marks__handle--bottom-right {
  margin-left: -8px;
  margin-top: -8px;
}

.ct-widget .ct-crop-marks__handle:hover {
  background: #2e8ece;
}

/**
 * The content tools library supports a number of dialogs for different types of
 * functionality (e.g insert an image, change a tables dimensions, etc).
 *
 * The dialog component itself sits above the page content (typically over a
 * modal.
 */

/**
 * If the dialog is performing a remote task that requires the user to wait for
 * a response from the server then it may be set to a busy state. The busy state
 * uses an animation (a rotating cog) defined below.
 */

@-webkit-keyframes busy-dialog {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    -webkit-transform: transform;
  }

  100% {
    transform: translate(-50%, -50%) rotate(359deg);
    -webkit-transform: transform;
  }
}

@keyframes busy-dialog {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    transform: transform;
  }

  100% {
    transform: translate(-50%, -50%) rotate(359deg);
    transform: transform;
  }
}

.ct-widget {
  /**
   * The controls section of the dialog features icon and text buttons which
   * provide the user with controls for the contents dialog.
   */
  /**
   * Controls can be grouped left, right or centrally. Both a left and right
   * group can coexist but the central group can only be used on it's own.
   */
  /**
   * Controls can either contain text or an icon depending on the modifier
   * set against the component (`text` or `icon` respectively).
   */
  /**
   * The following classes relate to the various types of dialog available.
   */
  /**
   * The image dialog supports the insertion of images, the dialog has a
   * number of states to support the various steps in inserting an image.
   */
  /**
   * The properties dialog displays the attributes and styles for an element
   * in page, each property can by modified and each style turned on or off.
   */
  /**
   * The table dialog supports the insertion and updating of tables.
   */
  /**
   * The video dialog supports the insertion of embedded videos (vimeo and
   * youtube).
   */
  /**
   * Anchored dialogs are a special type of dialog that are appear at a fixed
   * position with the page, for example above a selection of text. They are
   * used to support simple task (such as inserting a link) in a less
   * intrusive mannor than full dialogs.
   *
   * Anchored dialogs support an single text input and a confirm button only.
   */
}

.ct-widget.ct-dialog {
  background: white;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.35);
  border-radius: 2px;
  height: 480px;
  left: 50%;
  margin-left: -350px;
  margin-top: -240px;
  position: fixed;
  top: 50%;
  width: 700px;
  z-index: 10099;
  /**
   * The `busy` modifier maybe programatically applied to a dialog to
   * prevent any further interaction with the dialog until a task has been
   * completed.
   */
}

.ct-widget.ct-dialog--busy .ct-dialog__busy {
  display: block;
}

.ct-widget.ct-dialog--busy .ct-dialog__body {
  opacity: 0.1;
}

.ct-widget .ct-dialog {
  /**
   * The `header`, `caption` and `close` components of the dialog make up
   * what might traditionally be thought of as a title bar for a window.
   */
  /**
   * The dialog `body` is typically composed of a `view` and `controls`
   * component. The `view` component contains the dialogs content (e.g an
   * image) and the `controls` component the controls (e.g crop, rotate,
   * insert).
   */
  /**
   * If the dialog is in a busy state then the `busy` component is
   * displayed.
   */
}

.ct-widget .ct-dialog__header {
  color: #a4a4a4;
  border-bottom: 1px solid #eee;
  height: 48px;
  padding: 0 16px;
  position: relative;
}

.ct-widget .ct-dialog__caption {
  font-family: arial, sans-serif;
  font-size: 18px;
  line-height: 48px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ct-widget .ct-dialog__close {
  border-left: 1px solid #eee;
  cursor: pointer;
  height: 48px;
  line-height: 48px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  font-family: "icon";
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 48px;
}

.ct-widget .ct-dialog__close:before {
  content: "\EA0F";
}

.ct-widget .ct-dialog__close:hover:before {
  color: #646464;
}

.ct-widget .ct-dialog__body {
  margin: auto;
  width: 572px;
}

.ct-widget .ct-dialog__view {
  height: 320px;
  margin-top: 32px;
}

.ct-widget .ct-dialog__controls {
  margin-top: 16px;
}

.ct-widget .ct-dialog__controls::after {
  clear: both;
  content: "";
  display: table;
}

.ct-widget .ct-dialog__busy {
  display: none;
  position: absolute;
}

.ct-widget .ct-dialog__busy:before {
  -webkit-animation: busy-dialog 5s linear;
  animation: busy-dialog 5s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  color: #a4a4a4;
  content: "\E994";
  left: 50%;
  position: fixed;
  top: 50%;
  font-family: "icon";
  font-size: 80px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ct-widget .ct-control-group {
  font-size: 0;
}

.ct-widget .ct-control-group--center {
  text-align: center;
}

.ct-widget .ct-control-group--left {
  float: left;
}

.ct-widget .ct-control-group--right {
  float: right;
}

.ct-widget .ct-control {
  margin-left: 16px;
  position: relative;
}

.ct-widget .ct-control:first-child {
  margin-left: 0;
}

.ct-widget .ct-control--icon {
  border-radius: 2px;
  color: #a4a4a4;
  cursor: pointer;
  display: inline-block;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-family: "icon";
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 32px;
}

.ct-widget .ct-control--icon:after {
  background: black;
  border-radius: 2px;
  color: white;
  content: attr(data-ct-tooltip);
  display: block;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  left: -26.5px;
  line-height: 20px;
  opacity: 0;
  padding: 0 8px;
  pointer-events: none;
  position: absolute;
  bottom: 37px;
  font-family: arial, sans-serif;
  font-size: 12px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  visibility: hidden;
  width: 85px;
  word-break: break-word;
}

.ct-widget .ct-control--icon:hover:after {
  opacity: 0.8;
  visibility: visible;
  transition-property: opacity;
  transition-duration: 0s;
  transition-timing-function: ease-in;
  transition-delay: 2s;
}

.ct-widget .ct-control--icon:before {
  content: "";
}

.ct-widget .ct-control--icon:hover {
  background: #eee;
  color: #646464;
}

.ct-widget .ct-control--active,
.ct-widget .ct-control--on {
  background: #a4a4a4;
  color: white;
}

.ct-widget .ct-control--active:hover,
.ct-widget .ct-control--on:hover {
  background: #646464;
  color: white;
}

.ct-widget .ct-control--rotate-ccw:before {
  content: "\E965";
}

.ct-widget .ct-control--rotate-cw:before {
  content: "\E966";
}

.ct-widget .ct-control--crop:before {
  content: "\EA57";
}

.ct-widget .ct-control--remove:before {
  content: "\E9AC";
}

.ct-widget .ct-control--styles:before {
  content: "\E90B";
}

.ct-widget .ct-control--attributes:before {
  content: "\E994";
}

.ct-widget .ct-control--code:before {
  content: "\EA80";
}

.ct-widget .ct-control--icon.ct-control--muted {
  cursor: default;
}

.ct-widget .ct-control--icon.ct-control--muted:before {
  opacity: 0.5;
}

.ct-widget .ct-control--icon.ct-control--muted:hover {
  color: #a4a4a4;
  background: transparent;
}

.ct-widget .ct-control--text {
  background: #2980b9;
  border-radius: 2px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  height: 32px;
  overflow: hidden;
  padding: 0 8px;
  text-align: center;
  text-overflow: ellipsis;
  font-family: arial, sans-serif;
  font-size: 14px;
  line-height: 32px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: top;
  width: 100px;
}

.ct-widget .ct-control--text:hover {
  background: #2e8ece;
}

.ct-widget .ct-control--apply,
.ct-widget .ct-control--insert,
.ct-widget .ct-control--ok {
  background: #27ae60;
}

.ct-widget .ct-control--apply:hover,
.ct-widget .ct-control--insert:hover,
.ct-widget .ct-control--ok:hover {
  background: #2cc36b;
}

.ct-widget .ct-control--cancel,
.ct-widget .ct-control--clear {
  background: #e74c3c;
}

.ct-widget .ct-control--cancel:hover,
.ct-widget .ct-control--clear:hover {
  background: #ea6153;
}

.ct-widget .ct-control--text.ct-control--muted {
  background: #ccc;
  cursor: default;
}

.ct-widget .ct-control--text.ct-control--muted:hover {
  background: #ccc;
}

.ct-widget .ct-control--upload {
  overflow: hidden;
}

.ct-widget.ct-image-dialog--empty .ct-progress-bar,
.ct-widget.ct-image-dialog--empty .ct-control--rotate-ccw,
.ct-widget.ct-image-dialog--empty .ct-control--rotate-cw,
.ct-widget.ct-image-dialog--empty .ct-control--crop,
.ct-widget.ct-image-dialog--empty .ct-control--insert,
.ct-widget.ct-image-dialog--empty .ct-control--cancel,
.ct-widget.ct-image-dialog--empty .ct-control--clear {
  display: none;
}

.ct-widget.ct-image-dialog--uploading .ct-control--rotate-ccw,
.ct-widget.ct-image-dialog--uploading .ct-control--rotate-cw,
.ct-widget.ct-image-dialog--uploading .ct-control--crop,
.ct-widget.ct-image-dialog--uploading .ct-control--upload,
.ct-widget.ct-image-dialog--uploading .ct-control--insert,
.ct-widget.ct-image-dialog--uploading .ct-control--clear {
  display: none;
}

.ct-widget.ct-image-dialog--populated .ct-progress-bar,
.ct-widget.ct-image-dialog--populated .ct-control--upload,
.ct-widget.ct-image-dialog--populated .ct-control--cancel {
  display: none;
}

.ct-widget .ct-image-dialog {
  /**
   * HACK: We style the file upload button as a control, however to ensure
   * the user activates the system file browser dialog we hide the file
   * input in the control and use a large font to ensure it covers the
   * whole control.
   */
}

.ct-widget .ct-image-dialog__view {
  background: #eee;
  position: relative;
}

.ct-widget .ct-image-dialog__view:empty {
  font-family: "icon";
  font-size: 80px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 320px;
  text-align: center;
}

.ct-widget .ct-image-dialog__view:empty:before {
  color: white;
  content: "\E90D";
}

.ct-widget .ct-image-dialog__image {
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  width: 100%;
}

.ct-widget .ct-image-dialog__file-upload {
  cursor: pointer;
  font-size: 400px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}

.ct-widget.ct-properties-dialog--attributes .ct-properties-dialog__attributes {
  display: block;
}

.ct-widget.ct-properties-dialog--styles .ct-properties-dialog__styles {
  display: block;
}

.ct-widget.ct-properties-dialog--styles .ct-properties-dialog__styles:empty:before {
  color: #a4a4a4;
  content: attr(data-ct-empty);
  display: block;
  font-style: italic;
  margin-top: 20px;
  text-align: center;
}

.ct-widget.ct-properties-dialog--code .ct-properties-dialog__code {
  display: block;
}

.ct-widget .ct-properties-dialog {
  /**
   * The code tab supports an textarea for editing inner HTML.
   */
}

.ct-widget .ct-properties-dialog__view {
  border: 1px solid #ddd;
  overflow: auto;
}

.ct-widget .ct-properties-dialog__attributes,
.ct-widget .ct-properties-dialog__code,
.ct-widget .ct-properties-dialog__styles {
  display: none;
}

.ct-widget .ct-properties-dialog__inner-html {
  border: none;
  display: block;
  font-family: courier, "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  height: 318px;
  padding: 16px;
  outline: none;
  resize: none;
  width: 100%;
}

.ct-widget .ct-properties-dialog__inner-html--invalid {
  color: #e74c3c;
}

.ct-widget .ct-table-dialog__view {
  border: 1px solid #ddd;
  overflow: auto;
}

.ct-widget .ct-video-dialog__preview:empty {
  background: #eee;
  font-family: "icon";
  font-size: 80px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 320px;
  text-align: center;
}

.ct-widget .ct-video-dialog__preview:empty:before {
  color: white;
  content: "\EA98";
}

.ct-widget .ct-video-dialog__input {
  border: none;
  border-bottom: 1px solid #eee;
  height: 32px;
  line-height: 32px;
  outline: none;
  padding: 0 4px;
  font-family: arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: top;
  width: 456px;
}

.ct-widget .ct-video-dialog__input:focus {
  border-bottom: 1px solid #e1e1e1;
}

.ct-widget.ct-anchored-dialog {
  border-bottom: 2px solid #27ae60;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.35);
  font-size: 0;
  height: 34px;
  left: 0;
  margin-left: -160px;
  margin-top: -48px;
  position: absolute;
  top: 0;
  width: 320px;
  z-index: 10099;
}

.ct-widget.ct-anchored-dialog:after {
  border: 16px solid rgba(255, 255, 255, 0);
  border-top-color: #27ae60;
  content: "";
  left: 144px;
  position: absolute;
  top: 34px;
}

.ct-widget .ct-anchored-dialog__input {
  border: none;
  color: #646464;
  height: 32px;
  outline: none;
  font-family: arial, sans-serif;
  font-size: 14px;
  line-height: 32px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 8px 0 16px;
  vertical-align: top;
  width: 256px;
}

.ct-widget .ct-anchored-dialog__button {
  background: #27ae60;
  cursor: pointer;
  display: inline-block;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-family: "icon";
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 32px;
}

.ct-widget .ct-anchored-dialog__button:before {
  color: white;
  content: "\EA10";
}

.ct-widget .ct-anchored-dialog__button:hover {
  background: #2cc36b;
}

.ct-widget .ct-anchored-dialog__target-button {
  background: white;
  cursor: pointer;
  display: inline-block;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-family: "icon";
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 32px;
}

.ct-widget .ct-anchored-dialog__target-button:before {
  color: #a4a4a4;
  content: "\EA7D";
}

.ct-widget .ct-anchored-dialog__target-button:hover:before {
  color: #b1b1b1;
}

.ct-widget .ct-anchored-dialog__target-button--active:before {
  color: #27ae60;
}

.ct-widget .ct-anchored-dialog__target-button--active:hover:before {
  color: #2cc36b;
}

/**
 * Flashes are used to display a visual confirmation to the user that an action
 * has completed successfully (or failed).
 */

.ct-widget {
  /**
   * The flash animation displays an icon in the center of the user's screen
   * that flashes into view and then out.
   */
  /**
   * The flash timer animation is used purely to indicated to the Javascript
   * that created the flash element that the animation has finished.
   */
  /**
   * The icon that is flashed.
   */
}

@-webkit-keyframes flash {
  0% {
    opacity: 0;
    font-size: 32px;
    -webkit-transform: font-size;
  }

  25% {
    font-size: 320px;
    opacity: 1;
    -webkit-transform: all;
  }

  50% {
    font-size: 320px;
    opacity: 1;
    -webkit-transform: all;
  }

  75% {
    font-size: 320px;
    opacity: 1;
    -webkit-transform: all;
  }

  100% {
    opacity: 0;
    -webkit-transform: all;
  }
}

@keyframes flash {
  0% {
    opacity: 0;
    font-size: 32px;
    transform: font-size;
  }

  25% {
    font-size: 320px;
    opacity: 1;
    transform: all;
  }

  50% {
    font-size: 320px;
    opacity: 1;
    transform: all;
  }

  75% {
    font-size: 320px;
    opacity: 1;
    transform: all;
  }

  100% {
    opacity: 0;
    transform: all;
  }
}

@-webkit-keyframes flash-timer {
  0% {
    opacity: 1;
    -webkit-transform: opacity;
  }

  99% {
    opacity: 1;
    -webkit-transform: opacity;
  }

  100% {
    opacity: 0;
    -webkit-transform: opacity;
  }
}

@keyframes flash-timer {
  0% {
    opacity: 1;
    transform: opacity;
  }

  99% {
    opacity: 1;
    transform: opacity;
  }

  100% {
    opacity: 0;
    transform: opacity;
  }
}

.ct-widget.ct-flash {
  color: rgba(255, 255, 255, 0.9);
  height: 0;
  left: 0;
  position: fixed;
  font-family: "icon";
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0;
  width: 0;
  z-index: 10999;
  /**
   * Modifiers that can be applied to the flash to change it's appearance.
   */
}

.ct-widget.ct-flash:before {
  left: 50%;
  opacity: 0;
  position: fixed;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  top: 50%;
  transform: translate(-50%, -50%);
}

.ct-widget.ct-flash--active {
  -webkit-animation: flash-timer 2s ease-in;
  animation: flash-timer 2s ease-in;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.ct-widget.ct-flash--active:before {
  -webkit-animation: flash 2s ease-in;
  animation: flash 2s ease-in;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  font-size: 320px;
  opacity: 1;
}

.ct-widget.ct-flash--ok:before {
  content: "\EA10";
}

.ct-widget.ct-flash--no:before {
  content: "\EA0F";
}

/**
 * Grip's provide a visual hint to the user that they can use the mouse to drag
 * an item (for example the toolbar has a grip that can be used to drag it to a
 * new location.
 */

.ct-widget .ct-grip {
  cursor: move;
  font-size: 0;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /**
   * Grips consist of one or more bumps, elements that appear to be sunk
   * or raised and therefore provide grip.
   */
}

.ct-widget .ct-grip__bump {
  background: rgba(70, 70, 70, 0.15);
  border-radius: 12px;
  display: inline-block;
  height: 12px;
  margin-left: 12px;
  width: 12px;
}

.ct-widget .ct-grip__bump:first-child {
  margin-left: 0;
}

/**
 * The ignition switch is how users start and stop editing the page.
 */

/**
 * If the app is performing a remote task that requires the user to wait for
 * a response from the server then the ignition may be set to a busy state. The
 * busy state uses an animation (a rotating cog) defined below.
 */

@-webkit-keyframes busy-ignition {
  0% {
    transform: rotate(0deg);
    -webkit-transform: transform;
  }

  100% {
    transform: rotate(359deg);
    -webkit-transform: transform;
  }
}

@keyframes busy-ignition {
  0% {
    transform: rotate(0deg);
    transform: transform;
  }

  100% {
    transform: rotate(359deg);
    transform: transform;
  }
}

.ct-widget.ct-ignition {
  /**
   * Position of the switch on the page
   */
  left: 16px;
  position: fixed;
  top: 16px;
  /**
   * Depending on the current state of the switch we show either the edit
   * button (page ready to edit), or the confirm and cancel buttons (
   * page currently being edited).
   */
}

.ct-widget.ct-ignition .ct-ignition__button {
  display: none;
}

.ct-widget.ct-ignition--editing .ct-ignition__button--confirm,
.ct-widget.ct-ignition--editing .ct-ignition__button--cancel {
  display: block;
}

.ct-widget.ct-ignition--ready .ct-ignition__button--edit {
  display: block;
}

.ct-widget.ct-ignition--busy .ct-ignition__button {
  display: none;
}

.ct-widget.ct-ignition--busy .ct-ignition__button--busy {
  display: block;
}

.ct-widget .ct-ignition {
  /**
   * The ignition switch is constructed of 3 buttons, edit, confirm and
   * cancel.
   */
}

.ct-widget .ct-ignition__button {
  border-radius: 24px;
  content: "";
  cursor: pointer;
  display: block;
  height: 48px;
  line-height: 48px;
  opacity: 0.9;
  position: absolute;
  text-align: center;
  font-family: "icon";
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 48px;
  /* Busy button */
  /* Confirm button */
  /* Cancel button */
  /* Edit button */
}

.ct-widget .ct-ignition__button:before {
  color: white;
}

.ct-widget .ct-ignition__button--busy {
  -webkit-animation: busy-ignition 5s linear;
  animation: busy-ignition 5s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  background: #646464;
  cursor: default;
}

.ct-widget .ct-ignition__button--busy:before {
  content: "\E994";
}

.ct-widget .ct-ignition__button--busy:hover {
  background: #646464;
}

.ct-widget .ct-ignition__button--confirm {
  background: #27ae60;
}

.ct-widget .ct-ignition__button--confirm:before {
  content: "\EA10";
}

.ct-widget .ct-ignition__button--confirm:hover {
  background: #2cc36b;
}

.ct-widget .ct-ignition__button--cancel {
  background: #e74c3c;
  left: 64px;
}

.ct-widget .ct-ignition__button--cancel:before {
  content: "\EA0F";
}

.ct-widget .ct-ignition__button--cancel:hover {
  background: #ea6153;
}

.ct-widget .ct-ignition__button--edit {
  background: #2980b9;
  /**
   * Unlike the confirm and cancel buttons we rotate the edit
   * button's pencil icon on mouse over to add a sense of
   * purpose :)
   */
}

.ct-widget .ct-ignition__button--edit:before {
  content: "\E905";
  transition-property: transform;
  transition-duration: 0.1s;
  transition-timing-function: ease-in;
}

.ct-widget .ct-ignition__button--edit:hover {
  background: #2e8ece;
}

.ct-widget .ct-ignition__button--edit:hover:before {
  display: inline-block;
  transform: rotate(-15deg);
}

/**
 * The inspector provides a breadcrumb style path (constructured from tags) for
 * the currently selected element and its parent/ancestor tags.
 *
 * Tags can be selected which triggers the properties dialog. This allows
 * elements which typically can't be directly selected using the editor to be
 * modified.
 */

.ct-widget {
  /**
   * The inspector bar is consists of a list of one or more tags, each tag
   * represents an element in the lineage between the currently selected
   * element and the top level element it is defined within, e.g for a table
   * division the path might look like this:
   *
   * table > tbody > tr > td
   */
}

.ct-widget.ct-inspector {
  background: rgba(233, 233, 233, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  bottom: 0;
  height: 32px;
  left: 0;
  overflow: hidden;
  padding: 3px 16px 0;
  position: fixed;
  width: 100%;
}

.ct-widget .ct-inspector__tags {
  width: calc(100% - 128px);
}

.ct-widget .ct-inspector__tags::after {
  clear: both;
  content: "";
  display: table;
}

.ct-widget .ct-inspector__tags:before {
  color: #464646;
  content: "\EA80";
  display: block;
  float: left;
  height: 24px;
  line-height: 24px;
  margin-right: 16px;
  text-align: center;
  font-family: "icon";
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 24px;
}

.ct-widget .ct-inspector__counter {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  height: 24px;
  line-height: 24px;
  margin-right: 16px;
  position: absolute;
  right: 0;
  text-align: right;
  top: 3px;
  width: 128px;
}

.ct-widget .ct-tag {
  background-color: #2980b9;
  border-radius: 2px 0 0 2px;
  color: white;
  cursor: pointer;
  float: left;
  font-weight: bold;
  height: 24px;
  line-height: 24px;
  margin-left: 24px;
  padding: 0 8px;
  position: relative;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.ct-widget .ct-tag:after {
  border-style: solid;
  border-bottom: 12px solid rgba(255, 0, 0, 0);
  border-left: 12px solid #2980b9;
  border-right: none;
  border-top: 12px solid rgba(255, 0, 0, 0);
  content: "";
  display: block;
  height: 24px;
  bottom: 0;
  right: -24px;
  position: absolute;
  width: 24px;
  -moz-transform: scale(0.9999);
}

.ct-widget .ct-tag:first-child {
  margin-left: 0;
}

.ct-widget .ct-tag:hover {
  background-color: #4aa3df;
}

.ct-widget .ct-tag:hover:after {
  border-left-color: #4aa3df;
}

.ct-widget .ct-tag:nth-child(1) {
  background-color: #8e44ad;
}

.ct-widget .ct-tag:nth-child(1):after {
  border-left-color: #8e44ad;
}

.ct-widget .ct-tag:nth-child(1):hover {
  background-color: #9b50ba;
}

.ct-widget .ct-tag:nth-child(1):hover:after {
  border-left-color: #9b50ba;
}

.ct-widget .ct-tag:nth-child(2) {
  background-color: #2980b9;
}

.ct-widget .ct-tag:nth-child(2):after {
  border-left-color: #2980b9;
}

.ct-widget .ct-tag:nth-child(2):hover {
  background-color: #2e8ece;
}

.ct-widget .ct-tag:nth-child(2):hover:after {
  border-left-color: #2e8ece;
}

.ct-widget .ct-tag:nth-child(3) {
  background-color: #27ae60;
}

.ct-widget .ct-tag:nth-child(3):after {
  border-left-color: #27ae60;
}

.ct-widget .ct-tag:nth-child(3):hover {
  background-color: #2cc36b;
}

.ct-widget .ct-tag:nth-child(3):hover:after {
  border-left-color: #2cc36b;
}

.ct-widget .ct-tag:nth-child(4) {
  background-color: #d35400;
}

.ct-widget .ct-tag:nth-child(4):after {
  border-left-color: #d35400;
}

.ct-widget .ct-tag:nth-child(4):hover {
  background-color: #ed5e00;
}

.ct-widget .ct-tag:nth-child(4):hover:after {
  border-left-color: #ed5e00;
}

.ct-widget .ct-tag:nth-child(5) {
  background-color: #f39c12;
}

.ct-widget .ct-tag:nth-child(5):after {
  border-left-color: #f39c12;
}

.ct-widget .ct-tag:nth-child(5):hover {
  background-color: #f4a62a;
}

.ct-widget .ct-tag:nth-child(5):hover:after {
  border-left-color: #f4a62a;
}

.ct-widget .ct-tag:nth-child(6) {
  background-color: #16a085;
}

.ct-widget .ct-tag:nth-child(6):after {
  border-left-color: #16a085;
}

.ct-widget .ct-tag:nth-child(6):hover {
  background-color: #19b698;
}

.ct-widget .ct-tag:nth-child(6):hover:after {
  border-left-color: #19b698;
}

/**
 * The modal widget provides a layer over the page limiting interaction to just
 * the components positioned above the layer. This is commonly used when
 * displaying a dialog, for example if we're editing a table's properties then
 * the modal ensures the user can't change the element selected on the page
 * while the dialog is open.
 */

.ct-widget.ct-modal {
  background: rgba(0, 0, 0, 0.7);
  height: 0;
  left: 0;
  position: fixed;
  top: 0;
  width: 0;
  z-index: 10009;
}

.ct-widget.ct-modal--transparent {
  background: transparent;
}

.ct-widget--active.ct-modal {
  height: 100%;
  width: 100%;
}

/**
 * The progress bar appears in dialogs (such as the image dialog) and provides
 * feedback to the user on a task (such as uploading an image).
 */

.ct-widget .ct-progress-bar {
  border: 1px solid #eee;
  height: 32px;
  line-height: 32px;
  padding: 1px;
  width: 456px;
  /**
   * Note: The width of the progress bar should be set (as a percentage)
   * programatially, e.g `progressBarDOM.style.width = '50%'`.
   */
}

.ct-widget .ct-progress-bar__progress {
  background: #2980b9;
  height: 28px;
}

/**
 * Sections are used to divide up configuration blocks within a dialog's view.
 * They contain wither a switch or an input, for example the table dialog has
 * header (switch), body (input - e.g number of columns) and footer (switch)
 * sections.
 */

.ct-widget .ct-section {
  border-bottom: 1px solid #eee;
  color: #bdbdbd;
  cursor: pointer;
  font-style: italic;
  height: 48px;
  padding: 0 16px;
  font-family: arial, sans-serif;
  font-size: 16px;
  line-height: 48px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /**
   * If the section is a switch then the `applied` modifier is set when
   * the switch is on.
   */
  /**
   * If the section contains an input field the `contains-input` modifier
   * is set.
   */
  /**
   * Each section has a label describing the purpose of the switch or
   * input within the section.
   */
}

.ct-widget .ct-section::after {
  clear: both;
  content: "";
  display: table;
}

.ct-widget .ct-section:hover {
  background: #f6f6f6;
}

.ct-widget .ct-section--applied {
  color: #646464;
  font-style: normal;
}

.ct-widget .ct-section--applied .ct-section__switch {
  background-color: #27ae60;
  border: 1px solid #1e8449;
}

.ct-widget .ct-section--applied .ct-section__switch:before {
  left: 25px;
  transition-property: left;
  transition-duration: 0.1s;
  transition-timing-function: ease-in;
}

.ct-widget .ct-section--contains-input .ct-section__label {
  width: 75%;
}

.ct-widget .ct-section__label {
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 472px;
  white-space: nowrap;
}

.ct-widget .ct-section__switch {
  background-color: #ccc;
  border: 1px solid #b3b3b3;
  border-radius: 12px;
  box-shadow: inset 0px 0 2px rgba(0, 0, 0, 0.1);
  float: right;
  height: 24px;
  margin-top: 12px;
  position: relative;
  width: 48px;
}

.ct-widget .ct-section__switch:before {
  background: white;
  border-radius: 10px;
  content: "";
  height: 20px;
  left: 1px;
  position: absolute;
  top: 1px;
  transition-property: left;
  transition-duration: 0.1s;
  transition-timing-function: ease-in;
  width: 20px;
}

.ct-widget .ct-section__input {
  background: white;
  border: none;
  color: #646464;
  float: right;
  height: 47px;
  outline: none;
  padding: 0 16px;
  text-align: right;
  font-family: arial, sans-serif;
  font-size: 14px;
  line-height: 48px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 25%;
  /**
   * If the contents of the sections input is invalid then the
   * `invalid` modifier is set against the input (programmatically).
   */
}

.ct-widget .ct-section__input--invalid {
  color: #e74c3c;
}

/**
 * The toolbox widget displays a set of tools the user can use to edit the
 * content of the page.
 */

.ct-widget {
  /**
   * Define the spacing for the toolbox:
   *
   * spacing / 1 = the padding around the contents of the toolbox.
   * spacing / 1 = the vertical padding around the toolbox's grip.
   * spacing / 2 = the margin between each tool.
   * spacing / 2 = the vertical padding around each tool group.
   */
  /**
   * The size of a tool.
   */
  /**
   * The grip is positioned at the top of the toolbox. If the user clicks and
   * holds the mouse down whilst over the grip then the toolbox will be
   * draggable until they release the mouse button.
   */
  /**
   * Tools are organized into groups of related tools.
   */
  /**
   * The toolbox features a set of tools for editing the page content.
   */
}

.ct-widget.ct-toolbox {
  /**
   * The position of the toolbox is typically determined by the position
   * the user last placed it (this information is stored in local
   * storage). However we set a default position for the first time the
   * toolbox is displayed.
   */
  background: rgba(233, 233, 233, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.35);
  left: 128px;
  padding: 8px;
  position: fixed;
  top: 128px;
  width: 138px;
  /**
   * When the toolbox is being dragged to a new position by the user the
   * dragging modifier is applied. Whilst being dragged we reduce the
   * opacity of the toolbox to make it easier for the user to see the
   * content being dragged over.
   */
}

.ct-widget.ct-toolbox--dragging {
  opacity: 0.5;
}

.ct-widget .ct-toolbox__grip {
  padding: 8px 0;
}

.ct-widget .ct-tool-group {
  /**
   * Tools are floated to align horizontally so each group must clear its
   * children.
   */
  padding: 4px 0;
}

.ct-widget .ct-tool-group::after {
  clear: both;
  content: "";
  display: table;
}

.ct-widget .ct-tool-group:first-child {
  padding-top: 0;
}

.ct-widget .ct-tool {
  border-radius: 2px;
  color: #464646;
  cursor: pointer;
  float: left;
  height: 32px;
  margin: 4px;
  margin-right: 4px;
  position: relative;
  text-align: center;
  font-family: "icon";
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 32px;
  /**
   * Tools are displayed in rows of 3 so re remove margin from the last
   * (3rd) tool in every row.
   */
  /**
   * The following modifiers reflect the state of the tool.
   */
  /**
   * The tools is currently disabled and cannot be selected (the hover
   * style is also disabled).
   */
  /**
   * The button has been clicked on and the mouse button is still in the
   * down state.
   */
  /**
   * The tool is currently applied to the selected element, and if there
   * is one text selection.
   */
  /**
   * Each of the modifiers below sets the content of the pseudo before
   * element to match the required icon. The list is ordered by the
   * position each tool in the default toolbox (as opposed to
   * alphabetically).
   */
}

.ct-widget .ct-tool:after {
  background: black;
  border-radius: 2px;
  color: white;
  content: attr(data-ct-tooltip);
  display: block;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  left: -26.5px;
  line-height: 20px;
  opacity: 0;
  padding: 0 8px;
  pointer-events: none;
  position: absolute;
  bottom: 37px;
  font-family: arial, sans-serif;
  font-size: 12px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  visibility: hidden;
  width: 85px;
  word-break: break-word;
}

.ct-widget .ct-tool:hover:after {
  opacity: 0.8;
  visibility: visible;
  transition-property: opacity;
  transition-duration: 0s;
  transition-timing-function: ease-in;
  transition-delay: 2s;
}

.ct-widget .ct-tool:before {
  line-height: 32px;
}

.ct-widget .ct-tool:nth-child(3n) {
  margin-right: 0;
}

.ct-widget .ct-tool:hover {
  background: rgba(255, 255, 255, 0.5);
}

.ct-widget .ct-tool--disabled {
  color: rgba(70, 70, 70, 0.33);
}

.ct-widget .ct-tool--disabled:hover {
  background: transparent;
}

.ct-widget .ct-tool--down {
  background: rgba(0, 0, 0, 0.025);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25);
  line-height: 34px;
}

.ct-widget .ct-tool--down:hover {
  background: rgba(0, 0, 0, 0.025);
}

.ct-widget .ct-tool--applied {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25);
}

.ct-widget .ct-tool--applied:hover {
  background: rgba(0, 0, 0, 0.15);
}

.ct-widget .ct-tool--bold:before {
  content: "\EA62";
}

.ct-widget .ct-tool--heading:before {
  content: "H";
  font-weight: bold;
}

.ct-widget .ct-tool--subheading:before {
  content: "H";
}

.ct-widget .ct-tool--paragraph:before {
  content: "P";
}

.ct-widget .ct-tool--preformatted:before {
  content: "\EA80";
}

.ct-widget .ct-tool--italic:before {
  content: "\EA64";
}

.ct-widget .ct-tool--link:before {
  content: "\E9CB";
}

.ct-widget .ct-tool--align-left:before {
  content: "\EA77";
}

.ct-widget .ct-tool--align-center:before {
  content: "\EA78";
}

.ct-widget .ct-tool--align-right:before {
  content: "\EA79";
}

.ct-widget .ct-tool--unordered-list:before {
  content: "\E9BA";
}

.ct-widget .ct-tool--ordered-list:before {
  content: "\E9B9";
}

.ct-widget .ct-tool--table:before {
  content: "\EA71";
}

.ct-widget .ct-tool--indent:before {
  content: "\EA7B";
}

.ct-widget .ct-tool--unindent:before {
  content: "\EA7C";
}

.ct-widget .ct-tool--line-break:before {
  content: "\EA6E";
}

.ct-widget .ct-tool--image:before {
  content: "\E90D";
}

.ct-widget .ct-tool--video:before {
  content: "\EA98";
}

.ct-widget .ct-tool--undo:before {
  content: "\E965";
}

.ct-widget .ct-tool--redo:before {
  content: "\E966";
}

.ct-widget .ct-tool--remove:before {
  content: "\E9AC";
}

/**
 * The highlight class below is used to highlight editable regions within the
 * page to users to help them see what they can edit. It's slightly unusual in
 * that it's specified as a modifier of `ct`.
 */

@-webkit-keyframes highlight {
  0% {
    outline-color: rgba(255, 255, 255, 0);
    -webkit-transform: background-color;
  }

  25% {
    outline-color: #f39c12;
    -webkit-transform: background-color;
  }

  50% {
    outline-color: #f39c12;
    -webkit-transform: background-color;
  }

  100% {
    outline-color: rgba(255, 255, 255, 0);
    -webkit-transform: background-color;
  }
}

@keyframes highlight {
  0% {
    outline-color: rgba(255, 255, 255, 0);
    transform: background-color;
  }

  25% {
    outline-color: #f39c12;
    transform: background-color;
  }

  50% {
    outline-color: #f39c12;
    transform: background-color;
  }

  100% {
    outline-color: rgba(255, 255, 255, 0);
    transform: background-color;
  }
}

.ct-app {
  box-sizing: border-box;
}

.ct-app *,
.ct-app *:before,
.ct-app *:after {
  box-sizing: border-box;
}

.ct--highlight {
  outline: 4px solid #f39c12;
  -webkit-animation: highlight 0.5s ease-in;
  animation: highlight 0.5s ease-in;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/**
 * When applied to the `body` this class prevents the page from scrolling. This
 * can be a useful trait when overlaying content such as a dialog where
 * scrolling is either undesirable or relevant only to the overlayed content.
 */

.ct--no-scroll {
  overflow: hidden;
}

/**
 * Sometimes it necessary to take focus from an element such as when asking a
 * user to provide a URL for a link. To provide an indication of the element's
 * selection before focus was list this class can be applied to a `span`
 * surrounding the element's selection.
 *
 * Once focus is returned to the element the class should be removed.
 */

.ct--pseudo-select {
  background: rgba(0, 0, 0, 0.1);
}

/**
 * All widgets are assigned a z-index equal to or higher than this setting. The
 * base z-index can be adjusted to overcome z-index conflicts with existing page
 * elements.
 */

/**
 * For UI widgets that appear on the page (as opposed to appearing in front of a
 * modal screen) we define a base background colour.
 */

/**
 * The colour used when casting shadows for widgets that appear to float.
 */

/**
 * Confirm, Cancel and Edit actions are common amoung the various ui components.
 * Each action has an associated/common colour.
 */

/**
 * The background colour used to highlight editiable regions to users when they
 * hold down the shift key.
 */

/**
 * Tooltips feature for a number of components, their base appearance is
 * configured using a mixin.
 */

/**
 * The following settings relate to typography. For portability we limit the the
 * use of fonts to:
 *
 * - `type-icon` used for displaying icons (courtesy of http://icomoon.io).
 * - `type-text` used for displaying text.
 *
 */

@font-face {
  font-family: "icon";
  src: url(/fonts/vendor/ContentTools/build/images/icons.woff?8ffad8ecb97689fdf1865fe16856871e);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "alr";
  src: url(/fonts/alr.eot?5fcbacfaee432b3066e397218e8bcdd6);
  src: url(/fonts/alr.eot?5fcbacfaee432b3066e397218e8bcdd6) format("embedded-opentype"), url(/fonts/alr.ttf?239c2faddd7c125dcc26721192fb9b7a) format("truetype"), url(/fonts/alr.woff?f5ecccbe9cc047f01bc70f5190411fa0) format("woff"), url(/fonts/alr.svg?59be8a9f9df38d91b664e9a77d389daa) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^=alr-],
[class*=" alr-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "alr" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.alr-cogs:before {
  content: "\E995";
}

.alr-notification:before {
  content: "\EA08";
}

.alr-cross:before {
  content: "\EA0F";
}

.alr-checkmark:before {
  content: "\EA10";
}

.alr-pencil:before {
  content: "\E905";
}

.alr-pen:before {
  content: "\E908";
}

.alr-file-text:before {
  content: "\E922";
}

.alr-file-picture:before {
  content: "\E927";
}

.alr-download:before {
  content: "\E960";
}

.alr-user:before {
  content: "\E971";
}

.alr-users:before {
  content: "\E972";
}

.alr-user-plus:before {
  content: "\E973";
}

.alr-search:before {
  content: "\E986";
}

.alr-bin:before {
  content: "\E9AC";
}

.alr-switch:before {
  content: "\E9B6";
}

.alr-attachment:before {
  content: "\E9CD";
}

.alr-eye:before {
  content: "\E9CE";
}

.alr-plus:before {
  content: "\EA0A";
}

.alr-loop2:before {
  content: "\EA2E";
}

.alr-sort-alpha-asc:before {
  content: "\EA48";
}

.alr-sort-alpha-desc:before {
  content: "\EA49";
}

.alr-sort-numeric-asc:before {
  content: "\EA4A";
}

.alr-sort-numberic-desc:before {
  content: "\EA4B";
}

.alr-mail2:before {
  content: "\EA84";
}

.alr-file-pdf:before {
  content: "\EADF";
}

.alr-file-word:before {
  content: "\EAE1";
}

.alr-file-excel:before {
  content: "\EAE2";
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

img {
  width: 100%;
}

.alr_bgIllu {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: transparent url(/images/bg_illu_1.jpg?b77908df3cf37a041e2776823fdb83ea) no-repeat center/cover;
  display: flex;
  flex-flow: column nowrap;
  align-content: center;
  justify-content: center;
}

.alr_maskBg {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}

.alr_openModProp {
  overflow: hidden;
}

.alr_wrapperDash {
  position: relative;
  z-index: 3;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.alr_wrapperDash.alr_wrapperDashMenu {
  height: 100%;
  justify-content: space-between;
}

.alr_wrapperDash.alr_wrapperDashMenu .alr_contentCenter {
  height: 100%;
  height: calc(100% - (110px + 40px));
  min-height: calc(100vh - (110px + 40px));
}

.alr_barTop {
  width: 100%;
  height: 110px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: row nowrap;
}

@media all and (min-width: 768px) {
  .alr_barTop {
    justify-content: flex-start;
  }
}

.alr_logo {
  width: 120px;
}

.alr_contentCenter {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.alr_dashMenuCenter {
  width: auto;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
}

@media all and (min-width: 768px) {
  .alr_dashMenuCenter {
    flex-flow: row wrap;
    justify-content: center;
  }
}

.alr_btnMenuCenter {
  width: 285px;
  min-height: 80px;
  text-decoration: none;
  border-radius: 4px;
  color: #c4007a;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #c4007a;
  padding: 20px;
  margin: 10px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.alr_btnMenuCenter i {
  font-size: 30px;
}

.alr_btnMenuCenter span {
  font-size: 16px;
  padding: 10px;
  width: 100%;
}

@media all and (min-width: 768px) {
  .alr_btnMenuCenter {
    flex-flow: column nowrap;
    justify-content: center;
    height: 300px;
    width: 220px;
    border-width: 4px;
  }

  .alr_btnMenuCenter i {
    font-size: 50px;
  }

  .alr_btnMenuCenter span {
    text-align: center;
    font-size: 20px;
  }
}

.alr_btnMenuCenter:hover {
  color: #ffffff;
  background-color: #c4007a;
}

.alr_dashMenuNavBar {
  margin: 30px 0;
  height: 100%;
  flex-grow: 2;
}

@media all and (min-width: 768px) {
  .alr_dashMenuNavBar {
    margin: 60px 0;
  }
}

.alr_btnMenuNavBar {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.6;
  margin: 10px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.alr_btnMenuNavBar i {
  font-size: 25px;
}

.alr_btnMenuNavBar span {
  font-size: 14px;
  padding: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

@media all and (min-width: 768px) {
  .alr_btnMenuNavBar {
    flex-flow: column nowrap;
    justify-content: center;
  }

  .alr_btnMenuNavBar i {
    font-size: 45px;
  }

  .alr_btnMenuNavBar span {
    text-align: center;
    padding: 8px 20px 10px;
  }
}

.alr_btnMenuNavBar:hover,
.alr_btnMenuNavBar.active {
  opacity: 1;
}

.alr_btnMenuNavBar.alr_navAdm {
  color: #767676;
  opacity: 1;
}

.alr_btnMenuNavBar.alr_navAdm:hover,
.alr_btnMenuNavBar.alr_navAdm.active {
  color: #a3006e;
}

.alr_dashUser,
.alr_dashAdm {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.alr_dashAdm .alr_containerRightHeadContent {
  max-width: 100%;
}

.alr_navBarMenuBurger {
  width: 40px;
  height: 30px;
  position: fixed;
  z-index: 100;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background-color: #ffffff;
}

.alr_navBarMenuBurger span {
  width: 100%;
  height: 5px;
  background-color: #a3006e;
  display: block;
  position: absolute;
  transition: all 0.3s ease;
}

.alr_navBarMenuBurger span:nth-of-type(1) {
  top: 0%;
  transform: translateY(0);
}

.alr_navBarMenuBurger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.alr_navBarMenuBurger span:nth-of-type(3) {
  top: 100%;
  transform: translateY(-100%);
}

.alr_navBarMenuBurger.open {
  background: none;
}

.alr_navBarMenuBurger.open span {
  transition: all 0.3s ease;
}

.alr_navBarMenuBurger.open span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.alr_navBarMenuBurger.open span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.alr_navBarMenuBurger.open span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media all and (min-width: 1024px) {
  .alr_navBarMenuBurger {
    display: none;
  }
}

.alr_navBarLeft {
  background-color: #a3006e;
  min-height: 100vh;
  padding: 20px;
  width: 180px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  left: -200px;
  top: 0;
  transition: left 0.3s ease;
  z-index: 100;
}

.alr_navBarLeft.open {
  left: 0;
  transition: left 0.3s ease;
}

@media all and (min-width: 1024px) {
  .alr_navBarLeft {
    position: static;
  }
}

.alr_navBarLeft.alr_navAdm {
  background-color: #ffffff;
  border-right: 1px solid #a3006e;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.alr_containerRight {
  padding: 20px;
  width: 100%;
  height: 100%;
}

@media all and (min-width: 1024px) {
  .alr_containerRight {
    width: calc(100vw - 180px);
  }
}

.alr_containerRight .alr_form {
  margin: 20px 0;
  width: 100%;
}

.alr_containerRightHead {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.alr_containerRightHeadContent {
  width: 100%;
  max-width: 250px;
  padding: 0 0 20px;
}

@media all and (min-width: 410px) {
  .alr_containerRightHeadContent {
    max-width: 330px;
  }
}

@media all and (min-width: 768px) {
  .alr_containerRightHeadContent {
    max-width: 350px;
  }
}

@media all and (min-width: 1024px) {
  .alr_containerRightHeadContent {
    max-width: 430px;
  }
}

.alr_containerRightHeadContent h2 {
  text-transform: uppercase;
  font-size: 28px;
}

@media all and (min-width: 1024px) {
  .alr_containerRightHeadContent h2 {
    font-size: 32px;
  }
}

.alr_containerRightHeadContent p {
  font-weight: 400;
  width: 100%;
  font-size: 14px;
}

.alr_containerRightHeadContentBack {
  margin-bottom: 20px;
}

.alr_containerRightHeadContentBack a {
  color: inherit;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
}

.alr_containerRightHeadNav a {
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  font-size: 14px;
  margin: 5px 20px 5px 0;
}

@media all and (min-width: 1024px) {
  .alr_containerRightHeadNav a {
    margin: 0 10px;
  }
}

.alr_containerRightHeadNav a:hover {
  text-decoration: underline;
}

@media all and (min-width: 1024px) {
  .alr_containerRightContent {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    justify-content: flex-start;
  }
}

.alr_containerRightContent > div {
  width: 100%;
}

@media all and (min-width: 768px) {
  .alr_containerRightContent .alr_left {
    padding-right: 20px;
  }
}

@media all and (min-width: 768px) {
  .alr_containerRightContent .alr_right {
    padding-left: 20px;
  }
}

.alr_containerRightContent .alr_previsual {
  display: none;
  width: 100%;
  margin: 90px 20px 60px;
  border: 1px solid #767676;
  border-radius: 4px;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

@media all and (min-width: 1024px) {
  .alr_containerRightContent .alr_previsual {
    display: flex;
  }
}

.alr_containerRightContent .alr_previsual p {
  width: 250px;
  text-align: center;
  text-transform: uppercase;
  color: #767676;
  font-size: 18px;
  font-weight: 600;
}

.alr_containerRightContent #motions {
  border: 1px solid gainsboro;
  padding: 20px;
}

.alr_containerRightContent #motions .alr_motionsTitle {
  margin-bottom: 20px;
}

.alr_containerRightContent #motions p {
  margin: 2px 0;
}

.alr_containerRightContent #motions h2 {
  margin: 20px 0 5px;
}

.alr_containerRightContent #motions h3 {
  margin: 10px 0 0;
}

.alr_containerRightContent #motions ul,
.alr_containerRightContent #motions li {
  list-style-position: inside;
}

.alr_containerRightContent #motions li {
  margin: 2px 0;
}

.alr_containerRightContent .alr_containerRightContentArr h1,
.alr_containerRightContent .alr_containerRightContentArr h2,
.alr_containerRightContent .alr_containerRightContentArr h3 {
  font-size: inherit;
  font-weight: 400;
}

.alr_containerRightContent .alr_containerRightContentArr table {
  width: 100%;
}

.alr_containerRightContent .alr_containerRightContentArr table thead {
  text-align: center;
}

.alr_containerRightContent .alr_containerRightContentArr table thead th {
  padding: 10px;
}

.alr_containerRightContent .alr_containerRightContentArr table thead th:first-of-type {
  text-align: left;
}

.alr_containerRightContent .alr_containerRightContentArr table tbody {
  text-align: center;
}

.alr_containerRightContent .alr_containerRightContentArr table tbody td {
  padding: 10px;
}

.alr_containerRightContent .alr_containerRightContentArr table tbody td:first-of-type {
  text-align: left;
}

.alr_containerRightContent .alr_containerRightContentArr table tbody tr:nth-of-type(even) {
  background-color: #f0f0f0;
}

.alr_containerRightContent .alr_containerRightContentArr a {
  text-decoration: none;
  color: inherit;
  font-size: 20px;
}

.alr_containerRightContent .alr_containerRightContentArr a span {
  padding: 0 10px;
  font-size: 14px;
}

.alr_listing {
  padding: 0;
}

.alr_listing .alr_articleContainer {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #767676;
  border-radius: 4px;
}

.alr_listing .alr_articleContainer .alr_formFieldTitle {
  margin: 0;
}

.alr_tableDash {
  margin: 30px 0;
}

.alr_tableDash * {
  border-color: #f0f0f0;
}

.alr_tableDash .alr_tableDashContent {
  width: 100%;
}

.alr_tableDash .alr_tableDashContent thead th {
  padding: 10px;
  font-size: 14px;
  text-transform: uppercase;
}

.alr_tableDash .alr_tableDashContent thead th.alr_hidden {
  display: none;
}

@media all and (min-width: 768px) {
  .alr_tableDash .alr_tableDashContent thead th.alr_hidden {
    display: table-cell;
  }
}

.alr_tableDash .alr_tableDashContent thead th.alr_smallHidden {
  display: none;
}

@media all and (min-width: 370px) {
  .alr_tableDash .alr_tableDashContent thead th.alr_smallHidden {
    display: table-cell;
  }
}

.alr_tableDash .alr_tableDashContent tbody tr.disabled td {
  color: #c3c3c3;
}

.alr_tableDash .alr_tableDashContent tbody td {
  padding: 10px;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.alr_tableDash .alr_tableDashContent tbody td:nth-of-type(2) > span {
  display: block;
  font-size: 10px;
  padding-top: 8px;
}

@media all and (min-width: 377px) {
  .alr_tableDash .alr_tableDashContent tbody td:nth-of-type(2) > span.alr_middleHidden {
    display: none;
  }
}

.alr_tableDash .alr_tableDashContent tbody td:last-of-type {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-around;
}

@media all and (min-width: 768px) {
  .alr_tableDash .alr_tableDashContent tbody td:last-of-type {
    flex-flow: row nowrap;
  }
}

.alr_tableDash .alr_tableDashContent tbody td:last-of-type a {
  color: inherit;
  text-decoration: none;
  padding: 10px;
}

.alr_tableDash .alr_tableDashContent tbody td.alr_hidden {
  display: none;
}

@media all and (min-width: 768px) {
  .alr_tableDash .alr_tableDashContent tbody td.alr_hidden {
    display: table-cell;
  }
}

@media all and (min-width: 768px) {
  .alr_tableDash .alr_tableDashContent tbody td.alr_show {
    display: none;
  }
}

.alr_tableDash .alr_tableDashContent tbody td.alr_smallHidden {
  display: none;
}

@media all and (min-width: 370px) {
  .alr_tableDash .alr_tableDashContent tbody td.alr_smallHidden {
    display: table-cell;
  }
}

.alr_tableDash .alr_tableDashContent tbody td a {
  text-decoration: none;
  color: inherit;
}

.alr_tableDash .alr_tableDashContent tbody td a .active {
  color: #07a53e;
}

.alr_tableDash .alr_tableDashContent tbody td a .disabled {
  color: #de3939;
}

.alr_tableDash .alr_notificationValidQuot {
  position: relative;
}

.alr_tableDash .alr_notificationValidQuot::after {
  content: "\EA08";
  font-family: "alr";
  position: absolute;
  top: 5px;
  left: 5px;
  color: #de3939;
}

.alr_deleteEl {
  position: relative;
  padding-bottom: 30px;
}

.alr_deleteElContent {
  position: absolute;
  bottom: 0;
  background-color: #ffffff;
  right: 0;
  cursor: pointer;
  border: 1px solid #c4007a;
  border-radius: 4px;
}

.alr_deleteElContent p {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px;
}

.alr_containerMotions p {
  margin: 2px 0;
}

.alr_containerMotions h2 {
  margin: 20px 0 5px;
}

.alr_containerMotions h3 {
  margin: 10px 0 0;
}

.alr_containerMotions ul,
.alr_containerMotions li {
  list-style-position: inside;
}

.alr_containerMotions li {
  margin: 2px 0;
}

.alr_wrapperModal,
.alr_wrapperModalContent {
  background: rgba(255, 255, 255, 0.7);
  margin: 20px auto;
  position: relative;
  z-index: 3;
  padding: 20px 10px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 500px;
}

@media all and (min-width: 768px) and (min-height: 900px) {
  .alr_wrapperModal,
  .alr_wrapperModalContent {
    margin: 60px auto;
    padding: 20px;
  }
}

@media all and (min-width: 1024px) {
  .alr_wrapperModal,
  .alr_wrapperModalContent {
    padding: 20px;
  }
}

.alr_wrapperModal .alr_logo,
.alr_wrapperModalContent .alr_logo {
  width: 100%;
  max-width: 130px;
}

@media all and (min-width: 768px) and (min-height: 900px) {
  .alr_wrapperModal .alr_logo,
  .alr_wrapperModalContent .alr_logo {
    max-width: 360px;
  }
}

@media all and (min-width: 1024px) {
  .alr_wrapperModal .alr_logo,
  .alr_wrapperModalContent .alr_logo {
    max-width: 250px;
  }
}

.alr_wrapperModal .alr_title h1,
.alr_wrapperModalContent .alr_title h1 {
  color: #c4007a;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin: 10px 0;
}

@media all and (min-width: 768px) and (min-height: 900px) {
  .alr_wrapperModal .alr_title h1,
  .alr_wrapperModalContent .alr_title h1 {
    font-size: 36px;
  }
}

@media all and (min-width: 1024px) {
  .alr_wrapperModal .alr_title h1,
  .alr_wrapperModalContent .alr_title h1 {
    font-size: 34px;
  }
}

.alr_wrapperModalNav {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  display: none;
}

.alr_wrapperModalNav.alr_openMod {
  display: flex;
}

.alr_wrapperModalContent {
  background-color: #ffffff;
  height: 90vh;
  padding: 20px;
  position: relative;
}

@media all and (min-width: 768px) {
  .alr_wrapperModalContent {
    max-width: 800px;
    padding: 20px 80px;
  }
}

@media all and (min-width: 768px) {
  .alr_wrapperModalContent.alr_wrapperModalContentB {
    max-width: 1000px;
    padding: 20px 80px;
  }
}

.alr_wrapperModalContent.alr_wrapperModalContentAuto {
  height: auto;
  padding-bottom: 60px;
}

.alr_headerModal {
  margin: 15px 0;
}

@media all and (min-width: 768px) {
  .alr_headerModal {
    margin: 30px 0;
  }
}

.alr_headerModal h2 {
  text-transform: uppercase;
  font-size: 22px;
}

@media all and (min-width: 768px) {
  .alr_headerModal h2 {
    font-size: 36px;
    text-align: center;
  }
}

.alr_headerModal h2 span {
  color: #c4007a;
  display: block;
}

.alr_bodyModal {
  height: 100%;
  overflow-y: auto;
  width: 100%;
}

.alr_bodyModal form {
  padding: 0 20px;
}

.alr_articleList {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@media all and (min-width: 768px) {
  .alr_articleList {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 31px;
  }
}

.alr_articleContainer {
  width: 270px;
  border: 1px solid #767676;
  border-radius: 4px;
  margin: 10px 0;
  position: relative;
  padding: 10px;
}

@media all and (min-width: 768px) {
  .alr_articleContainer {
    width: 48%;
  }
}

.alr_articleContainer .alr_articleHead {
  color: rgba(163, 0, 110, 0.3);
  font-size: 20px;
  width: 100%;
}

.alr_articleContainer .alr_articleBody {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 5px;
}

.alr_articleContainer .alr_articleBody .alr_articleFile {
  font-size: 45px;
}

.alr_articleContainer .alr_articleBody .alr_articleInfos {
  margin-left: 10px;
}

.alr_articleContainer .alr_articleBody .alr_articleInfos ul,
.alr_articleContainer .alr_articleBody .alr_articleInfos li {
  list-style: none;
}

.alr_articleContainer .alr_articleBody .alr_articleInfos p {
  font-size: 11px;
  color: #767676;
}

.alr_articleContainer .alr_articleActions {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
}

.alr_articleContainer .alr_articleActions a,
.alr_articleContainer .alr_articleActions button {
  font-size: 13px;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  padding: 3px;
  background: none;
  border: none;
}

.alr_articleContainer .alr_articleActions a:hover,
.alr_articleContainer .alr_articleActions button:hover {
  color: #a3006e;
}

.alr_articleContainer:hover {
  border-color: #a3006e;
}

.alr_articleContainer:hover .alr_articleBody .alr_articleFile {
  color: #a3006e;
}

.alr_articleContainer .alr_validQuot {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #de3939;
}

.alr_modal_close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.alr_modal_close p {
  font-size: 10px;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 700;
}

.alr_show .alr_showFieldTitle {
  margin: 30px 0 10px;
}

@media all and (min-width: 768px) {
  .alr_show .alr_showLine {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
  }
}

.alr_show .alr_showLineArticle,
.alr_show .alr_showColArticle {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px 0;
}

.alr_show .alr_showLineArticle.alr_big,
.alr_show .alr_big.alr_showColArticle {
  width: 100%;
}

@media all and (min-width: 768px) {
  .alr_show .alr_showLineArticle,
  .alr_show .alr_showColArticle {
    margin: 10px 20px 10px 0;
  }
}

.alr_show .alr_showLineArticle > aside,
.alr_show .alr_showColArticle > aside {
  color: #767676;
}

.alr_show .alr_showColArticle {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.alr_show .alr_showColArticle > aside {
  margin-right: 10px;
}

.alr_alert {
  position: fixed;
  bottom: 10px;
  right: 20px;
  left: 20px;
  padding: 40px 20px 20px;
  z-index: 100;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}

@media all and (min-width: 768px) {
  .alr_alert {
    bottom: auto;
    right: auto;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    font-size: 18px;
  }
}

.alr_alert .alr_alert_close {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

.alr_alert .alr_alert_close span {
  background-color: #000000;
  width: 100%;
  height: 3px;
  display: block;
  position: absolute;
  top: 50%;
}

.alr_alert .alr_alert_close span:nth-of-type(1) {
  transform: translateY(-50%) rotate(45deg);
}

.alr_alert .alr_alert_close span:nth-of-type(2) {
  transform: translateY(-50%) rotate(-45deg);
}

.alr_alert .alr_alert_close p {
  font-size: 10px;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 700;
}

.alr_alert-success {
  color: #07a53e;
  background-color: #affcca;
}

.alr_alert-error {
  color: #ffffff;
  background-color: #de3939;
}

.alr_alert-info {
  color: #767676;
  background-color: #f0f0f0;
}

.alr_formFieldTitle {
  margin: 30px 0 10px;
}

.alr_formFieldTitle.alr_formFieldTitleInline {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.alr_inputLab,
.alr_textareaLab,
.alr_selectLab {
  background-color: #ffffff;
  position: relative;
  height: 50px;
  border: 1px solid #767676;
  border-radius: 4px;
  width: 295px;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
  margin: 10px 0;
}

.alr_inputLab input,
.alr_textareaLab input,
.alr_selectLab input {
  width: 100%;
  border: none;
  background: none;
}

.alr_inputLab input + label,
.alr_textareaLab input + label,
.alr_selectLab input + label {
  position: absolute;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}

.alr_inputLab input:focus,
.alr_textareaLab input:focus,
.alr_selectLab input:focus,
.alr_inputLab input.active,
.alr_textareaLab input.active,
.alr_selectLab input.active {
  transform: translateY(10px);
}

.alr_inputLab input:invalid,
.alr_textareaLab input:invalid,
.alr_selectLab input:invalid {
  border: none;
  outline: none;
}

.alr_inputLab input:focus + label,
.alr_textareaLab input:focus + label,
.alr_selectLab input:focus + label,
.alr_inputLab input + label.active,
.alr_textareaLab input + label.active,
.alr_selectLab input + label.active {
  color: #767676;
  font-size: 11px;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.alr_inputLab.errors,
.errors.alr_textareaLab,
.errors.alr_selectLab {
  border: 2px solid #de3939;
}

.alr_inputLab.alr_disabled,
.alr_disabled.alr_textareaLab,
.alr_disabled.alr_selectLab {
  background-color: #f0f0f0;
  position: relative;
}

.alr_inputLab.alr_disabled::after,
.alr_disabled.alr_textareaLab::after,
.alr_disabled.alr_selectLab::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}

.alr_selectLab select {
  width: 100%;
  border: none;
  background: transparent url(/images/carret.png?37e34f16da934cfe0a257232800bc9ef) no-repeat 99% center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-overflow: "";
  height: 100%;
}

.alr_selectLab select::-ms-expand {
  display: none;
}

.alr_selectLab select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.alr_selectLab select + label {
  position: absolute;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}

.alr_selectLab select.active {
  transform: translateY(10px);
}

.alr_selectLab select:invalid {
  border: none;
  outline: none;
}

.alr_selectLab select:focus + label,
.alr_selectLab select + label.active {
  color: #767676;
  font-size: 11px;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.alr_textareaLab {
  height: auto;
  padding-top: 15px;
  padding-bottom: 30px;
}

.alr_textareaLab textarea {
  width: 100%;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-overflow: "";
  height: 100%;
}

.alr_textareaLab textarea::-ms-expand {
  display: none;
}

.alr_textareaLab textarea:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.alr_textareaLab textarea + label {
  position: absolute;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  top: 15px;
}

.alr_textareaLab textarea.active {
  transform: translateY(10px);
}

.alr_textareaLab textarea:invalid {
  border: none;
  outline: none;
}

.alr_textareaLab textarea:focus + label,
.alr_textareaLab textarea + label.active {
  color: #767676;
  font-size: 11px;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.alr_inputFile {
  background-color: #ffffff;
  position: relative;
  height: 50px;
  border: 1px solid #767676;
  border-radius: 4px;
  width: 295px;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
  margin: 10px 0;
}

.alr_inputFile input {
  position: absolute;
  left: -999px;
  width: 1px;
  height: 1px;
  z-index: -1;
}

.alr_inputFile input + label {
  position: absolute;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.alr_inputFile.alr_disabled {
  background-color: #f0f0f0;
  position: relative;
}

.alr_inputFile.alr_disabled::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}

.alr_inputFile.errors {
  border: 2px solid #de3939;
}

.alr_infoLoad {
  font-size: 12px;
  font-weight: 700;
}

.alr_infoLoad span {
  padding: 0 5px;
  font-weight: 300;
}

.alr_formLine.alr_up {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px dotted #c4007a;
}

@media all and (min-width: 768px) {
  .alr_formLine {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
  }
}

.alr_formLine .alr_inputLab,
.alr_formLine .alr_selectLab,
.alr_formLine .alr_textareaLab {
  width: 100%;
}

.alr_formLine.alr_formLine2 > div {
  width: 100%;
}

@media all and (min-width: 768px) {
  .alr_formLine.alr_formLine2 > div {
    width: 49%;
  }
}

.alr_formLine.alr_formLine2BL > div {
  width: 100%;
}

@media all and (min-width: 768px) {
  .alr_formLine.alr_formLine2BL > div:nth-of-type(1) {
    width: 59%;
  }
}

@media all and (min-width: 768px) {
  .alr_formLine.alr_formLine2BL > div:nth-of-type(2) {
    width: 39%;
  }
}

.alr_formLine.alr_formLine2BR > div {
  width: 100%;
}

@media all and (min-width: 768px) {
  .alr_formLine.alr_formLine2BR > div:nth-of-type(1) {
    width: 29%;
  }
}

@media all and (min-width: 768px) {
  .alr_formLine.alr_formLine2BR > div:nth-of-type(2) {
    width: 69%;
  }
}

.alr_formLine.alr_formLine3 > div {
  width: 100%;
}

@media all and (min-width: 768px) {
  .alr_formLine.alr_formLine3 > div {
    width: 32%;
  }
}

.alr_formLine.alr_formLine5 > div {
  width: 100%;
}

@media all and (min-width: 768px) {
  .alr_formLine.alr_formLine5 > div {
    width: 19%;
  }
}

.alr_formLine.alr_formLine4 > div {
  width: 100%;
}

@media all and (min-width: 768px) {
  .alr_formLine.alr_formLine4 > div {
    width: 24%;
  }
}

.alr_formLine.alr_formLineTop {
  align-items: flex-start;
}

.alr_inputInfo .alr_inputInfoContent {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.alr_formLinkAct {
  text-align: right;
}

.alr_formLinkAct > * {
  display: inline-block;
  color: #c4007a;
  text-decoration: underline;
  text-transform: uppercase;
  font-style: italic;
  font-size: 12px;
  padding: 10px 0;
  cursor: pointer;
}

.alr_infoFile {
  font-weight: 600;
  font-size: 13px;
}

.alr_btnContainer,
.alr_multiBtnContainer {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

.alr_btnContainer .alr_btn,
.alr_multiBtnContainer .alr_btn {
  height: 55px;
  width: 100%;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 0 20px;
}

@media all and (min-width: 768px) {
  .alr_btnContainer .alr_btn,
  .alr_multiBtnContainer .alr_btn {
    font-size: 15px;
  }
}

.alr_btnContainer .alr_btnSmall,
.alr_multiBtnContainer .alr_btnSmall {
  font-size: 12px;
  padding: 10px;
  height: 30px;
}

.alr_btnContainer .alr_btnPink,
.alr_multiBtnContainer .alr_btnPink {
  color: #ffffff;
  border-radius: 4px;
  border: 1px solid #c4007a;
  background-color: #c4007a;
}

.alr_btnContainer .alr_btnPinkClear,
.alr_multiBtnContainer .alr_btnPinkClear {
  color: #c4007a;
  border-radius: 4px;
  border: 1px solid #c4007a;
  background-color: #ffffff;
}

.alr_btnContainer .alr_linkMin,
.alr_multiBtnContainer .alr_linkMin {
  align-self: flex-start;
  font-size: 11px;
  text-decoration: none;
  font-style: italic;
  color: #000000;
  font-weight: 600;
  margin: 5px 0;
}

.alr_multiBtnContainer {
  flex-flow: column nowrap;
}

.alr_multiBtnContainer.alr_reverse {
  flex-flow: column-reverse nowrap;
}

.alr_multiBtnContainer.alr_center {
  justify-content: center;
}

.alr_multiBtnContainer.alr_center .alr_btn {
  margin: 5px;
}

@media all and (min-width: 768px) {
  .alr_multiBtnContainer {
    flex-flow: row nowrap;
    justify-content: space-between;
  }

  .alr_multiBtnContainer.alr_reverse {
    flex-flow: row nowrap;
  }

  .alr_multiBtnContainer.center {
    justify-content: center;
  }

  .alr_multiBtnContainer.center > .alr_btn {
    margin: 5px;
  }
}

.alr_multiBtnContainer > .alr_btn {
  margin: 5px 0;
}

@media all and (min-width: 768px) {
  .alr_multiBtnContainer > .alr_btn {
    width: 32%;
  }

  .alr_multiBtnContainer > .alr_btn.alr_btnSmall {
    width: auto;
  }
}

.alr_legendForm {
  font-size: 11px;
  text-align: right;
  font-weight: 400;
}

.alr_footerMini {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.alr_footerMini > a {
  display: block;
  margin: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
}

.alr_footerMax {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.7);
}

.alr_footerMax .alr_footerMaxL {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.alr_footerMax a {
  display: block;
  margin: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
}

.alr_footerMax a i {
  font-size: 11px;
}

.alr_footerMax a:hover {
  text-decoration: underline;
}

.alr_footerMaxNavBar {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.alr_footerMaxNavBar a {
  display: block;
  margin: 10px 0;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.alr_footerMaxNavBar a i {
  font-size: 11px;
}

.alr_footerMaxNavBar a:hover {
  color: #ffffff;
}

.alr_footerMaxNavBar.alr_navAdm a {
  color: #767676;
}

.dataTables_length {
  height: 50px;
  border: 1px solid #767676;
  border-radius: 4px;
  width: 200px;
  margin: 0 0 20px;
  text-align: center;
}

.dataTables_length label {
  white-space: nowrap;
  width: 100%;
}

.dataTables_length select {
  border: none;
  background: transparent url(/images/carret.png?37e34f16da934cfe0a257232800bc9ef) no-repeat 99% center/10px auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-overflow: "";
  height: 100%;
  width: 40px;
  font-weight: 900;
}

.dataTables_filter {
  height: 50px;
  border-radius: 4px;
  width: auto;
  margin: 0 0 20px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 0 10px;
}

.dataTables_filter input {
  border: none;
  border-bottom: 1px solid #767676;
  background-color: transparent;
}

.dataTables_info {
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  padding-left: 2px;
  margin: 5px 0;
}

.dataTables_paginate.paging_simple_numbers {
  font-size: 13px;
  font-weight: 600;
  margin: 5px 0;
}

.dataTables_paginate.paging_simple_numbers .paginate_button.current {
  border: none;
  border-bottom: 1px solid #767676;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: none;
}

.ct-widget.ct-ignition {
  left: auto;
  right: 120px;
}

