/* Atrium legacy visual CSS bundle.
   Generated from the static snapshot to remove Drupal CSS @import fan-out.
   Keep font files and referenced media in place. */

/* /modules/system/system.base.css */
/**
 * @file
 * Generic theme-independent base styles.
 */

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list */
#autocomplete {
  border: 1px solid;
  overflow: hidden;
  position: absolute;
  z-index: 100;
}
#autocomplete ul {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
#autocomplete li {
  background: #fff;
  color: #000;
  cursor: default;
  white-space: pre;
  zoom: 1; /* IE7 */
}
/* Animated throbber */
html.js input.form-autocomplete {
  background-image: url("/misc/throbber-inactive.png");
  background-position: 100% center; /* LTR */
  background-repeat: no-repeat;
}
html.js input.throbbing {
  background-image: url("/misc/throbber-active.gif");
  background-position: 100% center; /* LTR */
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js fieldset.collapsed {
  border-bottom-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  height: 1em;
}
html.js fieldset.collapsed .fieldset-wrapper {
  display: none;
}
fieldset.collapsible {
  position: relative;
}
fieldset.collapsible .fieldset-legend {
  display: block;
}

/**
 * Resizable textareas.
 *
 * @see textarea.js
 */
.form-textarea-wrapper textarea {
  display: block;
  margin: 0;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.resizable-textarea .grippie {
  background: #eee url("/misc/grippie.png") no-repeat center 2px;
  border: 1px solid #ddd;
  border-top-width: 0;
  cursor: s-resize;
  height: 9px;
  overflow: hidden;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
body.drag {
  cursor: move;
}
.draggable a.tabledrag-handle {
  cursor: move;
  float: left; /* LTR */
  height: 1.7em;
  margin-left: -1em; /* LTR */
  overflow: hidden;
  text-decoration: none;
}
a.tabledrag-handle:hover {
  text-decoration: none;
}
a.tabledrag-handle .handle {
  background: url("/misc/draggable.png") no-repeat 6px 9px;
  height: 13px;
  margin: -0.4em 0.5em; /* LTR */
  padding: 0.42em 0.5em; /* LTR */
  width: 13px;
}
a.tabledrag-handle-hover .handle {
  background-position: 6px -11px;
}
div.indentation {
  float: left; /* LTR */
  height: 1.7em;
  margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */
  padding: 0.42em 0 0.42em 0.6em; /* LTR */
  width: 20px;
}
div.tree-child {
  background: url("/misc/tree.png") no-repeat 11px center; /* LTR */
}
div.tree-child-last {
  background: url("/misc/tree-bottom.png") no-repeat 11px center; /* LTR */
}
div.tree-child-horizontal {
  background: url("/misc/tree.png") no-repeat -11px center;
}
.tabledrag-toggle-weight-wrapper {
  text-align: right; /* LTR */
}

/**
 * TableHeader behavior.
 *
 * @see tableheader.js
 */
table.sticky-header {
  background-color: #fff;
  margin-top: 0;
}

/**
 * Progress behavior.
 *
 * @see progress.js
 */
/* Bar */
.progress .bar {
  background-color: #fff;
  border: 1px solid;
}
.progress .filled {
  background-color: #000;
  height: 1.5em;
  width: 5px;
}
.progress .percentage {
  float: right; /* LTR */
}
/* Throbber */
.ajax-progress {
  display: inline-block;
}
.ajax-progress .throbber {
  background: transparent url("/misc/throbber-active.gif") no-repeat 0px center;
  float: left; /* LTR */
  height: 15px;
  margin: 2px;
  width: 15px;
}
.ajax-progress .message {
  padding-left: 20px;
}
tr .ajax-progress .throbber {
  margin: 0 2px;
}
.ajax-progress-bar {
  width: 16em;
}

/**
 * Inline items.
 */
.container-inline div,
.container-inline label {
  display: inline;
}
/* Fieldset contents always need to be rendered as block. */
.container-inline .fieldset-wrapper {
  display: block;
}

/**
 * Prevent text wrapping.
 */
.nowrap {
  white-space: nowrap;
}

/**
 * For anything you want to hide on page load when JS is enabled, so
 * that you can use the JS to control visibility and avoid flicker.
 */
html.js .js-hide {
  display: none;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 * "!important" is used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
}

/**
 * The .element-focusable class extends the .element-invisible class to allow
 * the element to be focusable when navigated to via the keyboard.
 */
.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
  position: static !important;
  clip: auto;
  overflow: visible;
  height: auto;
}

/**
 * Markup free clearing.
 *
 * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* IE6 */
* html .clearfix {
  height: 1%;
}
/* IE7 */
*:first-child + html .clearfix {
  min-height: 1%;
}

/* /modules/system/system.menus.css */
/**
 * @file
 * Styles for menus and navigation markup.
 */

/**
 * Markup generated by theme_menu_tree().
 */
ul.menu {
  border: none;
  list-style: none;
  text-align: left; /* LTR */
}
ul.menu li {
  margin: 0 0 0 0.5em; /* LTR */
}
ul li.expanded {
  list-style-image: url("/misc/menu-expanded.png");
  list-style-type: circle;
}
ul li.collapsed {
  list-style-image: url("/misc/menu-collapsed.png"); /* LTR */
  list-style-type: disc;
}
ul li.leaf {
  list-style-image: url("/misc/menu-leaf.png");
  list-style-type: square;
}
li.expanded,
li.collapsed,
li.leaf {
  padding: 0.2em 0.5em 0 0; /* LTR */
  margin: 0;
}
li a.active {
  color: #000;
}
td.menu-disabled {
  background: #ccc;
}

/**
 * Markup generated by theme_links().
 */
ul.inline,
ul.links.inline {
  display: inline;
  padding-left: 0;
}
ul.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em;
}

/**
 * Markup generated by theme_breadcrumb().
 */
.breadcrumb {
  padding-bottom: 0.5em;
}

/**
 * Markup generated by theme_menu_local_tasks().
 */
ul.primary {
  border-bottom: 1px solid #bbb;
  border-collapse: collapse;
  height: auto;
  line-height: normal;
  list-style: none;
  margin: 5px;
  padding: 0 0 0 1em; /* LTR */
  white-space: nowrap;
}
ul.primary li {
  display: inline;
}
ul.primary li a {
  background-color: #ddd;
  border-color: #bbb;
  border-style: solid solid none solid;
  border-width: 1px;
  height: auto;
  margin-right: 0.5em; /* LTR */
  padding: 0 1em;
  text-decoration: none;
}
ul.primary li.active a {
  background-color: #fff;
  border: 1px solid #bbb;
  border-bottom: 1px solid #fff;
}
ul.primary li a:hover {
  background-color: #eee;
  border-color: #ccc;
  border-bottom-color: #eee;
}
ul.secondary {
  border-bottom: 1px solid #bbb;
  padding: 0.5em 1em;
  margin: 5px;
}
ul.secondary li {
  border-right: 1px solid #ccc; /* LTR */
  display: inline;
  padding: 0 1em;
}
ul.secondary a {
  padding: 0;
  text-decoration: none;
}
ul.secondary a.active {
  border-bottom: 4px solid #999;
}

/* /modules/system/system.messages.css */
/**
 * @file
 * Styles for system messages.
 */

div.messages {
  background-position: 8px 8px; /* LTR */
  background-repeat: no-repeat;
  border: 1px solid;
  margin: 6px 0;
  padding: 10px 10px 10px 50px; /* LTR */
}

div.status {
  background-image: url("/misc/message-24-ok.png");
  border-color: #be7;
}
div.status,
.ok {
  color: #234600;
}
div.status,
table tr.ok {
  background-color: #f8fff0;
}

div.warning {
  background-image: url("/misc/message-24-warning.png");
  border-color: #ed5;
}
div.warning,
.warning {
  color: #840;
}
div.warning,
table tr.warning {
  background-color: #fffce5;
}

div.error {
  background-image: url("/misc/message-24-error.png");
  border-color: #ed541d;
}
div.error,
.error {
  color: #8c2e0b;
}
div.error,
table tr.error {
  background-color: #fef5f1;
}
div.error p.error {
  color: #333;
}

div.messages ul {
  margin: 0 0 0 1em; /* LTR */
  padding: 0;
}
div.messages ul li {
  list-style-image: none;
}

/* /modules/system/system.theme.css */
/**
 * @file
 * Basic styling for common markup.
 */

/**
 * HTML elements.
 */
fieldset {
  margin-bottom: 1em;
  padding: 0.5em;
}
form {
  margin: 0;
  padding: 0;
}
hr {
  border: 1px solid gray;
  height: 1px;
}
img {
  border: 0;
}
table {
  border-collapse: collapse;
}
th {
  border-bottom: 3px solid #ccc;
  padding-right: 1em; /* LTR */
  text-align: left; /* LTR */
}
tbody {
  border-top: 1px solid #ccc;
}
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/**
 * Markup generated by theme_tablesort_indicator().
 */
th.active img {
  display: inline;
}
td.active {
  background-color: #ddd;
}

/**
 * Markup generated by theme_item_list().
 */
.item-list .title {
  font-weight: bold;
}
.item-list ul {
  margin: 0 0 0.75em 0;
  padding: 0;
}
.item-list ul li {
  margin: 0 0 0.25em 1.5em; /* LTR */
  padding: 0;
}

/**
 * Markup generated by Form API.
 */
.form-item,
.form-actions {
  margin-top: 1em;
  margin-bottom: 1em;
}
tr.odd .form-item,
tr.even .form-item {
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
}
.form-item .description {
  font-size: 0.85em;
}
label {
  display: block;
  font-weight: bold;
}
label.option {
  display: inline;
  font-weight: normal;
}
.form-checkboxes .form-item,
.form-radios .form-item {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}
input.form-checkbox,
input.form-radio {
  vertical-align: middle;
}
.marker,
.form-required {
  color: #f00;
}
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 2px solid red;
}

/**
 * Inline items.
 */
.container-inline .form-actions,
.container-inline.form-actions {
  margin-top: 0;
  margin-bottom: 0;
}

/**
 * Markup generated by theme_more_link().
 */
.more-link {
  text-align: right; /* LTR */
}

/**
 * Markup generated by theme_more_help_link().
 */
.more-help-link {
  text-align: right; /* LTR */
}
.more-help-link a {
  background: url("/misc/help.png") 0 50% no-repeat; /* LTR */
  padding: 1px 0 1px 20px; /* LTR */
}

/**
 * Markup generated by theme_pager().
 */
.item-list .pager {
  clear: both;
  text-align: center;
}
.item-list .pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: 0.5em;
}
.pager-current {
  font-weight: bold;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list */
#autocomplete li.selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js fieldset.collapsible .fieldset-legend {
  background: url("/misc/menu-expanded.png") 5px 65% no-repeat; /* LTR */
  padding-left: 15px; /* LTR */
}
html.js fieldset.collapsed .fieldset-legend {
  background-image: url("/misc/menu-collapsed.png"); /* LTR */
  background-position: 5px 50%; /* LTR */
}
.fieldset-legend span.summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
tr.drag {
  background-color: #fffff0;
}
tr.drag-previous {
  background-color: #ffd;
}
.tabledrag-toggle-weight {
  font-size: 0.9em;
}
body div.tabledrag-changed-warning {
  margin-bottom: 0.5em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
*/
tr.selected td {
  background: #ffc;
}
td.checkbox,
th.checkbox {
  text-align: center;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
.progress {
  font-weight: bold;
}
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.progress .filled {
  background: #0072b9 url("/misc/progress.gif");
}

/* /misc/ui/jquery.ui.core.css */
/*
 * jQuery UI CSS Framework 1.8.7
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ui-helper-clearfix { display: inline-block; }
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix { height:1%; }
.ui-helper-clearfix { display:block; }
/* end clearfix */
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }


/* Interaction Cues
----------------------------------*/
.ui-state-disabled { cursor: default !important; }


/* Icons
----------------------------------*/

/* states and images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* /misc/ui/jquery.ui.theme.css */
/*
 * jQuery UI CSS Framework 1.8.7
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/
 */


/* Component containers
----------------------------------*/
.ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; }
.ui-widget .ui-widget { font-size: 1em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; }
.ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url("/misc/ui/images/ui-bg_flat_75_ffffff_40x100.png")/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; }
.ui-widget-content a { color: #222222/*{fcContent}*/; }
.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url("/misc/ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png")/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; }
.ui-widget-header a { color: #222222/*{fcHeader}*/; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url("/misc/ui/images/ui-bg_glass_75_e6e6e6_1x400.png")/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada/*{bgColorHover}*/ url("/misc/ui/images/ui-bg_glass_75_dadada_1x400.png")/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; }
.ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url("/misc/ui/images/ui-bg_glass_65_ffffff_1x400.png")/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; }
.ui-widget :active { outline: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url("/misc/ui/images/ui-bg_glass_55_fbf9ee_1x400.png")/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; }
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; }
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url("/misc/ui/images/ui-bg_glass_95_fef1ec_1x400.png")/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; }
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; }
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }

/* Icons
----------------------------------*/

/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url("/misc/ui/images/ui-icons_222222_256x240.png")/*{iconsContent}*/; }
.ui-widget-content .ui-icon {background-image: url("/misc/ui/images/ui-icons_222222_256x240.png")/*{iconsContent}*/; }
.ui-widget-header .ui-icon {background-image: url("/misc/ui/images/ui-icons_222222_256x240.png")/*{iconsHeader}*/; }
.ui-state-default .ui-icon { background-image: url("/misc/ui/images/ui-icons_888888_256x240.png")/*{iconsDefault}*/; }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url("/misc/ui/images/ui-icons_454545_256x240.png")/*{iconsHover}*/; }
.ui-state-active .ui-icon {background-image: url("/misc/ui/images/ui-icons_454545_256x240.png")/*{iconsActive}*/; }
.ui-state-highlight .ui-icon {background-image: url("/misc/ui/images/ui-icons_2e83ff_256x240.png")/*{iconsHighlight}*/; }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url("/misc/ui/images/ui-icons_cd0a0a_256x240.png")/*{iconsError}*/; }

/* positioning */
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-off { background-position: -96px -144px; }
.ui-icon-radio-on { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; }
.ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; }
.ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; }
.ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
.ui-corner-top { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; }
.ui-corner-bottom { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
.ui-corner-right {  -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
.ui-corner-left { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; }
.ui-corner-all { -moz-border-radius: 4px/*{cornerRadius}*/; -webkit-border-radius: 4px/*{cornerRadius}*/; border-radius: 4px/*{cornerRadius}*/; }

/* Overlays */
.ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ url("/misc/ui/images/ui-bg_flat_0_aaaaaa_40x100.png")/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; }
.ui-widget-shadow { margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/; padding: 8px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ url("/misc/ui/images/ui-bg_flat_0_aaaaaa_40x100.png")/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; -moz-border-radius: 8px/*{cornerRadiusShadow}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; }

/* /misc/ui/jquery.ui.accordion.css */
/*
 * jQuery UI Accordion 1.8.7
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Accordion#theming
 */
/* IE/Win - Fix animation bug - #4615 */
.ui-accordion { width: 100%; }
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
.ui-accordion .ui-accordion-li-fix { display: inline; }
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
.ui-accordion .ui-accordion-content-active { display: block; }

/* /misc/ui/jquery.ui.button.css */
/*
 * jQuery UI Button 1.8.7
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Button#theming
 */
.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
.ui-button-icons-only { width: 3.4em; } 
button.ui-button-icons-only { width: 3.7em; } 

/*button text element */
.ui-button .ui-button-text { display: block; line-height: 1.4;  }
.ui-button-text-only .ui-button-text { padding: .4em 1em; }
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
/* no icon support for input elements, provide padding by default */
input.ui-button { padding: .4em 1em; }

/*button icon element(s) */
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }

/*button sets*/
.ui-buttonset { margin-right: 7px; }
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }

/* workarounds */
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */

/* /misc/ui/jquery.ui.resizable.css */
/*
 * jQuery UI Resizable 1.8.7
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Resizable#theming
 */
.ui-resizable { position: relative;}
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}

/* /misc/ui/jquery.ui.dialog.css */
/*
 * jQuery UI Dialog 1.8.7
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
.ui-dialog .ui-dialog-titlebar { padding: .5em 1em .3em; position: relative;  }
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .2em 0; } 
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }

/* /modules/field/theme/field.css */
/* Field display */
.field .field-label {
  font-weight: bold;
}
.field-label-inline .field-label,
.field-label-inline .field-items {
  float:left; /*LTR*/
}

/* Form display */
form .field-multiple-table {
  margin: 0;
}
form .field-multiple-table th.field-label {
  padding-left: 0; /*LTR*/
}
form .field-multiple-table td.field-multiple-drag {
  width: 30px;
  padding-right: 0; /*LTR*/
}
form .field-multiple-table td.field-multiple-drag a.tabledrag-handle {
  padding-right: .5em; /*LTR*/
}

form .field-add-more-submit {
  margin: .5em 0 0;
}

/* /modules/node/node.css */
.node-unpublished {
  background-color: #fff4f4;
}
.preview .node {
  background-color: #ffffea;
}
td.revision-current {
  background: #ffc;
}

/* /modules/search/search.css */
.search-form {
  margin-bottom: 1em;
}
.search-form input {
  margin-top: 0;
  margin-bottom: 0;
}
.search-results {
  list-style: none;
}
.search-results p {
  margin-top: 0;
}
.search-results .title {
  font-size: 1.2em;
}
.search-results li {
  margin-bottom: 1em;
}
.search-results .search-snippet-info {
  padding-left: 1em; /* LTR */
}
.search-results .search-info {
  font-size: 0.85em;
}
.search-advanced .criterion {
  float: left; /* LTR */
  margin-right: 2em; /* LTR */
}
.search-advanced .action {
  float: left; /* LTR */
  clear: left; /* LTR */
}

/* /modules/user/user.css */
#permissions td.module {
  font-weight: bold;
}
#permissions td.permission {
  padding-left: 1.5em; /* LTR */
}
#permissions tr.odd .form-item,
#permissions tr.even .form-item {
  white-space: normal;
}
#user-admin-settings fieldset .fieldset-description {
  font-size: 0.85em;
  padding-bottom: .5em;
}

/**
 * Override default textfield float to put the "Add role" button next to
 * the input textfield.
 */
#user-admin-roles td.edit-name {
  clear: both;
}
#user-admin-roles .form-item-name {
  float: left; /* LTR */
  margin-right: 1em; /* LTR */
}

/**
 * Password strength indicator.
 */
.password-strength {
  width: 17em;
  float: right;  /* LTR */
  margin-top: 1.4em;
}
.password-strength-title {
  display: inline;
}
.password-strength-text {
  float: right; /* LTR */
  font-weight: bold;
}
.password-indicator {
  background-color: #C4C4C4;
  height: 0.3em;
  width: 100%;
}
.password-indicator div {
  height: 100%;
  width: 0%;
  background-color: #47C965;
}
input.password-confirm,
input.password-field {
  width: 16em;
  margin-bottom: 0.4em;
}
div.password-confirm {
  float: right;  /* LTR */
  margin-top: 1.5em;
  visibility: hidden;
  width: 17em;
}
div.form-item div.password-suggestions {
  padding: 0.2em 0.5em;
  margin: 0.7em 0;
  width: 38.5em;
  border: 1px solid #B4B4B4;
}
div.password-suggestions ul {
  margin-bottom: 0;
}
.confirm-parent,
.password-parent {
  clear: left; /* LTR */
  margin: 0;
  width: 36.3em;
}

/* Generated by user.module but used by profile.module: */
.profile {
  clear: both;
  margin: 1em 0;
}
.profile .user-picture {
  float: right; /* LTR */
  margin: 0 1em 1em 0; /* LTR */
}
.profile h3 {
  border-bottom: 1px solid #ccc;
}
.profile dl {
  margin: 0 0 1.5em 0;
}
.profile dt {
  margin: 0 0 0.2em 0;
  font-weight: bold;
}
.profile dd {
  margin: 0 0 1em 0;
}

/* /sites/all/modules/views/css/views.css */
.views-exposed-form .views-exposed-widget {
  float: left; /* LTR */
  padding: .5em 1em 0 0; /* LTR */
}

.views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 1.6em;
}

.views-exposed-form .form-item,
.views-exposed-form .form-submit {
  margin-top: 0;
  margin-bottom: 0;
}

.views-exposed-form label {
  font-weight: bold;
}

.views-exposed-widgets {
  margin-bottom: .5em;
}

/* table style column align */
.views-align-left {
  text-align: left;
}
.views-align-right {
  text-align: right;
}
.views-align-center {
  text-align: center;
}

/* Remove the border on tbody that system puts in */
.views-view-grid tbody {
  border-top: none;
}

.view .progress-disabled {
  float: none;
}

/* /sites/all/modules/media/modules/media_wysiwyg/css/media_wysiwyg.base.css */
/**
 * @file
 * Styles to apply to all user-facing pages for alignment support.
 */
.media-wysiwyg-align-left,
.media-float-left {
  float: left;
  margin-right: 20px;
}
.media-wysiwyg-align-right,
.media-float-right {
  float: right;
  margin-left: 20px;
}
.media-wysiwyg-align-center {
  text-align: -moz-center;
  text-align: -webkit-center;
  text-align: center;
}

/* /sites/all/modules/colorbox/styles/default/colorbox_style.css */
/**
 * Colorbox Core Style:
 * The following CSS is consistent between example themes and should not be altered.
 */
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/**
 * These elements are buttons, and may need to have additional
 * styles reset to avoid unwanted base styles.
 */
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
  cursor: pointer;
}
/**
 * Avoid outlines on :active (mouseclick),
 * but preserve outlines on :focus (tabbed navigating)
 */
#cboxPrevious:active,
#cboxNext:active,
#cboxClose:active,
#cboxSlideshow:active {
  outline: 0;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
/* Reset box sizing to content-box if theme is using border-box. */
#colorbox,
#cboxContent,
#cboxLoadedContent {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Colorbox module default style:
 * The styles are ordered & tabbed in a way that represents
 * the nesting of the generated HTML.
 */
#cboxOverlay {
  background: #000;
}
#colorbox {
  outline: 0;
}
#cboxWrapper {
  background: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
#cboxTopLeft {
  width: 15px;
  height: 15px;
}
#cboxTopCenter {
  height: 15px;
}
#cboxTopRight {
  width: 15px;
  height: 15px;
}
#cboxBottomLeft {
  width: 15px;
  height: 10px;
}
#cboxBottomCenter {
  height: 10px;
}
#cboxBottomRight {
  width: 15px;
  height: 10px;
}
#cboxMiddleLeft {
  width: 15px;
}
#cboxMiddleRight {
  width: 15px;
}
#cboxContent {
  background: #fff;
  overflow: hidden;
}
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}
#cboxLoadedContent {
  margin-bottom: 28px;
}
#cboxTitle {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  bottom: 28px;
  left: 0;
  color: #535353;
  width: 100%;
  padding: 4px 6px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 60px;
  color: #949494;
}
.cboxSlideshow_on #cboxSlideshow {
  position: absolute;
  bottom: 0px;
  right: 30px;
  background: url("/sites/all/modules/colorbox/styles/default/images/controls.png") no-repeat -75px -50px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -101px -50px;
}
.cboxSlideshow_off #cboxSlideshow {
  position: absolute;
  bottom: 0px;
  right: 30px;
  background: url("/sites/all/modules/colorbox/styles/default/images/controls.png") no-repeat -25px -50px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -49px -50px;
}
#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("/sites/all/modules/colorbox/styles/default/images/controls.png") no-repeat -75px 0px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxPrevious:hover {
  background-position: -75px -25px;
}
#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  background: url("/sites/all/modules/colorbox/styles/default/images/controls.png") no-repeat -50px 0px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxNext:hover {
  background-position: -50px -25px;
}
#cboxLoadingOverlay {
  background: #fff;
}
#cboxLoadingGraphic {
  background: url("/sites/all/modules/colorbox/styles/default/images/loading_animation.gif") no-repeat center center;
}
#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("/sites/all/modules/colorbox/styles/default/images/controls.png") no-repeat -25px 0px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxClose:hover {
  background-position: -25px -25px;
}

/* /sites/all/modules/ctools/css/ctools.css */
.ctools-locked {
  color: red;
  border: 1px solid red;
  padding: 1em;
}

.ctools-owns-lock {
  background: #ffffdd none repeat scroll 0 0;
  border: 1px solid #f0c020;
  padding: 1em;
}

a.ctools-ajaxing,
input.ctools-ajaxing,
button.ctools-ajaxing,
select.ctools-ajaxing {
  padding-right: 18px !important;
  background: url("/sites/all/modules/ctools/images/status-active.gif") right center no-repeat;
}

div.ctools-ajaxing {
  float: left;
  width: 18px;
  background: url("/sites/all/modules/ctools/images/status-active.gif") center center no-repeat;
}

/* /sites/all/modules/panels/css/panels.css */
div.panel-pane div.admin-links {
  font-size: xx-small;
  margin-right: 1em;
}

div.panel-pane div.admin-links li a {
  color: #ccc;
}

