/**
   * 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 */
  }
  
  /**
   * 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;
  }
/*})'"*/
/**
   * @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;
  }
/*})'"*/
/**
   * @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;
  }
/*})'"*/
/*! jQuery UI - v1.10.2 - 2013-03-14
  * http://jqueryui.com
  * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
  
  .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width: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:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}
/*})'"*/
/*! jQuery UI - v1.10.2 - 2013-03-14
  * http://jqueryui.com
  * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
  
  .ui-widget{font-family:Verdana,Arial,sans-serif;font-size:1.1em}.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;font-size:1em}.ui-widget-content{border:1px solid #aaa;background:#fff url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;color:#222;font-weight:700}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6 url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;font-weight:400;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;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 #999;background:#dadada url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;font-weight:400;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;font-weight:400;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_222222_256x240.png)}.ui-widget-header .ui-icon{background-image:url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_222222_256x240.png)}.ui-state-default .ui-icon{background-image:url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_888888_256x240.png)}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_454545_256x240.png)}.ui-state-active .ui-icon{background-image:url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_454545_256x240.png)}.ui-state-highlight .ui-icon{background-image:url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_2e83ff_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_cd0a0a_256x240.png)}.ui-icon-blank{background-position:16px 16px}.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-on{background-position:-96px -144px}.ui-icon-radio-off{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{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}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background: #00000096}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa url(/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}
/*})'"*/
/*! jQuery UI - v1.10.2 - 2013-03-14
  * http://jqueryui.com
  * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
  
  .ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.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}input.ui-button{padding:.4em 1em}.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-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}
/*})'"*/
/*! jQuery UI - v1.10.2 - 2013-03-14
  * http://jqueryui.com
  * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
  
  .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;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}
/*})'"*/
/*! jQuery UI - v1.10.2 - 2013-03-14
  * http://jqueryui.com
  * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
  
  .ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:21px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0;background-image:none;margin-top:.5em;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:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}
/*})'"*/
/* 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;
  }
/*})'"*/
.node-unpublished {
    background-color: #fff4f4;
  }
  .preview .node {
    background-color: #ffffea;
  }
  td.revision-current {
    background: #ffc;
  }
/*})'"*/
.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 */
  }
/*})'"*/
/**
   * @file
   *   Styling for the Simple Modal Overlay module.
   *
   *   © 2014-2016 RedBottle Design, LLC, Inveniem, and House at Work.
   *   All rights reserved.
   *
   * @author Guy Paddock (guy@redbottledesign.com)
   */
  
  /* Background behind the overlay. */
  div.messages.simple-overlay {
    display: none; /* Start off hidden */
  
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
  
    width: 100%;
    height: 100%;
  
    margin: 0;
    border: none;
    padding: 10% 0;
  
    background: rgba(0, 0, 0, 0.6);
  }
  
  /* Overlay */
  div.messages.simple-overlay .message-inner {
    display: none; /* Start off hidden */
  
    position: relative;
    z-index: 201;
  
    width: 600px;
  
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-color: #6bb0cb;
  
    margin: 0 auto;
    padding: 0;
  
    box-shadow: 0 2px 15px #57595a;
    -moz-box-shadow: 0 2px 15px #57595a;
    -webkit-box-shadow: 0 2px 15px #57595a;
    filter: progid:DXImageTransform.Microsoft.Shadow(color='#57595A', direction='180', strength='5');
  
    color: #aeaaa5;
    overflow: hidden;
    background-color: white;
  }
  
  /* Title */
  div.messages.simple-overlay .message-inner .title {
    float: left; /* LTR */
  
    width: 90%;
  
    padding: 1em;
  
    color: #2698f2;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  /* Message content area. */
  div.messages.simple-overlay .content {
    clear: both;
    position: relative;
  
    width: 90%;
  
    padding: 0 1em 1em;
  }
  
  /* Close button */
  div.messages.simple-overlay .message-inner .simple-overlay-close {
    display: block;
  
    position: absolute;
    top: 1em;
    right: 1em; /* LTR */
  
    width: 18px;
    height: 17px;
  
    background: url(/sites/all/modules/simple_modal_overlay/images/btn_overlay-close.png) no-repeat 0 0;
  }
/*})'"*/
#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;
  }
/*})'"*/
/**
   * @file
   *   CSS for the YouTube Field module.
   */
  
  /* Takes effect when a field's 'size' display setting is 'responsive'. */
  .youtube-container--responsive {
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
  }
  
  .youtube-container--responsive iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
/*})'"*/
/* General indentation & positioning classes */
  
  .rteindent1 {
      margin-left: 40px;
  }
  .rteindent2 {
      margin-left: 80px;
  }
  .rteindent3 {
      margin-left: 120px;
  }
  .rteindent4 {
      margin-left: 160px;
  }
  .rteleft {
      text-align: left;
  }
  .rteright {
      text-align: right;
  }
  .rtecenter {
      text-align: center;
  }
  .rtejustify {
      text-align: justify;
  }
  .ibimage_left {
      float: left;
  }
  .ibimage_right {
      float: right;
  }
/*})'"*/
/**
   * 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: none;
  }
  .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 plain style:
   * The styles are ordered & tabbed in a way that represents
   * the nesting of the generated HTML.
   */
  #cboxOverlay {
    background: #000;
  }
  #colorbox {
    outline: 0;
  }
  /* @codingStandardsIgnoreLine */
  #cboxWrapper {
  }
  #cboxContent {
    overflow: hidden;
  }
  #cboxContent,
  .cboxPhoto {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
  #cboxError {
    padding: 50px;
    border: 1px solid #ccc;
  }
  #cboxTitle {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    bottom: 0;
    left: 0;
    color: #535353;
    width: 100%;
    padding: 4px 6px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  
  #cboxLoadingOverlay {
    background: #fff;
  }
  #cboxLoadingGraphic {
    background: url(/sites/all/modules/colorbox/styles/plain/images/loading_animation.gif) no-repeat center center;
  }
  #cboxClose.cbox-close-plain {
    position: absolute;
    font-size: 20px;
    line-height: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  .cbox-close-plain:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.8);
  }
/*})'"*/
.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;
  }
/*})'"*/
.flag-message {
    position: absolute;
    top: 1.7em;
    line-height: normal;
    left: 0;
    text-align: left;
    width: 300px;
    font-size: .8em;
  }
  
  .flag-message.flag-failure-message {
    border: 1px solid ;
    border-color: #ed5;
    color: #840;
    background-color: #fffce5;
    padding: 2px;
  }
  
  .flag-wrapper {
    position: relative;
  }
  
  /* Better contextual link support, prevent line wrapping. */
  ul.contextual-links li .flag-wrapper a {
    display: inline-block;
  }
  
  ul.contextual-links li .flag-wrapper {
    display: block;
  }
  
  /* The rest deals with indicating the waiting state. */
  
  .flag-waiting a {
    /* Give an impression of a disabled link. */
    opacity: 0.5;
    filter: alpha(opacity=50); /* IE */
  }
  
  .flag-waiting .flag-throbber {
    background: url(/sites/all/modules/flag/theme/flag-throbber.gif) no-repeat right center;
    padding-right: 13px;
  }
/*})'"*/
.ajax-throbber {
      margin: 40px auto;
      width: 40px;
      height: 40px;
      position: relative;
  }
  
  .ajax-progress-throbber,
  .views-admin .ajax-progress-throbber {
      background: none;
  }
/*})'"*/
.ajax-throbber.sk-cube-grid {
      position: inherit;
  }
  
  .ajax-throbber.sk-cube-grid .sk-cube {
      width: 33.33%;
      height: 33.33%;
      background-color: #333;
      float: left;
      -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
      animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  }
  
  .ajax-throbber.sk-cube-grid .sk-cube1 {
      -webkit-animation-delay: 0.2s;
      animation-delay: 0.2s;
  }
  
  .ajax-throbber.sk-cube-grid .sk-cube2 {
      -webkit-animation-delay: 0.3s;
      animation-delay: 0.3s;
  }
  
  .ajax-throbber.sk-cube-grid .sk-cube3 {
      -webkit-animation-delay: 0.4s;
      animation-delay: 0.4s;
  }
  
  .ajax-throbber.sk-cube-grid .sk-cube4 {
      -webkit-animation-delay: 0.1s;
      animation-delay: 0.1s;
  }
  
  .ajax-throbber.sk-cube-grid .sk-cube5 {
      -webkit-animation-delay: 0.2s;
      animation-delay: 0.2s;
  }
  
  .ajax-throbber.sk-cube-grid .sk-cube6 {
      -webkit-animation-delay: 0.3s;
      animation-delay: 0.3s;
  }
  
  .ajax-throbber.sk-cube-grid .sk-cube7 {
      -webkit-animation-delay: 0.0s;
      animation-delay: 0.0s;
  }
  
  .ajax-throbber.sk-cube-grid .sk-cube8 {
      -webkit-animation-delay: 0.1s;
      animation-delay: 0.1s;
  }
  
  .ajax-throbber.sk-cube-grid .sk-cube9 {
      -webkit-animation-delay: 0.2s;
      animation-delay: 0.2s;
  }
  
  @-webkit-keyframes sk-cubeGridScaleDelay {
      0%, 70%, 100% {
          -webkit-transform: scale3D(1, 1, 1);
          transform: scale3D(1, 1, 1);
      }
      35% {
          -webkit-transform: scale3D(0, 0, 1);
          transform: scale3D(0, 0, 1);
      }
  }
  
  @keyframes sk-cubeGridScaleDelay {
      0%, 70%, 100% {
          -webkit-transform: scale3D(1, 1, 1);
          transform: scale3D(1, 1, 1);
      }
      35% {
          -webkit-transform: scale3D(0, 0, 1);
          transform: scale3D(0, 0, 1);
      }
  }