div.panel-pane div.admin-links li {
  padding-bottom: 2px;
  background: white;
  z-index: 201;
}

div.panel-pane div.admin-links:hover a,
div.panel-pane div.admin-links-hover a {
  color: #000;
}

div.panel-pane div.admin-links a:before {
  content: "[";
}

div.panel-pane div.admin-links a:after {
  content: "]";
}

div.panel-pane div.panel-hide {
  display: none;
}

/** For IE we add the class via js; for other browsers we rely on :hover **/
div.panel-pane div.panel-hide-hover,
div.panel-pane:hover div.panel-hide {
  display: block;
  position: absolute;
  z-index: 200;
  margin-top: -1.5em;
}

div.panel-pane div.feed a {
  float: right;
}

/* /sites/all/modules/tagclouds/tagclouds.css */
/* tagclouds default example stylesheet **/

.wrapper.tagclouds {
  text-align: justify;
  margin-right: 1em;
}

.tagclouds.level1 {
  font-size: 1em;
}
.tagclouds.level2 {
  font-size: 1.2em;
}
.tagclouds.level3 {
  font-size: 1.4em;
}
.tagclouds.level4 {
  font-size: 1.6em;
}
.tagclouds.level5 {
  font-size: 1.8em;
}
.tagclouds.level6 {
  font-size: 2em;
}
.tagclouds.level7 {
  font-size: 2.2em;
}
.tagclouds.level8 {
  font-size: 2.4em;
}
.tagclouds.level9 {
  font-size: 2.6em;
}
.tagclouds.level10 {
  font-size: 2.8em;
}

/* /sites/all/modules/jquery_ui_filter/dialog/jquery_ui_filter_dialog.css */
/**
 * @file
 * jQuery UI filter styling
 */

#jquery-ui-filter-dialog {
  display:none;
  overflow: hidden;
  padding: 2px !important;
}

#jquery-ui-filter-dialog-container {
  border: 1px solid #ccc;
  width: 100%;
  height: 100%;
}

/*
 * Bartik.
 */
body.bartik.jquery-ui-filter-dialog #header div.section,
body.bartik.jquery-ui-filter-dialog #featured div.section,
body.bartik.jquery-ui-filter-dialog #messages div.section,
body.bartik.jquery-ui-filter-dialog #page-wrapper,
body.bartik.jquery-ui-filter-dialog #main,
body.bartik.jquery-ui-filter-dialog #triptych,
body.bartik.jquery-ui-filter-dialog #footer-columns,
body.bartik.jquery-ui-filter-dialog #footer /* clear widths */ {
  min-width: inherit;
  min-height: inherit;
  width: inherit;
}

body.bartik.jquery-ui-filter-dialog  #main /* Remove margins */ {
  margin-bottom: 0;
  margin-top: 0;
}

body.bartik.jquery-ui-filter-dialog-no-regions #footer-wrapper /* hide regions */ {
  display: none;
}

/* /sites/all/modules/flexslider/assets/css/flexslider_img.css */
/* Avoid scroll bar issues when the slider is next to the edge of the page */
.flexslider .flex-direction-nav a,
.flexslider .flex-direction-nav a {
  display: none;
}
.flexslider:hover .flex-direction-nav a,
.flexslider:hover .flex-direction-nav a {
  display: block;
}

/* /sites/all/libraries/flexslider/flexslider.css */
/*
 * jQuery FlexSlider v2.7.2
 * https://www.woocommerce.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: 'flexslider-icon';
  src: url("/sites/all/libraries/flexslider/fonts/flexslider-icon.eot");
  src: url("/sites/all/libraries/flexslider/fonts/flexslider-icon.eot#iefix") format('embedded-opentype'), url("/sites/all/libraries/flexslider/fonts/flexslider-icon.woff") format('woff'), url("/sites/all/libraries/flexslider/fonts/flexslider-icon.ttf") format('truetype'), url("/sites/all/libraries/flexslider/fonts/flexslider-icon.svg#flexslider-icon") format('svg');
  font-weight: normal;
  font-style: normal;
}
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
@-moz-document url-prefix() {
  .loading .flex-viewport {
    max-height: none;
  }
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}

/* /sites/all/modules/responsive_menus/styles/responsive_menus_simple/css/responsive_menus_simple.css */
/**
 * @file
 *   CSS & media queries for responsive_menus_simple style.
 */

/* Responsive mode, engage! */
.responsive-menus.responsified {
  clear: both;
  width: 100%;
}

.responsive-menus.responsified span.toggler {
  padding: 1px;
  display: block;
  background: #333;
  color: #fff;
  border-radius: 5px;
  box-shadow: 2px 2px 2px #000;
  font-size: 1.35em;
  text-align: center;
  cursor: pointer;
  outline: none;
}

.responsive-menus.responsified.responsive-toggled span.toggler {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid #bbb;
}

.responsive-menus.responsified .responsive-menus-simple {
  display: none;
  width: 100%;
  background: #333;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  box-shadow: 2px 2px 2px #000;
}

.responsive-menus.responsified.responsive-toggled .responsive-menus-simple,
.responsive-menus.responsified.responsive-toggled .responsive-menus-simple ul {
  display: block;
  padding: 0;
  margin: 0;
}

.responsive-menus.responsified.responsive-toggled.absolute {
  position: relative;
  z-index: 999;
}

.responsive-menus.responsified.responsive-toggled.absolute .responsive-menus-simple {
  position: absolute;
  z-index: 999;
  top: auto;
}

.responsive-menus.responsified .responsive-menus-simple li {
  width: 100%;
  display: block;
  padding: 0;
  margin: 0;
  clear: both;
  list-style: none;
}

.responsive-menus.responsified .responsive-menus-simple li a {
  color: #fff;
  display: block;
  padding: 1em 5%;
  margin: 0;
  text-align: left;
  color: #fff;
  border-bottom: 1px solid #bbb;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  text-decoration: none;
  text-transform: uppercase;
}

.responsive-menus.responsified .responsive-menus-simple>li.last a {
  border-bottom: none;
}

.responsive-menus.responsified .responsive-menus-simple li ul li a {
  padding: 1em 0 1em 10%;
}

.responsive-menus.responsified .responsive-menus-simple li ul li ul li a {
  padding: 1em 0 1em 15%;
}

.responsive-menus.responsified .responsive-menus-simple li ul {
  display: block !important;
  visibility: visible !important;
  margin: 0;
  padding: 0;
}

/* Inactive rule */
.responsive-menus span.toggler {
  display: none;
}

/* /modules/taxonomy/taxonomy.css */
tr.taxonomy-term-preview {
  background-color: #EEE;
}
tr.taxonomy-term-divider-top {
  border-bottom: none;
}
tr.taxonomy-term-divider-bottom {
  border-top: 1px dotted #CCC;
}
.taxonomy-term-description {
  margin: 5px 0 20px;
}

/* /sites/all/libraries/fontawesome/css/all.css */
/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adobe:before {
  content: "\f778"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-alt:before {
  content: "\f5d1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.fa-bahai:before {
  content: "\f666"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-balance-scale-left:before {
  content: "\f515"; }

.fa-balance-scale-right:before {
  content: "\f516"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-box-tissue:before {
  content: "\f95b"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caravan:before {
  content: "\f8ff"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-double:before {
  content: "\f560"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-cheese:before {
  content: "\f7ef"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-medical:before {
  content: "\f7f5"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-alt:before {
  content: "\f422"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dailymotion:before {
  content: "\f952"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-disease:before {
  content: "\f7fa"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-alt:before {
  content: "\f424"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-faucet:before {
  content: "\f905"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-firefox-browser:before {
  content: "\f907"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-medical:before {
  content: "\f95c"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-holding-water:before {
  content: "\f4c1"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-middle-finger:before {
  content: "\f806"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-sparkles:before {
  content: "\f95d"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-hands-wash:before {
  content: "\f95e"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-handshake-alt-slash:before {
  content: "\f95f"; }

.fa-handshake-slash:before {
  content: "\f960"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-cowboy:before {
  content: "\f8c0"; }

.fa-hat-cowboy-side:before {
  content: "\f8c1"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-head-side-cough:before {
  content: "\f961"; }

.fa-head-side-cough-slash:before {
  content: "\f962"; }

.fa-head-side-mask:before {
  content: "\f963"; }

.fa-head-side-virus:before {
  content: "\f964"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hospital-user:before {
  content: "\f80d"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-house-damage:before {
  content: "\f6f1"; }

.fa-house-user:before {
  content: "\f965"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-ideal:before {
  content: "\f913"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-instagram-square:before {
  content: "\f955"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laptop-house:before {
  content: "\f966"; }

.fa-laptop-medical:before {
  content: "\f812"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lungs:before {
  content: "\f604"; }

.fa-lungs-virus:before {
  content: "\f967"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-mdb:before {
  content: "\f8ca"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microblog:before {
  content: "\f91a"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mixer:before {
  content: "\f956"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mouse:before {
  content: "\f8cc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-orcid:before {
  content: "\f8d2"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-arrows:before {
  content: "\f968"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-alt:before {
  content: "\f879"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-square-alt:before {
  content: "\f87b"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-square:before {
  content: "\f91e"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-plane-slash:before {
  content: "\f969"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pump-medical:before {
  content: "\f96a"; }

.fa-pump-soap:before {
  content: "\f96b"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-record-vinyl:before {
  content: "\f8d9"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-remove-format:before {
  content: "\f87d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-shield-virus:before {
  content: "\f96c"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopify:before {
  content: "\f957"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-soap:before {
  content: "\f96e"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-spell-check:before {
  content: "\f891"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-stopwatch-20:before {
  content: "\f96f"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-store-alt-slash:before {
  content: "\f970"; }

.fa-store-slash:before {
  content: "\f971"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toilet-paper-slash:before {
  content: "\f972"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-trailer:before {
  content: "\f941"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbraco:before {
  content: "\f8e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-unity:before {
  content: "\f949"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-nurse:before {
  content: "\f82f"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-virus:before {
  content: "\f974"; }

.fa-virus-slash:before {
  content: "\f975"; }

.fa-viruses:before {
  content: "\f976"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-water:before {
  content: "\f773"; }

.fa-wave-square:before {
  content: "\f83e"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/sites/all/libraries/fontawesome/webfonts/fa-brands-400.eot");
  src: url("/sites/all/libraries/fontawesome/webfonts/fa-brands-400.eot#iefix") format("embedded-opentype"), url("/sites/all/libraries/fontawesome/webfonts/fa-brands-400.woff2") format("woff2"), url("/sites/all/libraries/fontawesome/webfonts/fa-brands-400.woff") format("woff"), url("/sites/all/libraries/fontawesome/webfonts/fa-brands-400.ttf") format("truetype"), url("/sites/all/libraries/fontawesome/webfonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/sites/all/libraries/fontawesome/webfonts/fa-regular-400.eot");
  src: url("/sites/all/libraries/fontawesome/webfonts/fa-regular-400.eot#iefix") format("embedded-opentype"), url("/sites/all/libraries/fontawesome/webfonts/fa-regular-400.woff2") format("woff2"), url("/sites/all/libraries/fontawesome/webfonts/fa-regular-400.woff") format("woff"), url("/sites/all/libraries/fontawesome/webfonts/fa-regular-400.ttf") format("truetype"), url("/sites/all/libraries/fontawesome/webfonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/sites/all/libraries/fontawesome/webfonts/fa-solid-900.eot");
  src: url("/sites/all/libraries/fontawesome/webfonts/fa-solid-900.eot#iefix") format("embedded-opentype"), url("/sites/all/libraries/fontawesome/webfonts/fa-solid-900.woff2") format("woff2"), url("/sites/all/libraries/fontawesome/webfonts/fa-solid-900.woff") format("woff"), url("/sites/all/libraries/fontawesome/webfonts/fa-solid-900.ttf") format("truetype"), url("/sites/all/libraries/fontawesome/webfonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }

/* /sites/all/themes/adaptivetheme/at_core/css/at.layout.css | screen */
@media screen {
/* Layout Helpers */

/* Center layout be default */
.container {
  margin: 0 auto;
}


/* Prevent the layout from collapsing if there is nothing in the content column */
.content-inner {
  min-height: 1px;
}


.lt-ie7 .content-inner {
  height: 1px;
}


/* Ensure the content column is the full width of its container */
#content-column,
.content-column {
  width: 100%;
}


/* Compass clearfix */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clearfix {
  zoom: 1;
}


/* AT Panels */
.one-column > .region,
div.at-panel .region-conditional-stack {
  float: none;
  display: block;
  clear: both;
  width: 100%;
}

.lt-ie8 .at-panel {
  overflow: hidden;
}
}

/* /sites/all/themes/at_atrium2021/css/global.base.css | screen */
@media screen {
/*
 * @file
 * global.base
 *
 * - normalize with small modifications for Drupal and AT: http://necolas.github.com/normalize.css/
 * - Gutter widths, see $gutter-width in _custom.scss
 * - Default container alignment.
 * - Flexible images and media declarations.
 * - Copies of the SCSS mixins for reference, which includes an improved
 *   element-invisible and focusable styles.
 */
/* =============================================================================
    HTML5 display definitions
   ========================================================================== */
/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
/* line 24, ../sass/global.base.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */
/* line 43, ../sass/global.base.scss */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/*
 * Prevents modern browsers from displaying 'audio' without controls
 * Remove excess height in iOS5 devices
 */
/* line 56, ../sass/global.base.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
/* line 66, ../sass/global.base.scss */
[hidden] {
  display: none;
}

/* =============================================================================
    Base
   ========================================================================== */
/*
 * If you are using the themes Responsive JS feature (media_queries.js) do not
 * set a font-family on the html element, use body.
 *
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
/* line 84, ../sass/global.base.scss */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  height: 100%;
  overflow-y: scroll;
}

/*
 * 1 . Addresses margins handled incorrectly in IE6/7
 */
/* line 96, ../sass/global.base.scss */
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility\9;
  /* Only IE, can mess with Android */
}

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */
/* line 109, ../sass/global.base.scss */
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/* =============================================================================
    Links
   ========================================================================== */
/*
 * Addresses outline displayed oddly in Chrome
 */
/* line 124, ../sass/global.base.scss */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */
/* line 133, ../sass/global.base.scss */
a:hover,
a:active {
  outline: 0;
}

/* =============================================================================
    Typography
   ========================================================================== */
/*
 * Headings
 *
 * Addresses font sizes and margins set differently in IE6/7
 * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
 */
/* line 150, ../sass/global.base.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 156, ../sass/global.base.scss */
h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

/* line 162, ../sass/global.base.scss */
h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

/* line 168, ../sass/global.base.scss */
h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

/* line 174, ../sass/global.base.scss */
h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

/* line 180, ../sass/global.base.scss */
h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */
/* line 189, ../sass/global.base.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
 */
/* line 197, ../sass/global.base.scss */
b,
strong {
  font-weight: bold;
}

/* line 203, ../sass/global.base.scss */
blockquote {
  margin: 1em 40px;
}

/*
 * Addresses styling not present in S5, Chrome
 */
/* line 211, ../sass/global.base.scss */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9
 */
/* line 219, ../sass/global.base.scss */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Addresses margins set differently in IE6/7
 */
/* line 228, ../sass/global.base.scss */
p,
pre {
  margin: 0 0 1.5em;
}

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
/* line 238, ../sass/global.base.scss */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */
/* line 251, ../sass/global.base.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */
/* line 263, ../sass/global.base.scss */
q {
  quotes: none;
}

/* line 268, ../sass/global.base.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/* line 275, ../sass/global.base.scss */
small {
  font-size: 75%;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
/* line 284, ../sass/global.base.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 293, ../sass/global.base.scss */
sup {
  top: -0.5em;
}

/* line 298, ../sass/global.base.scss */
sub {
  bottom: -0.25em;
}

/* =============================================================================
    Lists
   ========================================================================== */
/*
 * Addresses margins set differently in IE6/7
 */
/* line 310, ../sass/global.base.scss */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

/* line 318, ../sass/global.base.scss */
dd {
  margin: 0 0 0 40px;
}

/*
 * Addresses paddings set differently in IE6/7
 */
/* line 326, ../sass/global.base.scss */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}

/*
 * Corrects list images handled incorrectly in IE7
 */
/* line 336, ../sass/global.base.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* =============================================================================
    Embedded content
   ========================================================================== */
/*
 * 1. Remove border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
/* line 352, ../sass/global.base.scss */
img {
  /* border: 0; */
  /* Drupal core already does this, uncomment if you need it */
  -ms-interpolation-mode: bicubic;
}

/*
 * Corrects overflow displayed oddly in IE9
 */
/* line 361, ../sass/global.base.scss */
svg:not(:root) {
  overflow: hidden;
}

/* =============================================================================
    Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
/* line 373, ../sass/global.base.scss */
figure {
  margin: 0;
}

/* =============================================================================
    Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7
 */
/* line 385, ../sass/global.base.scss */
form {
  margin: 0;
}

/*
 * Define consistent margin, and padding
 */
/* line 393, ../sass/global.base.scss */
fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3
 * 3. Corrects alignment displayed oddly in IE6/7
 */
/* line 404, ../sass/global.base.scss */
legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
/* line 417, ../sass/global.base.scss */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */
/* line 431, ../sass/global.base.scss */
button,
input {
  line-height: normal;
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */
/* line 443, ../sass/global.base.scss */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}

/*
 * Re-set default cursor for disabled elements
 */
/* line 456, ../sass/global.base.scss */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
 *    Known issue: excess padding remains in IE6
 */
/* line 468, ../sass/global.base.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */
/* line 481, ../sass/global.base.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */
/* line 492, ../sass/global.base.scss */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
/* line 502, ../sass/global.base.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
/* line 513, ../sass/global.base.scss */
textarea {
  overflow: auto;
  vertical-align: top;
}

/* =============================================================================
    Tables
   ========================================================================== */
/*
 * 1. Remove most spacing between table cells
 */
/* line 526, ../sass/global.base.scss */
table {
  border: 1px solid;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: inherit;
  font: 100%;
}

/* =============================================================================
    Gutters
   ========================================================================== */
/*
 * If gutters are set in theme settings they will override these values,
 * see Extensions > Modify Output > Design
 * $gutter-width is set in _base.scss
 */
/* line 544, ../sass/global.base.scss */
#main-content,
.block-inner,
.pane-inner,
.menu-wrapper,
.branding-elements,
.breadcrumb-wrapper,
.attribution,
.at-panel .rounded-corner,
.block-panels-mini > .block-title,
.rendered-by-ds .panel-display .region-inner,
div.messages,
.at-gutter {
  margin-left: 10px;
  margin-right: 10px;
}

/*
 * Panel pages need negative margin equal to the gutter width applied to #content,
 * this is taken care of in theme settings as per above for normal gutters
 */
/* line 564, ../sass/global.base.scss */
#content .panel-display,
#content .panel-flexible {
  margin-left: -10px;
  margin-right: -10px;
}

/* =============================================================================
    Flexible Media and Cross browser improvements
   ========================================================================== */
/*
 * - This can cause issues in table cells where no width is set on the column,
 *   only in some versions of webkit and IE 7/8.
 * - declaring the width attribute on image elements and using max-width causes
 *   the "dissappering images" bug in IE8.
 * - Mapping services such as Google Maps may break also, see below for fixes.
 */
/* line 583, ../sass/global.base.scss */
img {
  height: auto;
  -ms-interpolation-mode: bicubic;
}

/* Ethan Marcotte - http://front.ie/l8rJaA */
/* line 590, ../sass/global.base.scss */
img,
embed,
object,
video {
  max-width: 100%;
}

/* Disable flexiblity for IE8 and below */
/* line 599, ../sass/global.base.scss */
.lt-ie9 img,
.lt-ie9 object,
.lt-ie9 embed,
.lt-ie9 video {
  max-width: none;
}

/* Override max-width 100% for map displays */
/* line 608, ../sass/global.base.scss */
#map img,
.gmap img,
.view-gmap img,
.openlayers-map img,
#getlocations_map_canvas img,
#locationmap_map img,
.geofieldMap img,
.views_horizontal_slider img,
.geolocation-map img,
.geolocation-views-map img {
  max-width: none !important;
}

/* =============================================================================
    Misc helpers, Accessibility classes etc
   ========================================================================== */
/* Prevent overflowing content */
/* line 627, ../sass/global.base.scss */
header[role=banner],
.content-inner,
.nav,
.region-sidebar-first,
.region-sidebar-second,
.region-secondary-content,
.region-tertiary-content,
.region-footer {
  overflow: visible;
  word-wrap: break-word;
}

/**
 * General classes for hiding content. These are all included as SASS mixins.
 * @SEE: sass/_custom.scss
 */
/**
 * Image replacement
 * Kellum Method: http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement
 * Additional helpers from http://html5boilerplate.com/docs/css/
 */
/* line 650, ../sass/global.base.scss */
.ir {
  /* Kellum Method */
  display: block !important;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  /* Remove the default border from elements like button */
  border: 0;
  /* Crush the text down to take up no space */
  font: 0/0 a;
  /* Remove any text shadows */
  text-shadow: none;
  /* Hide any residual text in Safari 4 and any mobile devices that may need it */
  color: transparent;
  /* Hide the default background color on elements like button */
  background-color: transparent;
}

/* More robust element-invisible and element-focuable classes */
/* line 670, ../sass/global.base.scss */
.element-invisible {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 682, ../sass/global.base.scss */
.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
  clip: auto;
  height: auto;
  overflow: visible;
  position: static;
  width: auto;
}

/* Shift content offscreen, can be usefull when you reall need to do this */
/* line 693, ../sass/global.base.scss */
.offscreen {
  position: absolute;
  top: -99999em;
  width: 1px;
  height: 1px;
  overflow: hidden;
  outline: 0;
}

/* Hide content from all users */
/* line 704, ../sass/global.base.scss */
.element-hidden {
  display: none;
}

/*# sourceMappingURL=global.base.css.map */
}

/* /sites/all/themes/at_atrium2021/css/global.styles.css | screen */
@media screen {
/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * To FORCE PRINT all selectors you can search and replace a single { (opening
 * curly brace) and insert an empty comment. This is very useful in conjuction
 * with FireSass: https://addons.mozilla.org/en-US/firefox/addon/firesass-for-firebug/
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */
/* =============================================================================
 *   Base
 * ========================================================================== */
/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */
/* line 41, ../sass/global.styles.scss */
html {
  background: rgb(0, 0, 0);
  color: #FFFFFF;
}
/* line 45, ../sass/global.styles.scss */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 87.5%;
}
.fuenteAtrium{
  font-family: 'Vast Shadow', cursive;
}
/* =============================================================================
 *   HTML Elements
 * ========================================================================== */
/* line 135, ../sass/global.styles.scss */
pre,
code,
tt,
samp,
kbd,
var {
  font-family: Consolas, Monaco, "Courier New", Courier, monospace, sans-serif;
}

/* =============================================================================
 *   Wrappers
 * ========================================================================== */
/*
 * Outer wrappers:
 * - #page-wrapper: body > #page-wrapper
 * - #page: body > #page-wrapper > #page
 * - .container: body > #page-wrapper > #page.container
 *
 * The .container class holds the page width value from theme settings. You can
 * style the .container class but do not add width such as border, padding,
 * margins etc.
 */
/*
 * Wraps all header elements - branding and .region-header
 */
/*
 * Wraps the sidebars the content column
 */
/*
 * Main content column wrapper
 */
/*
 * Wraps the main-content-header, the content region and feed-icons. Use this
 * wrapper to style the entire main content column
 */
 /*
 * Wraps the content region, avoid applying styles to this wrapper, its used
 * mainly for position and invisible gutters and can be problematic to style
 */
 /*
  * Footer wrapper
  */
 footer{
  background-color: #000000;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/footerBg_01.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/footerBg_01.png"));
  background-repeat: no-repeat;
  background-position: 50% 0;
  color: #FFFFFF;
  padding-top: 25px;
  position: relative;
  text-align: center;
 }
.boxwrappertop.stickynav-processed{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  border-radius: 0;
  font-size: 15px;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; 
  background: -moz-linear-gradient(top,  rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 1%, rgba(0,0,0,0.1) 85%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.2) 1%,rgba(0,0,0,0.1) 85%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.2) 1%,rgba(0,0,0,0.1) 85%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#00000000',GradientType=0 );
}
.boxwrappertop.stickynav-processed.stickynav-active{
  position: fixed;
  /* background-color: rgba(0,0,0,0.75);*/
  background: -moz-linear-gradient(top,  rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.75) 1%, rgba(0,0,0,0.75) 85%, rgba(0,0,0,0.5) 92%, rgba(0,0,0,0) 99%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.75) 1%,rgba(0,0,0,0.75) 85%,rgba(0,0,0,0.5) 92%,rgba(0,0,0,0) 99%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom,  rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.75) 1%,rgba(0,0,0,0.75) 85%,rgba(0,0,0,0.5) 92%,rgba(0,0,0,0) 99%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf000000', endColorstr='#00000000',GradientType=0 );
  /*box-shadow: 0 0 20px rgba(0,0,0,0.2);*/
}
.boxwrappertop.stickynav-processed.stickynav-active #logo a{
  line-height: 1;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.boxwrappertop.stickynav-processed #logo img{
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.not-front .mainheader{
  min-height: 100px;
}
#header .boxwrapper{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 10px;
  box-sizing: border-box;
}
#header .boxwrapper .box{
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}
.mainheader .boxmainpage{
  position: relative;
  display: block;
}
.mainheader .boxmainpage .boxwrappertop{
  position: absolute;
  width: 100%;
  z-index: 100;
}
/*
 * Wraps the nav elements
 */
/*
 * Wraps breadcrumb
 */
/*
 * Wraps messages and help
 */
/*
 * Wraps the secondary content/preface region
 */
/*
 * Wraps the main content column
 */
/*
 * Wraps the tertiary content/postfix region
 */
/*
 * Footer wrapper
 */
/* line 289, ../sass/global.styles.scss */
#footer-wrapper {
  /* Debug styles, is this working? */
  background: rgba(255, 192, 203, 0.5);
}
/* =============================================================================
 *   Branding
 * ========================================================================== */
/*
 * Wraps all the branding elements, logo, name and slogan
 */
/*
 * Logo
 */
/* line 310, ../sass/global.styles.scss */
#logo {
  padding: 10px 0;
}
/* line 313, ../sass/global.styles.scss */
#logo img {
  vertical-align: bottom;
}
/*
 * Wrapper for the site name and slogan
 */
/*
 * Site name (h1)
 */
/* line 328, ../sass/global.styles.scss */
#site-name {
  margin: 0;
}
/* line 333, ../sass/global.styles.scss */
#site-name a:link, #site-name a:visited {
  text-decoration: none;
}
/* line 338, ../sass/global.styles.scss */
#site-name a:hover, #site-name a:focus {
  text-decoration: underline;
}
/*
 * Site slogan (h2)
 */
/* line 349, ../sass/global.styles.scss */
#site-slogan {
  margin: 0;
}
/* =============================================================================
 *   Page content header
 * ========================================================================== */
/*
 * Main content header wraps the page title, tabs and actions links
 */
/*
 * The main page title (h1)
 */
/* line 367, ../sass/global.styles.scss */
#page-title{
  margin: 0;
  color: #c1001f;
  text-transform: uppercase;
  margin-bottom: 4%;
  position: relative;
}
#page-title::after{
  content: '';
  position: absolute;
  left: 0px;
  bottom: -10px;
  width: 100%;
  max-width: 320px;
  height: 4px;
  border-top: 3px solid #FFA901;
  border-bottom: 3px solid #FFA901;
}
.page-menu-burgers2 #main-content-header{
  padding-top: 2%;
}
/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */
#aggregator .feed-source .feed-icon {
  display: inline;
  float: none;
  margin-right: 10px;
}
/* line 392, ../sass/global.styles.scss */
.feed-details dt,
.feed-details dd {
  display: inline;
  margin: 0;
}
/*
 * Generic styles for the more link
 */
/*
 * Generic styles for links. See the ul.links declaration in node and comment stylesheets
 */
/* line 408, ../sass/global.styles.scss */
ul.links {
  margin: 0;
  padding: 0;
}
/* line 412, ../sass/global.styles.scss */
ul.links.inline {
  display: block;
}
/* line 416, ../sass/global.styles.scss */
ul.links li {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}
/*
 * Search results are an ordered list so reset the margin
 */
/* line 427, ../sass/global.styles.scss */
.search-results {
  margin: 0;
  padding: 0;
}
/*
 * Attribution message and link
 */
/* line 436, ../sass/global.styles.scss */
.attribution {
  display: block;
  opacity: 0.65;
  padding: 1em 0;
  text-align: center;
}
/* line 442, ../sass/global.styles.scss */
.attribution a {
  text-decoration: none;
  color: inherit;
}
/* line 446, ../sass/global.styles.scss */
.attribution a:hover, .attribution a:focus {
  text-decoration: underline;
}
.colorRojo{
  color: #C1001F;
}
/* =============================================================================
 *   Regions
 * ========================================================================== */
/*
 * Standard region wrapper, don't add width to any regions, you will bork the layout - no margin, padding or borders etc
 */
/*
 * Regions have an inner div - perfect for adding margin, padding or borders
 */
/*
 * Regions can be nested, such as when using Panels
 */
/*
 * Header region, embedded in the #header
 */
/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
/*
 * PRIMARY REGION
 */
.region-primary-content .block .block-inner,
.region-primary-content .block-panels-mini .block-content,
.region-cuaternary-content .block .block-inner,
.region-cuaternary-content .block-panels-mini .block-content{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
/*
 * Secondary content
 */
/*
 * Sits above the main content header, like a content-top region
 */
/*
 * Sits below the main content, like a content-bottom region
 */
/*
 * Sidebars - targets both
 */
/*
 * First sidebar
 */
/*
 * Second sidebar
 */
/*
 * Tertiary content
 */
/*
 * Footer region
 */
/* =============================================================================
 *   Links
 * ========================================================================== */
/* line 540, ../sass/global.styles.scss */
a {
  text-decoration: none;
}
/* line 549, ../sass/global.styles.scss */
a:hover, a:focus {
  text-decoration: underline;
}
/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */
/* line 560, ../sass/global.styles.scss */
.nav {
  clear: both;
  margin: 10px 0;
}
/* line 564, ../sass/global.styles.scss */
.nav ul,
.nav ul.menu {
  margin: 0;
  padding: 0;
}
/* line 570, ../sass/global.styles.scss */
.nav li,
.nav ul.menu li {
  display: inline;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 579, ../sass/global.styles.scss */
.nav li a,
.nav ul.menu li a {
  display: block;
  white-space: nowrap;
  padding: 0 10px;
}
/* line 591, ../sass/global.styles.scss */
.nav .block {
  margin-bottom: 0;
}
/* =============================================================================
 *   Superfish
 * ========================================================================== */
/* line 601, ../sass/global.styles.scss */
ul.sf-menu {
  margin-bottom: 0;
}
/* line 604, ../sass/global.styles.scss */
ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 10px;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
}
/* line 617, ../sass/global.styles.scss */
ul.sf-menu li:hover, ul.sf-menu li.sfHover {
  outline: 0;
}
/* line 624, ../sass/global.styles.scss */
ul.sf-menu a:focus, ul.sf-menu a:hover, ul.sf-menu a:active {
  outline: 0;
}
/*
 * Superfish blocks
 */
/* line 640, ../sass/global.styles.scss */
.block-superfish ul {
  margin: 0 !important;
  padding: 0 !important;
}
/* line 651, ../sass/global.styles.scss */
.block-superfish li {
  margin: 0 !important;
  padding: 0 !important;
}
/*
 * Vertical style
 */
/* line 661, ../sass/global.styles.scss */
.sf-vertical {
  width: 100%;
}
/* line 664, ../sass/global.styles.scss */
.sf-vertical li {
  width: 100%;
}
/* line 669, ../sass/global.styles.scss */
.sf-vertical li:hover ul, .sf-vertical li.sfHover ul {
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}
/* line 677, ../sass/global.styles.scss */
.sf-vertical li a {
  padding: 0 10px;
}
/*
 * Navbar style
 */
/* line 687, ../sass/global.styles.scss */
.sf-navbar {
  padding-bottom: 0 !important;
}
/*
 * Sensible padding for the default style
 */
/* line 695, ../sass/global.styles.scss */
.sf-menu.sf-style-default a {
  padding: 0 10px;
}
/* =============================================================================
 *   Menu Toggles
 * ========================================================================== */
/* line 705, ../sass/global.styles.scss */
.at-mt .at-menu-toggle,
.at-mt .at-menu-toggle ul,
.at-mt .at-menu-toggle ul.menu {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
/* line 713, ../sass/global.styles.scss */
.at-mt .at-menu-toggle-button {
  margin: 0;
}
/* line 717, ../sass/global.styles.scss */
.at-mt .at-menu-toggle ul a {
  padding: 0 10px;
  white-space: nowrap;
}
/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */
/* line 728, ../sass/global.styles.scss */
ul.menu {
  padding-left: 15px;
}
/* line 731, ../sass/global.styles.scss */
ul.menu ul {
  padding-left: 15px;
}
/* line 739, ../sass/global.styles.scss */
ul.menu li {
  margin: 0;
}
/* If li.content exists it's a problem, so reset the padding */
/* line 768, ../sass/global.styles.scss */
.block .menu li.content {
  padding: 0;
}
/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */
/* line 785, ../sass/global.styles.scss */
.book-navigation .page-up {
  /* Prevent text wrapping to a new line, assumes English "up" is used (two characters) */
  min-width: 2em;
  white-space: nowrap;
}
/* line 791, ../sass/global.styles.scss */
.book-navigation .menu {
  margin-left: 0;
}
/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */
/* line 801, ../sass/global.styles.scss */
#breadcrumb {
  margin: 10px 0;
  /* If the label is set to show in theme settings the label class is added */
}
/* line 805, ../sass/global.styles.scss */
#breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}
/* line 810, ../sass/global.styles.scss */
#breadcrumb .breadcrumb-label:after {
  content: ":";
}
/* line 815, ../sass/global.styles.scss */
#breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 820, ../sass/global.styles.scss */
#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}
/* line 824, ../sass/global.styles.scss */
#breadcrumb li {
  list-style: none;
  display: inline;
}
/* =============================================================================
 *   Pagers
 * ========================================================================== */
/* line 851, ../sass/global.styles.scss */
ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
}
/* line 858, ../sass/global.styles.scss */
.item-list ul.pager li {
  margin: 0;
}
/* line 863, ../sass/global.styles.scss */
ul.pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: .5em;
}
/* line 869, ../sass/global.styles.scss */
ul.pager li.pager-current {
  font-weight: 700;
}
/* line 875, ../sass/global.styles.scss */
.block ul.pager li {
  margin: 0;
}
/*
 * Theme the various states of pager links
 */
/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */
/* line 912, ../sass/global.styles.scss */
#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}
/* line 921, ../sass/global.styles.scss */
#skip-link a {
  background: #444;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}
/* line 931, ../sass/global.styles.scss */
#skip-link a:link, #skip-link a:visited {
  background: #444;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}
/* line 942, ../sass/global.styles.scss */
#skip-link a:hover, #skip-link a:focus, #skip-link a:active {
  outline: 0;
}
/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */
/* line 955, ../sass/global.styles.scss */
#tasks {
  margin-bottom: 15px;
}
/* line 960, ../sass/global.styles.scss */
ul.primary {
  border-bottom-color: #ccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}
/* line 965, ../sass/global.styles.scss */
ul.primary li {
  display: block;
  float: left;
  margin: 0 1px -1px;
}
/* line 970, ../sass/global.styles.scss */
ul.primary li a {
  background-color: #f5f5f5;
  border-color: #ccc;
  margin-right: 1px;
  padding: 0 10px;
  display: block;
  float: left;
  height: 1.5em;
  line-height: 1.5em;
}
/* line 980, ../sass/global.styles.scss */
ul.primary li a:hover, ul.primary li a:focus {
  background-color: #eee;
  border-color: #ccc;
}
/* line 989, ../sass/global.styles.scss */
ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: #fff;
  border-bottom-color: #fff;
}
/* line 999, ../sass/global.styles.scss */
ul.secondary {
  border-bottom: 1px solid #ccc;
  margin: 1em 0 0;
  padding: 0 .3em 1em;
}
/* line 1004, ../sass/global.styles.scss */
ul.secondary li {
  border-right: 0;
  list-style: none;
  padding: 0 10px 0 0;
}
/* line 1010, ../sass/global.styles.scss */
ul.secondary li a:hover, ul.secondary li a.active {
  border-bottom: none;
  text-decoration: underline;
}
/* =============================================================================
 *   Action links
 * ========================================================================== */
ul.action-links {
  margin: 20px 0 0;
  list-style: none;
}
/* =============================================================================
 *  Field Styling
 * ========================================================================== */
.field-label-inline .field-label {
  margin: 0;
}
.field-label {
  font-size: 1em;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}
.field-type-taxonomy-term-reference {
  margin-bottom: 1.5em;
}
.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}
.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
  margin: 5px 20px 15px 0;
}
/*
 * Centered setting
 */
/* line 1224, ../sass/global.styles.scss */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
  margin: 5px auto 15px;
}
/*
 * Float right setting
 */
/* line 1233, ../sass/global.styles.scss */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
  margin: 5px 0 15px 20px;
}
/* =============================================================================
 *   FLEXBOX - PADRES
 * ========================================================================== */
.flexCntrCntrCntr,
.vwsflxCntrCntrCntr .view-content{
 display: -webkit-box;
 display: -moz-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-direction: normal;
 -moz-box-direction: normal;
 -webkit-box-orient: horizontal;
 -moz-box-orient: horizontal;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
 flex-direction: row;
 -webkit-flex-wrap: wrap;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 -webkit-box-pack: center;
 -moz-box-pack: center;
 -webkit-justify-content: center;
 -ms-flex-pack: center;
 justify-content: center;
 -webkit-align-content: center;
 -ms-flex-line-pack: center;
 align-content: center;
 -webkit-box-align: center;
 -moz-box-align: center;
 -webkit-align-items: center;
 -ms-flex-align: center;
 align-items: center;
}
.flexBtwnCntrCntr,
.vwsflxBtwnCntrCntr .view-content{
 display: -webkit-box;
 display: -moz-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-direction: normal;
 -moz-box-direction: normal;
 -webkit-box-orient: horizontal;
 -moz-box-orient: horizontal;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
 flex-direction: row;
 -webkit-flex-wrap: wrap;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 -webkit-box-pack: justify;
 -moz-box-pack: justify;
 -webkit-justify-content: space-between;
 -ms-flex-pack: justify;
 justify-content: space-between;
 -webkit-align-content: center;
 -ms-flex-line-pack: center;
 align-content: center;
 -webkit-box-align: center;
 -moz-box-align: center;
 -webkit-align-items: center;
 -ms-flex-align: center;
 align-items: center;
}
.flexStrtCntrCntr,
.vwsflexStrtCntrCntr .view-content{
 display: -webkit-box;
 display: -moz-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-direction: normal;
 -moz-box-direction: normal;
 -webkit-box-orient: horizontal;
 -moz-box-orient: horizontal;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
 flex-direction: row;
 -webkit-flex-wrap: wrap;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 -webkit-box-pack: start;
 -moz-box-pack: start;
 -webkit-justify-content: flex-start;
 -ms-flex-pack: start;
 justify-content: flex-start;
 -webkit-align-content: center;
 -ms-flex-line-pack: center;
 align-content: center;
 -webkit-box-align: center;
 -moz-box-align: center;
 -webkit-align-items: center;
 -ms-flex-align: center;
 align-items: center;
}
.flexCntrStrtCntr{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flexEndStrtchCntr{
 display: -webkit-box;
 display: -moz-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-direction: normal;
 -moz-box-direction: normal;
 -webkit-box-orient: horizontal;
 -moz-box-orient: horizontal;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
 flex-direction: row;
 -webkit-flex-wrap: wrap;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 -webkit-box-pack: end;
 -moz-box-pack: end;
 -webkit-justify-content: flex-end;
 -ms-flex-pack: end;
 justify-content: flex-end;
 -webkit-align-content: center;
 -ms-flex-line-pack: center;
 align-content: center;
 -webkit-box-align: stretch;
 -moz-box-align: stretch;
 -webkit-align-items: stretch;
 -ms-flex-align: stretch;
 align-items: stretch;
}
.flexCntrStrtchCntr{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flexCntrFlxEndCntr{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flexBtwnCntrStrt,
.vwsBtwnCntrStrt .view-content{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flexCntrCntrStrt{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flexCntrCntrSpcarnd,
.vwsCntrCntrSpcarnd .view-content{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flexJstfSpcarrCntr,
.vwsJstfSpcarrCntr .view-content{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flexCntrStrchStrch,
.vwsCntrStrchStrch .view-content{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flexJstfStrchStrch,
.vwsJstfStrchStrch .view-content,
.blckAcompAdiciones .boxwrapper,
.blckAcompAdiciones .boxwrapper .box.box1 .contentwrap,
.blckPostresMaltedas .boxwrapper,
.blckPostresMaltedas .boxwrapper .box .contentwrap{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flexCntrStrchCntr,
.vwsCntrStrchCntr .view-content{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;}
.flexJstfSpcbtwnCntr,
.vwsJstfSpcbtwnCntr .view-content{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
/* =============================================================================
 *   FLEXBOX - HIJOS
 * ========================================================================== */
.flexCol,
.blckAcompAdiciones .boxwrapper .box,
.blckAcompAdiciones .boxwrapper .box.box1 .contentwrap .bx,
.blckPostresMaltedas .boxwrapper .box,
.blckPostresMaltedas .boxwrapper .box .contentwrap .bx{
 -webkit-box-ordinal-group: 1;
 -moz-box-ordinal-group: 1;
 -webkit-order: 0;
 -ms-flex-order: 0;
 order: 0;
 -webkit-box-flex: 0;
 -moz-box-flex: 0;
 -webkit-flex: 0 1 auto;
 -ms-flex: 0 1 auto;
 flex: 0 1 auto;
 -webkit-align-self: auto;
 -ms-flex-item-align: auto;
 align-self: auto;
 box-sizing: border-box;
}
.flexCol25{
 -webkit-box-flex: 0;
 -moz-box-flex: 0;
 -webkit-flex: 0 1 25%;
 -ms-flex: 0 1 25%;
 flex: 0 1 25%;
}
.flexCol33{
 -webkit-box-flex: 0;
 -moz-box-flex: 0;
 -webkit-flex: 0 1 33%;
 -ms-flex: 0 1 33%;
 flex: 0 1 33%;
}
.flexCol50{
 -webkit-box-flex: 0;
 -moz-box-flex: 0;
 -webkit-flex: 0 1 50%;
 -ms-flex: 0 1 50%;
 flex: 0 1 50%;
}
.flexCol40{
 -webkit-box-flex: 0;
 -moz-box-flex: 0;
 -webkit-flex: 0 1 40%;
 -ms-flex: 0 1 40%;
 flex: 0 1 40%;
}
.flexCol60{
 -webkit-box-flex: 0;
 -moz-box-flex: 0;
 -webkit-flex: 0 1 60%;
 -ms-flex: 0 1 60%;
 flex: 0 1 60%;
}
.flexCol100{
 -webkit-box-flex: 0;
 -moz-box-flex: 0;
 -webkit-flex: 0 1 100%;
 -ms-flex: 0 1 100%;
 flex: 0 1 100%;
}
/* =============================================================================
 *   Block Styling
 * ========================================================================== */
/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
/* line 1247, ../sass/global.styles.scss */
.block {
  margin-bottom: 20px;
}
.block .block-title,
.page-menu #page-title,
.page-node-157 #page-title{
  color: #C1001F;
  text-transform: uppercase;
  line-height: normal;
  position: relative;
  padding: 0 10px 10px 10px;
  margin-bottom: 2%;
}
.block .block-title::after,
.page-menu #page-title::after,
.page-node-157 #page-title::after{
  content: '';
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  max-width: 330px;
  height: 4px;
  border-top: 3px solid #FFA901;
  border-bottom: 3px solid #FFA901;
}

/*
 * TEXTURAS  CAJAS
 */
.blckShadowBottom  .imagewrap{
  position: relative;
  line-height: 0;
}
.blckShadowBottom  .imagewrap::after{
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/shadow-black.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/shadow-black.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/shadow-black.png"));
  background-repeat: repeat-x;
}
.blckShadowBottom  .imagewrap img{
  width: 100%;
}
/*
 * BLOQUE BANENR
 */
 .flexslider{
  border: 0;
  margin: 0;
}
.flexslider ul.slides{
  padding: 0;
}
.flex-control-nav{
  bottom: 30px;
  z-index: 10;
  padding: 0 !important;
}
.flex-control-nav li{
  margin: 0 3px !important;
}
.flex-control-paging li a{
  background-color: #FFFFFF;
  width: 12px;
  height: 12px;
}
.flex-control-paging li a.flex-active{
  background-color: #E3212C;
}
.flex-direction-nav a{
  height: 50px;
}
.blckBanner,
.blckBanner .block-inner,
.blckBanner .block-inner,
.blckBanner .region-inner,
.blckBanner .flexslider{
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
.blckBanner{
  margin-bottom: 20px !important;
}
.blckBanner .flexslider ul.slides{
  padding: 0;
}
.blckBanner .flexslider ul.slides li .node{
  margin-bottom: 0;
}
.blckBanner{
  position: relative;
}
.blckBanner::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 10;
  width: 100%;
  height: 15px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png"));
  background-repeat: repeat-x;
  background-position: 0 0;
}
.imgwrap{
  text-align: center;
  line-height: 0;
}
.fondoNegro{
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/domicilios_bg.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/domicilios_bg.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/domicilios_bg.png"));
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  color: #FFFFFF;
  padding: 4% 0;  
}
.fondoNegroTop{
  position: relative;
}
.fondoNegroTop::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png"));
  background-repeat: repeat-x;
  background-position: 0 0;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);  
}
.fondoNegroBottom{
  position: relative;
}
.fondoNegroBottom::after{
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png"));
  background-repeat: repeat-x;
  background-position: 0 0;  
}
.fondoRojo{
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/novedades_TeaerFront.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/novedades_TeaerFront.png"));
  background-repeat: repeat;
  background-position: 0 0;
  background-color: #c1001f;
  color: #FFFFFF;
  padding: 5% 0;
  position: relative;
}
.fondoRojoTop{
  position: relative;
}
.fondoRojoTop::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png"));
  background-repeat: repeat-x;
  background-position: 0 0;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);  
}
.fondoRojoBottom{
  position: relative; 
}
.fondoRojoBottom::after{
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png"));
  background-repeat: repeat-x;
  background-position: 0 0;  
}
/*
 * BLOQUE NUESTRA HISTORIA
 */
.blckNuestraHistoria .boxwrapper .box.box1{
  text-align: center;
}
.blckNuestraHistoria .boxwrapper .box.box2 .block-title{
  font-size: 250%;
}
.blckNuestraHistoria .boxwrapper .box.box2 p{
  color: #C4C4C4;
  font-size: 125%;
  text-align: justify;
}
/*
 * BLOQUE MINIPANEL RESERVAS - PREMIOS
 */
.mnpnlReservaPremios{
  margin: 5% 0 3% 0;
}
.mnpnlReservaPremios .block-content .region .region-inner{
  margin: 0 12px;
}
/*
 * MENU PRINCIPAL
 */
.blckNuestraFamilia .block-title{
  color: #FFFFFF;
  font-size: 250%;
  text-transform: uppercase;
}
.blckNuestraFamilia .box.box1{
  padding: 0 20px;
  box-sizing: border-box;  
}
.blckNuestraFamilia p{
  font-size: 150%;
  line-height: normal;
}
.blckNuestraFamilia .fondoNegroSolo{
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 40px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
/*
 * MENU PRINCIPAL
 */
.blckMainMenu{
  margin: 0 !important;
}
.blckMainMenu ul.menu{
  text-align: center;
  padding: 0;
  margin: 0;
}
.blckMainMenu ul.menu li{
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
}
.blckMainMenu ul.menu li a{
  line-height: normal;
  padding: 7px 10px;
  color: #FFFFFF;
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=1, Direction=135, Color=#000000)";/*IE 8*/
  text-shadow: 1px 1px 1px #000000;/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=1, Direction=135, Color=#000000); /*IE 5.5-7*/
  text-transform: uppercase;
}
.blckMainMenu ul.menu li:last-child a{
  text-decoration: none;
  background-color: #ffa800;
  padding: 7px 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.blckMainMenu ul.menu li:last-child a:hover{
  background-color: #e2001a;
  color: #FFFFFF;  
}
.blckMainMenu ul.menu li a.active,
.blckMainMenu ul.menu li a:hover{
  color: #e0b278;
}
/*
 * BLOQUE BIENVENIDA
 */
.blckBienvenida{
  margin-bottom: 0;
}
.blckBienvenida .block-title{
  font-size: 260%;
  display: inline-block;
}
.blckBienvenida .block-title::after{
  width: 120%;
}
.blckBienvenida .block-content{
  font-size: 150%;
}
.blckBienvenida .boxwrapper{
  padding: 6% 0 3% 0;
  margin-bottom: 3%;
  border-bottom: 1px solid #E6E6E6;
}
.blckBienvenida .boxwrapper .box.box1{
  padding: 0 3%;  
}
.blckBienvenida .boxwrapper .box.box1 .block-title{
  color: #CC3333;
  text-transform: uppercase;
  display: inline-block;
  overflow: hidden;
}
.blckBienvenida .block-content p{
  margin-bottom: 0;
}
/*
 * BLOQUE ESPECIALIDADES
 */
.blckEspecialidadesFront .block-title{
  color: #CC3333;
  font-size: 250%;
}
.blckEspecialidadesFront .imgwrap{
  margin-bottom: 20px;
}
.blckEspecialidadesFront .imgwrap a{
  line-height: 0;
  margin: 6px 6px 12px 6px;
  position: relative;
}
.blckEspecialidadesFront .imgwrap a .vermasmenu{
  text-transform: uppercase;
  color: #141414;
  background-color: #FFBA04;
  padding: 14px 15px;
  display: inline-block;
  position: absolute;
  right: 7px;
  bottom: 6px;
}
.blckEspecialidadesFront .imgwrap a:hover .vermasmenu{
  background-color: #CCCCCC;
}

.blckEspecialidadesFront .imgwrap a img{}
.blckEspecialidadesFront .imgwrap a:hover img{
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  filter: grayscale(1);  
}
.blckEspecialidadesFront .enlacewrap{
  text-align: right;
}
.menuamarillo{
  font-size: 140%;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #000000;
  background-image: url("/sites/all/themes/at_atrium2021/css/images/ico_botonmenu_blanco.png");
  background-repeat: no-repeat;
  background-position: 40px 50%;
  display: inline-block;
  padding: 12px 60px 12px 100px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.menuamarillo:hover{
  background-color: #C1001F;
  text-decoration: none;
}
/*
 * BLOQUE DOMICILIOS
 */
.blckDomicilios{
    color: #FFFFFF;
  padding: 4% 0;
  position: relative;
}
/*
.blckDomicilios::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png"));
  background-repeat: repeat-x;
  background-position: 0 0;
  -webkit-transform: rotate(180deg) ;
  -moz-transform: rotate(180deg) ;
  -o-transform: rotate(180deg) ;
  -ms-transform: rotate(180deg) ;
  transform: rotate(180deg);
}
.blckDomicilios::after{
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png"));
  background-repeat: repeat-x;
  background-position: 0 0;
}
*/

.blckDomicilios .boxwrapper .box.box2 .bx.bx1 img{
  width: 100% !important;
  max-width: 24% !important;  
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx1 h2{
  width: 100%;
  max-width: 75%;
  padding-left: 2%;  
  box-sizing: border-box;
  border-bottom: 4px solid #FFFFFF;
  padding-bottom: 8px;
  letter-spacing: 1px;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx1 h2 .bx{
  line-height: normal;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx1 h2 .bx.bx1{
  color: #FFA800;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx1 h2 .bx.bx3{
  display: block;
  color: #E3212C;
  text-transform: uppercase;
  font-size: 150%;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx1 img,
.blckDomicilios .boxwrapper .box.box2 .bx.bx1 h2{
  display: inline-block;
  vertical-align: middle;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx2{
  text-align: right;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul{
  text-align: right;
  list-style: none;
  margin: 0;
  padding: 0;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul li{
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/linearayas.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/linearayas.png"));
  background-repeat: repeat-x;
  background-position: 0 100%;
  padding: 5px 0;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul li:last-child{
  background-image: none;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul li address{
  font-style: inherit;
  color: #FFA800;
  font-weight: 700;
  font-size: 150%;
  margin-right: 10px;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul li .phone a{
  color: #FFFFFF;
  font-size: 205%;
  font-weight: 700;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul li address,
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul li .phone{
  display: inline-block;
  vertical-align: middle;
}
/*
 * BLOQUE LAS MAS MEMORABLES
 */
.blckLasMemorables{
  margin-top: 0; 
  margin-bottom: 0;
  padding: 5% 0;
}
.blckLasMemorables .block-title{
  font-size: 260%;
  font-weight: 700;
  text-transform: uppercase;
  color: #CC3333;
  margin-bottom: 3%;
}
.blckLasMemorables .boxwrapper .box{
  text-align: center;
}
.blckLasMemorables .boxwrapper .box .enlacewrap a{
  font-weight: 700;
  font-size: 150%;
  text-decoration: none;
  display: inline-block;
  background-color: #CC3333;
  color: #FFFFFF;
  padding: 5% 20%;
  -webkit-border-radius: 15px;/*Safari, Chrome*/
  -moz-border-radius: 15px;/*Firefox*/
  border-radius: 15px;
}

/*
 * BLOQUE NOVEDADES TEASER
 */
.blckNovedadesTeaser{
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/novedades_TeaerFront.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/novedades_TeaerFront.png"));
  background-repeat: repeat;
  background-position: 0 0;
  background-color: #c1001f;
  color: #FFFFFF;
  padding: 5% 0;
  position: relative;
}
.blckNovedadesTeaser::before{
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png"));
  background-repeat: repeat-x;
  background-position: 0 0;
  -webkit-transform: rotate(180deg) ;
  -moz-transform: rotate(180deg) ;
  -o-transform: rotate(180deg) ;
  -ms-transform: rotate(180deg) ;
  transform: rotate(180deg);
}
.blckNovedadesTeaser::after{
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/bannerBgBottom.png"));
  background-repeat: repeat-x;
  background-position: 0 0;
}

.blckNovedadesTeaser .block-title{
  text-transform: uppercase;
  font-size: 260%;
  color: #FFFFFF;
}
.blckNovedadesTeaser .block-title::after{
  content: none;
}

.blckNovedadesTeaser .view .view-content{
  margin-bottom: 2%;
}
.blckNovedadesTeaser .view .view-content .views-row{
  /*background-color: #FFFFFF;*/
  color: #000000;
  max-width: 320px;
  margin: 0 1%;
  padding: 20px;

  position: relative;
  z-index: 2;
}
.blckNovedadesTeaser .view .view-content .views-row::before{
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  -webkit-border-radius: 15px;/*Safari, Chrome*/
  -moz-border-radius: 15px;/*Firefox*/
  border-radius: 15px;
}
.blckNovedadesTeaser .view .view-content .views-row::after{
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -45px;
  left: 0%;
  width: 100%;
  max-width: 370px;
  height: 89px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/novedadesTeaser.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/novedadesTeaser.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/novedadesTeaser.png"));
  background-repeat: no-repeat;
  background-size: contain;
  
}

.blckNovedadesTeaser .views-row .node{
  margin-bottom: 0;
  position: relative;
  z-index: 5;
}

.blckNovedadesTeaser .views-row .node-resumen-front .field-image a{
  display: block;
  line-height: 0;
}
.blckNovedadesTeaser .views-row .node-resumen-front .field-image a img{
  border: 1px solid #CCCCCC;
}
.blckNovedadesTeaser .views-row .node-resumen-front .field-title h2{

}
.blckNovedadesTeaser .views-row .node-resumen-front .field-body p{
  margin-bottom: 10px;
}
.blckNovedadesTeaser .views-row .node-resumen-front .field-vermas a{
  color: #CC3333;
}

.blckNovedadesTeaser .view .more-link a{
  display: inline-block;
  margin-top: 10px;
  background-color: #FF9900;
  color: #CC3333;
  padding: 12px 25px;
  -webkit-border-radius: 10px;/*Safari, Chrome*/
  -moz-border-radius: 10px;/*Firefox*/
  border-radius: 10px;
}
.blckNovedadesTeaser .view .more-link a:hover{
  background-color: #FFFFFF;
}
.node-novedades.node-resumen-front .field-image img{
  border: 1px solid #cccccc;
  box-sizing: border-box;
  border-radius: 5px;  
}
.node-novedades.node-resumen-front .field-title h2{
  color: #CC3333;
  font-size: 105%;
  line-height: normal;
  margin: 6px auto;
}
.node-novedades.node-resumen-front .fiel-body *{
  margin-bottom: 10px;
  line-height: normal;  
}
/*
 * BLOQUE ALIADOS
 */
.blckAliados{
  margin: 0 auto 2% auto;
}
.blckAliados .imgwrap{
  text-align: center;
}
.blckAliados .imgwrap img{
  display: inline-block;
  vertical-align: middle;
  margin: 20px;
}

.not-front .blckAliados .block-content{
  padding-top: 20px;
  /*
  padding-bottom: 20px;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  */
}
/*
 * BLOQUE MINI BANNER PREMIOS
 */
.blckMiniBannerPremios{}
.blckMiniBannerPremios .block-title{
  font-size: 200%;
  text-align: center;
  margin-bottom: 1.2em;
  padding-bottom: 15px;
}
.blckMiniBannerPremios .block-title::after{
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.blckMiniBannerPremios .flexslider{
  background-color: transparent;
}
.blckMiniBannerPremios .flexslider ol.flex-control-nav{
  bottom: -20px;
}
.blckMiniBannerPremios .flex-direction-nav a{
  color: #FFFFFF;
}
.blckMiniBannerPremios .block-content a.vermas{
  display: inline-block;
  background-color: #c1001f;
  color: #FFFFFF;
  text-decoration: none;
  padding: 6px 20px;
  border-radius: 10px;
}
.blckMiniBannerPremios .block-content a.vermas:hover{
  background-color: #FFA901;
  color: #000000;
}

/*
 * BLOQUE MENU TEXTO TOP
 */
.responsive-menus.responsified{
  margin-bottom: 10px;
}

.blckTxtMenuTop{}
.blckTxtMenuTop .block-title{
  color: #c1001f;
  text-transform: uppercase;
  font-size: 312%;
  font-weight: 700;
  line-height: normal;
}
.blckTxtMenuTop .block-title{}
.blckTxtMenuTop .block-title::after{
  width: 180%;
  max-width: 300px;
}
.blckTxtMenuTop .block-content h2{
  font-weight: 700;
  font-size: 210%;
  letter-spacing: 2px;
  margin: 0 auto;
}
.blckTxtMenuTop .block-content p{
  font-size: 110%;
  margin-bottom: 0;
}
/*
 * BLOQUE MENU PRODUCTOS
 */
.blckMenuProductos .block-content ul.menu{
  text-align: center;
}
.blckMenuProductos .block-content ul.menu li{
  display: inline-block;
  vertical-align: middle;
}
.blckMenuProductos .block-content ul.menu li a{
  font-size: 110%;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  display: block;
  padding: 12px 15px;
  background-color: transparent; /*#C1001F*/
  border: 1px solid #C1001F;
}
.blckMenuProductos .block-content ul.menu li a.active,
.blckMenuProductos .block-content ul.menu li a:hover{
  background-color: #C1001F;
  color: #FFFFFF;
}
.blckMenuProductos .block-content ul.menu li.menu-item-3723 a,
.blckMenuProductos .block-content ul.menu li.menu-item-3302 a,
.blckMenuProductos .block-content ul.menu li.menu-item-3724 a{
  border-color: #159359;
}
.blckMenuProductos .block-content ul.menu li.menu-item-3723 a.active,
.blckMenuProductos .block-content ul.menu li.menu-item-3723 a:hover,
.blckMenuProductos .block-content ul.menu li.menu-item-3302 a.active,
.blckMenuProductos .block-content ul.menu li.menu-item-3302 a:hover,
.blckMenuProductos .block-content ul.menu li.menu-item-3724 a.active,
.blckMenuProductos .block-content ul.menu li.menu-item-3724 a:hover{
  background-color: #159359;
}
/*
 * BLOQUE TAMAÑOS DE PIZZAS
 */
.blckTamanioPizzas{
  margin-bottom: 0;
}
.blckTamanioPizzas .boxwrapper .contentwrap{
  text-align: center;
}
.blckTamanioPizzas .boxwrapper .contentwrap .bx{
  display: inline-block;
  vertical-align: top;
  width: 24%;  
}
/* CAMPOS */
.blckTamanioPizzas .boxwrapper .box h2{
  font-size: 130%;
  display: inline-block;
  background-color: #FFA800;
  color: #000000;
  padding: 8px 10px;
  line-height: normal;
  -webkit-border-radius: 10px;/*Safari, Chrome*/
  -moz-border-radius: 10px;/*Firefox*/
  border-radius: 10px;
}
.blckTamanioPizzas .boxwrapper .box h3{
  font-size: 120%;
  text-transform: uppercase;
  margin: 0;
}
.blckTamanioPizzas .boxwrapper .box p{
  font-size: 120%;
  margin-bottom: 0;
}
.blckTamanioPizzas .boxwrapper .box.box1 p{
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 49%;
}
.blckTamanioPizzas .boxwrapper .box.box1 p .colorRojo{
  margin-right: 20px;
  font-weight: 700;
}
.blckTamanioPizzas .boxwrapper .box.box2 .titlewrap{
  text-align: center;
}
.blckTamanioPizzas .boxwrapper .box.box2 p{
  font-weight: 700;
}

/*
 * BLOQUE PIZZAS
 */
.nodeteaser .view-content h3{
  display: block;
  width: 100%;
  text-transform: uppercase;
  font-size: 240%;
  font-weight: 900;
  margin-bottom: 2%;
  margin-top: 60px;
  border-bottom: 2px solid #C1001F;
}
/*
 * BLOQUE ANGUS BEEF
 */
.blckAngusBeef .block-content{
  text-align: center;
}
.blckAngusBeef .boxwrapper{
  background-color: #C1001F;
  color: #FFFFFF;
  padding: 15px 5%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.blckAngusBeef .boxwrapper .box{
  display: inline-block;
  vertical-align: middle;
}
.blckAngusBeef .boxwrapper .box p{
  margin-bottom: 0;
  font-size: 125%;
  text-align: left;
  line-height: normal;
}
/*
 * BLOQUE ACOMPAÑANTES Y ADICIONES
 */
.blckAcompAdiciones{
  padding: 5% 0;
  margin-bottom: 0;
}
.blckAcompAdiciones .tablaprecios{
  border: 0;
}
.blckAcompAdiciones .tablaprecios *{
  background-color: transparent;
}
.blckAcompAdiciones .tablaprecios tbody{
  border: 0;
}
.blckAcompAdiciones .tablaprecios tbody tr{
  border: 0;
}
.blckAcompAdiciones .tablaprecios tbody tr td{
  border: 0;
  font-size: 135%;
  font-weight: bold;
  padding: 3px;
}
.blckAcompAdiciones .boxwrapper .box.box1 .contentwrap h2.bx0{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  position: relative;
  text-indent: -9999px;
  margin: 0;
  height: 60px;
}
.blckAcompAdiciones .boxwrapper .box.box1 .contentwrap .bx1{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 35%;
  -ms-flex: 0 1 35%;
  flex: 0 1 35%;
  padding-right: 10px;
}
.blckAcompAdiciones .boxwrapper .box.box1 .contentwrap .bx1 img{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.blckAcompAdiciones .boxwrapper .box.box1 .contentwrap .bx2{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 65%;
  -ms-flex: 0 1 65%;
  flex: 0 1 65%;
}
/*
 * BLOQUE POSTRES - MALTEADAS
 */
.blckPostresMaltedas{
  padding: 5% 0 1.5% 0;
  margin-bottom: 0;  
}
.blckPostresMaltedas .block-inner{
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 2.5%;
}
.blckPostresMaltedas .boxwrapper .box.box1 h2{
  display: block;
}
.blckPostresMaltedas .boxwrapper .box.box2 h2{
  display: block;
}
.blckPostresMaltedas .boxwrapper .box .contentwrap .bx.bx0{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100;
  flex: 0 1 100%;
  margin: 0 auto;
}
.blckPostresMaltedas .boxwrapper .box.box1 .contentwrap .bx.bx1{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 45%;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
}
.blckPostresMaltedas .boxwrapper .box.box1 .contentwrap .bx.bx2{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 55%;
  -ms-flex: 0 1 55%;
  flex: 0 1 55%;
}
.blckPostresMaltedas .boxwrapper .box.box2 .contentwrap .bx.bx1{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 30%;
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
}
.blckPostresMaltedas .boxwrapper .box.box2 .contentwrap .bx.bx2{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 70%;
  -ms-flex: 0 1 70%;
  flex: 0 1 70%;
}
.blckPostresMaltedas .cajatabla .tablaprecios{
  border: 0;
  background-color: transparent;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.blckPostresMaltedas .cajatabla .tablaprecios tbody{
  border: 0;
}
.blckPostresMaltedas .cajatabla .tablaprecios tbody tr{
  border: 0;
  background-color: transparent;
}
.blckPostresMaltedas .cajatabla .tablaprecios tbody tr td{
  border: 0;
  font-size: 135%;
  font-weight: bold;
  text-transform: uppercase;
  padding: 3px;
  background-color: transparent;
}
/*
 * BLOQUE DE BUSQUEDA
 */
.blckBusqueda .block-inner{
  margin: 0;
}
.blckBusqueda .container-inline{
  text-align: center;
}
.blckBusqueda .container-inline div{
  display: inline-block;
  vertical-align: middle;  
}
.blckBusqueda .form-item{
  margin: 0 auto;
  width: 80%;
}
.blckBusqueda .form-item input{
  font-size: 130%;
  padding: 15px 20px;
  border: 1px solid #CCCCCC;
  width: 100%;
  background-color: #121618;
  color: #FFFFFF;
}
.blckBusqueda #edit-submit{
  background-image: url("/sites/all/themes/at_atrium2021/css/images/ico_lupa.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #CC3333;
  text-indent: -9999px;
  display: inline-block;
  padding: 20px 30px;
  border: 0;
}
/*
 * BLOQUE ARTICULOS RECIENTES
 */
.blckTagsCloud,
.blckArticulosRecientes{
  border: 1px solid #CCCCCC;
}
.blckTagsCloud .block-inner,
.blckArticulosRecientes .block-inner{
  margin: 30px 40px;
}
.blckTagsCloud .block-title,
.blckArticulosRecientes .block-title{
  color: #CC3333;
  font-size: 150%;
  margin-bottom: 20px;
  position: relative;
}
.blckTagsCloud .block-title::after
.blckArticulosRecientes .block-title::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #CC3333;
  width: 60%;
  height: 4px;
}
.blckTagsCloud .block-content span,
.blckArticulosRecientes .view .views-row{
  margin-bottom: 30px;
  margin-left: 15px;
  position: relative;
}
.blckTagsCloud .block-content span:last-child,
.blckArticulosRecientes .view .views-row:last-child{
  margin-bottom: 0;
}
.blckTagsCloud .block-content span a,
.blckArticulosRecientes .view .views-row .field-content a{
  color: #FFFFFF;
  font-size: 125%;
}
/* SOLO .blckTagsCloud */
.blckTagsCloud .block-content span{
  display: block;
  position: relative;
}
.blckTagsCloud .block-content span::before,
.blckArticulosRecientes .view .views-row::before{
  content: '';
  position: absolute;
  top: 9px;
  left: -15px;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
}
/*
 * BLOQUE VER MENU EN NOVEDADES
 */
.blckVerMenuNovedades .imgwrap{
  line-height: 0;
}
.blckVerMenuNovedades .imgwrap img{
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;  
}
.blckVerMenuNovedades .linkwrap{
  text-align: center;
  padding: 12px 10px;
}
.blckVerMenuNovedades .linkwrap a{
  color: #C1001F;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 125%;
  font-weight: 700;
  background-color: #FFA800;
  display: inline-block;
  padding: 12px 20px;
  -webkit-border-radius: 12px;/*Safari, Chrome*/
  -moz-border-radius: 12px;/*Firefox*/
  border-radius: 12px;
}
.blckVerMenuNovedades .linkwrap a:hover{
  background-color: #C1001F;
  color: #FFA800;
}
/*
 * BLOQUE NOVEDADES TITULO TOP
 */
.blckNovedadesTitleTop{
  margin-bottom: 0;
}
.blckNovedadesTitleTop .block-content h2{
  color: #CC3333;
  text-transform: uppercase;
  font-size: 300%;
  margin-bottom: 0;
}
/*
 * BLOQUE VOLVER A ARTICULOS EN NOVEDADES 
 */
.blckVolverArticulos .linkwrap{
  text-align: center;
}
.blckVolverArticulos .linkwrap a{
  color: #FFA901;
  font-size: 125%;
}
/*
 * BLOQUE BANNER RIGHT CONTACTO
 */
.blckContactoBannerRight .imgwrap.bx1{
  margin-bottom: 10%;
}
.blckContactoBannerRight .imgwrap.bx1 img{
  -webkit-border-radius: 15px;/*Safari, Chrome*/
  -moz-border-radius: 15px;/*Firefox*/
  border-radius: 15px;
}
/*
 * 
 */
.blckContactBannerTop{
  margin-bottom: 10%;
}
.blckContactBannerTop .imgwrap{
  line-height: 0;
}
.blckContactBannerTop .imgwrap img{
  -webkit-border-radius: 15px;/*Safari, Chrome*/
  -moz-border-radius: 15px;/*Firefox*/
  border-radius: 15px;
}
/*
 * BLOQUE MAQUETA FOOTER
 */
#mini-panel-footer .region-two-brick-middle .panel-separator{
  display: none;
}
#mini-panel-footer .region-two-brick-middle .region-inner .block{
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  padding: 2% 0;
}
/*
 * BLOCK REDES SOCIALES FOOTER
 */
.blckRedesSociales .linkwrap a{
  color: #FFFFFF;
}
.blckRedesSociales .linkwrap a:hover{
color: #B6292B;
}
.blckRedesSociales .linkwrap a i{
  font-size: 220%;
}
/*
 * BLOCK DIRECCION SEDES FOOTER
 */
.blckAddressFooter .boxwrapper .box{
  padding: 0 2%;
}
.blckAddressFooter .boxwrapper .box .icowrap i{
  color: #C1001F;
  font-size: 160%;
}
.blckAddressFooter .boxwrapper .box h2{
  font-size: 160%;
  margin: 7px auto 15px auto;
}
.blckAddressFooter .boxwrapper .box p{
  font-size: 160%;
  margin: 0 auto;
}
.blckAddressFooter .boxwrapper .box a{
  color: #B6292B;
}
/*
 * BLOQUE - FOOTER TEXTO UBICACION
 */
.blckFooterTxtUbicacion{
  margin-bottom: 0;
}
.blckFooterTxtUbicacion .block-content{
  border-bottom: 1px dotted #FFFFFF;
  /*background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/linearayas.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/linearayas.png"));*/
}
.blckFooterTxtUbicacion .block-content p{
  background-color: #FFA800;
  color: #C1001F;
  font-size: 120%;
  font-weight: 700;
  display: inline-block;
  padding: 12px 25px;
  box-sizing: border-box;
  margin-bottom: 0;
  -webkit-border-radius: 6px 6px 0 0;/*Safari, Chrome*/
  -moz-border-radius: 6px 6px 0 0;/*Firefox*/
  border-radius: 6px 6px 0 0;
}
/*
 * BLOQUE FOOTER MENU PRINCIPAL
 */
.blckMainMenuFooter ul.menu li{
  display: inline-block;
  vertical-align: middle;
}
.blckMainMenuFooter ul.menu li a{
  text-transform: uppercase;
  font-size: 120%;
  color: #FFFFFF;
  padding: 0 15px;
}
.blckMainMenuFooter ul.menu li a:hover,
.blckMainMenuFooter ul.menu li a.active{
  color: #C1001F;
}
/*
 * BLOQUE COPYRIGHT
 */
.blckCopyright{
  border-top: 1px solid #1C1C1C;
  margin-bottom: 0;
  padding-top: 15px;
}
.blckCopyright .txtwrap{
  color: #616161;
}
.blckCopyright .txtwrap a{
  color: #FFFFFF;
}
.blckCopyright .colorRojo{
  display: inline-block;
}
.blckCopyright .fuenteAtrium{
  color: #FFFFFF;
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 5px;
}
/*
 * BLQOUE ACOMPAÑANTES BURGER
 */
 
.blckAcompBurger{}
.blckAcompBurger .boxwrapper .flexCol{
  padding: 2%;
}
.blckAcompBurger .boxwrapper .box.box1{
  text-align: center;
}
.blckAcompBurger .boxwrapper .box.box1 h2{
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/acompanianteTitle-burguer.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/acompanianteTitle-burguer.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/acompanianteTitle-burguer.png"));
  background-repeat: no-repeat;
  background-position: 0 0;
  display: block;
  width: 370px;
  height: 100px;
  margin: 0 auto;
  text-indent: -9999px;
}
.blckAcompBurger .boxwrapper .box.box1 h3{
  margin: 0 auto;
  text-transform: uppercase;
  line-height: normal;
  font-size: 165%;
}
.blckAcompBurger .boxwrapper .box.box1 h3 .bx1{
  color: #e2001a;
}
.blckAcompBurger .boxwrapper .box.box1 h3 .bx2{
  font-weight: 100;
}
.blckAcompBurger .boxwrapper .box.box2 table{
border: 3px solid #e2001a;
width: 100%;
margin: 0 auto;
box-sizing: border-box;
}
.blckAcompBurger .boxwrapper .box.box2 table{
  position: relative;
  margin-bottom: 40px;
}
.blckAcompBurger .boxwrapper .box.box2 table *{
  background-color: transparent;
}

.blckAcompBurger .boxwrapper .box.box2 table thead tr th{
  background-color: #e2001a;
  color: #FFFFFF;
  border: 0;
  font-size: 150%;
}
.blckAcompBurger .boxwrapper .box.box2 table tbody{
  border: 0;
}
.blckAcompBurger .boxwrapper .box.box2 table tbody tr{
  border: 0;
}
.blckAcompBurger .boxwrapper .box.box2 table tbody tr:first-child td,
.blckAcompBurger .boxwrapper .box.box2 table tbody tr:last-child td{
  padding: 0 7px;
  line-height: 20px;  
}
.blckAcompBurger .boxwrapper .box.box2 table tbody tr td{
  font-size: 150%;
  padding: 2px 5px 2px 40px;  
}
 /*
 * Zebra striping for each block in the region
 */
/*
 * Block title
 */
/* line 1285, ../sass/global.styles.scss */
.block-title {
  margin: 0;
}
/*
 * Block content wrapper
 */
/*
 * Match item list and block menu margin and padding
 */
/* line 1301, ../sass/global.styles.scss */
.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}
/* line 1306, ../sass/global.styles.scss */
.block-content li {
  margin: 0;
  padding: 0;
}
/*
 * BLOQUE ZONAS DE COBERTURA
 */
 .page-node-146 #block-system-main{
  border-bottom: 0px;
  padding-bottom: 0%;
  margin-bottom: 0%;   
 }
 .page-node-146 .maincontentwrap{
   background-image: none;
 }

 .page-node-146 #page-title{
   text-align: center;
 }

.blckZonaCobertura{
  text-align: center;
}

/*
 * 
 */
.blckPesosCop{
  font-size: 130%;
  background-color: #FFA800;
  color: #000000;
  padding: 8px 10px;
  line-height: normal; 
  margin: 3% auto;
}
.blckPesosCop div{
  display: inline-block;
  vertical-align: middle;
}
.blckPesosCop .star {
  position: relative;
  
  display: inline-block;
  width: 0;
  height: 0;
  
  margin-left: .9em;
  margin-right: .9em;
  margin-bottom: 1.2em;
  
  border-right:  .3em solid transparent;
  border-bottom: .7em  solid #C1001F;
  border-left:   .3em solid transparent;

  /* Controlls the size of the stars. */
  font-size: 18px;
}
.blckPesosCop .star:before,
.blckPesosCop .star:after {
    content: '';
    
    display: block;
    width: 0;
    height: 0;
    
    position: absolute;
    top: .6em;
    left: -1em;
  
    border-right:  1em solid transparent;
    border-bottom: .7em  solid #C1001F;
    border-left:   1em solid transparent;
  
    transform: rotate(-35deg);
  }
  
.blckPesosCop .star:after {  
    transform: rotate(35deg);
  }

/*
 * BLOQUE MENU KIDS
 */
.blckMenuKids {}
.blckMenuKids{}

.blckMenuKids .boxwrapper .box{}
.blckMenuKids .boxwrapper .box.box1{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;  
}
.blckMenuKids .boxwrapper .box.box2{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 50%;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.blckMenuKids .boxwrapper table.tablaprecios{
  font-size: 160%;
  margin: auto 10%;
  width: 80%;
  border: 0;
}

.blckMenuKids .boxwrapper table.tablaprecios,
.blckMenuKids .boxwrapper table.tablaprecios tbody,
.blckMenuKids .boxwrapper table.tablaprecios tr,
.blckMenuKids .boxwrapper table.tablaprecios td{
  border: 0;
  background-color: transparent;
}

.blckMenuKids .boxwrapper table.tablaprecios{}
.blckMenuKids .boxwrapper table.tablaprecios .tbody{}
.blckMenuKids .boxwrapper table.tablaprecios tr{}
.blckMenuKids .boxwrapper table.tablaprecios td{
  line-height: normal;
  padding: 10px 0 10px 0;
  text-transform: uppercase;
  font-weight: bold;
}
.blckMenuKids .boxwrapper table.tablaprecios tbody tr td:first-child{
  border-bottom: 2px dashed #FFFFFF;
}
.blckMenuKids .boxwrapper table.tablaprecios tbody tr td:last-child{
  text-align: center;
  padding: 10px;
}
.blckMenuKids .boxwrapper table.tablaprecios td .bx{
  font-weight: 300;
  font-size: 80%;
}

.blckDescripcionMenu{
  font-size: 110%;
}
.blckDescripcionMenu a{
  color: #FFFFFF;
}
.blckDescripcionMenu p{
  margin-bottom: 1em;
}
.blckDescripcionMenu.armaTuMenu p{
  margin: 6px auto;
}

/* =============================================================================
 *   Views Styling
 * ========================================================================== */
/*
 * MENU QR
 */
 .page-menuqr .mainheader,
 .page-menuqr #header{
   display: none;
 }
 .page-menuqr #page-title{
  margin: 4% auto;
  text-align: center;
  position: relative;
  display: inline-block;
 }
 .page-menuqr #main-content-header{
   text-align: center;
 }
 .page-menuqr #main-content-header #page-title::after{

 }
 .page-menuqr .flexslider{
   background-color: transparent;
 }
 .page-menuqr .view.menuqratrium{
  max-width: 580px;
  margin: 0 auto;   
 }
 .page-menuqr .view.menuqratrium .view-content{}
 .page-menuqr .view.menuqratrium .view-content .flex-control-thumbs{}
 .page-menuqr .view.menuqratrium .view-content .flex-control-thumbs li{
  width: 10%;
  margin: 1% !important;
  float: inherit;
 }
 .page-menuqr .view.menuqratrium .view-content .flex-control-thumbs li img{}
 .page-menuqr .view.menuqratrium .view-content .flex-direction-nav a:before{
   color: #FFFFFF;
 }
 .page-menuqr .view.menuqratrium .view-content .flex-direction-nav a::after{
  color: #FFFFFF;
 }
/* =============================================================================
 *   Node Styling
 * ========================================================================== */
/* line 1479, ../sass/global.styles.scss */
.node {
  margin-bottom: 20px;
}
/* line 1496, ../sass/global.styles.scss */
.node .node-title {
  margin: 0;
}
/*
 * All nodes are given a node-FOO class that describes the type of content that
 * it is. If you create a new content type called "my-custom-type", it will
 * receive a "node-my-custom-type" class.
 */
/*
 * SOBRE ATRIUM
 */
.page-node-5 .field-body .boxwrapper{
  margin-bottom: 5%;
}
.page-node-5 .field-body .boxwrapper .box.box2 p{
  margin-bottom: 0;
  font-size: 130%;
  text-align: justify;
  line-height: normal;
}
.page-node-5 .field-body .imgwrap img{
  -webkit-border-radius: 15px;/*Safari, Chrome*/
  -moz-border-radius: 15px;/*Firefox*/
  border-radius: 15px;  
  margin: 0 1%;
  box-sizing: border-box;
  max-width: 30% !important;
}
/*
 *
 */
 /*
.nodeproductos.nodeteaser .view-content h3{
  position: relative;
}
.nodeproductos.nodeteaser .view-content h3::before{
  content: '';
}

.nodeteaser .view-content h3::before{
  
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/menusombrabottom.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/menusombrabottom.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/menusombrabottom.png"));
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 100%;
  height: 66px;
}
.nodeteaser .view-content h3:first-child{
  margin-top: 0;
  padding-top: 0;
}
.nodeteaser .view-content h3:first-child::before{
  content: none;
}

*/

.nodeteaser .view-content .flexCol{
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin: 0 2% 30px 2%;
}
.node-producto .boxwrapper{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;  
}
.node-producto .boxwrapper .box{
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  box-sizing: border-box;
}
.node-producto .boxwrapper .box.box1{
      -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -ms-flex: 0 1 30%;
    flex: 0 1 30%;
}
.node-producto .boxwrapper .box.box1 .field-image img{
  width: 100%;
  box-sizing: border-box;
}
.page-node .blckPizzas .node-producto .boxwrapper .box.box1 .field-image img{
  /*
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  */
}
.node-producto .boxwrapper .box.box2{
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 58%;
    -ms-flex: 0 1 58%;
    flex: 0 1 58%;
    padding: 0 10px;
}
.node-producto .boxwrapper.precioPizza .box.box2{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 70%;
  -ms-flex: 0 1 70%;
  flex: 0 1 70%;
  padding: 0 10px;
}
.node-producto .boxwrapper .box.box2 .field-title h2{
  font-size: 140%;
  color: #FFFFFF;
  margin: 5px auto 0px auto;
  text-transform: uppercase;
  line-height: normal;
}
.node-producto .boxwrapper .box.box2 .field-body{
  font-size: 115%;
  line-height: normal;
  margin-bottom: 8px;
  color: #CCCCCC;
}
.node-producto .boxwrapper .box.box2 .field-body p{
  margin-bottom: 0;
}
.node-producto .boxwrapper .box.box3{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 12%;
  -ms-flex: 0 1 12%;
  flex: 0 1 12%;
  text-align: center;
}
.node-producto .boxwrapper .box.box4{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  text-align: center;
  padding-top: 5px;
}
.node-producto .boxwrapper .box .field-precio{
  color: #FFFFFF;
  font-size: 150%;
  font-weight: 700;
}

.node-producto .boxwrapper .box .field-precio .label-inline{
  color: #FFA800;
}

.node-producto .boxwrapper .field-precioconacomp,
.node-producto .boxwrapper .field-conpapas{
  font-size: 125%;
  font-weight: bold;
  background-color: #e2001a;
  color: #FFA800;
  text-transform: uppercase;
  padding: 0px 8px;
  margin-bottom: 3px;
}
.node-producto .boxwrapper .field-precioconacomp .label-inline,
.node-producto .boxwrapper .field-conpapas .label-inline{
  display: inline;
  color: #FFFFFF;
  margin-right: 4px;
}

.page-menu-burgers2 .node-producto .boxwrapper .box.box1{
  -webkit-box-flex: 0;
-moz-box-flex: 0;
-webkit-flex: 0 1 35%;
-ms-flex: 0 1 35%;
flex: 0 1 35%;
}
.page-menu-burgers2 .node-producto .boxwrapper .box.box2{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 55%;
  -ms-flex: 0 1 55%;
  flex: 0 1 55%;
  padding: 0 10px;
}
.page-menu-burgers2 .node-producto .boxwrapper .box.box1 .field-image a{
  display: inline-block;
}
.page-menu-burgers2 .node-producto .boxwrapper .box.box1 .field-image img{
border-radius: 50%;
border: 1px solid #eee;
padding: 5px;
}
/* PRODUCTOS: PIZZAS */
.node-producto .boxwrapper .preciopizzas .field-precio{
  font-size: 110%;
  padding-right: 15px;
  position: relative;
}
.node-producto .boxwrapper .preciopizzas .field-precio:last-child{
  padding-right: 0;
}
.node-producto .boxwrapper .preciopizzas .field-precio::after{
  content: '';
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFA800;
  width: 3px;
  height: 80%;
}
.node-producto .boxwrapper .preciopizzas .field-precio:last-child::after{
  content: none;
}
.node-producto .boxwrapper .preciopizzas .label-inline{
  color: #000000;
}
.node-producto .boxwrapper .preciopizzas .field-precio,
.node-producto .boxwrapper .preciopizzas .label-inline,
.node-producto .boxwrapper .preciopizzas .valor{
  display: inline-block;
  vertical-align: middle;  
}
/* PRODUCTO: ARMA TU MENU */
.view.armatumenu.nodeteaser{}
.view.armatumenu.nodeteaser .view-content .views-row.flexCol{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;  
}
/* FIELD: PRECIO */
.view.armatumenu.nodeteaser .field-precio{
  font-size: 150%;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  background-color: #ffa800;
  padding: 10px 10px;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.view.armatumenu.nodeteaser .field-precio .label-inline{
  display: inline-block;
  margin-right: 10px;
}
/* FIELD: IMAGE */
.view.armatumenu.nodeteaser .field-image{
  display: none;
}
/* FIELD: CAMPO BODY */
.view.armatumenu.nodeteaser .field-body .boxwrapper .box{
  text-align: left;
}
.view.armatumenu.nodeteaser .field-body .boxwrapper .box h2{
  margin: 0 auto;
  font-size: 120%;
  line-height: normal;
}
.view.armatumenu.nodeteaser .field-body .boxwrapper .box h2 .numero{
  margin-right: 8px;
  font-size: 130%;
  color: #ffa800;  
}
.view.armatumenu.nodeteaser .field-body .boxwrapper .box ul{
  padding: 0;
}
.view.armatumenu.nodeteaser .field-body .boxwrapper .box ul li{
  list-style: none;
  line-height: normal;
  position: relative;
  padding: 0 0 0 30px;
  margin-bottom: 8px;
}
.view.armatumenu.nodeteaser .field-body .boxwrapper .box ul li::before{
  content: '';
  width: 6px;
  height: 6px;
  background-color: #c1001f;
  position: absolute;
  top: 8px;
  left: 15px;
  border-radius: 50%;
}
.view.armatumenu.nodeteaser .field-body .boxwrapper .box.box1,
.view.armatumenu.nodeteaser .field-body .boxwrapper .box.box2,
.view.armatumenu.nodeteaser .field-body .boxwrapper .box.box3,
.view.armatumenu.nodeteaser .field-body .boxwrapper .box.box4,
.view.armatumenu.nodeteaser .field-body .boxwrapper .box.box5{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

.view.armatumenu.nodeteaser .field-body .boxwrapper .box.box5{
  text-align: center;
}
.view.armatumenu.nodeteaser .field-body .boxwrapper .box.box5 h2{
  font-size: 150%;
  font-style: italic;
  letter-spacing: 1px;
  display: inline-block;
  padding: 2% 20px;
  border-top: 1px dotted #333;
  border-bottom: 1px dotted #333;
  margin: 2% auto;
}

/*
 * NODE SEDES
 */
.page-node-10 .node-full{
  margin-bottom: 0
}
.page-node-10 .field-body .block-title{
  margin-bottom: 10px;
}
.page-node-10 .field-body .iframewrap iframe{
  width: 100%;
  min-height: 360px;
  border: 0;
}
.blckMnpnlSedes{
  border-top: 2px solid #E6E6E6;
  padding-top: 10px;
}
.blckMnpnlSedes .flexslider{
  background-color: transparent;
}
.blckMnpnlSedes .region-two-66-33-second .region-inner{
  position: relative;
  height: 100%;
  background-color: #CC3333;
  color: #FFFFFF;
}
.blckMnpnlSedes .region-two-66-33-second .region-inner section.block{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;  
}
.blckMnpnlSedes .block-title{
  color: #FFFFFF;
  font-size: 250%;
}
.blckMnpnlSedes .block-title::after{
  max-width: initial;
}
.blckMnpnlSedes .region address{
  font-size: 220%; 
}
.blckMnpnlSedes ol.flex-control-thumbs{
  text-align: center;
}
.blckMnpnlSedes ol.flex-control-thumbs li{
  max-width: 75px;
}
.blckMnpnlSedes ol.flex-control-thumbs li img{}
 
/*
 * NODE - NOVEDADES TEASER
 */
.node-novedades.node-teaser{
  border-bottom: 1px solid #E0E0E0;
  padding: 15px;
  margin-bottom: 40px;
  box-sizing: border-box;
  position: relative;
  color: #CCCCCC;
}
.node-novedades.node-teaser::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 66px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/menusombrabottom.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/menusombrabottom.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/menusombrabottom.png"));
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% auto;  
}
.node-novedades.node-teaser .field-image a img{
  width: 100%;
}
.node-novedades.node-teaser .boxwrapper{
  text-align: left;
}
.node-novedades.node-teaser .boxwrapper .box{
  display: inline-block;
  vertical-align: middle
}
.node-novedades.node-teaser .boxwrapper .box.field-fechapost{
  color: #FFA901;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/ico_reloj.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/ico_reloj.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/ico_reloj.png"));
  background-repeat: no-repeat;
  background-position: 0 50%;
  padding-left: 25px;
  font-size: 115%;
  margin-left: 15px;
}
.node-novedades.node-teaser .boxwrapper .box.field-tags{
  background-image: url("/sites/all/themes/at_atrium2021/css/images/ico_folder.png");
  background-repeat: no-repeat;
  background-position: 0 50%;
  padding-left: 25px;
  font-size: 115%;
  margin-left: 15px;
}
.node-novedades.node-teaser .boxwrapper .box.field-tags a{
  color: #CC3333;
}
.node-novedades.node-teaser .field-title h2{
  color: #FFFFFF;
  font-size: 125%;
  margin: 20px 15px 10px 15px; 
}
.node-novedades.node-teaser .field-body{
  margin-right: 15px;
  margin-left: 15px;
  font-size: 115%;
}
.node-novedades.node-teaser .field-vermas{
  margin-right: 15px;
  margin-left: 15px;
}
.node-novedades.node-teaser .field-vermas a{
  color: #FFA901;
}
/*
 * NODE - NOVEDADES TEASER
 */
.node-novedades.node-full{
  border: 1px solid #E0E0E0;
  padding: 15px;
  margin-bottom: 15px;
  box-sizing: border-box;
  position: relative;
}
.node-novedades.node-full::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 66px;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/menusombrabottom.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/menusombrabottom.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/menusombrabottom.png"));
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% auto;  
}
.node-novedades.node-full .field-image a img{
  width: 100%;
}
.node-novedades.node-full .boxwrapper{
  text-align: left;
}
.node-novedades.node-full .boxwrapper .box{
  display: inline-block;
  vertical-align: middle
}
.node-novedades.node-full .boxwrapper .box.field-fechapost{
  color: #FFA901;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/ico_reloj.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/ico_reloj.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/ico_reloj.png"));
  background-repeat: no-repeat;
  background-position: 0 50%;
  padding-left: 25px;
  font-size: 115%;
  margin-left: 15px;
}
.node-novedades.node-full .boxwrapper .box.field-tags{
  background-image: url("/sites/all/themes/at_atrium2021/css/images/ico_folder.png");
  background-repeat: no-repeat;
  background-position: 0 50%;
  padding-left: 25px;
  font-size: 115%;
  margin-left: 15px;
}
.node-novedades.node-full .boxwrapper .box.field-tags a{
  color: #CC3333;
}
.node-novedades.node-full .field-title h1{
  font-size: 125%;
  margin: 20px 15px 10px 15px; 
}
.node-novedades.node-full .field-body{
  margin-right: 15px;
  margin-left: 15px;
  font-size: 115%;
  color: #CCCCCC;
}
.node-novedades.node-full .field-body a{
  color: #FFA901;
}
/*
 * NODE COTNACTO
 */
#contact-site-form .form-item label{
  font-size: 150%;
  margin-bottom: 10px;
  margin-top: 25px;  
}
#contact-site-form .form-item input,
#contact-site-form .form-item textarea{
  background-color: #121618;
  color: #FFFFFF;
  border: 1px solid #CCCCCC;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-size: 150%;
  padding: 10px 25px;
  width: 100%;
  box-sizing: border-box; 
}
#contact-site-form .grippie{
  display: none;
}
#contact-site-form #edit-submit{
  background-color: #C1001F;
  color: #FFFFFF;
  padding: 20px 60px;
  font-size: 188%;
  text-transform: uppercase;
  border: 0;
  -webkit-border-radius: 10px;/*Safari, Chrome*/
  -moz-border-radius: 10px;/*Firefox*/
  border-radius: 10px;
}
#contact-site-form #edit-submit:hover{
  background-color: #FFA901;
  color: #c1001f;
}
/*
 * NODE - RESERVAS - 
 */
.webform-client-form .form-item label{
  font-size: 150%;
  margin-bottom: 10px;
  margin-top: 25px;
}
.webform-client-form .form-item input,
.webform-client-form .form-item select,
.webform-client-form .form-item textarea{
  background-color: #121618;
  color: #FFFFFF;
  border: 1px solid #CCCCCC;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-size: 160%;
  padding: 10px 25px;
  width: 100%;
  box-sizing: border-box;  
}
.webform-client-form .itemFechaReserva select{
  max-width: 20%;
}
.webform-client-form .itemFechaReserva .webform-calendar{
  max-width: 50px;
  padding: 0;
  border: 0;
  margin-top: 10px;
  margin-left: 10px;  
}
.webform-client-form .webform-component--hora select{
  max-width: 49%;
}
.webform-client-form .form-actions{
  text-align: center;
}
.webform-client-form .form-actions input{
  text-transform: uppercase;
  font-size: 200%;
  background-color: #c1001f;
  color: #FFFFFF;
  padding: 20px 60px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  border: 0;
}
.webform-client-form .form-actions input:hover{
  background-color: #FFA901;
  color: #c1001f;
}
.node-type-webform.not-front .block-main{
  border-bottom: 0;
}
.webform-client-form .grippie{
  display: none;
}
/*
 * BOTON DE PEPDIDO
 */
.blckPedidosBtn{
/*  position: fixed;
  right: 0;
  top: 50%;
  
  transform: rotate(90deg);
  z-index: 5000;*/
  margin-bottom: 0;
}
.blckPedidosBtn .block-inner,
.blckPedidosBtn .block-content{
  margin: 0 auto;
}
.blckPedidosBtn .linkwrap{}
.blckPedidosBtn .linkwrap a{
  display: block;
  background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/pedidos_btn.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/pedidos_btn.png"));
  background-repeat: no-repeat;
  background-position: 0 0;
  text-indent: -9999px;
  position: fixed;
  z-index: 2147483000;
  right: 0;
  top: 22%;
  width: 72px;
  height: 547px;
}
/*
 * PAGINA MENU PDF 
 */
 .page-menuqr #header .boxwrapper .box,
 .page-node-126 #header .boxwrapper .box{
  width: 100%;
  text-align: center;   
 }
 .page-menuqr #page-title,
 .page-node-126 #page-title{
   text-align: center;
 }
 .page-menuqr #main-content,
 .page-node-126 #main-content{
   text-align: center;
 }
 .page-node-126 #main-content .field-viewfiles #pdf_reader{
  display: block;
  margin: 0 auto;
 }
 .page-node-126 #main-content .field-viewfiles .pdf-reader-download-link{
  display: block;
  padding: 85px 0 0 0;
  color: #000;
 }

/*
 * FORMULARIO ENCUESTA DE SATISFACCION
 */
.page-node-141 #page-title,
.page-node-142 #page-title{
  text-align: center;
  background-color: #CC3333;
  color: #FFFFFF;
  margin: 0 10%;
  box-sizing: border-box;
}
.page-node-141 h1.field-titlealt,
.page-node-142 h1.field-titlealt,
.page-node-143 h1.field-titlealt,
.page-node-144 h1.field-titlealt,
.page-node-145 h1.field-titlealt,
.page-node-147 h1.field-titlealt,
.page-node-151 h1.field-titlealt{
  text-align: left;
  margin: 0 10% 0 10%;
  box-sizing: border-box;  
}
.page-node-141 #main-content,
.page-node-142 #main-content,
.page-node-143 #main-content,
.page-node-144 #main-content,
.page-node-145 #main-content,
.page-node-147 #main-content,
.page-node-151 #main-content{
  text-align: center;
}
.page-node-141 h1.field-titlealt .boxwrapper .box span,
.page-node-142 h1.field-titlealt .boxwrapper .box span,
.page-node-143 h1.field-titlealt .boxwrapper .box span,
.page-node-144 h1.field-titlealt .boxwrapper .box span,
.page-node-145 h1.field-titlealt .boxwrapper .box span,
.page-node-147 h1.field-titlealt .boxwrapper .box span,
.page-node-151 h1.field-titlealt .boxwrapper .box span{
  display: inline-block;
  text-transform: uppercase;
}
.page-node-141 h1.field-titlealt .boxwrapper .box1 span,
.page-node-142 h1.field-titlealt .boxwrapper .box1 span,
.page-node-143 h1.field-titlealt .boxwrapper .box1 span,
.page-node-144 h1.field-titlealt .boxwrapper .box1 span,
.page-node-145 h1.field-titlealt .boxwrapper .box1 span,
.page-node-147 h1.field-titlealt .boxwrapper .box1 span,
.page-node-151 h1.field-titlealt .boxwrapper .box1 span{
  background-color: #CC3333;
  color: #FFFFFF;
  line-height: normal;
  padding: 5px 35px;
  border-radius: 30px;
}
.page-node-141 h1.field-titlealt .boxwrapper .box2 span,
.page-node-142 h1.field-titlealt .boxwrapper .box2 span,
.page-node-143 h1.field-titlealt .boxwrapper .box2 span,
.page-node-144 h1.field-titlealt .boxwrapper .box2 span,
.page-node-145 h1.field-titlealt .boxwrapper .box2 span,
.page-node-147 h1.field-titlealt .boxwrapper .box2 span,
.page-node-151 h1.field-titlealt .boxwrapper .box2 span{
  background-color: #ffa800;
  color: #000000;
  margin-left: 40px;
  padding: 0px 30px;
}
.page-node-141 .node-webform form .form-item.webform-component,
.page-node-142 .node-webform form .form-item.webform-component,
.page-node-143 .node-webform form .form-item.webform-component,
.page-node-144 .node-webform form .form-item.webform-component,
.page-node-145 .node-webform form .form-item.webform-component,
.page-node-147 .node-webform form .form-item.webform-component,
.page-node-151 .node-webform form .form-item.webform-component{
  border: 1px solid #CCCCCC;
  padding: 15px 10px;
  box-sizing: border-box;
}
.page-node-151 .node-webform form .form-item.webform-component{
  border: 0;
}
.page-node-141 .node-webform form .form-item > label,
.page-node-142 .node-webform form .form-item > label,
.page-node-143 .node-webform form .form-item > label,
.page-node-144 .node-webform form .form-item > label,
.page-node-145 .node-webform form .form-item > label,
.page-node-147 .node-webform form .form-item > label,
.page-node-151 .node-webform form .form-item > label{
  font-size: 100%;
  margin-top: 0;
  text-decoration: none;
}
.page-node-141 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-142 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-143 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-144 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-145 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-147 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-151 .node-webform form .form-item .form-radios .form-type-radio{
  display: inline-block;
  vertical-align: top;
  margin: 0 1%;    
}
.page-node-141 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-142 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-143 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-144 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-145 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-147 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-151 .node-webform form .form-item .form-radios .form-type-radio > label{
  font-size: 100%;
  text-decoration: none;
  font-weight: normal;
}
.page-node-141 .webform-client-form .form-actions input,
.page-node-142 .webform-client-form .form-actions input,
.page-node-143 .webform-client-form .form-actions input,
.page-node-144 .webform-client-form .form-actions input,
.page-node-145 .webform-client-form .form-actions input,
.page-node-147 .webform-client-form .form-actions input,
.page-node-147 .webform-client-form .form-actions input,
.page-node-151 .webform-client-form .form-actions input{
  font-size: 150%;
}
#edit-submitted-recomendaria-atrium-a-otras-personas .form-item{
  width: 16%;
}

/* NODE TRABAJA CON NOSOTROS */
.page-node-151 .node-webform{
  padding-top: 8%;
}
/* Titulo de la pagina */
.page-node-151 h1.field-titlealt .boxwrapper .box2{
  font-size: 65%;
}
.page-node-151 h1.field-titlealt .boxwrapper .box2 span{
  padding: 4px 30px;
}
.page-node-151 .field-name-body.view-mode-full{
  margin: 20px 10% 4% 10%;
  text-align: left;
  font-size: 135%;
  line-height: normal;
}
.page-node-151 .field-name-body.view-mode-full p{
  margin-bottom: 10px;
}
.page-node-151 .node-webform form .form-item > label{
  text-align: left;
}

.adjuntarhv{
  text-align: left;
  font-size: 85%;
  margin-bottom: 10px;
}
.adjuntarhv #edit-submitted-adjuntar-su-hv-ajax-wrapper{}

.adjuntarhv #edit-submitted-adjuntar-su-hv-upload{}
.adjuntarhv #edit-submitted-adjuntar-su-hv-upload-button{
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.adjuntarhv #edit-submitted-adjuntar-su-hv-upload-button:hover{
  background-color: #ffa800;
  border: 1px solid #ffa800;
  color: #000;
}
.adjuntarhv #edit-submitted-adjuntar-su-hv-upload,
.adjuntarhv #edit-submitted-adjuntar-su-hv-upload-button{
  width: inherit;
  padding: 8px 12px;
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.page-node-151 .node-webform form .description{
  text-align: left;
}

/*
 *
 */
/*
 *
 */
/*
 *
 */
/*
 *
 */
/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */
/*
 * Wrapper for the list of comments and its titles
 */
/* line 1554, ../sass/global.styles.scss */
#comments {
  margin: 1.5em 0;
}
/* line 1558, ../sass/global.styles.scss */
#comments h2.comment-title {
  margin: 0;
}
/* line 1562, ../sass/global.styles.scss */
#comments h2.comment-form {
  margin: 0;
}
/*
 * Wrapper for a single comment
 */
/* line 1572, ../sass/global.styles.scss */
.comment {
  margin-bottom: 20px;
}
/*
 * Comment title
 */
/* line 1603, ../sass/global.styles.scss */
.comment-title {
  margin: 0;
}
/*
 * Comment states
 */
/*
 * Preview of the comment before submitting new or updated comment
 */
/*
 * "New" marker for comments that are new for the current user
 */
/* line 1635, ../sass/global.styles.scss */
.new {
  color: #c00;
}
/*
 * Nested comments are indented
 */
/* line 1643, ../sass/global.styles.scss */
.indented {
  margin-left: 40px;
}
/* =============================================================================
 *   Forms
 * ========================================================================== */
/*
 * Wrapper for a form element (or group of form elements) and its label
 */
/* line 1657, ../sass/global.styles.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 1663, ../sass/global.styles.scss */
.form-item label {
  font-weight: 700;
}
/* line 1670, ../sass/global.styles.scss */
.form-item .description {
  font-size: 0.85em;
}
/*
 * Highlight marks and form required mark
 */
/* line 1683, ../sass/global.styles.scss */
.marker,
.form-required {
  color: #c00;
}
/*
 * The submit button
 */
/* line 1697, ../sass/global.styles.scss */
.container-inline div,
.container-inline label {
  display: inline;
}
/*
 * Define consistent borders
 */
/* line 1706, ../sass/global.styles.scss */
fieldset {
  border: 1px solid #ccc;
}
/*
 * Tips for Drupal's input formats
 */
/*
 * Buttons used by contrib modules like Media
 */
/* line 1720, ../sass/global.styles.scss */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}
/*
 * Password confirmation
 */
/* line 1728, ../sass/global.styles.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}
/* =============================================================================
 *   Tables
 * ========================================================================== */
/* line 1738, ../sass/global.styles.scss */
table {
  margin: 10px 0;
  padding: 0;
  width: 100%;
}
/* line 1743, ../sass/global.styles.scss */
table.sticky-header {
  z-index: 10;
}
/* line 1749, ../sass/global.styles.scss */
table,
thead,
tbody,
tr,
th,
td {
  border-color: #ccc;
}
/* line 1759, ../sass/global.styles.scss */
table,
td,
th {
  vertical-align: middle;
}
/* line 1766, ../sass/global.styles.scss */
caption,
th,
td {
  text-align: left;
}
/* line 1773, ../sass/global.styles.scss */
thead tr {
  font-weight: 700;
  background-color: #e5e5e5;
}
/* line 1779, ../sass/global.styles.scss */
td,
th {
  border-bottom: 0;
  margin: 0;
  padding: 5px 7px;
}
/* line 1790, ../sass/global.styles.scss */
tbody tr {
  border-top: 1px solid #ccc;
}
/* line 1795, ../sass/global.styles.scss */
tr {
  /* Table row striping */
}
/* line 1797, ../sass/global.styles.scss */
tr.odd {
  background: #fff;
}
/* line 1802, ../sass/global.styles.scss */
tr.info, tr.even, tr:nth-child(2n+2) {
  border-bottom: 0;
  background-color: #f5f5f5;
}
/* line 1813, ../sass/global.styles.scss */
tr.odd td.active {
  background-color: #eee;
}
/* line 1817, ../sass/global.styles.scss */
tr.even td.active {
  background-color: #ebebeb;
}
/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
/* line 1840, ../sass/global.styles.scss */
#forum td.created, #forum td.posts, #forum td.topics, #forum td.last-reply, #forum td.replies, #forum td.pager {
  white-space: normal;
}
/* =============================================================================
 *   Messages
 * ========================================================================== */
/* line 1856, ../sass/global.styles.scss */
div.messages {
  margin-bottom: 10px;
  margin-top: 10px;
}
/* line 1861, ../sass/global.styles.scss */
div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}
/*
 * Unpublished nodes
 */
/* line 1902, ../sass/global.styles.scss */
.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink;
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}
/* line 186, ../sass/_custom.scss */
.ie6-7 .node-unpublished p.unpublished > *, .ie6-7
.comment-unpublished p.unpublished > * {
  position: relative;
}
/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */
/* line 1913, ../sass/global.styles.scss */
.maintenance-page .container {
  padding: 40px 0;
}
/* line 1917, ../sass/global.styles.scss */
.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}
/* line 1925, ../sass/global.styles.scss */
.db-offline .container {
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 960px;
}
/* line 1932, ../sass/global.styles.scss */
.db-offline div.messages {
  margin: 20px 0 0;
}
/* line 1936, ../sass/global.styles.scss */
.db-offline #content {
  padding: 20px 0;
}
/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */
/*
 * Admin menu overrides
 */
/* line 1949, ../sass/global.styles.scss */
#admin-menu {
  margin: 0;
  padding: 0;
}
/*
 * Devel Module
 */
/* line 1958, ../sass/global.styles.scss */
.dev-query {
  background: #eee;
  padding: 30px;
}
/*
 * Styleguide module tweaks
 */
/* line 1967, ../sass/global.styles.scss */
#styleguide-header {
  padding: 0 10px;
}
/* line 1970, ../sass/global.styles.scss */
#styleguide-header .item-list {
  font-family: inherit;
  margin: 0 20px 20px 0;
  min-height: 260px;
  width: auto;
}
/*# sourceMappingURL=global.styles.css.map */

/* ATRIUM slim: balanced address footer grid */
.blckAddressFooter .boxwrapper{
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  align-content: flex-start;
  row-gap: 22px;
}
.blckAddressFooter .boxwrapper .box{
  box-sizing: border-box;
  min-width: 240px;
}
.blckAddressFooter .boxwrapper .box h2,
.blckAddressFooter .boxwrapper .box p{
  line-height: 1.25;
}

/* ATRIUM slim: mobile publish fixes */
.page-contact #main-content-header,
.page-sedes #main-content-header{
  box-sizing: border-box;
}
.page-contact .webform-client-form .form-actions{
  text-align: left;
}
.blckPedidosBtn{
  padding: 0 !important;
  background: transparent !important;
}
.blckPedidosBtn .linkwrap a{
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  top: auto !important;
  left: auto !important;
  z-index: 2147483000;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  width: auto !important;
  max-width: calc(100vw - 36px) !important;
  height: auto !important;
  min-height: 48px;
  padding: 12px 18px;
  box-sizing: border-box;
  background-image: none !important;
  background-color: #c1001f;
  color: #ffffff;
  border: 2px solid #ffa901;
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-indent: 0 !important;
  text-transform: uppercase;
  transform: translateY(0) !important;
  opacity: 1;
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.2s ease;
}
.blckPedidosBtn .linkwrap a:hover{
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.46);
}
.blckPedidosBtn .linkwrap a strong{
  color: #ffa901;
  font-size: 120%;
}
.blckPedidosBtn .linkwrap a .cta-arrow{
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid #ffa901;
  border-radius: 50%;
  position: relative;
  flex: 0 0 22px;
}
.blckPedidosBtn .linkwrap a .cta-arrow::before{
  content: '';
  position: absolute;
  left: 6px;
  top: 5px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #ffa901;
  border-right: 2px solid #ffa901;
  transform: rotate(45deg);
}
.blckPedidosBtn .linkwrap a .cta-pulse{
  position: absolute;
  top: -7px;
  right: -7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #ffa901;
  box-shadow: 0 0 0 0 rgba(255, 169, 1, 0.7);
  animation: atriumCtaPulse 1.8s infinite;
}
.blckPedidosBtn .linkwrap a.is-hidden{
  transform: translateY(90px) !important;
  opacity: 0;
  pointer-events: none;
}
@keyframes atriumCtaPulse{
  0%{ box-shadow: 0 0 0 0 rgba(255, 169, 1, 0.7); }
  70%{ box-shadow: 0 0 0 13px rgba(255, 169, 1, 0); }
  100%{ box-shadow: 0 0 0 0 rgba(255, 169, 1, 0); }
}
@media only screen and (max-width: 560px){
  .blckPedidosBtn .linkwrap a{
    right: 12px !important;
    bottom: 12px !important;
    min-height: 44px;
    padding: 10px 13px;
    font-size: 90%;
  }
  .blckPedidosBtn .linkwrap a .cta-arrow{
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}
@media only screen and (max-width: 900px){
  .blckAddressFooter .boxwrapper .box{
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 560px){
  .blckAddressFooter .boxwrapper .box{
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    min-width: 0;
  }
}

/* CLS stabilization for official slim runtime. */
#logo a{
  display: inline-block;
  line-height: 0;
}
#logo img.site-logo,
.imgwrap img[src*="logo-atrium-2024-w230.png"]{
  display: block;
  width: 230px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 230 / 59;
}
.blckBanner .flexslider{
  width: 100%;
  aspect-ratio: 1920 / 816;
  overflow: hidden;
  background-color: #000;
}
.blckBanner .flexslider .slides,
.blckBanner .flexslider .slides > li,
.blckBanner .node-banner-principal,
.blckBanner .node-banner-principal > a,
.blckBanner .node-banner-principal > .boxwrapper,
.blckBanner .boxwrapper,
.blckBanner .boxcontent,
.blckBanner .field-image{
  height: 100%;
}
#flexslider-1.flexslider .slides > li:first-child{
  display: block;
}
.blckBanner .field-image img.image-style-none{
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1920 / 816;
  object-fit: cover;
}
.blckMiniBannerPremios .block-content .rtecenter:first-of-type a[href="/node/5"]{
  display: inline-block;
  width: 100%;
  max-width: 551px;
  aspect-ratio: 551 / 356;
  line-height: 0;
}
.blckMiniBannerPremios .block-content .rtecenter:first-of-type a[href="/node/5"] img,
img[src*="20220912-foto_01.png"]{
  display: block;
  width: 100% !important;
  max-width: 551px;
  height: auto;
  aspect-ratio: 551 / 356;
}
.blckMiniBannerPremios .block-content .rtecenter a.vermas{
  width: auto;
  max-width: none;
  aspect-ratio: auto;
  line-height: normal;
}
.blckMiniBannerPremios .field-image,
.blckMiniBannerPremios #flexslider-2{
  width: 100%;
  aspect-ratio: 562 / 307;
  overflow: hidden;
}
.blckMiniBannerPremios #flexslider-2 .slides,
.blckMiniBannerPremios #flexslider-2 .slides > li{
  height: 100%;
}
.blckMiniBannerPremios #flexslider-2 img.image-style-none{
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 562 / 307;
  object-fit: cover;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx1 img,
img[src*="elemento_domicilio.png"]{
  height: auto;
  aspect-ratio: 138 / 105;
}
@media only screen and (max-width: 580px){
  .blckBanner .flexslider,
  .blckBanner .field-image img.image-style-none{
    aspect-ratio: 1 / 1;
  }
}
}

/* /sites/default/files/adaptivetheme/at_atrium2021_files/at_atrium2021.fonts.css | screen */
@media screen {
body{font-size:100%;}
h1{font-size:2em;}
h2{font-size:1.6em;}
h3{font-size:1.4em;}
h4{font-size:1.2em;}
h5{font-size:1em;}
h6{font-size:1em;}
}

/* /sites/default/files/adaptivetheme/at_atrium2021_files/at_atrium2021.responsive.layout.css | only screen */
@media only screen {
/* Gutters are not currently overridden in theme settings, but may be in theme CSS */

/* smalltouch_landscape one_col_vert */
@media only screen and (min-width:321px) and (max-width:580px) {
.container {width:100%}
.two-sidebars .content-inner,.one-sidebar .content-inner,.region-sidebar-first,.region-sidebar-second {margin-left: 0; margin-right: 0}
.region-sidebar-first {width: 50%}
.region-sidebar-second {width: 50%}
.one-sidebar .sidebar {width: 100%}
.region-sidebar-first,.region-sidebar-second {overflow: hidden; margin-top: 20px; float: left; clear: none}
.region-sidebar-first.block,.region-sidebar-second .block {width: 100%}
.at-panel .region {display:inline;float:left}.three-50-25-25 > .region,.three-25-25-50 > .region,.three-3x33 > .region,.three-25-50-25 > .region,.six-6x16 > .panel-row > .region,.six-6x16 > .panel-row ,.two-66-33 > .region,.two-brick > .panel-row > .region,.two-33-66 > .region,.two-50 > .region,.three-inset-right > .inset-wrapper,.three-inset-right > .inset-wrapper > .region,.three-inset-right > .region-three-inset-right-sidebar,.three-inset-left > .inset-wrapper,.three-inset-left > .inset-wrapper > .region,.three-inset-left > .region-three-inset-left-sidebar,.five-5x20 > .panel-row > .region,.five-5x20 > .panel-row,.four-4x25 > .panel-row > .region,.four-4x25 > .panel-row {float:none;display:block;width:100%;clear:both}
}
/* tablet_portrait one_col_vert */
@media only screen and (min-width:581px) and (max-width:768px) {
.container {width:100%}
.two-sidebars .content-inner,.one-sidebar .content-inner,.region-sidebar-first,.region-sidebar-second {margin-left: 0; margin-right: 0}
.region-sidebar-first {width: 50%}
.region-sidebar-second {width: 50%}
.one-sidebar .sidebar {width: 100%}
.region-sidebar-first,.region-sidebar-second {overflow: hidden; margin-top: 20px; float: left; clear: none}
.region-sidebar-first.block,.region-sidebar-second .block {width: 100%}
.at-panel .region {display:inline;float:left}.three-50-25-25 > .region-three-50-25-25-second,.three-50-25-25 .region-three-50-25-25-third,.three-3x33 > .region,.two-brick > .panel-row > .region,.two-50 > .region,.five-5x20 > .panel-row > div.region,.four-4x25 > .panel-row > .region {width:50%}.three-50-25-25 > .region-three-50-25-25-first,.three-25-25-50 > .region-three-25-25-50-first,.three-3x33 > div.region-three-33-first,.three-25-50-25 > .region-three-25-50-25-first,.six-6x16 > .panel-row,.three-inset-right > .inset-wrapper > .region,.three-inset-left > .inset-wrapper > .region,.five-5x20 > div.panel-row,.five-5x20 > div.panel-row > div.region-five-fifth,.four-4x25 > .panel-row {float:none;display:block;width:100%;clear:both}.three-25-25-50 > div.region-three-25-25-50-second,.three-25-50-25 > div.region-three-25-50-25-third,.three-inset-right > .region-three-inset-right-sidebar {width:25%}.three-25-25-50 > div.region-three-25-25-50-third,.three-25-50-25 > div.region-three-25-50-25-second {width:75%}.six-6x16 > .panel-row > .region {width:50%;float:left}.two-66-33 > .region-two-66-33-first,.two-33-66 > .region-two-33-66-second {width:66.666666%}.two-66-33 > .region-two-66-33-second,.two-33-66 > .region-two-33-66-first {width:33.333333%}.two-brick > .panel-row {float:none}.three-inset-right > .inset-wrapper {width:75%;float:left}.three-inset-left > .region-three-inset-left-sidebar {width:25%;float:right}.three-inset-left > .inset-wrapper {width:75%;float:right}
}
/* tablet_landscape three_col_grail */
@media only screen and (min-width:769px) and (max-width:1024px) {
.container {width:100%}
#content-column,.content-column,div.sidebar {float: left; clear: none}
.two-sidebars .content-inner {margin-left: 20%; margin-right: 20%}
.sidebar-first .content-inner {margin-left: 20%; margin-right: 0}
.sidebar-second .content-inner {margin-right: 20%; margin-left: 0}
.region-sidebar-first {width: 20%; margin-left: -100%}
.region-sidebar-second {width: 20%; margin-left: -20%}
.at-panel .region {display:inline;float:left}.three-50-25-25 > .region,.three-25-25-50 > .region,.three-25-50-25 > .region,.three-inset-right > .region-three-inset-right-sidebar,.three-inset-left > .region-three-inset-left-sidebar {width:25%}.three-50-25-25 > div.region-three-50-25-25-first,.three-25-25-50 > div.region-three-25-25-50-third,.three-25-50-25 > div.region-three-25-50-25-second,.two-brick > .panel-row > .region,.two-50 > .region,.five-5x20 > .row-1 > .region {width:50%}.three-3x33 > .region,.two-66-33 > .region-two-66-33-second,.two-33-66 > .region-two-33-66-first,.three-inset-right > .inset-wrapper > div.region-three-inset-right-inset,.three-inset-left > .inset-wrapper > div.region-three-inset-left-inset,.five-5x20 > .row-2 > .region {width:33.333333%}.six-6x16 > .panel-row {width:33.333333%;float:left}.six-6x16 > .panel-row > .region {float:none;display:block;width:100%;clear:both}.two-66-33 > .region-two-66-33-first,.two-33-66 > .region-two-33-66-second,.three-inset-right > .inset-wrapper > div.region-three-inset-right-middle,.three-inset-left > .inset-wrapper > div.region-three-inset-left-middle {width:66.666666%}.two-brick > .panel-row {float:none}.three-inset-right > .inset-wrapper {width:75%;float:left}.three-inset-right > .inset-wrapper > .region,.three-inset-left > .inset-wrapper > .region {width:100%}.three-inset-left > .region-three-inset-left-sidebar,.three-inset-left > .inset-wrapper,.three-inset-left > .inset-wrapper > .region-three-inset-left-middle {float:right}.three-inset-left > .inset-wrapper {width:75%}.five-5x20 > .row-1 {width:40%}.five-5x20 > .row-2 {width:60%}.five-5x20 > .panel-row {float:left}.four-4x25 > .panel-row > .region,.four-4x25 > .panel-row {width:50%;float:left}
}
/* bigscreen three_col_grail */
@media only screen and (min-width:1025px) {
.container {width:100%;max-width:1200px}
#content-column,.content-column,div.sidebar {float: left; clear: none}
.two-sidebars .content-inner {margin-left: 30%; margin-right: 30%}
.sidebar-first .content-inner {margin-left: 30%; margin-right: 0}
.sidebar-second .content-inner {margin-right: 30%; margin-left: 0}
.region-sidebar-first {width: 30%; margin-left: -100%}
.region-sidebar-second {width: 30%; margin-left: -30%}
.at-panel .region {display:inline;float:left}.three-50-25-25 > .region,.three-25-25-50 > .region,.three-25-50-25 > .region,.three-inset-right > .region-three-inset-right-sidebar,.three-inset-left > .region-three-inset-left-sidebar {width:25%}.three-50-25-25 > div.region-three-50-25-25-first,.three-25-25-50 > div.region-three-25-25-50-third,.three-25-50-25 > div.region-three-25-50-25-second,.two-brick > .panel-row > .region,.two-50 > .region,.five-5x20 > .row-1 div.region-five-first,.five-5x20 .row-1 div.region-five-second {width:50%}.three-3x33 > .region,.two-66-33 > .region-two-66-33-second,.two-33-66 > .region-two-33-66-first,.three-inset-right > .inset-wrapper > div.region-three-inset-right-inset,.three-inset-left > .inset-wrapper > div.region-three-inset-left-inset,.five-5x20 > .panel-row > .region {width:33.333333%}.six-6x16 > .panel-row {width:33.333333%;float:left}.six-6x16 > .panel-row > .region,.five-5x20 > .panel-row {float:none;display:block;width:100%;clear:both}.two-66-33 > .region-two-66-33-first,.two-33-66 > .region-two-33-66-second,.three-inset-right > .inset-wrapper > div.region-three-inset-right-middle,.three-inset-left > .inset-wrapper > div.region-three-inset-left-middle {width:66.666666%}.two-brick > .panel-row {float:none}.three-inset-right > .inset-wrapper {width:75%;float:left}.three-inset-right > .inset-wrapper > .region,.three-inset-left > .inset-wrapper > .region {width:100%}.three-inset-left > .region-three-inset-left-sidebar,.three-inset-left > .inset-wrapper,.three-inset-left > .inset-wrapper > .region-three-inset-left-middle {float:right}.three-inset-left > .inset-wrapper {width:75%}.four-4x25 > .panel-row > .region,.four-4x25 > .panel-row {width:50%;float:left}
}
}

/* /sites/all/themes/at_atrium2021/css/responsive.custom.css | only screen */
@media only screen {
/*
 * responsive.custom.css is for custom media queries that are not set via the
 * theme settings, such as cascading media queries.
 *
 * By default all the other responsive stylesheets used in Adaptivetheme use a
 * "stacking method", however cascading media queries use a waterfall method so
 * you can leverage the cascade and inheritance for all browsers that support
 * media queries, regardless of screen size.
 *
 * @SEE http://zomigi.com/blog/essential-considerations-for-crafting-quality-media-queries/#mq-overlap-stack
 *
 * NOTE: this file loads by default, to disable got to your theme settings and
 * look under the "CSS" settings tab.
 */
/*
 * Really small screens and up
 */
/* @media only screen and (min-width: 220px) {} */
/*
 * Smalltouch sizes and up
 */
/* @media only screen and (min-width: 320px) {} */
/*
 * Smalltouch sizes and down
 */
@media only screen and (max-width: 480px) {
  /* 
   * Float Region Blocks - custom media query CSS example:
   * 
   * Float regions blocks is an Extension you can enable in the appearance
   * settings for your theme. This feature allows you to automatically float
   * blocks in regions, you can switch it on and off depending on your
   * requirements. For design purposes you many want to remove the floats for
   * devices where the entire theme is just one column - for example small
   * mobile phones. The following CSS is inside the custom media query:
   *
   *   @media only screen and (max-width: 480px){}
   *
   * This will target devices with a maximum width of 480px - most small phones.
   * In these smaller screen sizes we can remove the float and widths so all
   * blocks stack instead of displaying horizonally. The selector used is an
   * "attribute selector" which will match on any float block class. Use your
   * inspector or Firebug to get the classes from the page output if you need
   * more granular control over block alignment and stacking.
   */
  /* line 57, ../sass/responsive.custom.scss */
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
}
/*
 * Tablet sizes and up
 */
/* @media only screen and (min-width: 768px) {} */
/*
 * Desktops/laptops and up
 */
/* @media only screen and (min-width: 1025px) {} */

/*# sourceMappingURL=responsive.custom.css.map */
}

/* /sites/all/themes/at_atrium2021/css/responsive.smalltouch.portrait.css | only screen and (max-width:320px) */
@media only screen and (max-width:320px) {
/*
 *   Important Information about this CSS File
 *
 * - Do not delete or rename this file, if you do not use it leave it blank (delete
 *   everything) and the file will be skipped when you enable Production Mode in
 *   the Global theme settings.
 *
 * - Read the _README file in this directory, it contains useful help and other information.
 */
/* Increase the default font size on small touch devices */
/* line 16, ../sass/responsive.smalltouch.portrait.scss */
body {
  font-size: 90%;
}
/* =============================================================================
 *   Mobile Menu Toggle
 *   See your theme settings extensions for how to enable the menu toggle.
 *   These are example styles for the menu toggle menu, you can use these in the
 *   relevant responsive stylesheets as required. Modify to suit your design.
 * ========================================================================== */
/* line 28, ../sass/responsive.smalltouch.portrait.scss */
.at-mt .at-menu-toggle h2 {
  margin-bottom: 5px;
}
/* line 31, ../sass/responsive.smalltouch.portrait.scss */
.at-mt .at-menu-toggle h2 a {
  background: #eee;
  border: 2px solid #ccc;
  padding: 2px 10px;
}
/* line 39, ../sass/responsive.smalltouch.portrait.scss */
.at-mt .at-menu-toggle ul.menu li a {
  background: #eee;
  border-bottom: 1px solid #fff;
}
/*# sourceMappingURL=responsive.smalltouch.portrait.css.map */
.region-primary-content .region-inner{
	margin-right: 10px;
	margin-left: 10px;
}
.page-menu-entradas #page-title,
.page-menu-picadas #page-title,
.page-menu-ensaladas #page-title,
.page-menu-ensaladas #page-title,
.page-menu-desgranados #page-title,
.page-menu-asados #page-title,
.page-menu-hotdogs #page-title,
.page-menu-burgers #page-title,
.page-menu-pizzas #page-title{
	width: 100%;
	max-width: 300px;
	background-size: 300px;
}
.mainheader .boxmainpage .boxwrappertop{
	position: relative;
}
#header .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 100%;
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
	text-align: center;
	padding: 0 10px 10px 10px;
}
.maincontentwrap{
	background-image: none;
}
.blckBienvenida .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 100%;
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
	text-align: center;
}

.block .block-title::after,
.page-menu #page-title::after,
.page-node-157 #page-title::after{
  content: '';
  position: absolute;
  left: 10px;
  bottom: 0px;
  width: 80%;
  height: 4px;
  border-top: 3px solid #FFA901;
  border-bottom: 3px solid #FFA901;
}

.blckBienvenida .boxwrapper .box.box1 .block-title{
	background-size: 300px;
	max-width: 300px;
}
.blckBienvenida .boxwrapper .box.box1 p{
	/*font-size: 140%;*/
	text-align: center;
}
.blckEspecialidadesFront .imgwrap a{
	text-align: center;
	width: 100%;
}
.blckEspecialidadesFront .enlacewrap{
	text-align: center;
}
.blckLasMemorables .block-title{
	text-align: center;
	/*font-size: 200%;*/
	line-height: normal;
}
.blckLasMemorables .boxwrapper .box{
	margin-bottom: 25px;
}
.blckLasMemorables .boxwrapper .box .enlacewrap a{
	padding: 10px 30px;
}
.blckDomicilios{
	padding-top: 10%;
}
.blckDomicilios .block-inner{
	padding-right: 10px;
	padding-left: 10px;
	box-sizing: border-box;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul li{
	/*font-size: 90%;*/
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul li .phone,
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul li address{
	display: block;
	line-height: normal;
	margin-right: 0;
}
.blckNovedadesTeaser{
	padding: 12% 0;
}
.blckNovedadesTeaser .block-title{
	text-align: center;
	/*font-size: 200%;*/
}
.blckNovedadesTeaser .view .view-content .views-row{
	margin: 10px;
}
.blckAliados .imgwrap img{
	max-width: 50% !important;
}
.blckMainMenuFooter ul.menu li{
	display: block;
}
footer{
	/*font-size: 90%;*/
	padding: 15% 0 2% 0;	
}
.blckAddressFooter .boxwrapper .box{
	line-height: normal;
	margin-bottom: 30px;	
}
.blckPedidosBtn{
	padding-top: 35px;
	background-color: #000000;
}
.blckPedidosBtn .linkwrap a {
	background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/pedidos_btn_movil.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/pedidos_btn_movil.png"));
	background-position: 50% 100%;
	background-size: 300px;
	width: 100%;
	max-width: 300px;
	height: 79px;
	bottom: 0;
	top: inherit;
	left: 50%;
	transform: translateX(-50%);
}

/* ATRIUM slim: mobile publish fixes */
html,
body{
	overflow-x: hidden;
}
#main-content-header{
	padding: 0 12px;
	box-sizing: border-box;
}
#page-title{
	display: block;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	font-size: 145%;
	line-height: 1.15;
	text-align: center;
	white-space: normal;
	overflow-wrap: break-word;
}
#page-title::after{
	left: 50%;
	max-width: 260px;
	transform: translateX(-50%);
}
.page-contact .region-primary-content .region-inner{
	margin-left: 12px;
	margin-right: 18px;
}
.page-contact .webform-client-form .form-item input,
.page-contact .webform-client-form .form-item select,
.page-contact .webform-client-form .form-item textarea{
	padding-left: 14px;
	padding-right: 14px;
}
.page-contact .webform-client-form .form-actions input{
	width: auto;
	max-width: 100%;
	font-size: 150%;
	padding: 16px 28px;
}
.blckPedidosBtn .linkwrap a{
	position: fixed !important;
	right: 12px !important;
	bottom: 12px !important;
	top: auto !important;
	left: auto !important;
	width: 122px !important;
	max-width: 122px !important;
	min-height: 44px;
	justify-content: center;
	padding: 10px 8px;
	font-size: 80%;
	margin: 0 auto;
	transform: translateY(0) !important;
}
.blckPedidosBtn .linkwrap a span:first-child{
	display: none;
}
.blckPedidosBtn .linkwrap a::before{
	content: 'Pedir';
}
.blckPedidosBtn .linkwrap a .cta-arrow{
	display: none;
}
.blckNuestraHistoria{
	padding: 15% 0;
}
.blckNuestraHistoria .boxwrapper .box{
	padding: 0 10px;	
}
.blckNuestraHistoria .boxwrapper .box.box2 .block-title{
	display: inline-block;
	width: auto;
	max-width: calc(100% - 20px);
	height: auto;
	margin: 18px auto 22px;
	padding: 0 8px 14px;
	font-size: 185%;
	line-height: 1.08;
	white-space: nowrap;
}
.blckNuestraHistoria .boxwrapper .box.box2 .block-title::after{
	left: 8px;
	width: calc(100% - 16px);
}
.blckNuestraHistoria .boxwrapper .box.box2 p{
	line-height: 1.55;
	text-align: left;
}
.blckNuestraFamilia{
	padding: 12% 0;	
}
.blckNuestraFamilia .box{
	padding: 0 10px !important;
}
.blckBusqueda .container-inline div{
	max-width: 70%;
}
.blckTagsCloud,
.blckArticulosRecientes{
	margin: 10px;
}
.blckMnpnlSedes .region .region-inner .block,
.blckMnpnlSedes .block-content .node{
	margin-bottom: 0;
}
.blckMnpnlSedes .region-two-66-33-second .block-inner{
	font-size: 80%;
	line-height: normal;
	padding: 4% 0 0;
	margin-top: 6px;
	margin-bottom: 20px;
}
.blckMnpnlSedes .region-two-66-33-second .region-inner section.block{
	position: inherit;
	top: inherit;
	left: inherit;
	transform: inherit;
	width: 100%;	
}
#contact-site-form,
#webform-client-form-107{
	font-size: 85%;
}
.webform-client-form .itemFechaReserva select {
	max-width: 20%;
	font-size: 100%;
	padding: 12px 4px;
}
#contact-site-form #edit-submit{
	padding: 15px 30px;
}
.blckMenuProductos .block-content ul.menu{
	margin: 0;
	padding: 0;
}
.blckMenuProductos .block-content ul.menu li{
	width: 100%;
	max-width: 50%;
    padding: 5px 3px;
    box-sizing: border-box;	
}
.blckMenuProductos .block-content ul.menu li a{
	webkit-border-radius: 15px !important;
	-moz-border-radius: 15px !important;
	border-radius: 15px !important;
	padding: 10px;
	font-size: 100%;
}
.blckAcompBurger .boxwrapper .box.box1 h2{
	max-width: 320px;
	background-size: 100%;
}
.blckAcompBurger .boxwrapper .box.box2 table{
	margin-bottom: 0;
}
.blckAcompBurger .boxwrapper .box.box2 table thead tr th{
	line-height: normal;
}
/*
 * BLOQUE ACOMPAÑANTES Y ADICIONES
 */
 .blckAcompAdiciones .boxwrapper .box{
	-webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
	padding: 10px;
}
.blckPostresMaltedas .boxwrapper{
	-webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
	padding: 10px;
}
#block-block-35{
	margin-bottom: 0;
}
/* =============================================================================
 *   Node Styling
 * ========================================================================== */
 .page-node-146 #page-title{
	margin-top: 4%;
}
.page-node-5 .field-body .boxwrapper .box .block-title{
	width: 100%;
	max-width: 300px;
	background-size: 300px;
	height: 80px;	
}
.page-node-5 .field-body .blckNuestraHistoria .boxwrapper .box.box2 .block-title{
	width: auto;
	height: auto;
	max-width: calc(100% - 20px);
	background-size: auto;
}
.page-node-5 .field-body .imgwrap img{
	max-width: 90% !important;
	padding: 10px 5%;	
}
.page-node-10 .field-body .block-title{
	width: 100%;
	max-width: 300px;
	background-size: 300px;
	height: 70px;	
}
.page-menu-entradas .blckTxtMenuTop .block-content h2{
	line-height: normal;
	font-size: 140%;
	margin-bottom: 15px;	
}
.node-producto .boxwrapper .box.box2{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 70%;
	-ms-flex: 0 1 70%;
	flex: 0 1 70%;	
}
.node-producto .boxwrapper .box.box3,
.node-producto .boxwrapper .box.box4{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 100%;
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
	text-align: left;
}
.node-producto .boxwrapper .box .field-precio{
	font-size: 125%;
	background-color: #f0f0f0;
	padding: 4px 10px;
	margin-bottom: 4px;
}
.node-producto .boxwrapper .box .field-precio .label-inline{
	display: inline;
	text-transform: uppercase;
}
.node-producto .boxwrapper .field-precioconacomp{
	padding: 4px 10px;	
}
/*
 * FORMULARIO ENCUESTA DE SATISFACCION
 */