/*})'"*/
.view-collections-bulk select, .view-i-bulk select, .view-elements-bulk select, select#edit-bundle-element-field-color-und, select#edit-field-color-tid {
      min-height: 400px;
  	height: auto;
  }
  .view-commerce-orders .views-field-commerce-line-items {
      width: 1500px;
  }
  .view-commerce-orders .user-data {
      width: 300px;
  }
  .xhprof-ui {
      display: none;
  }
  .form-item-current-pass {
      display: none;
  }
  #edit-account .description, .profile .description {
      font-size: 11px;
      max-width: 380px;
      margin: 3px 10px 25px;
  }
  fieldset#edit-timezone, fieldset#edit-mimemail {
  	display: none;
  }
  #hover-preview-imgpreview {
      /* background: #222 url(/sites/all/themes/ceramics/css/loading.gif) no-repeat center; */
      -moz-border-radius: 10px;
      /* -webkit-border-radius: 10px; */
      /* border-radius: 10px; */
      /* padding: 1px; */
      z-index: 999;
      outline: solid 7px #d6d6d6;
  }
  .ui-widget-overlay {
      background: #777777d6;
  }
  #edit-color-wrapper option[value=All] {
      /* display: none; */
  }
  #edit-color-wrapper option[value=All]:after {
  	display: block;
      border-radius: 7px;
      width: 100px;
      text-align: center;
      height: 41px;
  	content: "T";
  }
  #element-title {
      /* position: sticky; */
      /* top: 0px; */
      /* z-index: 111; */
      /* font-size: 10px; */
  }
  .xyz {
      color: #b73f3f;
  }
  #al a {
      display: flex;
      border-radius: 4px;
      width: 120px;
      text-align: center;
      height: 39px;
      line-height: 39px;
      border: solid 1px #6f6f6f;
      box-shadow: 0 0 3px #555;
      /* color: #b73f3f; */
      background-color: #f2f2f2;
      align-items: flex-end;
  }
  svg#hamburger {
      margin: 0 10px;
  }
  a.xyz3d {
      display: block;
      border-radius: 44px;
      width: 44px;
      text-align: center;
      height: 44px;
      line-height: 38px;
      font-size: 18px;
      /* font-weight: 100; */
      /* color: #000000; */
      border: dashed 3px #b73f3f;
      box-sizing: border-box;
  }
  .calc_block_title, .calc_block .btn-danger {
  	display: none;
  }
  #search input, #search textarea {
      -webkit-appearance: none;
      border-radius: 0;
  }
  
  .view-empty {
      margin: 25px;
  	text-align: center;
  }
  ul li.leaf {
      list-style-image: unset;
      list-style-type: unset;
      padding: 0;
      margin: 0;
      /* display: block; */
  }
  #cboxTitle {
      /* text-align: center; */
      top: 0;
      font-size: 30px;
      /* font-weight: 100; */
      color: #fff;
      height: 45px !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      z-index: 1;
      background: none;
      position: fixed;
      display: block !important;
      text-shadow: 0 -1px 1px #444, 0 -1px 1px #444, 0 1px 1px #444, 0 1px 1px #444, -1px 0 1px #444, 1px 0 1px #444, -1px 0 1px #444, 1px 0 1px #444, -1px -1px 1px #444, 1px -1px 1px #444, -1px 1px 1px #444, 1px 1px 1px #444, -1px -1px 1px #444, 1px -1px 1px #444, -1px 1px 1px #444, 1px 1px 1px #444;
  }
  #cboxContent, .cboxPhoto {
      -webkit-border-radius: 0 !important;
      -moz-border-radius: 0 !important;
      border-radius: 0 !important;
  }
  div#main-menu {
      display: none;
  }
  .test {
  	display: none;
  }
  body.toolbar-drawer {
      padding-top: 0!important;
  }
  .center {
  	text-align: center;
  }
  #element-admin {
      order: -5;
  	font-size: 11px;
  }
  #element-edit {
  	order: -4;
  	font-size: 11px;
  }
  #element-edit select {
      height: auto;
  }
  .tabs {
      order: -3;
      border: none !important;
      display: flex;
  }
  .tabs li.active {
      order: -1;
  }
  .tabs a {
      background-color: #b73f3f !important;
      border: none !important;
      height: 44px !important;
      display: inline-block;
      line-height: 44px;
  	border-radius: 5px;
      margin: 25px;
  }
  .field-type-file {
      /* margin-bottom: 15px; */
      display: none;
  }
  .tabs a.active {
      /* display: none; */
      opacity: 0.2;
      /* outline: solid #717171; */
      /* background: #fff; */
  }
  
  .dont_display {
      display: none;
  }
  .admin .description {
      display: none;
  }
  .element-invisible {
      display: none;
  }
  .contextual-links-wrapper ul {
      display: none!important;
  }
  .contextual-links-wrapper:hover ul {
      display: block!important;
  }
  .admin .views-row {
      display: flex;
  }
  .views-field-field-distributors select {
      height: 100px;
  }
  .views-field-field-distributors:hover select {
      height: 700px;
      position: absolute;
      background: #fff;
      z-index: 1;
  }
  div#messages {
      /* display: none; */
  }
  .messages.error, .messages.status {
      display: none;
  }
  div#toolbar {
      display: none;
  }
  #admin-menu li {
      font-size: 12px;
  }
  /* ----------------------------------------- Base class ----------------------------------------- */
  html {
  	box-sizing: border-box;
      background: #3f3f3f;
      background-size: 15px 15px;
      background-image: repeating-linear-gradient(0deg, #000000, #000000 1px, transparent 1px, transparent 15px), repeating-linear-gradient(-90deg, #000000, #000000 1px, transparent 1px, transparent 15px);
  }
  body {
      position: relative;
      font-family: Tahoma, Arial, Verdana;
      /* width: calc(100% - 10px) !important; */
      overflow-y: scroll;
      width: 100%;
      max-width: 1920px;
      margin: auto;
      box-sizing: border-box;
      background: #fff;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
  	-webkit-text-size-adjust: 100%;
  }
  .dark {
  	background: #555;
  }
  main {
      margin: 25px 0 !important;
      /* min-width: calc(100vw - 40px); */
      min-height: calc(100vh - 148px);
      /* padding: 0 20px; */
      /* padding-bottom: 30px; */
      /* border-top: dashed 1px #e6e6e6; */
  }
  .catalog main {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-evenly;
  }
  .ui-widget-overlay-scrollfix {
      overflow-y: scroll;
  }
  .ui-helper-disable-scrolling {
      overflow-y: hidden;
  }
  .ui-dialog .ui-dialog-content {
      display: flex;
      align-items: center;
      justify-content: space-evenly;
      flex-wrap: wrap;
      padding: 0;
  }
  .ui-dialog .sim {
  	display: none;
  }
  .autotitle {
      width: 100%;
  }
  h1, h2 {
      /* display: flex; */
      /* position: relative; */
      /* max-width: calc(100% - 0px); */
      /* width: fit-content; */
      /* padding: 0 20px; */
      /* margin: auto; */
      /* align-items: center; */
      /* flex-wrap: wrap; */
      /* justify-content: center; */
      margin: 20px;
      /* z-index: 1111111; */
      /* background: #ffffff61; */
      font-size: 24px;
  	/* font-weight: 100; */
      text-align: center;
  }
  .deliv h1, .deliv h2 {
      width: 100%;
  }
  .deliv .flexup {
      justify-content: space-between;
  }
  .h1p {
      color: #444;
      /* font-weight: 100; */
  }
  h1 a, h2 a {
      margin-right: 11px;
      color: #00507f;
  }
  input, select {
  	color: #000;
  	background-color: unset;
  }
  input#myRange {
      width: 35px;
      height: 35px;
      margin: 0;
  }
  a {
    color: unset;
    text-decoration: unset;
    position: relative;
  }
  table {
      margin: auto;
  }
  ul {
      margin: 0;
      padding: 0;
      list-style: none;
  }
  p {
  	margin: 0;
  }
  img {
      display: block;
      margin: auto;
  }
  .ui-dialog {
      max-width: calc(100% - 60px) !important;
      max-height: calc(100vh - 200px);
      /* margin-left: 10px; */
      padding: 20px;
      box-shadow: #000 0 0 5px;
      position: fixed;
      top: 80px !important;
      border-radius: 7px;
      /* left: unset !important; */
      /* right: 7px !important; */
      /* max-height: calc(100vh - 100px); */
      overflow-x: hidden;
  }
  .ui-dialog .ui-dialog-titlebar {
      padding: 0;
      margin: 0;
      font-size: 0;
  }
  .ui-dialog .ui-dialog-titlebar-close {
      background: none;
      /* position: fixed; */
      border: none;
      width: 20px;
      height: 20px;
      /* padding: 0; */
      /* margin: 0; */
      /* top: 15px; */
      right: -25px;
  }
  .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
      /* padding: 0.4em; */
      font-size: 0;
      /* text-indent: -9999999px; */
  }
  .ui-widget {
      font-family: unset;
      font-size: unset;
  }
  .ui-icon-closethick {
      display: none;
  }
  
  /* ----------------------------------------- My class ----------------------------------------- */
  .m010 {
  	margin: 0 10px;
  }
  .view-menu-color-tree div div div {
      /* width: 3px; */
      box-shadow: 0 0 3px #555;
      box-sizing: border-box;
      /* height: 20px; */
      /* line-height: 20px; */
      margin: 7px;
      border-radius: 5px;
      /* font-size: 0; */
      /* display: inline-flex; */
      border-width: 1px;
  }
  .view-menu-color-tree a {
      padding: 7px 17px 9px;
      display: block;
  }
  .white {
  	border: solid #ffffff;
  }
  .beige {
      border: solid #e2d176;
  }
  .bronze {
      border: solid #a07a1b;
  }
  .lblue {
      border: solid #8ad6ef;
  }
  .yellow {
      border: solid #e2e200;
  }
  .green {
      border: solid #87d240;
  }
  .gold {
      border: solid gold;
  }
  .silver {
      border: solid #a49898;
  }
  .pink {
      border: solid pink;
  }
  .red {
      border: solid #d93232;
  }
  .brown {
      border: solid #7e5327;
  }
  .grey {
      border: solid grey;
  }
  .blue {
      border: solid #1f7aff;
  }
  .black {
      border: solid black;
  }
  .violet {
      border: solid #862686;
  }
  .orange {
      border: solid orange;
  }
  .grid, .gridc .view-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 10px;
      align-items: baseline;
      /* justify-items: center; */
  }
  .grid img, .gridc .view-content img {
  	width: 100%;
  	height: auto;
  }
  .g420 {
  	grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  }
  .flex, .flexc .view-content {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      width: -webkit-fill-available;
      justify-content: space-around;
      align-items: baseline;
      margin: auto;
  }
  .flex .coll, .flexc .coll {
      margin: 0 10px 20px;
      /* max-width: 350px; */
  }
  .flexup {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      width: -webkit-fill-available;
      justify-content: space-around;
      align-items: flex-start;
      margin: auto;
  }
  .flexaic {
      align-items: center;
      justify-content: center;
  }
  .ft {
  	align-items: flex-start!important;
  }
  .nowrap, .nowrap .view-content {
      flex-wrap: nowrap!important;
  }
  .inline, .inlinec .view-content {
      display: flex;
      white-space: nowrap;
      width: fit-content;
      overflow-y: hidden;
  }
  .inline .views-row, .inline .view-header {
      display: inline-block;
      margin: 3px;
  }
  .font0 {
      font-size: 0;
  }
  .w800 {
      max-width: 920px;
      margin: auto;
  	line-height: 35px;
  	
  }
  .w250 {
      /* display: flex; */
      /* width: 27%; */
      margin: 25px 20px;
      padding: 7px 15px;
      /* height: 44px; */
      box-sizing: border-box;
      line-height: 35px;
      /* border: solid 2px #b73f3f; */
      /* border-radius: 5px; */
      flex-wrap: wrap;
      align-items: center;
      align-content: center;
      justify-content: flex-start;
      /* box-shadow: 0 0 8px #999; */
      /* background: #fff; */
      border-radius: 7px;
      border: solid 1px #6f6f6f;
      box-shadow: 0 0 3px #555;
  }
  .deliv .w250 {
      height: auto;
  	padding: 20px 20px;
  }
  .w250h2 {
      /* font-size: 18px; */
      /* height: 34px; */
      /* line-height: 34px; */
      /* padding: 15px; */
      text-align: center;
      font-weight: 900;
      /* width: 100%; */
  }
  .view-design {
      margin: 0 20px;
  }
  .view-design .img img {
      margin-right: 3px;
  }
  .view-design .img {
      display: flex;
  }
  a.add_design {
      display: block;
      width: fit-content;
      margin: 15px 25px;
      padding: 0 20px;
      height: 44px;
      box-sizing: border-box;
      border: solid 2px #b73f3f;
      border-radius: 5px;
      align-content: center;
  }
  .zoomin img {
      cursor: zoom-in;
  }
  /* ----------------------------------------- Fab Coll ----------------------------------------- */
  span.jump {
      margin: 0 10px 0 25px;
      /* border: solid 1px; */
      padding: 0 13px 0 10px;
      height: 31px;
      line-height: 30px;
      /* position: relative; */
      /* top: 2px; */
      background: #727272;
      /* color: #fff; */
  }
  span.jump a {
      color: white;
  }
  .coll {
      /* margin: 0 10px 20px; */
      /* max-width: 350px; */
  }
  .coll a {
    display: block;
  }
  .name {
      position: absolute;
      z-index: 1;
      width: calc(100% - 20px);
  	border-bottom: solid 1px #000;
  	text-align: center;
      white-space: normal;
      padding: 10px 10px 12px 10px;
      color: #fff;
      background: #8f8f8f9e;
      font-size: 20px;
      /* font-weight: 100; */
      text-shadow: 0 -1px 1px #444, 0 -1px 1px #444, 0 1px 1px #444, 0 1px 1px #444, -1px 0 1px #444, 1px 0 1px #444, -1px 0 1px #444, 1px 0 1px #444, -1px -1px 1px #444, 1px -1px 1px #444, -1px 1px 1px #444, 1px 1px 1px #444, -1px -1px 1px #444, 1px -1px 1px #444, -1px 1px 1px #444, 1px 1px 1px #444;
  }
  .theme {
      position: absolute;
      font-size: 14px;
      margin: -30px 0 0 10px;
      color: #fff;
      text-shadow: 0 -1px 1px #444, 0 -1px 1px #444, 0 1px 1px #444, 0 1px 1px #444, -1px 0 1px #444, 1px 0 1px #444, -1px 0 1px #444, 1px 0 1px #444, -1px -1px 1px #444, 1px -1px 1px #444, -1px 1px 1px #444, 1px 1px 1px #444, -1px -1px 1px #444, 1px -1px 1px #444, -1px 1px 1px #444, 1px 1px 1px #444;
  }
  .img {
      line-height: 0;
  }
  .views-field-field-video {
      position: relative;
  }
  .video {
      position: absolute;
      margin-top: -90px;
      margin-left: 216px;
      line-height: 0;
      border: solid 4px #fff;
  }
  .view-taxonomy-collection-interiors-4 .view-header {
      display: flex;
      border: solid 5px #a21919;
      position: relative;
      top: -3px;
  }
  /* ----------------------------------------- Header ----------------------------------------- */
  header {
      position: relative;
      /* padding: 10px; */
      /* background: #fff; */
      /* z-index: 1000; */
      /* top: 0; */
      /* right: 0; */
      /* margin-top: 7px; */
      /* width: calc(100% - 0px); */
      /* padding: 5px 20px 6px; */
      /* margin: 10px 20px; */
      /* box-sizing: border-box; */
      /* border-bottom: solid 1px #555; */
  }
  #featured {
      display: flex;
      margin: 17px 26px;
      /* flex-wrap: nowrap; */
      justify-content: space-between;
      align-items: center;
  }
  #top {
      /* display: flex; */
      /* margin-bottom: 10px; */
      /* width: fit-content; */
      /* max-width: calc(100% - 40px); */
      /* width: fit-content; */
      /* text-align: center; */
      /* border-bottom: solid 1px #e7e7e7; */
      background: #f7f7f7;
      text-align: center;
      align-items: center;
      /* box-shadow: 0 0 3px #555; */
      /* margin-bottom: 13px; */
      /* flex-wrap: nowrap; */
  }
  #top a {
      display: flex;
      width: fit-content;
      padding: 6px 15px 8px;
      align-items: center;
  }
  #top a img {
      opacity: 0.65;
  }
  #top a span {
      display: flex;
      white-space: nowrap;
  }
  #name-and-slogan a {
  	font-size: 24px;
      font-family: sans-serif;
      font-weight: 900;
      user-select: none;
      color: #b73f3f;
      /* text-shadow: 0 -1px 1px #444, 0 -1px 1px #444, 0 1px 1px #444, 0 1px 1px #444, -1px 0 1px #444, 1px 0 1px #444, -1px 0 1px #444, 1px 0 1px #444, -1px -1px 1px #444, 1px -1px 1px #444, -1px 1px 1px #444, 1px 1px 1px #444, -1px -1px 1px #444, 1px -1px 1px #444, -1px 1px 1px #444, 1px 1px 1px #444; */
  }
  #site-slogan {
      /* display: none; */
      font-size: 12px;
      letter-spacing: -0.3px;
      position: relative;
      left: 2px;
      max-width: 170px;
      /* background: #fff; */
      z-index: 1;
      height: 10px;
      margin: auto;
      user-select: none;
      line-height: 0;
      /* color: #919191; */
      /* font-family: sans-serif; */
  }
  #tel {
      width: 165px;
      text-align: right;
  }
  a.tel {
      font-size: 20px;
      display: block;
  }
  a.mail {
      font-size: 18px;
  }
  #icons {
      display: flex;
      justify-content: space-between;
      width: 130px;
      align-items: flex-end;
  }
  #icons .item-list {
      width: 44px;
      height: 44px;
      overflow: hidden;
  }
  #icons ul {
      display: flex;
  }
  #icons li a.active {
      display: none;
      
  }
  #icons li a {
      /* right: 10px; */
      display: block;
      /* position: absolute; */
      /* top: 0; */
      /* cursor: pointer; */
      background-size: 44px!important;
      width: 44px;
      height: 44px;
      font-size: 0;
  }
  #icons li.first a {
      background: center url(/sites/all/themes/ceramics/images/moon.svg) no-repeat;
  }
  #icons li.last a {
      background: center url(/sites/all/themes/ceramics/images/sun.svg) no-repeat;
  }
  #views-exposed-form-search-page .views-exposed-widgets {
      display: flex;
      position: relative;
      justify-content: center;
      /* margin-top: 30px; */
      /* align-items: flex-end; */
  }
  .my-views-filter-reset {
      position: absolute;
      margin: 3px;
      right: 85px;
      /* top: -43px; */
      /* margin-left: -30px; */
      background: none;
      border: none;
      font-size: 24px;
      color: #777;
      transform: rotate(45deg);
  }
  input:-internal-autofill-selected, input:-internal-autofill-previewed {
      background-color: red!important;
      color: fieldtext !important;
  }
  input[type="text" i] {
      padding-block: 0;
      padding-inline: 0;
  }
  
  
  .abc {
      overflow: visible;
      max-width: 1000px !important;
  }
  .abc .autodialog-content {
      display: block;
  	overflow: visible;
  }
  .views-submit-button {
      position: absolute;
      right: 0;
      /* top: 4px; */
  }
  form#views-exposed-form-search-page {
      max-width: 1000px;
      /* margin: 25px auto; */
  }
  input#edit-submit-search, .abc .views-submit-button input {
      text-align: center;
      /* color: #fff; */
      height: 39px;
      background: #f2f2f2;
      /* font-size: 16px; */
      cursor: pointer;
      line-height: 33px;
      width: 95px;
      padding: 0;
      /* padding-right: 21px; */
      border: none;
      border: solid 1px #6f6f6f;
      border-radius: 0 4px 4px 0;
  }
  input#edit-keys, .abc .form-type-textfield input {
      border-radius: 4px;
      width: 400px;
      padding-right: 97px;
      height: 39px;
      /* font-size: 18px; */
      text-align: center;
      border: solid 1px #6f6f6f;
      box-shadow: 0 0 3px #555;
  }
  input#edit-keys:focus {
      /* color: #b73f3f; */
      /* background-color: #fff; */
      /* border-color: #bdbdbd; */
      /* outline: solid 1px #777; */
      /* box-shadow: 0 0 0 0.2rem rgba(158, 158, 158, 0.25); */
  }
  input#edit-keys:focus-visible {
      outline: none;
  }
  #edit-keys-wrapper {
      /* width: fit-content; */
  }
  
  /* ----------------------------------------- Main New ------------------------------------- */
  
  .view-main-theme .views-row, .view-main-collections .views-row {
      /* margin-bottom: 20px; */
  }
  .m10 {
  	margin: 10px;
  }
  
  #brands img {
      height: 43px;
      width: auto;
      margin: 30px;
  }
  /* ----------------------------------------- Main ----------------------------------------- */
  #interiors {
      display: flex;
      justify-content: center;
  }
  #interiors a {
      /* outline: solid 4px #fff; */
  }
  #interiors .view-header a:before {
  	content: "★";
      /* display: block; */
      position: absolute;
      right: 35px;
      z-index: 1;
      width: 40px;
      /* margin: 0 10px; */
      /* height: 32px; */
      line-height: 32px;
  }
  .ivideo {
  	font-size: 24px;
      position: absolute;
      top: 88px;
      margin-left: 117px;
  }
  .videorow {
      display: flex;
      outline: solid 1px #a70808;
      border: solid;
      margin: -3px;
      position: relative;
  }
  .view-cf-type .view-header, .view-cf-type .view-filters {
      margin: 15px 0;
  }
  .flexmain {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      padding: 15px 0;
      justify-content: center;
      align-items: center;
      margin: auto;
      /* background: white; */
      border-bottom: dashed 2px #cdcdcd;
  }
  .flexmain .elem {
      margin: 5px;
      padding: 5px;
      align-items: end;
  }
  .view-admin-collections-page, .view-theme-collections {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
  }
  .view-admin-collections-page .view-content, .view-theme-collections .view-content {
      max-width: 100%;
      align-items: flex-end;
  }
  .view-admin-collections-page .view-content .views-field, .view-theme-collections .view-content .views-field {
      max-width: 100%;
      overflow-y: hidden;
  }
  .view-theme-collections .views-row-last, .view-admin-collections-page .views-row-last {
      /* margin-right: 40px; */
  }
  .view-theme-collections .views-field.views-field-view {
  	margin: 0 10px;
  }
  .view-theme-collections .views-field-nothing, .view-admin-collections-page .views-field-nothing {
      margin: 0 40px;
  }
  .view-theme-collections h2, .view-admin-collections-page h2 {
      /* border-bottom: solid 1px #555; */
  }
  .views-field-description {
      margin: 20px;
  }
  /* ----------------------------------------- Element ----------------------------------------- */
  main.flex {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-evenly;
  }
  #element {
      display: flex;
      justify-content: center;
      align-items: flex-start;
  	flex-direction: row;
  }
  #block-views-element-desc-block {
      /* width: 100%; */
      padding: 30px 20px 20px;
      text-align: justify;
      text-indent: 40px;
      line-height: 27px;
  }
  #element-title, .view-element-tit {
      width: 100%;
  	order: -2;
  }
  .view.view-element-tit.view-id-element_tit.view-display-id-block {
      display: flex;
      width: 100%;
      justify-content: center;
      align-items: center;
      /* margin: 0 auto 20px; */
  }
  .view-element-tit .field-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
  }
  #element-set img {
      /* cursor: zoom-in; */
  }
  #cboxOverlay {
      cursor: zoom-out !important;
  }
  .view-element-int {
      /* width: 300px; */
      /* margin: 0 15px; */
  }
  .view-element-img {
      max-width: calc(100% - 750px);
      margin: 0 15px;
  }
  .view-element-prop {
      /* margin: 0 15px; */
  }
  .ui-dialog .view-element-img {
      max-width: calc(100% - 750px);
      margin-right: 25px;
  }
  .view-element-img img {
      max-width: 100%;
      height: auto;
  }
  .view-element-property {
      width: 320px;
  }
  .view-element-prop, .view-element-img, .view-element-int {
      position: sticky;
      top: 20px;
      z-index: 1;
  }
  .chars .views-field {
      display: flex;
      justify-content: space-between;
      /* min-width: 300px; */
      line-height: 33px;
      text-align: right;
      flex-wrap: wrap;
      border-bottom: solid 1px #dbdbdb;
  }
  .chars .views-field .field-content {
      margin-left: 20px;
  }
  .chars .views-field-add-to-cart-form {
      height: 70px;
      line-height: 70px;
      justify-content: center;
      border-bottom: none;
      width: 100%;
  }
  .chars .views-field-add-to-cart-form .field-content {
      width: 100%;
      margin-left: 0 !important;
  }
  .views-field.views-field-views-conditional.price {
  	margin-left: 0 !important;
  }
  .chars a {
      color: #00507f;
      /* font-weight: 100; */
  }
  .views-field-field-country .field-content {
      display: flex;
      align-items: center;
  }
  .country {
      /* display: flex; */
      /* text-align: center; */
      margin-right: 15px;
      /* flex-direction: column; */
      /* line-height: 5px; */
      font-size: 24px;
      /* align-content: center; */
      /* align-items: center; */
      /* font-size: 10px; */
      /* line-height: 77px; */
      /* color: #ffffff; */
      /* text-shadow: 0 -1px 1px #000, 0 -1px 1px #000, 0 1px 1px #000, 0 1px 1px #000, -1px 0 1px #000, 1px 0 1px #000, -1px 0 1px #000, 1px 0 1px #000, -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, 1px 1px 1px #000, -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, 1px 1px 1px #000; */
  }
  .chars .views-field.views-field-field-id .field-content {
      /* font-size: 18px; */
      /* font-weight: 100; */
      /* color: #ae3333; */
  }
  .views-field-field-sale {
      font-size: 14px;
      color: #777;
  }
  .view-admin-collections-page .elem, .view-theme-collections .elem {
      margin: 1px;
      padding: 5px;
  }
  .elem {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      text-align: center;
      justify-content: center;
      max-width: 228px;
      box-sizing: border-box;
      border-radius: 4px;
      padding: 0 7px;
      /* background: #fff; */
      margin: 3px;
  }
  .elem:hover {
      /* position: relative; */
      /* z-index: 1; */
      outline: solid 1px #b73f3f;
      box-shadow: 0 0 4px #555;
  }
  .elem .title, .esim .title {
      /* line-height: 20px; */
      /* margin: 5px; */
      /* max-width: 210px; */
      /* width: fit-content; */
      white-space: normal;
      margin: 7px 10px;
      text-align: left;
  }
  .elem .price, .esim .price {
      /* display: flex; */
      /* justify-content: flex-start; */
      align-items: center;
      /* margin: auto; */
      /* margin-left: 5px; */
      text-align: left;
      margin: 0 30px 1px 11px;
      /* width: fit-content; */
      /* line-height: 20px; */
  }
  .elem form {
      /* position: absolute; */
      /* right: 0; */
  }
  .elem a, .esim a {
      display: block;
      padding: 7px 0;
  }
  .view-similar .view-filters {
      text-align: right;
      width: 100%;
      margin: 17px -17px 17px;
  }
  .view-similar select#edit-theme {
    font-size: 16px;
    outline: none;
    border: none;
    background-color: unset;
  }
  .view-id-element_prop {
      width: 300px;
      /* margin-left: 30px; */
  }
  .view-element-prop .price {
      position: relative;
      /* margin: auto; */
      height: 60px !important;
      line-height: 75px;
      /* text-align: center; */
      flex-wrap: wrap;
      justify-content: center !important;
      /* align-items: center; */
      border-bottom: none;
  }
  .view-element-prop .price .views-label {
      position: absolute;
      left: 0;
      top: 3px;
      line-height: 65px;
  }
  .view-element-prop .price .eprice {
      font-size: 24px;
      /* display: block; */
      /* height: 50px; */
      line-height: 50px;
  }
  .view-element-prop .price .whatsapp {
      position: absolute;
      right: 0;
      height: 50px;
      width: 50px;
      top: 8px;
  }
  .view-element-prop .price .zapros {
      font-size: 18px;
      /* display: block; */
      /* height: 50px; */
      line-height: 50px;
  }
  .view-element-prop .price .whatsapp img {
      width: 40px;
      padding: 5px 5px 5px 10px;
  }
  .elem input, .esim input {
      /* visibility: hidden; */
      position: absolute;
      right: 3px;
      bottom: 5px;
      /* background-position-x: 36px; */
      background: url(/sites/all/themes/ceramics/images/c.svg) no-repeat;
      background-size: 28px;
      height: 26px;
      width: 29px;
      cursor: pointer;
      font-size: 0;
      border: none;
      margin: 0;
      transition-property: opacity;
      transition-duration: 0.25s;
      opacity: 0.5;
  }
  .elem:hover input {
      /* background-size: 26px; */
      /* background-color: #ffffff54; */
      /* background-position-x: 13px; */
      /* background-position-y: 10px; */
      /* outline: solid 1px #b73f3f; */
      /* border-radius: 7px 0 7px 0; */
      /* height: 40px; */
      /* width: 40px; */
      /* right: 0px; */
      /* bottom: 0; */
      /* opacity: 0.7; */
  }
  .elem input:hover {
      opacity: 1;
      /* z-index: 11111; */
      /* background-color: #ffffff; */
      /* outline: solid 1px #b73f3f; */
      /* box-shadow: 0 0 5px #555; */
  }
  #user-pass-reset input, .chars input {
      background: none;
      /* color: #000; */
      border: solid 3px #b73f3f;
      border-radius: 5px;
      margin-top: 13px;
      height: 50px;
      cursor: pointer;
      font-size: 20px;
      /* font-weight: 100; */
      width: 100%;
  	box-shadow: 0 0 3px #555;
  }
  .chars input.form-button-disabled {
      border: none;
      box-sizing: border-box;
      border-bottom: solid 2px #777;
      box-shadow: none;
      outline: none;
      color: #555;
  }
  fieldset {
      border: none;
      padding: 0;
      margin: 0;
  }
  fieldset a {
      /* display: block; */
      /* width: 100%; */
  }
  .ui-dialog h1 {
      /* margin: 0 0 30px 0; */
  }
  .ui-dialog .view-filters {
      display: none;
  }
  .ui-widget-header {
      border: none;
      background: none;
      margin-top: 15px;
      /* color: #fff; */
      /* text-shadow: 0 -1px 1px #444, 0 -1px 1px #444, 0 1px 1px #444, 0 1px 1px #444, -1px 0 1px #444, 1px 0 1px #444, -1px 0 1px #444, 1px 0 1px #444, -1px -1px 1px #444, 1px -1px 1px #444, -1px 1px 1px #444, 1px 1px 1px #444, -1px -1px 1px #444, 1px -1px 1px #444, -1px 1px 1px #444, 1px 1px 1px #444; */
      /* font-weight: 100; */
      /* height: 10px; */
      /* line-height: 10px; */
  }
  .ui-dialog-titlebar-close:hover:before, .simple-overlay-close:hover:before {
      transform: scale(0.8) rotate(45deg);
      /* color: #000; */
  }
  .ui-dialog-titlebar-close:before, .simple-overlay-close:before {
      content: '+';
      color: #fff;
      position: absolute;
      /* z-index: 2; */
      transform: rotate(45deg);
      font-size: 56px;
      line-height: 2;
      top: -49px;
      left: 20px;
      transition: all 0.3s cubic-bezier(0.77, 0, 0.2, 0.85);
  }
  .view-element-int {
      max-height: 650px;
      overflow-x: hidden;
      float: left;
      /* margin-right: 30px; */
      /* outline: solid 2px #999; */
      /* box-shadow: 0 0 5px #000; */
      /* padding: 10px 0 0 0; */
      /* border-radius: 18px; */
  }
  .view-element-int .view-content {
      /* margin: 7px; */
  }
  .view-element-int a {
      display: block;
  }
  .view-element-int .views-row, .view-similar .views-row {
      margin-bottom: 7px;
      /* margin-right: 7px; */
  }
  .view-element-int .views-row.views-row-last {
      margin-bottom: 0;
  }
  .sim {
      order: 2;
      z-index: 1;
      margin: 0 15px;
  }
  .sim a {
      display: none;
  }
  .sim a.expand-on-click {
      position: relative;
      top: 3px;
      display: block;
      text-align: center;
      width: 90px;
      height: 35px;
      line-height: 33px;
      outline: solid 1px #8b0000;
  }
  .dropped {
      font-size: 0;
      background: left url(/sites/all/themes/ceramics/images/close.svg) no-repeat;
      background-size: 40px;
      outline: none !important;
  }
  .view-similar a {
      display: block !important;
  }
  .menu-attach-block-wrapper.orientation-horizontal .block {
      width: 300px;
  	top: 20px;
  	left: 0;
  }
  #block-views-similar-block {
      position: absolute;
      margin-top: 7px;
      right: 20px;
      order: -3;
      z-index: 3;
      width: 150px;
      border-bottom: solid 1px #000;
      height: 54px;
      overflow: hidden;
  }
  #block-views-similar-block:hover {
  	width: auto;
  	height: auto;
  	border-bottom: none;
  }
  .view-element-elements {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
  }
  .view-similar {
      max-height: 880px;
      overflow: auto;
      background: #fff;
      outline: solid 1px #3f3f3f;
      border: solid 1px #000;
      box-shadow: 0 0 5px #000;
  }
  .view-similar table.pagerer {
      margin: 20px auto;
  }
  .ui-dialog .view-element-img .views-field-php {
      display: none;
  }
  .view-element-int h2 {
      max-width: 220px;
      font-size: 16px;
      line-height: 30px;
      margin: 0 auto 10px;
      border: solid 1px #777;
  }
  
  /* ----------------------------------------- Pager ----------------------------------------- */
  
  ul.pager.pager-load-more.pager-load-more-empty {
      height: 0;
      transition-property: height;
      transition-delay: 5s;
  }
  .pager {
      display: flex;
      /* margin: auto !important; */
      /* line-height: 50px; */
      font-size: 16px;
      padding: 0 !important;
      align-items: center;
      /* text-align: center; */
      /* justify-content: center; */
      /* align-content: center; */
      /* flex-wrap: wrap; */
  }
  .pager li {
      width: 42px;
      margin: 0 5px;
  }
  input.pagerer-page:hover {
      /* opacity: 0.73; */
      color: #c5c5c5;
      text-decoration: underline;
      /* border-color: red; */
  }
  .pager li.pager-item {
      width: auto;
  }
  .pager a {
      display: block;
      /* padding: 10px 20px; */
      height: 36px;
      text-align: center;
      line-height: 36px;
      /* outline: solid 1px; */
      border: solid 2px #555;
      border-radius: 5px;
      /* opacity: 0.5; */
  }
  table.pagerer {
      border: 0;
      margin: 30px auto 0;
      /* margin: auto; */
      padding: 0;
  }
  input.pagerer-page {
      width: 50px !important;
      height: 36px;
      font-size: 20px;
      text-align: center;
      border: solid 2px #b73f3f;
      border-radius: 5px;
  }
  /* ----------------------------------------- Filter ----------------------------------------- */
  .facetapi-facetapi-checkbox-links li.active a {
      display: block !important;
  }
  .facetapi-facetapi-checkbox-links li {
      display: flex;
      flex-direction: row;
  }
  
  
  
  option[selected] {
      /* display: none; */
      color: #c9c9c9;
  }
  
  .filter .views-exposed-widgets {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      /* margin: 0 auto 30px; */
  }
  .filter .views-exposed-widgets select, .filter .views-exposed-widgets input {
  	box-shadow: 0 0 3px #555;
  }
  
  
  .filter .form-type-select {
      /* border-bottom: solid 2px #e30909; */
      /* box-shadow: #464646 0 0 3px; */
      /* cursor: pointer; */
      /* outline: solid 1px #a2a2a2; */
      /* background: aliceblue; */
      /* margin: 0 10px; */
  }
  #edit-price-wrapper .views-widget {
      display: inline-flex;
  }
  input#edit-price-min, input#edit-price-max {
      width: 60px;
  	text-align: center;
  }
  #edit-price-min {
      margin-right: 5px;
  }
  #edit-price-max {
      margin-left: 10px;
  }
  select, input {
      max-height: 95px;
      height: 38px;
      padding: 3px 10px;
      font-size: 16px;
      background: none;
      outline: none;
      border: none;
      border: solid 1px #b73f3f;
      border-radius: 4px;
      box-sizing: border-box;
  }
  .view-filters select, .view-filters input {
  	box-shadow: 0 0 3px #555;
  }
  select {
      -moz-appearance: none;
      -webkit-appearance: none;
      appearance: none;
  }
  
  .filter .views-exposed-widget {
      margin: 15px;
      position: relative;
  }
  .filter .description {
      position: absolute;
      font-size: 10px;
      color: #999;
      max-width: 130px;
      text-align: center;
      margin-top: 5px;
      pointer-events: none;
  }
  .view-header, .view-filters {
      /* display: inline-flex; */
      width: 100%;
      margin: auto;
      height: auto;
      /* text-align: center; */
      margin-bottom: 15px;
  }
  .view-theme-collections .view-header, .view-theme-collections .view-filters {
      display: inline-flex;
      width: fit-content;
      margin: 0;
  }
  #element-elements {
  	text-align: center;
  }
  #element-elements .view-header, #element-elements .view-filters {
      display: inline-flex;
      width: fit-content;
      margin: 0;
      /* height: auto; */
      /* text-align: center; */
      /* margin-bottom: 15px; */
  }
  
  .views-exposed-form label, .views-exposed-form .views-widget {
      /* text-align: center; */
      /* padding-bottom: 2px; */
      /* display: inline-flex; */
  }
  .views-exposed-form label {
      position: absolute;
      top: -19px;
      left: 5px;
      font-size: 13px;
  }
  .form-item-price-max label {
      display: none;
  }
  .form-item-price-min:after {
      content: "-";
      display: inline-flex;
      /* float: right; */
      /* font-size: 18px; */
      /* position: absolute; */
      /* right: -72px; */
      /* z-index: -1; */
      /* width: 15px; */
      /* margin: 0 10px; */
      /* height: 17px; */
      /* line-height: 17px; */
  }
  .filter .views-submit-button {
      height: 0;
      width: 0;
      position: absolute;
      left: -10000px;
      margin: 0!important;
      /* display: none; */
  }
  option:checked {
      /* color: red; */
  }
  
  option:checked:after {
      /* content: "★"; */
      /* display: block; */
      /* float: right; */
      /* font-size: 18px; */
      /* position: absolute; */
      /* right: -72px; */
      /* z-index: -1; */
      /* width: 15px; */
      /* margin: 0 10px; */
      /* height: 17px; */
      /* line-height: 17px; */
  }
  
  /* --------------------------------------------- Cart ---------------------------------------------- */
  
  .entity-commerce-order {
      max-width: 1000px;
      margin: 30px auto;
      padding: 15px;
      outline: dashed 2px #b73f3f;
      border-radius: 5px;
  }
  .field-name-commerce-order-total {
      width: 33%;
      margin-right: 0;
      /* margin: 0; */
  }
  .entity-commerce-order .field-items {
      line-height: 30px;
      margin-bottom: 10px;
  }
  .component-type-commerce-price-formatted-amount {
      background: none !important;
  }
  .field-type-list-boolean {
      width: 33%;
      margin-right: 0;
  }
  
  .view-commerce-cart-form .form-actions, .cart_contents legend, .account .fieldset-legend, .field-type-file label, .field-type-file thead , .field-type-file a.tabledrag-toggle-weight, .grippie, .field-name-field-delivery label, .field-name-field-self-delivery label, .field-name-field-lift label, .field-name-field-address label, .commerce_fieldgroup_pane__group_checkbox .fieldset-legend {
      display: none!important;
  }
  .view-commerce-cart-form .view-footer {
      text-align: center;
      margin-top: 30px;
      font-size: 20px;
      line-height: 50px;
  }
  .cart_contents .views-row {
      display: flex;
      justify-content: space-around;
  }
  .view-commerce-cart-summary .view-footer {
      margin: 30px auto 20px;
      font-size: 20px;
  }
  .commerce_fieldgroup_pane__group_info .fieldset-wrapper {
      /* text-align: center; */
      display: flex;
      justify-content: space-between;
      /* margin: 0px 0; */
  }
  .commerce-line-item-views-form input.delete-line-item {
      font-size: 0;
      padding: 0;
      width: 48px;
      height: 40px;
      background: center 9px url(/sites/all/themes/ceramics/images/close.svg) no-repeat;
      background-size: 33px;
      /* padding-left: 40px; */
      /* font-size: 16px; */
      height: 48px;
      line-height: 76px;
      border: none;
      /* margin: 0 10px; */
      /* float: right; */
      font-size: 0;
      /* font-size: 10px; */
      /* line-height: 77px; */
      /* color: #ffffff; */
  }
  th.views-field.views-field-edit-delete {
      display: none;
  }
  td.views-field.views-field-edit-delete {
      border: none;
  }
  .commerce_fieldgroup_pane__group_checkbox .fieldset-wrapper {
      display: flex;
      justify-content: space-between;
  }
  .field-name-field-delivery input, .field-name-field-self-delivery input, .field-name-field-lift input {
      width: 25px;
      height: 25px;
      margin: 15px;
  }
  .commerce_fieldgroup_pane__group_checkbox .fieldset-wrapper .form-item {
      display: flex;
      align-items: center;
  }
  .field-name-field-address a {
      color: #1562b5;
  }
  .view-commerce-cart-summary {
      position: relative;
  }
  .view-commerce-cart-summary .feed-icon {
      position: absolute;
      margin-top: -50px;
      right: 0;
  }
  .field-type-file {
  	margin-bottom: 15px;
  }
  .field-name-field-file .description {
      font-size: 11px;
      color: #777;
  }
  .field-type-file .file-widget {
      display: inline-grid;
      /* line-height: 60px; */
      font-size: 13px;
      height: 70px;
      align-items: stretch;
      justify-items: stretch;
      justify-content: space-between;
      align-content: stretch;
      margin-bottom: 5px;
  }
  .field-type-file input {
  	font-size: 13px;
  }
  .field-type-file .fieldset-description {
      margin: 15px 0 3px 3px;
      color: #b73f3f;
      font-size: 13px;
      /* text-decoration: underline; */
  }
  .field-name-field-address .description {
  	margin: 5px 15px 35px;
  }
  #edit-commerce-fieldgroup-pane-group-checkbox {
      margin: 30px 0;
  }
  .ui-button-text-only .ui-button-text {
      padding: 1.4em 1em;
  }
  .description {
      /* font-size: 14px; */
      /* color: #333; */
  }
  .ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable {
      width: fit-content !important;
      overflow: visible;
      top: calc(50% - 100px) !important;
  }
  .text {
      font-size: 20px;
      /* margin: auto; */
      text-align: center;
      margin: 15px;
  }
  .links a {
      display: inline-flex;
      margin: 20px;
      font-size: 20px;
      min-width: 180px;
      text-align: center;
      justify-content: center;
      align-items: center;
      background: none;
      color: #000;
      border: solid 3px #b73f3f;
      box-sizing: border-box;
      border-radius: 5px;
      height: 50px;
      cursor: pointer;
      box-shadow: 0 0 3px #555;
  }
  input#edit-account-login-mail, .commerce_fieldgroup_pane__group_info input, .commerce_fieldgroup_pane__group_comment_group .text-full, .account input {
      line-height: 40px;
      width: 100%;
      /* margin-bottom: 30px; */
      color: unset;
      line-height: 40px;
      display: block;
      /* width: calc(100% - 33px); */
      padding: 0 15px;
      border-radius: 5px;
      border: solid 1.1px #999 !important;
      background-color: transparent !important;
      /* -webkit-box-shadow: 0 0 0 5000px whitesmoke inset; */
  }
  .commerce_fieldgroup_pane__group_comment_group {
  	margin-bottom: 25px;
  }
  form#commerce-checkout-form-checkout, .view-commerce-cart-form {
      max-width: 785px;
      margin: auto;
  }
  form#commerce-checkout-form-checkout table, .view-commerce-cart-form table {
  	width: 100%;
  }
  div.messages.simple-overlay .content, div.messages.simple-overlay .message-inner .title {
      /* clear: both; */
      /* position: relative; */
      /* width: 90%; */
      /* padding: 0 1em 1em; */
      float: unset;
      color: #333;
      font-size: 20px;
      width: fit-content;
      margin: auto;
  }
  .commerce_fieldgroup_pane__group_comment_group legend, .commerce_fieldgroup_pane__group_info legend, #commerce-checkout-form-checkout .fieldset-legend {
      display: none;
  }
  .commerce_fieldgroup_pane__group_comment_group textarea {
      line-height: 25px;
      display: block;
      padding: 7px 15px;
      min-height: 150px;
      /* width: 100% !important; */
      border: solid 1px #999 !important;
  }
  .commerce_fieldgroup_pane__group_comment_group textarea:focus-visible {
      outline: none;
  }
  .commerce_fieldgroup_pane__group_comment_group label, .account label, .field-name-field-name label, .field-name-field-phone label {
      display: block;
      /* text-align: center; */
      margin: 5px 15px;
  }
  span.form-required {
      color: #b73f3f;
      /* font-weight: 100; */
  }
  .view-commerce-cart-form h1, .view-commerce-cart-form h2, .view-commerce-cart-summary h1, .view-commerce-cart-summary h2 {
      font-weight: 100;
      /* font-size: 20px; */
  }
  .view-commerce-cart-form thead, .view-commerce-cart-summary thead {
      /* font-weight: 100; */
      /* font-size: 13px; */
  }
  .cart_contents table, .view-commerce-cart-form table {
  	border-collapse: collapse;
  }
  .cart_contents td, .view-commerce-cart-form td {
      border: solid 1px;
      vertical-align: middle;
      position: relative;
  	text-align: left!important;
  	padding: 7px;
  }
  .cart_contents th, .view-commerce-cart-form th {
      padding: 7px;
      text-align: center !important;
      font-weight: normal;
  }
  .cart_contents img, .view-commerce-cart-form img {
      /* display: block; */
      margin: 15px;
  }
  td.views-field.views-field-edit-quantity {
      padding: 5px !important;
      text-align: center !important;
  }
  .price .unit {
      margin-left: 10px;
      /* font-size: 16px; */
  }
  .views-field-edit-quantity .unit {
      position: absolute;
      font-size: 13px;
      right: 38px;
      margin-top: -23px;
  }
  .qty_pc {
      font-size: 12px;
      height: 0;
      position: relative;
      top: 3px;
      text-align: center;
      left: -12px;
      color: #621515;
  }
  .view-commerce-cart-form .view-footer a, input#edit-continue {
      display: block;
      margin: 20px auto 10px;
      /* font-weight: 100; */
      width: 300px;
      /* text-align: center; */
      justify-content: center;
      align-items: center;
      background: none;
      /* color: #000; */
      outline: solid 2px #b73f3f;
      /* box-sizing: border-box; */
      border-radius: 5px;
      padding: 0;
      border: none;
      height: 50px;
      line-height: 49px;
      cursor: pointer;
      box-shadow: 0 0 7px #555;
  }
  input#edit-cancel {
      display: none;
  }
  input:focus-visible {
      outline: unset;
  }
  
  /* ----------------------------------------- Ajax Throbber ----------------------------------------- */
  
  .ajax-throbber.sk-cube-grid {
      width: 506px;
      height: 56px;
      position: fixed;
      top: calc(50vh - 28px);
      left: calc(50% - 248px);
  }
  .ajax-throbber {
      margin: 0;
      width: 99px;
      height: 99px;
  }
  .ajax-progress {
      position: fixed;
      background: #d2d1d1db;
      z-index: 50000;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
  }
  .ajax-throbber.sk-cube-grid .sk-cube1 {
  	background-color: #bcb8b5;
  }
  .ajax-throbber.sk-cube-grid .sk-cube2 {
  	background-color: #2d2a29;
  }
  .ajax-throbber.sk-cube-grid .sk-cube3 {
  	background-color: #948c8a;
  }
  .ajax-throbber.sk-cube-grid .sk-cube4 {
  	background-color: #aaa096;
  }
  .ajax-throbber.sk-cube-grid .sk-cube5 {
  	background-color: #9f8d7e;
  }
  .ajax-throbber.sk-cube-grid .sk-cube6 {
  	background-color: #1f2f2a;
  }
  .ajax-throbber.sk-cube-grid .sk-cube7 {
  	background-color: #2f3e39;
  }
  .ajax-throbber.sk-cube-grid .sk-cube8 {
  	background-color: #2a363a;
  }
  .ajax-throbber.sk-cube-grid .sk-cube9 {
  	background-color: #ab9b95;
  }
  .ajax-throbber.sk-cube-grid .sk-cube {
      width: 40px;
      height: 40px;
      margin-right: 10px;
  }
  /* ----------------------------------------- Title ----------------------------------------- */
  
  .fabcol {
      position: relative;
      z-index: 2;
      /* top: 1px; */
      /* left: 0px; */
      background-image: url(/sites/all/themes/ceramics/images/collection.svg);
      /* background-size: 48px; */
      /* padding-left: 0px; */
      /* height: 48px; */
      /* margin: 0 15px; */
      /* background: center 9px url(/sites/all/themes/ceramics/images/pdf.svg) no-repeat; */
      background-size: 50px;
      /* padding-left: 40px; */
      /* font-size: 16px; */
      width: 50px;
      height: 50px;
      /* line-height: 25px; */
      /* margin: 15px 5px; */
      float: left;
      font-size: 0;
      /* font-size: 10px; */
      /* line-height: 77px; */
      /* color: #ffffff; */
      /* text-shadow: 0 -1px 1px #000, 0 -1px 1px #000, 0 1px 1px #000, 0 1px 1px #000, -1px 0 1px #000, 1px 0 1px #000, -1px 0 1px #000, 1px 0 1px #000, -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, 1px 1px 1px #000, -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, 1px 1px 1px #000; */
  }
  .fabcol a {
      padding: 10px;
      display: block;
      min-width: 250px;
  }
  .fabcol a:hover {
      background: #ebebeb;
  }
  .attributes {
      position: absolute;
      width: 0;
      overflow: hidden;
      text-shadow: none;
      font-size: 16px;
  }
  .title-col {
      line-height: 34px;
      position: absolute;
      top: -2px;
      left: 44px;
  }
  .fabcol:hover .attributes {
      background: #fff;
      width: 300px;
      height: auto;
      top: -10px;
      /* margin-top: -160px; */
      left: -300px;
      z-index: 2;
      padding: 14px 10px 11px 25px;
      box-shadow: #000 0 0px 5px;
      /* border-width: 3px; */
      /* border: solid 2px #b73f3f; */
      border-radius: 9px 2px 2px 9px;
      max-height: 700px;
      overflow-y: scroll;
  }
  .views-field-field-collection .attributes {
      position: relative;
      background-image: url(/sites/all/themes/ceramics/images/collection.svg);
      background-size: 33px;
      width: 33px;
      height: 33px;
      float: left;
      font-size: 0;
  }
  .views-field-field-collection .field-content:hover .attributes {
      position: absolute;
      background-image: none;
      background-size: unset;
      font-size: 16px;
      background: #fff;
      width: 300px;
      margin-left: -330px;
      height: auto;
      /* top: -10px; */
      margin-top: -160px;
      /* left: 0px; */
      z-index: 2;
      padding: 14px 10px 11px 25px;
      box-shadow: #000 0 0px 5px;
      /* border-width: 3px; */
      /* border: solid 2px #b73f3f; */
      border-radius: 9px 2px 2px 9px;
      max-height: 720px;
      overflow-y: scroll;
  }
  .views-field-field-collection .attributes .views-row {
      display: block;
  }
  .attributes .view-header, .attributes .view-footer {
      /* font-size: 12px; */
      margin: 14px 0px;
      color: #b73f3f;
      text-align: left;
  }
  .h1plus {
      display: flex;
      align-items: center;
      justify-content: center;
      /* margin-bottom: 20px; */
  }
  .h1col {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      align-content: center;
      /* margin-bottom: 20px; */
  }
  .country img {
      outline: solid 1px #000;
      border: solid 1px #fff;
      position: relative;
  }
  .site a {
      background: 7px 7px url(/sites/all/themes/ceramics/images/site.svg) no-repeat;
      background-size: 25px;
      /* opacity: 0.5; */
      padding: 0 10px 0 10px;
      height: 50px;
      font-size: 10px;
      line-height: 77px;
      color: #ffffff;
      text-shadow: 0 -1px 1px #000, 0 -1px 1px #000, 0 1px 1px #000, 0 1px 1px #000, -1px 0 1px #000, 1px 0 1px #000, -1px 0 1px #000, 1px 0 1px #000, -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, 1px 1px 1px #000, -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, 1px 1px 1px #000;
      margin: 0px 20px 0 10px;
      display: block;
  }
  .site {
      float: left;
      margin: 15px;
  }
  .pdf {
      order: 1;
  }
  .pdf a {
      background: center 9px url(/sites/all/themes/ceramics/images/pdf.svg) no-repeat;
      background-size: 36px;
      /* padding-left: 40px; */
      /* font-size: 16px; */
      height: 50px;
      line-height: 76px;
      margin: 15px;
      float: right;
      font-size: 0;
      font-size: 10px;
      /* line-height: 77px; */
      color: #ffffff;
      text-shadow: 0 -1px 1px #000, 0 -1px 1px #000, 0 1px 1px #000, 0 1px 1px #000, -1px 0 1px #000, 1px 0 1px #000, -1px 0 1px #000, 1px 0 1px #000, -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, 1px 1px 1px #000, -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, 1px 1px 1px #000;
  }
  /* ----------------------------------------- Pages ----------------------------------------- */
  
  
  .cont .field-item {
      position: relative;
      display: flex;
      /* align-content: center; */
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
  }
  .cont h1 {
      width: calc(100% - 40px);
  }
  .about, .contacts {
      max-width: 380px;
      line-height: 33px;
      padding: 20px;
      border-radius: 7px;
  	border: solid 1px #6f6f6f;
      box-shadow: 0 0 3px #555;
  }
  #user-pass, #user-login, #user-pass-reset {
      text-align: center;
      margin-top: 60px;
  }
  #user-pass label, #user-login label, #user-pass-reset label {
      display: none;
  }
  #user-pass .description, #user-login .description, #user-pass-reset .description {
      font-size: 12px;
      /* color: #333; */
  }
  #design-node-form input, .profile input, #edit-account input, #user-pass input, #user-login input, #user-pass-reset input, input#edit-field-address-und-0-value, #user-profile-form input {
      text-align: center;
      /* height: 44px; */
      width: 400px;
      box-sizing: border-box;
      border: solid 2px #b73f3f;
      border-radius: 5px;
      /* margin-top: 30px; */
  }
  #user-profile-form input, #user-profile-form .field-type-text, #user-profile-form .form-actions {
      text-align: center;
      margin: auto;
  }
  #design-node-form, #design-node-form .form-item, #edit-account, #edit-account .form-item {
      /* font-size: 18px; */
      display: flex;
      flex-direction: column;
      align-content: center;
      justify-content: center;
      align-items: center;
  }
  
  .password-strength {
      margin: 30px 0;
  }
  .terms {
  	line-height: 30px;
      width: calc(100% - 450px);
  }
  button.btn.btn-block.btn-danger {
      display: none;
  }
  .map {
      width: calc(100% - 490px);
      /* padding: 20px; */
      border-radius: 7px;
      overflow: hidden;
  	border: solid 1px #6f6f6f;
      box-shadow: 0 0 3px #555;
  }
  .deliv {
      margin: 0 50px;
  }
  .deliv .field-item {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      /* align-items: flex-start; */
  }
  .dcalc {
      /* position: sticky; */
      /* right: 30px; */
      top: 0;
      margin: 0 15px 30px;
      text-align: center;
      /* width: 370px; */
      /* width: 370px; */
      max-height: 570px;
      overflow: hidden;
      border: solid 2px #b73f3f;
      border-radius: 5px;
      box-sizing: border-box;
      max-width: 400px;
      height: 515px;
      overflow: hidden;
  }
  .icalc {
      padding: 20px 15px 0px 35px;
      /* color: #8b3e1a; */
      /* font-size: 13px; */
      text-align: left;
  }
  /* ----------------------------------------- Footer ----------------------------------------- */
  footer {
      /* position: absolute; */
      /* width: 100%; */
  }
  #footer {
      /* margin-top: 25px; */
  }
  .cart-empty-page {
      margin-top: 70px;
      text-align: center;
  }
  #oferta {
      width: 100%;
      /* color: #fff; */
      background: #f2f2f2;
      padding: 5px 0px;
      text-align: center;
      /* text-shadow: 0 -1px 1px #444, 0 -1px 1px #444, 0 1px 1px #444, 0 1px 1px #444, -1px 0 1px #444, 1px 0 1px #444; */
  }
  *::-webkit-scrollbar, html *::-webkit-scrollbar {
      /*height: 17px;*/
      /*width: 17px;*/
  }
  *::-webkit-scrollbar-track, html *::-webkit-scrollbar-track {
      /*background: #fff;*/
  }
  *::-webkit-scrollbar-thumb, html *::-webkit-scrollbar-thumb {
      /*background-color: #b73f3f;*/
  	/*border-radius: 10px;*/
      /*border: 7px solid #fff;*/
  }
  
  
  .mabc {
      position: fixed;
      left: unset !important;
      right: 10px;
      top: 30px !important;
  }
  .abc ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .abc li {
      margin: 0;
      display: inline-block;
      text-align: left;
      font-size: 18px;
  }
  .abc .item-list {
      width: fit-content;
      margin: auto;
      max-width: 980px;
      margin-bottom: 12px;
  }
  .abc .view-menu-theme .view-content {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
  }
  .abc .view-menu-theme {
      max-width: 980px;
      margin: 20px auto;
  }
  .abc .view-menu-theme a {
      display: inline-flex;
      min-width: 138px;
      height: 26px;
      line-height: 26px;
      margin: 7px;
      padding: 10px 20px;
      border: solid 1px #b73f3f;
      border-radius: 8px;
      justify-content: center;
      box-shadow: 0 0 1px #b73f3f;
  }
  .abc .item-list .item-list {
      z-index: 5;
      /* transition-property: visibility; */
      /* transition-delay: 0.1s; */
      visibility: visible;
  }
  .abc .item-list li:hover .item-list {
      visibility: visible;
  }
  .abc .item-list .item-list .item-list {
      left: -10000px;
      position: absolute;
  }
  .abc ul a:hover {
      background: #c5c5c5;
      box-shadow: #000 0 0 1.5px;
  }
  .abc .item-list ul li a {
      pointer-events: none;
      padding: 7px 12px;
      line-height: 34px;
      color: unset;
  }
  .abc .item-list ul li:hover {
      position: relative;
      background: #c5c5c5;
  }
  .abc .item-list ul li a:hover {
      position: relative;
  }
  .abc .item-list ul ul li {
      display: block;
      padding: 0;
  }
  .abc .item-list ul ul a {
      pointer-events: all;
      color: unset;
      display: block;
      min-width: 250px;
      font-weight: normal;
      padding: 0 5px 0 20px;
      min-height: 34px;
      line-height: 34px;
  }
  
  
  
  .abc .item-list .item-list {
      position: relative;
      width: 0;
      height: 0;
      overflow: hidden;
      /* direction: rtl; */
  }
  .abc .item-list .item-list:hover {
      overflow: scroll;
  }
  .abc .item-list li:hover .item-list {
      overflow: visible;
      margin-left: 0;
      z-index: 9;
  }
  .abc ul ul {
      display: block;
      height: 100vh;
      width: 400px;
      overflow: visible;
  }
  .abc .item-list ul li .item-list ul {
      /* overflow-y: scroll; */
      position: relative;
      left: -8px;
      background-color: #fff;
  }
  .abc ul ul {
      display: block;
      height: 100vh;
      width: 400px;
      overflow: visible;
  }
  .abc .item-list ul ul li {
      display: block;
      padding: 0;
  }
  .abc .item-list .item-list li:hover .item-list {
      position: absolute;
      left: 0;
      width: 0;
      height: 0;
  }
  .abc .item-list li:hover .item-list {
      visibility: visible;
  }
  .abc .item-list .item-list ul li .item-list ul {
      position: fixed;
      top: -10000px;
  }
  .abc .item-list ul li:hover .item-list ul {
      display: block;
      position: relative;
      width: 300px;
      max-height: calc(100vh - 200px);
      /* background: #fff; */
      overflow-x: hidden;
      outline: solid 1px #555;
  }
  .abc .item-list .item-list ul li:hover .item-list ul {
      position: fixed;
      top: 107px;
      left: auto;
      background: #eeeeee;
      overflow-x: hidden;
      /* direction: ltr; */
  }
  .ui-widget-content {
      /* border: none; */
      color: unset;
  }
  span.ui-spinner.ui-widget.ui-widget-content.ui-corner-all {
      height: auto !important;
  }
  .ui-widget-content a {
      color: unset;
  }
  .ui-spinner-input {
      margin: 0 30px;
      text-align: center;
      min-width: 80px;
  }
  .ui-spinner a.ui-spinner-button {
      border: 0;
  	margin: 0;
  	border-radius: 0;
      width: 30px;
      height: 38px;
  }
  .ui-spinner a.ui-spinner-button span {
      position: relative;
      margin-top: 0;
      padding: 0;
      top: 0;
      width: 30px;
      height: 38px;
  }
  .ui-spinner-down {
      position: absolute;
      left: 0;
  }
  .ui-spinner-up {
      position: absolute;
      right: 0;
  }
  .ui-icon-minus {
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20px' height='20px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6 12L18 12' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e")!important;
      background-position: 4px 9px;
  }
  .ui-icon-plus {
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20px' height='20px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6 12H18M12 6V18' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e")!important;
      background-position: 5px 9px;
  }
  .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
      background: unset;
      cursor: pointer;
  }
  /* ----------------------------------------- 1512 ----------------------------------------- */@media screen and (max-width: 1512px) {
 .view-element-int img {
      width: 280px;
      height: auto;
  }
  .view-id-element_prop {
      width: 250px;
      /* margin-left: 30px; */
  } 
}/* ----------------------------------------- 1280 ----------------------------------------- */@media screen and (max-width: 1280px) {
 input#edit-submit-search, .abc .views-submit-button input {
      width: 75px;
  }
  #icons {
      width: 110px;
  }
  input#edit-keys, .abc .form-type-textfield input {
      /* width: 240px; */
  } 
}/* ----------------------------------------- Mobile ----------------------------------------- */@media screen and (max-width: 1080px) {
 .ui-spinner-input {
      margin: 0 40px;
      text-align: center;
      min-width: 90px;
  }
  .ui-spinner a.ui-spinner-button {
      width: 40px;
      height: 55px;
  }
  .ui-spinner a.ui-spinner-button span {
      width: 40px;
      height: 55px;
  	background-size: 30px;
  }
  .ui-icon-minus {
      background-position: 4px 14px;
  }
  .ui-icon-plus {
      background-position: 5px 14px;
  }
  
  
  .view-element-int .views-row, .view-similar .views-row {
      margin-right: 7px;
  }
  .w250 {
      line-height: 50px;
      font-size: 30px;
  }
  body {
  	font-size: 30px;
  }
  .views-field-edit-quantity .unit {
      /* position: absolute; */
      font-size: 20px;
      /* right: 38px; */
      /* margin-top: -23px; */
  }
  .about, .contacts {
  	order: -1;
      max-width: unset;
      padding: 50px;
      margin: 30px 20px;
  }
  .about img, .contacts img {
  	width: 45px!important;
  	height: 70px!important;
  }
  main p {
      line-height: 70px;
  }
  .elem input {
      background-size: 42px !important;
      /* right: 15px; */
      /* bottom: 15px; */
      width: 42px;
      height: 42px;
  }
  #top {
      justify-content: center;
  }
  #top a {
  	padding: 20px;
  }
  #top a img {
      height: 37px !important;
      width: 57px !important;
  }
  .abc .item-list .item-list {
      left: 15px;
      margin-left: 0;
      width: 100%;
      max-height: calc(100vh - 100px);
      max-width: calc(100% - 60px);
  }
  .abc .item-list li:hover .item-list {
      visibility: visible;
  }
  .abc .item-list .item-list ul {
      max-width: 400px;
      flex-direction: column;
  }
  .abc {
      max-height: calc(100vh - 200px);
      width: calc(100% - 70px) !important;
  	max-height: calc(100vh - 350px) !important;
      height: calc(100vh - 350px) !important;
      top: 100px !important;
      text-decoration: none;
  	overflow: visible;
  }
  .abc .autodialog-content {
      /* margin-top: 100px; */
  }
  .abc .item-list ul li:hover .item-list ul {
      position: fixed;
      left: 25px;
      width: calc(100% - 100px);
      max-width: inherit;
      height: auto;
      max-height: calc(100% - 375px);
      outline: solid 1px #ffffff;
      border-radius: 4px;
      box-shadow: 0 0 5px #000;
  }
  .abc li {
      font-size: 30px;
      line-height: 65px;
      text-align: center;
      width: 6%;
      min-width: 50px !important;
  }
  .abc li.first {
      width: 72px !important;
  }
  .abc li.last {
      width: 85px!important;
  }
  .abc li li.first, .abc li li.last {
  	width: auto!important;
  }
  .abc li li {
      width: auto!important;
  }
  .abc .item-list ul ul a {
      min-width: 400px;
      padding: 0 25px;
      text-align: left;
      min-height: 60px;
      line-height: 60px;
  }
  .abc .item-list ul ul .bold:after {
      left: 420px;
      line-height: 60px;
  }
  #name-and-slogan {
      /* line-height: 80px; */
      /* width: calc(58% - 50px); */
  }
  #search {
      order: 3;
      /* display: flex; */
      /* justify-content: center; */
      width: calc(65% - 50px);
      /* margin: 0 25px; */
      margin: 30px 0;
  }
  input#edit-keys {
      width: 100%;
      height: 80px;
      line-height: 80px;
      font-size: 30px;
      /* border: solid 2px #b73f3f; */
  }
  input#edit-submit-search {
      /* font-size: 30px; */
      height: 80px;
      /* line-height: 64px; */
      width: 130px;
      /* margin-right: 4px; */
  }
  #catalog {
      order: 1;
      width: 30%;
  }
  a.xyz3d {
      border-radius: 85px;
      width: 85px;
      height: 85px;
      line-height: 75px;
      font-size: 30px;
      border: dashed 5px #b73f3f;
  }
  #tel {
      /* text-align: right; */
      /* order: 0; */
      /* width: auto; */
      /* margin: 0 25px; */
      width: 45%;
      /* font-size: 30px !important; */
  }
  svg#hamburger {
      margin: 0px 20px;
      height: 79px;
      width: 40px;
  }
  #al a {
      width: 230px;
      height: 78px;
      line-height: 78px;
  }
  #al a img {
  	width: 40px;
  }
  #terms, #about, #contacts {
      /* text-align: center; */
      /* font-size: 34px!important; */
  }
  #icons {
      order: 4;
      width: 30%;
      margin: 30px 0 10px 67%;
      justify-content: space-between;
  }
  #icons li a {
      width: 85px;
      height: 85px;
      background-size: 85px!important;
  }
  #icons .item-list {
      width: 85px;
      height: 85px;
  }
  #icons img {
      height: 75px !important;
  }
  .country {
      font-size: 40px;
  }
  .pdf a {
      background: center 0px url(/sites/all/themes/ceramics/images/pdf.svg) no-repeat;
      background-size: 45px;
      /* padding-left: 64px; */
      line-height: 90px;
      font-size: 20px;
  }
  .site a {
      background: 7px 3px url(/sites/all/themes/ceramics/images/site.svg) no-repeat;
  	background-size: 50px;
      height: 70px;
  	line-height: 110px;
      font-size: 20px;
  }
  .fabcol {
      background: center 0px url(/sites/all/themes/ceramics/images/collection.svg) no-repeat;
      background-size: 70px;
      height: 70px;
      font-size: 20px;
      line-height: 36px;
  }
  .fabcol a {
      font-size: 30px;
  }
  .attributes .view-header, .attributes .view-footer {
      font-size: 20px;
      margin: 30px 0px;
  }
  .country img {
      width: 40px;
      height: auto;
  }
  a.tel {
      font-size: 36px;
      display: block;
  }
  a.mail {
      font-size: 32px;
  }
  .map {
      width: 100%;
      margin: 0 20px;
  }
  .contacts {
      position: relative;
      right: auto;
      line-height: 60px;
      font-size: 30px;
      max-width: unset;
      /* width: 100%; */
      margin: 0 20px 20px;
      border: none;
      opacity: 1;
  }
  #name-and-slogan a {
      width: 100%;
      font-size: 48px;
      height: 110px;
      line-height: 110px;
      letter-spacing: 2px;
  }
  #site-slogan {
      font-size: 18px;
      top: -2px;
      max-width: 280px;
  }
  .name {
      font-size: 30px;
  }
  .theme {
      font-size: 20px;
  }
  .view-element-prop, .view-element-img, .view-element-int {
      position: relative;
      /* top: 0; */
      /* margin: 0 auto 30px; */
  }
  .view-element-int {
      width: auto;
  	margin-top: 30px;
  }
  .view-element-img {
      order: -1;
  	padding: 0 25px;
      max-width: 100%;
      margin: 0;
  }
  .view-element-prop {
          margin: 0;
          /* font-size: 30px; */
          width: calc(100% - 100px);
  }
  .menu-attach-block-wrapper.orientation-horizontal .block {
      left: -100px;
  }
  #element-property {
      width: 100%;
      margin: 50px;
      /* font-size: 30px; */
  }
  #block-views-similar-block {
      margin-top: 100px;
      font-size: 28px;
      width: 215px;
      height: 67px;
  }
  .view-similar select#edit-theme {
      font-size: 28px;
  }
  #block-views-element-desc-block {
      /* font-size: 28px; */
      line-height: 50px;
      margin: 25px 35px;
  }
  h1, h2 {
      font-size: 40px;
      margin: 40px 20px;
  }
  .chars .views-field {
      line-height: 70px;
      font-size: 34px;
      /* width: 700px; */
  }
  main.main .elem {
      width: 300px;
  }
  main.flex {
      flex-direction: row;
  }
  .elem {
      width: auto;
      /* padding: 15px 0; */
  }
  .elem a {
      /* padding: 40px 10px; */
  }
  .flex .views-row img, .flexc .view-content .views-row img {
      /* width: 47%; */
      /* height: auto; */
  }
  .elem img {
  	/* zoom: 1.6; */
  }
  #element-interiors {
      width: auto;
      margin-top: 40px;
  }
  .view-element-int .view-content {
      display: flex;
      /* width: calc(100% - 50px); */
      overflow-y: hidden;
  }
  .filter .views-exposed-form .views-exposed-widget {
      margin: 15px 5px;
  }
  .views-exposed-form label {
      top: -25px;
      font-size: 18px;
  }
  .filter select, input#edit-price-min, input#edit-price-max {
      max-height: 95px;
      /* width: 35% !important; */
      min-width: 130px;
      height: 60px;
      padding: 10px;
      font-size: 30px;
  }
  select, input {
      height: 55px;
      font-size: 30px;
  }
  .view-filters {
  	margin-bottom: 20px;
  }
  .filter .views-exposed-widgets {
      justify-content: space-around;
  }
  .view-element-prop .price .views-label {
      line-height: 130px;
  }
  .view-element-prop .price .whatsapp img {
      width: 90px;
      padding: 20px 0;
      /* line-height: 130px; */
  }
  .view-element-prop .price .whatsapp {
      height: 100px;
      width: 80px;
  }
  .view-element-prop .price .eprice {
      font-size: 70px !important;
      line-height: 130px;
  }
  .view-element-prop .price .zapros {
      font-size: 50px !important;
      line-height: 127px;
  }
  .view-element-prop .price {
      height: 130px !important;
      line-height: 130px;
  }
  .view-commerce-cart-form .view-footer a, input#edit-continue {
      margin: 40px auto;
      width: 400px;
      height: 77px;
      line-height: 74px;
  }
  .text, .links a {
      font-size: 30px;
      min-width: 200px;
      height: 77px;
  
  }
  .view-commerce-cart-summary .view-footer, .view-commerce-cart-form .view-footer {
      margin: 30px auto 40px;
      font-size: 40px;
  }
  .chars .views-field-add-to-cart-form {
      height: 110px;
      line-height: 110px;
  }
  .chars input {
  	border: solid 6px #b73f3f;
      height: 110px;
      font-size: 50px;
  }
  .pager {
      font-size: 40px;
  }
  .pager li {
      width: 80px;
  }
  .pager a {
      width: 80px;
      height: 80px;
      border: solid 2px #555;
      border-radius: 6px;
      box-sizing: border-box;
      outline: none;
      line-height: 76px;
  }
  input.pagerer-page {
  	font-size: 40px;
      width: 100px !important;
      height: 80px !important;
  }
  .pager li.pager-item {
      min-width: 100px;
  	text-align: center;
  }
  #oferta {
      width: calc(100% - 20px);
      /* font-size: 30px; */
      padding: 10px;
  }
  
  .cont .field-item {
      display: flex;
      /* align-content: center; */
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
  }
  .ui-dialog .ui-dialog-titlebar-close {
      top: -120px;
      right: 140px;
      text-decoration: none;
  }
  .ui-dialog-titlebar-close:before, .simple-overlay-close:before {
      font-size: 100px;
  	text-decoration: none;
  } 
}
/*})'"*/