.page-node-141 h1.field-titlealt,
.page-node-142 h1.field-titlealt, 
.page-node-143 h1.field-titlealt, 
.page-node-144 h1.field-titlealt, 
.page-node-145 h1.field-titlealt,
.page-node-147 h1.field-titlealt,
.page-node-151 h1.field-titlealt{
	font-size: 115%;
	margin: 10px 0;
}
.page-node-141 h1.field-titlealt .boxwrapper .box1 span,
.page-node-142 h1.field-titlealt .boxwrapper .box1 span, 
.page-node-143 h1.field-titlealt .boxwrapper .box1 span, 
.page-node-144 h1.field-titlealt .boxwrapper .box1 span, 
.page-node-145 h1.field-titlealt .boxwrapper .box1 span,
.page-node-147 h1.field-titlealt .boxwrapper .box1 span,
.page-node-151 h1.field-titlealt .boxwrapper .box1 span{
	padding: 5px 14px;
}
.page-node-141 h1.field-titlealt .boxwrapper .box2 span,
.page-node-142 h1.field-titlealt .boxwrapper .box2 span, 
.page-node-143 h1.field-titlealt .boxwrapper .box2 span, 
.page-node-144 h1.field-titlealt .boxwrapper .box2 span, 
.page-node-145 h1.field-titlealt .boxwrapper .box2 span,
.page-node-147 h1.field-titlealt .boxwrapper .box2 span,
.page-node-151 h1.field-titlealt .boxwrapper .box2 span{
	padding: 0px 15px;
}
.page-node-141 .node-webform form .form-item.webform-component,
.page-node-142 .node-webform form .form-item.webform-component,
.page-node-143 .node-webform form .form-item.webform-component,
.page-node-144 .node-webform form .form-item.webform-component,
.page-node-147 .node-webform form .form-item.webform-component,
.page-node-151 .node-webform form .form-item.webform-component{
	font-size: 110%;
}
.page-node-141 .node-webform form .form-item .form-radios,
.page-node-142 .node-webform form .form-item .form-radios,
.page-node-143 .node-webform form .form-item .form-radios,
.page-node-144 .node-webform form .form-item .form-radios,
.page-node-145 .node-webform form .form-item .form-radios,
.page-node-147 .node-webform form .form-item .form-radios,
.page-node-151 .node-webform form .form-item .form-radios{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;	
}
.page-node-141 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-142 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-143 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-144 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-145 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-147 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-151 .node-webform form .form-item .form-radios .form-type-radio{
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
	position: relative;
}
.page-node-147 .node-webform form .form-item.cambiarorden .form-radios{
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.page-node-141 .node-webform form .form-item .form-radios .form-type-radio input,
.page-node-142 .node-webform form .form-item .form-radios .form-type-radio input,
.page-node-143 .node-webform form .form-item .form-radios .form-type-radio input,
.page-node-144 .node-webform form .form-item .form-radios .form-type-radio input,
.page-node-145 .node-webform form .form-item .form-radios .form-type-radio input,
.page-node-147 .node-webform form .form-item .form-radios .form-type-radio input,
.page-node-151 .node-webform form .form-item .form-radios .form-type-radio input{
	width: auto;
    position: absolute;
    top: 3px;
    left: 54%;
    margin: 5px 0;
}
.page-node-141 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-142 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-143 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-144 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-145 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-147 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-151 .node-webform form .form-item .form-radios .form-type-radio > label{
    float: left;
    width: 50%;
    text-align: right;
    margin: 5px 0;
    line-height: normal;
}
#edit-submitted-recomendaria-atrium-a-otras-personas .form-item{
	width: inherit;
}

/*
 * NODE TRABAJA CON NOSOTROS 
 */
 /* Titulo de la pagina */
 .page-node-151 h1.field-titlealt{
	margin: 0 auto;
}
.page-node-151 h1.field-titlealt .boxwrapper .box1{
	font-size: 110%;
}
.page-node-151 h1.field-titlealt .boxwrapper .box2{
	font-size: 85%;
}
.page-node-151 h1.field-titlealt .boxwrapper .box2 span{
	padding: 5px 15px;
}
.page-node-151 .field-name-body.view-mode-full{
margin: 20px 0% 4% 0%;
}
.adjuntarhv #edit-submitted-adjuntar-su-hv-upload{
	width: 100%;
}
.adjuntarhv #edit-submitted-adjuntar-su-hv-upload-button{
	margin: 15px 0 0 0;
}
}

/* /sites/all/themes/at_atrium2021/css/responsive.smalltouch.landscape.css | only screen and (min-width:321px) and (max-width:580px) */
@media only screen and (min-width:321px) and (max-width:580px) {
/*
 *   Important Information about this CSS File
 *
 * - Do not delete or rename this file, if you do not use it leave it blank (delete
 *   everything) and the file will be skipped when you enable Production Mode in
 *   the Global theme settings.
 *
 * - Read the _README file in this directory, it contains useful help and other information.
 */
/* Increase the body font size on small touch devices */
/* line 16, ../sass/responsive.smalltouch.landscape.scss */
body {
  font-size: 90%;
}
/* =============================================================================
 *   Mobile Menu Toggle
 *   See your theme settings extensions for how to enable the menu toggle.
 *   These are example styles for the menu toggle menu, you can use these in the
 *   relevant responsive stylesheets as required. Modify to suit your design.
 * ========================================================================== */
/* line 26, ../sass/responsive.smalltouch.landscape.scss */
.at-mt .at-menu-toggle {
  /* The toggle link */
  /* Menu items */
}
/* line 28, ../sass/responsive.smalltouch.landscape.scss */
.at-mt .at-menu-toggle h2 {
  margin-bottom: 5px;
}
/* line 31, ../sass/responsive.smalltouch.landscape.scss */
.at-mt .at-menu-toggle h2 a {
  background: #eee;
  border: 2px solid #ccc;
  padding: 2px 10px;
}
/* line 39, ../sass/responsive.smalltouch.landscape.scss */
.at-mt .at-menu-toggle ul.menu li a {
  background: #eee;
  border-bottom: 1px solid #fff;
}
/*# sourceMappingURL=responsive.smalltouch.landscape.css.map */
.page-menu-entradas #main-content-header,
.page-menu-picadas #main-content-header,
.page-menu-ensaladas #main-content-header,
.page-menu-ensaladas #main-content-header,
.page-menu-desgranados #main-content-header,
.page-menu-asados #main-content-header,
.page-menu-hotdogs #main-content-header,
.page-menu-burgers #main-content-header,
.page-menu-pizzas #main-content-header{
	padding: 0 10px;
}
.page-menu-entradas #page-title,
.page-menu-picadas #page-title,
.page-menu-ensaladas #page-title,
.page-menu-ensaladas #page-title,
.page-menu-desgranados #page-title,
.page-menu-asados #page-title,
.page-menu-hotdogs #page-title,
.page-menu-burgers #page-title,
.page-menu-pizzas #page-title{
	width: 100%;
	margin: 5% auto;
	text-align: left;
}
.page-menu-entradas #page-title::after,
.page-menu-picadas #page-title::after,
.page-menu-ensaladas #page-title::after,
.page-menu-ensaladas #page-title::after,
.page-menu-desgranados #page-title::after,
.page-menu-asados #page-title::after,
.page-menu-hotdogs #page-title::after,
.page-menu-burgers #page-title::after,
.page-menu-pizzas #page-title::after{
	left: 0;
    transform: inherit;
}
#page-title{
	text-align: center;
	margin-top: 5%;
}
#page-title::after{
	left: 50%;
    transform: translateX(-50%);
}
.region-primary-content .region-inner{
	margin-right: 10px;
	margin-left: 10px;
}
.mainheader .boxmainpage .boxwrappertop{
	position: relative;
}
#header .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 100%;
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
	text-align: center;
	padding: 0 10px 10px 10px;
}

.block .block-title,
.page-menu #page-title,
.page-node-157 #page-title{
	text-align: left;
}

.block .block-title::after,
.page-menu #page-title::after,
.page-node-157 #page-title::after{
  content: '';
  position: absolute;
  left: 10px;
	transform: translateX(0);
  bottom: 0px;
  width: 80%;
  height: 4px;
  border-top: 3px solid #FFA901;
  border-bottom: 3px solid #FFA901;
}

.blckTxtMenuTop{
	margin-top: 20px;
	margin-bottom: 0;	
}
.maincontentwrap{
	background-image: none;
}
.blckBienvenida .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 100%;
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
	text-align: center;
}
.blckBienvenida .boxwrapper .box.box1 .block-title{
	background-size: 300px;
	max-width: 300px;
}
.blckBienvenida .boxwrapper .box.box1 p{
	/*font-size: 140%;*/
	text-align: center;
}
.blckEspecialidadesFront .imgwrap a{
	text-align: center;
	width: 100%;
}
.blckEspecialidadesFront .enlacewrap{
	text-align: center;
}
.blckLasMemorables .block-title{
	text-align: center;
	/*font-size: 200%;*/
	line-height: normal;
}
.blckLasMemorables .boxwrapper .box{
	margin-bottom: 25px;
}
.blckLasMemorables .boxwrapper .box .enlacewrap a{
	padding: 10px 30px;
}
.blckDomicilios{
	padding-top: 10%;
}
.blckDomicilios .block-inner{
	padding-right: 10px;
	padding-left: 10px;
	box-sizing: border-box;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul li{
	/*font-size: 90%;*/
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul li .phone,
.blckDomicilios .boxwrapper .box.box2 .bx.bx2 ul li address{
	display: block;
	line-height: normal;
	margin-right: 0;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx1 h2{
	max-width: 74%;
	margin-top: 0;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx1 img,
.blckDomicilios .boxwrapper .box.box2 .bx.bx1 h2{
	vertical-align: top;
}
.blckDomicilios .boxwrapper .box.box2 .bx.bx1 h2 .bx.bx3{
	font-size: 130%;
}
.blckNovedadesTeaser{
	padding: 12% 0;
}
.blckNovedadesTeaser .block-title{
	text-align: center;
	/*font-size: 200%;*/
}
.blckNovedadesTeaser .view .view-content .views-row{
	margin: 10px auto;
}
.blckAliados .imgwrap img{
	max-width: 50% !important;
}
.blckMainMenuFooter ul.menu li{
	display: block;
}
footer{
	/*font-size: 90%;*/
	padding: 15% 0 2% 0;	
}
.blckAddressFooter .boxwrapper .box{
	line-height: normal;
	margin-bottom: 30px;	
}
.blckPedidosBtn{
	padding-top: 35px;
	background-color: #000000;
}
.blckPedidosBtn .linkwrap a {
	background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/pedidos_btn_movil.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/pedidos_btn_movil.png"));
	background-position: 50% 100%;
	background-size: 300px;
	width: 100%;
	max-width: 300px;
	height: 79px;
	bottom: 0;
	top: inherit;
	left: 50%;
	transform: translateX(-50%);
}

/* ATRIUM slim: mobile landscape publish fixes */
html,
body{
	overflow-x: hidden;
}
#main-content-header{
	padding: 0 12px;
	box-sizing: border-box;
}
#page-title{
	display: block;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	font-size: 145%;
	line-height: 1.15;
	text-align: center;
	white-space: normal;
	overflow-wrap: break-word;
}
.page-contact .webform-client-form .form-actions input{
	width: auto;
	max-width: 100%;
	font-size: 150%;
	padding: 16px 28px;
}
.blckPedidosBtn .linkwrap a{
	position: fixed !important;
	right: 12px !important;
	bottom: 12px !important;
	top: auto !important;
	left: auto !important;
	width: 122px !important;
	max-width: 122px !important;
	min-height: 44px;
	justify-content: center;
	padding: 10px 8px;
	font-size: 80%;
	margin: 0 auto;
	transform: translateY(0) !important;
}
.blckPedidosBtn .linkwrap a span:first-child{
	display: none;
}
.blckPedidosBtn .linkwrap a::before{
	content: 'Pedir';
}
.blckPedidosBtn .linkwrap a .cta-arrow{
	display: none;
}
.blckNuestraHistoria{
	padding: 15% 0;
}
.blckNuestraHistoria .boxwrapper .box{
	padding: 0 10px;	
}
.blckNuestraHistoria .boxwrapper .box.box2 .block-title{
	display: inline-block;
	width: auto;
	max-width: calc(100% - 20px);
	height: auto;
	margin: 18px auto 22px;
	padding: 0 8px 14px;
	font-size: 205%;
	line-height: 1.08;
	white-space: nowrap;
}
.blckNuestraHistoria .boxwrapper .box.box2 .block-title::after{
	left: 8px;
	width: calc(100% - 16px);
}
.blckNuestraHistoria .boxwrapper .box.box2 p{
	line-height: 1.55;
	text-align: left;
}
.blckNuestraFamilia{
	padding: 12% 0;	
}
.blckNuestraFamilia .box{
	padding: 0 10px !important;
}
.blckBusqueda .container-inline div{
	max-width: 70%;
}
.blckTagsCloud,
.blckArticulosRecientes{
	margin: 10px;
}
.blckMnpnlSedes .region .region-inner .block,
.blckMnpnlSedes .block-content .node{
	margin-bottom: 0;
}
.blckMnpnlSedes .region-two-66-33-second .block-inner{
	font-size: 80%;
	line-height: normal;
	padding: 4% 0 0;
	margin-top: 6px;
	margin-bottom: 20px;
}
.blckMnpnlSedes .region-two-66-33-second .region-inner section.block{
	position: inherit;
	top: inherit;
	left: inherit;
	transform: inherit;
	width: 100%;	
}
#contact-site-form,
#webform-client-form-107{
	font-size: 85%;
}
.webform-client-form .itemFechaReserva select {
	max-width: 20%;
	font-size: 100%;
	padding: 12px 4px;
}
#contact-site-form #edit-submit{
	padding: 15px 30px;
}
.blckMenuProductos .block-content ul.menu{
	margin: 0;
	padding: 0;
}
.blckMenuProductos .block-content ul.menu li{
	width: 100%;
	max-width: 50%;
    padding: 5px 3px;
    box-sizing: border-box;	
}
.blckMenuProductos .block-content ul.menu li a{
	webkit-border-radius: 15px !important;
	-moz-border-radius: 15px !important;
	border-radius: 15px !important;
	padding: 10px;
	font-size: 100%;
}
.blckAcompBurger .boxwrapper .box.box2 table{
	margin-bottom: 0;
}
.blckAcompBurger .boxwrapper .box.box2 table thead tr th{
	line-height: normal;
}
.fondoRojoTop::before{top: -1px;}
.fondoRojoBottom::after{bottom: -1px;}
footer::before{top: -1px;}
.page-node-146 #page-title{
	/*margin-top: 4%;*/
}

.blckPesosCop{
	margin: 20px;
}
.blckPesosCop .starmain{
	display: inline;
	float: left;
}
.blckPesosCop div{
	display: table;
}

/*
 * BLOQUE ACOMPAÑANTES Y ADICIONES
 */
.blckAcompAdiciones .boxwrapper .box{
	-webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
	padding: 10px;
}
.blckPostresMaltedas .boxwrapper{
	-webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
	padding: 10px;
}
#block-block-35{
	margin-bottom: 0;
}

/* =============================================================================
 *   Node Styling
 * ========================================================================== */
.page-node-5 .field-body .boxwrapper .box .block-title{
	width: 100%;
	max-width: 300px;
	background-size: 300px;
	height: 80px;	
}
.page-node-5 .field-body .blckNuestraHistoria .boxwrapper .box.box2 .block-title{
	width: auto;
	height: auto;
	max-width: calc(100% - 20px);
	background-size: auto;
}
.page-node-5 .field-body .imgwrap img{
	max-width: 90% !important;
	padding: 10px 5%;	
}
.page-node-10 .field-body .block-title{
	width: 100%;
	max-width: 300px;
	background-size: 300px;
	height: 70px;	
}
.page-menu-entradas .blckTxtMenuTop .block-content h2,
.blckTxtMenuTop .block-content h2{
	line-height: normal;
	font-size: 140%;
	margin-bottom: 15px;	
}
.node-producto .boxwrapper .box.box2{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 70%;
	-ms-flex: 0 1 70%;
	flex: 0 1 70%;	
}
.node-producto .boxwrapper .box.box3,
.node-producto .boxwrapper .box.box4{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 100%;
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
	text-align: left;
}
.node-producto .boxwrapper .box .field-precio{
	font-size: 125%;
	text-align: center;
	border: 1px solid #f0f0f0;
	padding: 4px 10px;
	margin-bottom: 4px;
}
.node-producto .boxwrapper .box .field-precio .label-inline{
	display: inline;
	text-transform: uppercase;
}
.node-producto .boxwrapper .field-precioconacomp{
	padding: 4px 10px;
	text-align: center;
}

.node-producto .preciopizzas .field-title h2{}

.node-producto .boxwrapper .preciopizzas .field-precio{
	margin: 5px;
    padding: 5px !important;
}
.node-producto .boxwrapper .preciopizzas .field-precio::after{
	content: none;
}

/*
 * FORMULARIO ENCUESTA DE SATISFACCION
 */
 .page-node-141 #page-title{
	margin: 10% 5% 0 5%;
	line-height: normal;
	padding: 5px 5px;
}
.page-node-141 h1.field-titlealt,
.page-node-142 h1.field-titlealt, 
.page-node-143 h1.field-titlealt, 
.page-node-144 h1.field-titlealt, 
.page-node-145 h1.field-titlealt,
.page-node-147 h1.field-titlealt{
	font-size: 130%;
	margin: 10px 0;
}
.page-node-141 h1.field-titlealt .boxwrapper .box1 span,
.page-node-142 h1.field-titlealt .boxwrapper .box1 span, 
.page-node-143 h1.field-titlealt .boxwrapper .box1 span, 
.page-node-144 h1.field-titlealt .boxwrapper .box1 span, 
.page-node-145 h1.field-titlealt .boxwrapper .box1 span,
.page-node-147 h1.field-titlealt .boxwrapper .box1 span{
	padding: 5px 14px;
}
.page-node-141 h1.field-titlealt .boxwrapper .box2 span,
.page-node-142 h1.field-titlealt .boxwrapper .box2 span, 
.page-node-143 h1.field-titlealt .boxwrapper .box2 span, 
.page-node-144 h1.field-titlealt .boxwrapper .box2 span, 
.page-node-145 h1.field-titlealt .boxwrapper .box2 span,
.page-node-147 h1.field-titlealt .boxwrapper .box2 span{
	padding: 0px 15px;
}
.page-node-141 .node-webform form .form-item.webform-component,
.page-node-142 .node-webform form .form-item.webform-component,
.page-node-143 .node-webform form .form-item.webform-component,
.page-node-144 .node-webform form .form-item.webform-component,
.page-node-145 .node-webform form .form-item.webform-component,
.page-node-147 .node-webform form .form-item.webform-component{
	font-size: 110%;
}
.page-node-141 .node-webform form .form-item .form-radios,
.page-node-142 .node-webform form .form-item .form-radios,
.page-node-143 .node-webform form .form-item .form-radios,
.page-node-144 .node-webform form .form-item .form-radios,
.page-node-145 .node-webform form .form-item .form-radios,
.page-node-147 .node-webform form .form-item .form-radios{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;	
}
.page-node-141 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-142 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-143 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-144 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-145 .node-webform form .form-item .form-radios .form-type-radio,
.page-node-147 .node-webform form .form-item .form-radios .form-type-radio{
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
	position: relative;
}
.page-node-147 .node-webform form .form-item.cambiarorden .form-radios{
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.page-node-141 .node-webform form .form-item .form-radios .form-type-radio input,
.page-node-142 .node-webform form .form-item .form-radios .form-type-radio input,
.page-node-143 .node-webform form .form-item .form-radios .form-type-radio input,
.page-node-144 .node-webform form .form-item .form-radios .form-type-radio input,
.page-node-145 .node-webform form .form-item .form-radios .form-type-radio input,
.page-node-147 .node-webform form .form-item .form-radios .form-type-radio input{
	width: auto;
    position: absolute;
    top: 3px;
    left: 54%;
    margin: 5px 0;
}
.page-node-141 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-142 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-143 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-144 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-145 .node-webform form .form-item .form-radios .form-type-radio > label,
.page-node-147 .node-webform form .form-item .form-radios .form-type-radio > label{
    float: left;
    width: 50%;
    text-align: right;
    margin: 5px 0;
    line-height: normal;
}
#edit-submitted-recomendaria-atrium-a-otras-personas .form-item{
	width: inherit;
}
#edit-submitted-recomendaria-atrium-a-otras-personas .form-item{
	width: inherit;
}

/*
 * NODE TRABAJA CON NOSOTROS 
 */
 /* Titulo de la pagina */
.page-node-151 h1.field-titlealt{
	margin: 0 auto;
}
.page-node-151 h1.field-titlealt .boxwrapper .box1{
	font-size: 90%;
}
.page-node-151 h1.field-titlealt .boxwrapper .box2{
	font-size: 55%;
}
.page-node-151 .field-name-body.view-mode-full{
margin: 20px 0% 4% 0%;
}
.adjuntarhv #edit-submitted-adjuntar-su-hv-upload{
	width: 100%;
}
.adjuntarhv #edit-submitted-adjuntar-su-hv-upload-button{
	margin: 15px 0 0 0;
}
}

/* /sites/all/themes/at_atrium2021/css/responsive.tablet.portrait.css | only screen and (min-width:581px) and (max-width:768px) */
@media only screen and (min-width:581px) and (max-width:768px) {
/*
 *   Important Information about this CSS File
 *
 * - Do not delete or rename this file, if you do not use it leave it blank (delete
 *   everything) and the file will be skipped when you enable Production Mode in
 *   the Global theme settings.
 *
 * - Read the _README file in this directory, it contains useful help and other information.
 */
/* Increase the body font size on small devices */
/* line 16, ../sass/responsive.tablet.portrait.scss */
html {
  font-size: 81.3%;
}
/*# sourceMappingURL=responsive.tablet.portrait.css.map */
#logo{
	padding: 5px 0;
}
#logo img{
	max-width: 70px;
}
#header .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 50%;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
	text-align: center;
	padding: 0 5%;
	box-sizing: border-box;	
}
.blckBienvenida{
	background-color: #FFFFFF;
}
.blckBienvenida .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 38%;
	-ms-flex: 0 1 38%;
	flex: 0 1 38%;
	box-sizing: border-box;
}
.blckEspecialidadesFront .imgwrap a:nth-child(1),
.blckEspecialidadesFront .imgwrap a:nth-child(2),
.blckEspecialidadesFront .imgwrap a:nth-child(3){
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 31%;
	-ms-flex: 0 1 31%;
	flex: 0 1 31%;	
}
.blckEspecialidadesFront .imgwrap a:nth-child(4),
.blckEspecialidadesFront .imgwrap a:nth-child(5),
.blckEspecialidadesFront .imgwrap a:nth-child(6),
.blckEspecialidadesFront .imgwrap a:nth-child(7),
.blckEspecialidadesFront .imgwrap a:nth-child(8){
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 18%;
	-ms-flex: 0 1 18%;
	flex: 0 1 18%;	
}
.blckLasMemorables .block-title{
	text-align: center;
}
.blckLasMemorables .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 25%;
	-ms-flex: 0 1 25%;
	flex: 0 1 25%;
	padding: 0 1%;
}
.blckLasMemorables .boxwrapper .box .enlacewrap a{
	padding: 8px 16px;
	font-size: 130%;
	display: block;
}
.blckNovedadesTeaser .block-title{
	text-align: center;
}
.blckAddressFooter .boxwrapper .box{
	font-size: 85%;
}
.blckMainMenuFooter ul.menu{
	text-align: center;
	font-size: 85%;
}
#page-title{
	text-align: center;
}
.blckNuestraHistoria{
	padding: 8%;
}
.blckNuestraHistoria .boxwrapper .box.box2 .block-title{
	margin: 20px auto;
}
.blckTxtMenuTop{}
.blckTxtMenuTop .block-inner{
	padding: 0 10px;
}
.blckMenuProductos .block-content ul.menu{
	margin: 0;
	padding: 0;
}
.blckMenuProductos .block-content ul.menu li{
    padding: 5px 3px;
    box-sizing: border-box;	
}
.blckMenuProductos .block-content ul.menu li a{
	webkit-border-radius: 15px !important;
	-moz-border-radius: 15px !important;
	border-radius: 15px !important;
	padding: 10px;
	font-size: 100%;
}
.blckPedidosBtn{
	padding-top: 35px;
	background-color: #000000;
	position: relative;
}
.blckPedidosBtn .linkwrap{
	position: relative;
}
.blckPedidosBtn .linkwrap a {
	background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/pedidos_btn_h.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/pedidos_btn_h.png"));
	background-position: 50% 100%;
	background-size: 300px;
	width: 100%;
	max-width: 300px;
	height: 79px;
	bottom: 0;
	top: inherit;
	left: 50%;
	transform: translateX(-50%);
}

/* ATRIUM slim: tablet publish fixes */
html,
body{
	overflow-x: hidden;
}
#main-content-header{
	padding: 0 16px;
	box-sizing: border-box;
}
#page-title{
	display: block;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.15;
	white-space: normal;
	overflow-wrap: break-word;
}
#page-title::after{
	left: 50%;
	transform: translateX(-50%);
}
.page-contact .webform-client-form .form-actions input{
	width: auto;
	max-width: 100%;
}
.blckPedidosBtn .linkwrap a{
	position: static;
	margin: 0 auto;
	transform: none;
}
#block-block-35{
	margin-bottom: 0;
}
/*
 * NODE PRODUCTOS
 */ 
.node-producto .boxwrapper .box.box2{
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;	 
}
.node-producto .boxwrapper .box.box3{
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;	 
}
.node-producto .boxwrapper .box .field-precio .label-inline{
	display: none;
}
}

/* /sites/all/themes/at_atrium2021/css/responsive.tablet.landscape.css | only screen and (min-width:769px) and (max-width:1024px) */
@media only screen and (min-width:769px) and (max-width:1024px) {
/*
 *   Important Information about this CSS File
 *
 * - Do not delete or rename this file, if you do not use it leave it blank (delete 
 *   everything) and the file will be skipped when you enable Production Mode in
 *   the Global theme settings.
 *
 * - Read the _README file in this directory, it contains useful help and other information.
 */
/*# sourceMappingURL=responsive.tablet.landscape.css.map */
.blckPedidosBtn{
	padding-top: 35px;
	background-color: #000000;
}
.blckPedidosBtn .linkwrap a {
	background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/pedidos_btn_movil.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/pedidos_btn_movil.png"));
	background-position: 50% 100%;
	background-size: 300px;
	width: 100%;
	max-width: 300px;
	height: 79px;
	bottom: 0;
	top: inherit;
	left: 50%;
	transform: translateX(-50%);
}

/* ATRIUM slim: tablet landscape publish fixes */
html,
body{
	overflow-x: hidden;
}
#main-content-header{
	padding: 0 16px;
	box-sizing: border-box;
}
#page-title{
	display: block;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.15;
	white-space: normal;
	overflow-wrap: break-word;
}
.page-contact .webform-client-form .form-actions input{
	width: auto;
	max-width: 100%;
}
.blckPedidosBtn .linkwrap a{
	position: static;
	margin: 0 auto;
	transform: none;
}
.blckMenuProductos .block-content ul.menu{
	margin: 0;
	padding: 0;
}
.blckMenuProductos .block-content ul.menu li{
	width: 100%;
	max-width: 50%;
	padding: 5px 3px;
	box-sizing: border-box;	
}
.blckMenuProductos .block-content ul.menu li a{
	webkit-border-radius: 15px !important;
	-moz-border-radius: 15px !important;
	border-radius: 15px !important;
	padding: 10px;
	font-size: 100%;
}
#block-block-35{
	margin-bottom: 0;
}
/*
 * NODE PRODUCTOS
 */ 
.node-producto .boxwrapper .box.box2{
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;	 
}
.node-producto .boxwrapper .box.box3{
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;	 
}
.node-producto .boxwrapper .box .field-precio .label-inline{
	display: none;
}
}

/* /sites/all/themes/at_atrium2021/css/responsive.desktop.css | only screen and (min-width:1025px) */
@media only screen and (min-width:1025px) {
/*
 *   Important Information about this CSS File
 *
 * - Do not delete or rename this file, if you do not use it leave it blank (delete
 *   everything) and the file will be skipped when you enable Production Mode in
 *   the Global theme settings.
 *
 * - Read the _README file in this directory, it contains useful help and other information.
 */
/*# sourceMappingURL=responsive.desktop.css.map */
.one-sidebar.sidebar-first #main-content{
  margin-left: 40px;
}
.one-sidebar.sidebar-second #main-content{
  margin-right: 40px;
}
/* =============================================================================
 *   Wrappers
 * ========================================================================== */
.maincontentwrap{
	padding-top: 50px;
}
.page-menuqr .maincontentwrap{
	padding-top: 0;
}
/*
 * Footer wrapper
 */
footer{
	padding: 70px 0px 0px 0px;
}
 /* =============================================================================
  *   Block Styling
  * ========================================================================== */
/*
 * BLOQUE BIENVENIDA
 */  
.blckBienvenidosDomicilios .region-two-50-first .region-inner{
	padding: 12% 12% 0% 0%;
}
.blckBienvenida .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 50%;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
}
.blckBienvenida .block-content{
	padding-right: 15% !important;
}
/*
 * BLOQUE ESPECIALIDADES
 */
.blckEspecialidadesFront .block-title{
  margin-left: 50px; 
}
/*
 * BLOQUE LAS MAS MEMORABLES
 */
.blckLasMemorables .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 25%;
	-ms-flex: 0 1 25%;
	flex: 0 1 25%;	
}
/*
 * BLOQUE NOVEDADES TEASER
 */
.blckNovedadesTeaser{}
.blckNovedadesTeaser .view{}
.blckNovedadesTeaser .view .view-content{}
.blckNovedadesTeaser .view .view-content .views-row{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 31%;
	-ms-flex: 0 1 31%;
	flex: 0 1 31%;
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;	
}
/*
 * BLOQUE MINI BANNER PREMIOS
 */
.blckMiniBannerPremios{
	padding-top: 10%;
}
.blckMiniBannerPremios.sobreNosotros{
	padding-top: 0;
}
/*
 * BLOQUE NUESTRA HISTORIA
 */
.blckNuestraHistoria .boxwrapper .box,
.blckNuestraFamilia .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 50%;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;	
}
/*
 * BLOQUE TAMAÑOS DE PIZZAS
 */
.blckTamanioPizzas .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 50%;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
}
/*
 * BLOQUE ANGUS BEEF
 */
.blckAngusBeef .boxwrapper{
	max-width: 860px;
	margin: 0 auto;
}
.blckAngusBeef .boxwrapper .box.box1{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 15%;
	-ms-flex: 0 1 15%;
	flex: 0 1 15%;
}
.blckAngusBeef .boxwrapper .box.box2{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 85%;
	-ms-flex: 0 1 85%;
	flex: 0 1 85%;
}
.blckAngusBeef .boxwrapper .box p{
  padding-left: 5%;
}
.blckTxtMenuTop .block-inner{
	padding: 1% 0% 1% 0%;	
}
/*
 * BLQOUE ACOMPAÑANTES BURGER
 */
.blckAcompBurger .boxwrapper .flexCol{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 50%;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
}
.blckAddressFooter .boxwrapper .box{	
	-webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
	font-size: 80%;
	padding: 2% 1% 30px 1%;
}

/*
 * BLOQUE ACOMPAÑANTES Y ADICIONES
 */
.blckAcompAdiciones .boxwrapper{
	background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/separador.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/separador.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/separador.png"));
	background-repeat: no-repeat;
	background-position: 50% 80%;
}
.blckAcompAdiciones .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 50%;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
	padding: 0 5%;
}

/*
 * BLOQUE ACOMPAÑANTES Y ADICIONES
 */
.blckPostresMaltedas .boxwrapper{
	background-image: image-set(url("/sites/all/themes/at_atrium2021/css/images/separador.png.avif") type("image/avif"), url("/sites/all/themes/at_atrium2021/css/images/separador.png.webp") type("image/webp"), url("/sites/all/themes/at_atrium2021/css/images/separador.png"));
	background-repeat: no-repeat;
	background-position: 50% 80%;
}
.blckPostresMaltedas .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 50%;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
	padding: 0 3%;
}
/*
 * BLOQUE ALIADOS
 */
 .blckAliados{
	margin: 2% auto 0% auto;
  }

/* =============================================================================
 *   Node Styling
 * ========================================================================== */

 /*
 * NODE: SOBRE ATRIUM
 */
.page-node-5 .field-body .boxwrapper .box{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 50%;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;	
}
.nodeteaser .view-content .flexCol{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 46%;
  -ms-flex: 0 1 46%;
  flex: 0 1 46%;
}
/*
 * NODE SEDES
 */
.blckMnpnlSedes .panel-display{
	float: inherit;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;		
}
.blckMnpnlSedes .panel-display .region{
 -webkit-box-ordinal-group: 1;
 -moz-box-ordinal-group: 1;
 -webkit-order: 0;
 -ms-flex-order: 0;
 order: 0;
 -webkit-align-self: auto;
 -ms-flex-item-align: auto;
 align-self: auto;
 box-sizing: border-box;
}
.blckMnpnlSedes .panel-display .region-two-66-33-first{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-webkit-flex: 0 1 60%;
	-ms-flex: 0 1 60%;
	flex: 0 1 60%;
}
.blckMnpnlSedes .panel-display .region-two-66-33-second{
 -webkit-box-flex: 0;
 -moz-box-flex: 0;
 -webkit-flex: 0 1 40%;
 -ms-flex: 0 1 40%;
 flex: 0 1 40%;
 padding-bottom: 95px;
}
#mini-panel-footer .region-two-brick-middle .region-inner .block:first-child{
	padding: 10px 0;
}
#mini-panel-footer .region-two-brick-middle .region-inner .block:last-child{
	padding-top: 0;
}
.blckMainMenuFooter ul.menu{
	text-align: center;
}
.blckMainMenuFooter ul.menu li a{
	font-size: 90%;
}
.page-node-126 #main-content .field-viewfiles .pdf-reader-download-link{
	padding-top: 10px;
}
.blckMenuProductos .block-content ul.menu{
	margin: 0 5%;
}
.blckMenuProductos .block-content ul.menu li a{
	margin: 10px 10px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
blckTxtMenuTop .block-title{
	max-width: 330px;
}

/*
 * NODE PRODUCTOS
 */ 
.node-producto .field-precio .label-inline{
	display: none;
}

/* PRODUCTO: ARMA TU MENU */

.view.armatumenu.nodeteaser .field-body .boxwrapper .box.box1,
.view.armatumenu.nodeteaser .field-body .boxwrapper .box.box2,
.view.armatumenu.nodeteaser .field-body .boxwrapper .box.box3,
.view.armatumenu.nodeteaser .field-body .boxwrapper .box.box4{
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 25%;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
}

/*
 * FORMULARIO ENCUESTA DE SATISFACCION
 */
.page-node-141 .node-webform form,
.page-node-142 .node-webform form,
.page-node-143 .node-webform form,
.page-node-144 .node-webform form,
.page-node-145 .node-webform form,
.page-node-151 .node-webform form{
	margin: 0 10%;
}

/* ATRIUM slim: balanced address footer grid */
.blckAddressFooter .boxwrapper .box{
  -webkit-flex: 0 1 33.333%;
  -ms-flex: 0 1 33.333%;
  flex: 0 1 33.333%;
  padding: 2% 2% 24px 2%;
}
}

/* /sites/default/files/honeypot/honeypot.css */
.email-textfield { display: none !important; }

/* /sites/all/modules/webform/css/webform.css */
/**
 * @file
 * Front-end styling for the display of webforms.
 */
input.webform-calendar {
  display: none;
  padding: 3px;
  vertical-align: top;
}
html.js input.webform-calendar {
  display: inline;
}
.webform-container-inline label {
  display: inline;
  margin-right: 1em;
}
.webform-container-inline div,
.webform-container-inline div.form-item {
  display: inline;
}
.webform-container-inline div.description {
  display: block;
}
.webform-container-inline div.messages {
  display: block;
  float: left;
}
.webform-container-inline div.ajax-progress-bar div {
  display: inherit;
}
.webform-container-inline.webform-component-textarea label {
  vertical-align: top;
}
.webform-container-inline.webform-component-textarea .form-textarea-wrapper {
  display: inline-block;
}

/* Reset so that these appear the same as the label elements they replace. */
fieldset.fieldset-invisible,
fieldset.fieldset-invisible > legend {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: inherit;
  position: static;
  color: inherit;
  height: auto;
  width: auto;
  font-family: inherit;
  text-indent: 0;
  line-height: inherit;
  text-shadow: unset;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
fieldset.fieldset-invisible > legend {
  font-weight: bold;
  font-size: 0.929em;
}
/* This margin causes the fieldset to be too big. */
fieldset.fieldset-invisible > div > div.form-item:last-child,
fieldset.fieldset-invisible > table {
  margin-bottom: 0;
}

.webform-component-textarea .grippie {
  display: block;
}
.webform-progressbar {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.webform-progressbar-inner {
  height: 1em;
  background-color: #74c421;
  height: 3px;
}
.webform-progressbar-outer {
  position: relative;
  border: 1px solid #356900;
  width: 100%;
  height: 3px;
  margin: 0.35em -1px 2em;
  background-color: white;
}
.webform-progressbar-page {
  position: absolute;
  width: 7px;
  height: 7px;
  margin: -6px -4px;
  border: 1px solid #356900;
  background-color: white;
  border-radius: 5px;
}
.webform-progressbar-page.completed {
  background-color: #74c421;
}
.webform-progressbar-page.current {
  background-color: #74c421;
}
.webform-progressbar-page .webform-progressbar-page-number {
  display: none;
}
.webform-progressbar-page .webform-progressbar-page-label {
  position: relative;
  top: 10px;
  margin: 0 -10em;
}

/* /modules/file/file.css */
/**
 * @file
 * Admin stylesheet for file module.
 */

/**
 * Managed file element styles.
 */
.form-managed-file .form-file,
.form-managed-file .form-submit {
  margin: 0;
}

.form-managed-file input.progress-disabled {
  float: none;
  display: inline;
}

.form-managed-file div.ajax-progress,
.form-managed-file div.throbber {
  display: inline;
  float: none;
  padding: 1px 5px 2px 5px;
}

.form-managed-file div.ajax-progress-bar {
  display: none;
  margin-top: 4px;
  width: 28em;
  padding: 0;
}

.form-managed-file div.ajax-progress-bar div.bar {
  margin: 0;
}
