﻿/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */

/* =============================================================================
 *   Base
 * ========================================================================== */

/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */

@import url("//hello.myfonts.net/count/2d1805");


@font-face {font-family: 'Sailec-Regular';src: url('../webfonts/2D1805_0_0.eot');src: url('../webfonts/2D1805_0_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/2D1805_0_0.woff2') format('woff2'),url('../webfonts/2D1805_0_0.woff') format('woff'),url('../webfonts/2D1805_0_0.ttf') format('truetype');}


*{
    font-family: "Sailec-Regular","Trebuchet MS", "Helvetica Neue", Arial, Helvetica, sans-serif !important;
}

html {
    background: #fff;
    overflow-x: hidden;
}


body {
    font-family: "Sailec-Regular","Trebuchet MS", "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 87.5%;
    color: #3F4545;
    margin-left: -1px;
}


/* =============================================================================
 *   HTML Elements
 * ========================================================================== */

h1 {
    font-weight: normal;
    color: #3F4545;
}

h2 {
    font-weight: normal;
    color: #3F4545;
}

h3 {
    font-weight: normal;
    color: #3F4545;
}

h4 {
    font-weight: normal;
    color: #3F4545;
}

h5 {
    font-weight: normal;
    color: #3F4545;
}

h6 {
    font-weight: normal;
    color: #3F4545;
}

p {}

b,
strong {}

i,
em {}

dfn {}

sup {}

sub {}

del {}

ins {}

blockquote {}

cite {}

q {}

address {}

ul {}

ol {}

li {}

dl {}

dd {}

dt {}

abbr {}

acronym {}

pre,
code,
tt,
samp,
kbd,
var {
    font-family: "Sailec-Regular",Consolas, Monaco, 'Courier New', Courier, monospace, sans-serif;
}


/* =============================================================================
 *   Wrappers
 * ========================================================================== */

/*
 * Outer wrappers:
 * - #page-wrapper: body > #page-wrapper
 * - #page: body > #page-wrapper > #page
 * - .container: body > #page-wrapper > #page.container
 *
 * The .container class holds the page width value from theme settings.
 */
#page-wrapper {}
#page {}
#page .container {}

/*
 * Wraps all header elements - branding and .region-header
 */
#header {
    position: relative;
}

/*
 * Wraps the sidebars the content column
 */
#columns {}

/*
 * Main content column wrapper
 */
#content-column {}

/*
 * Wraps the main-content-header, the content region and feed-icons. Use this
 * wrapper to style the entire main content column
 */
#main-content {
    position: relative;
}

/*
 * Wraps the content region, avoid applying styles to this wrapper, its used
 * mainly for position and invisible gutters and can be problematic to style
 */
#content {}

/*
 * Footer wrapper
 */
#footer {
    background: #3A3E3E;
    min-height: 150px;
    position: relative;
    padding-bottom: 48px;
}

/*
 * Panels may need additional margin wrangling when in the $content region
 */
#content .panel-display {}

/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width - you can style this but never
 * add any width/margin/padding/borders etc to .container
 */

/*
 * Wraps the leaderboard
 */
#leaderboard-wrapper {}
#leaderboard-wrapper .container {}

/*
 * Wraps the header
 */
#header-wrapper {
    /* Debug styles, is this working */
    background: rgba(255, 192, 203, 0.5);
}
#header-wrapper .container {}

/*
 * Wraps the nav elements
 */
#nav-wrapper {}
#nav-wrapper .container {}

/*
 * Wraps breadcrumb
 */
#breadcrumb-wrapper {}
#breadcrumb-wrapper .container {}

/*
 * Wraps messages and help
 */
#messages-help-wrapper {}
#messages-help-wrapper .container {}

/*
 * Wraps the secondary content/preface region
 */
#secondary-content-wrapper {}
#secondary-content-wrapper .container {}

/*
 * Wraps the main content column
 */
#content-wrapper {}
#content-wrapper .container {}

/*
 * Wraps the tertiary content/postfix region
 */
#tertiary-content-wrapper {}
#tertiary-content-wrapper .container {}

/*
 * Footer wrapper
 */
#footer-wrapper {
    /* Debug styles, is this working? */
    background: rgba(255, 192, 203, 0.5);
}
#footer-wrapper .container {}


/* =============================================================================
 *   Branding
 * ========================================================================== */

/*
 * Wraps all the branding elements, logo, name and slogan
 */
#branding {}

/*
 * Logo
 */
#logo {
    padding: 10px 0;
}

#logo img {
    vertical-align: bottom;
}

/*
 * Wrapper for the site name and slogan
 */
#name-and-slogan {}

/*
 * Site name (h1)
 */
#site-name {
    margin: 0;
}

#site-name a {}

#site-name a:link,
#site-name a:visited {
    text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
    text-decoration: underline;
}

/*
 * Site slogan (h2)
 */
#site-slogan {
    margin: 0;
}


/* =============================================================================
 *   Page content header
 * ========================================================================== */

/*
 * Main content header wraps the page title, tabs and actions links
 */
#main-content-header {}

/*
 * The main page title (h1)
 */
#page-title {
    margin: 0;
}


/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */

/*
 * Feed icons
 */
.feed-icon {}

/*
 * Aggregator feed source
 */
#aggregator .feed-source .feed-icon {
    display: inline;
    float: none;
    margin-right: 10px;
}

.feed-details dt,
.feed-details dd {
    display: inline;
    margin: 0;
}

/*
 * Generic styles for the more link
 */
.more-link {}

/*
 * Generic styles for links. See the ul.links declaration in node and comment
 * stylesheets
 */
ul.links {
    margin: 0;
    padding: 0;
}

ul.links.inline {
    display: block;
}

ul.links li {
    display: inline;
    list-style: none;
    padding: 0 10px 0 0;
}

/*
 * Search results are an ordered list so reset the margin
 */
.search-results {
    margin: 0;
    padding: 0;
}

/*
 * Attribution message and link
 */
.attribution {
    display: block;
    opacity: 0.65;
    padding: 1em 0;
    text-align: center;
}

.attribution a {
    text-decoration: none;
    color: inherit;
}

.attribution a:hover,
.attribution a:focus {
    text-decoration: underline;
}


/* =============================================================================
 *   Regions
 * ========================================================================== */

/*
 * Standard region wrapper, don't add width to any regions, you will bork the
 * layout - no margin, padding or borders etc
 */
.region {}

/*
 * Regions have an inner div - perfect for adding margin, padding or borders
 */
.region-inner {}

/*
 * Regions can be nested, such as when using Panels
 */
.region-inner .region-inner {}

/*
 * Header region, embedded in the #header
 */
.region-header {}

/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
.region-help {}

/*
 * Secondary content
 */
.region-secondary-content {}

/*
 * Sits above the main content header, like a content-top region
 */
.region-highlighted {}

/*
 * Sits below the main content, like a content-bottom region
 */
.region-content-aside {}

/*
 * Sidebars - targets both
 */
.sidebar {}

/*
 * First sidebar
 */
.region-sidebar-first {}

/*
 * Second sidebar
 */
.region-sidebar-second {}

/*
 * Tertiary content
 */
.region-tertiary-content {}

/*
 * Footer region
 */
.region-footer {}


/* =============================================================================
 *   Links
 * ========================================================================== */

a {
    text-decoration: none;
}

a:link,
a:visited {}

a:active,
a.active {}

a:hover,
a:focus {
    text-decoration: none;
}


/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */

.nav {
    clear: both;
    margin: 10px 0;
}

.nav ul,
.nav ul.menu {
    margin: 0;
    padding: 0;
}

.nav li,
.nav ul.menu li {
    display: inline;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li a,
.nav ul.menu li a {
    display: block;
    /*white-space: nowrap;*/
    padding: 0 10px;
}

.nav li a:visited,
.nav ul.menu li a:visited {}

.nav li a:hover,
.nav li a:focus,
.nav ul.menu li a:hover,
.nav ul.menu li a:focus {}

.nav .block {
    margin-bottom: 0;
}


/* =============================================================================
 *   Superfish
 * ========================================================================== */

ul.sf-menu {
    margin-bottom: 0;
}

ul.sf-menu a {
    border-left: 0;
    border-top: 0;
    padding: 0 10px;
    text-decoration: none;
    height: 2.5em;
    line-height: 2.5em;
}

ul.sf-menu a:link,
ul.sf-menu a:visited {}

ul.sf-menu li {}

ul.sf-menu li:hover,
ul.sf-menu li.sfHover {
    outline: 0;
}

ul.sf-menu a {}

ul.sf-menu a:focus,
ul.sf-menu a:hover,
ul.sf-menu a:active {
    outline: 0;
}

/*
 * Superfish blocks
 */
.block-superfish {}

.block-superfish .block-inner .content {}

.block-superfish ul {
    margin: 0 !important;
    padding: 0 !important;
}

.block-superfish ul ul {}

.block-superfish ul ul ul {}

.block-superfish ul ul ul ul {}

.block-superfish li {
    margin: 0 !important;
    padding: 0 !important;
}

/*
 * Vertical style
 */
.sf-vertical {
    width: 100%;
}

.sf-vertical li {
    width: 100%;
}

.sf-vertical li.last {}

.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
    left: 100%;
    top: 0;
    margin: 0;
    padding: 0;
}

.sf-vertical li a {
    padding: 0 10px;
}

/*
 * Navbar style
 */
.sf-navbar {
    padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */
.sf-menu.sf-style-default a {
    padding: 0 10px;
}




/* =============================================================================
 *   Menu Toggles
 * ========================================================================== */

.at-mt .at-menu-toggle,
.at-mt .at-menu-toggle ul,
.at-mt .at-menu-toggle ul.menu {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.at-mt .at-menu-toggle-button {
    margin: 0;
}

.at-mt .at-menu-toggle ul a {
    padding: 0 10px;
    white-space: nowrap;
}




/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */

ul.menu {
    padding-left: 15px;
}

ul.menu ul {
    padding-left: 15px;
}

ul.menu ul ul {}

ul.menu ul ul ul {}

ul.menu li {
    margin: 0;
}

ul.menu li.collapsed,
ul.menu li.expanded,
ul.menu li.leaf {}

ul.menu li a {}

ul.menu li a:link,
ul.menu li a:visited {}

ul.menu li a:active,
ul.menu li a.active {}

ul.menu li a:hover,
ul.menu li a:focus {}

ul.menu li.active a,
ul.menu li.active-trail a {}

ul.menu li.first,
ul.menu li.last {}

/* If li.content exists it's a problem, so reset the padding */
.block .menu li.content {
    padding: 0;
}


/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */

.book-navigation {}

.book-navigation .page-links {}

.book-navigation .page-previous {}

.book-navigation .page-next {}

.book-navigation .page-up {
    /* Prevent text wrapping to a new line, assumes the string is two chars */
    min-width: 2em;
    white-space: nowrap;
}

.book-navigation .menu {
    margin-left: 0;
}


/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */

#breadcrumb {
    margin: 10px 0;
}

/* If the label is set to show in theme settings the label class is added */
#breadcrumb .breadcrumb-label {
    font-size: 1em;
    display: inline;
    padding-right: 10px;
}

#breadcrumb .breadcrumb-label:after {
    content: ":";
}

#breadcrumb ol {
    margin: 0;
    padding: 0;
}

#breadcrumb .with-breadcrumb-label ol {
    display: inline;
}

#breadcrumb li {
    list-style: none;
    display: inline;
}

#breadcrumb li.crumb-first {}

#breadcrumb li.crumb-last {}

#breadcrumb a {}

#breadcrumb a:link,
#breadcrumb a:visited {}

#breadcrumb a:active,
#breadcrumb a.active {}

#breadcrumb a:hover,
#breadcrumb a:focus {}

#breadcrumb .crumb-separator {}


/* =============================================================================
 *   Pagers
 * ========================================================================== */

ul.pager {
    clear: both;
    margin: 0;
    text-align: center;
}

.item-list ul.pager li {
    margin: 0;
}

ul.pager li {
    background-image: none;
    display: inline;
    list-style-type: none;
    padding: .5em;
}

ul.pager li.pager-current {
    font-weight: 700;
}

.block ul.pager li {
    margin: 0;
}

/*
 * Theme the various states of pager links
 */
ul.pager li {}

ul.pager li a {}

ul.pager li a:link,
ul.pager li a:visited {}

ul.pager li a:active,
ul.pager li a.active {}

ul.pager li a:hover,
ul.pager li a:focus {}

ul.pager li.pager-item {}
ul.pager li.first {}
ul.pager li.last {}
ul.pager li.pager-current {}
ul.pager li.pager-first {}
ul.pager li.pager-previous {}
ul.pager li.pager-next {}
ul.pager li.pager-last {}


/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */

#skip-link {
    left: 50%;
    margin-left: -6.5em;
    margin-top: 0;
    padding: 0 0.5em;
    position: absolute;
    width: 12em;
    z-index: 50;
}

#skip-link a {
    background: #444;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: block;
    line-height: 2;
    padding: 0;
    text-align: center;
    text-decoration: none;
}

#skip-link a:link,
#skip-link a:visited {
    background: #444;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: block;
    line-height: 2;
    padding: 0;
    text-align: center;
    text-decoration: none;
}

#skip-link a:hover,
#skip-link a:focus,
#skip-link a:active {
    outline: 0;
}


/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */

#tasks {
    margin-bottom: 15px;
}

ul.primary {
    border-bottom-color: #ccc;
    margin: 20px 0;
    padding: 0 0 0 5px;
}

ul.primary li {
    display: block;
    float: left;
    margin: 0 1px -1px;
}

ul.primary li a {
    background-color: #f5f5f5;
    border-color: #ccc;
    margin-right: 1px;
    padding: 0 10px;
    display: block;
    float: left;
    height: 1.5em;
    line-height: 1.5em;
}

ul.primary li a:hover,
ul.primary li a:focus {
    background-color: #eee;
    border-color: #ccc;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
    background-color: #fff;
    border-bottom-color: #fff;
}

ul.secondary {
    border-bottom: 1px solid #ccc;
    margin: 1em 0 0;
    padding: 0 .3em 1em;
}

ul.secondary li {
    border-right: 0;
    list-style: none;
    padding: 0 10px 0 0;
}

ul.secondary li a {}

ul.secondary li a:hover,
ul.secondary li a.active {
    border-bottom: none;
    text-decoration: underline;
}


/* =============================================================================
 *   Action links
 * ========================================================================== */

ul.action-links {
    margin: 20px 0 0;
    list-style: none;
}

ul.action-links li {}


/* =============================================================================
 *  Field Styling
 * ========================================================================== */

/*
 * Wrapper for any field
 */
.field {}

/*
 * Above and inline classes are on the field wrapper
 */
.field-label-above {}

/*
 * When labels are set to inline in field display settings the clearfix class is
 * automatically added
 */
.field-label-inline {}

.field-label-inline .field-label {
    margin: 0;
}

/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted
 * ineritance issues
 */
.field-label {
    font-size: 1em;
    font-weight: 700;
    font-family: inherit;
    line-height: inherit;
    margin-bottom: 0;
}




/*
 * Field types (Core)
 */

/*
 * Image fields use the <figure> and <figcaption> elements from HTML5
 */
.field-type-image {}

.field-type-image .caption {}

.field-type-image .full-caption {}

.field-type-image .teaser-caption {}

/*
 * Taxonomy
 */
.field-type-taxonomy-term-reference {
    /* The same bottom margin as p, blockquote, ul, ol and dl */
    margin-bottom: 1.5em;
}

.field-type-taxonomy-term-reference.field-label-inline .field-items {
    margin: 0;
    padding: 0;
}

.field-type-taxonomy-term-reference.field-label-inline .field-item {
    display: inline;
    list-style: none;
    padding: 0 10px 0 0;
}

/*
 * Text
 */
.field-type-text {}

/*
 * Long text
 */
.field-type-text-long {}

/*
 * Text with summary
 */
.field-type-text-with-summary {}

/*
 * File
 */
.field-type-file {}

/*
 * Number/Integer
 */
.field-type-number-integer {}

/*
 * Decimal
 */
.field-type-number-decimal {}

/*
 * Number float
 */
.field-type-number-float {}

/*
 * List
 */
.field-type-list-text {}

/*
 * List boolean
 */
.field-type-list-boolean {}

/*
 * List integer
 */
.field-type-list-integer {}

/*
 * List float
 */
.field-type-list-float {}

/*
 * Field types (Contrib)
 */
.field-type-datetime {}

.field-type-node-reference {}

.field-type-user-reference {}

/*
 * Named fields
 */
.field-name-body {}

.field-name-field-image {}

.field-name-field-tags {}

/*
 * Underscores in field name are replaced with dashes
 */
.field-name-field-FIELDNAME {}

/*
 * Image Alignment Theme Settings - included here so you can easily override
 */
/*
 * Float none setting
 */
.ia-n .field-type-image,
.iat-n .field-type-image {}

/*
 * Float left setting
 */
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
    margin: 5px 20px 15px 0;
}

/*
 * Centered setting
 */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
    margin: 5px auto 15px;
}

/*
 * Float right setting
 */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
    margin: 5px 0 15px 20px;
}


/* =============================================================================
 *   Block Styling
 * ========================================================================== */

/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
.block {
    margin-bottom: 20px;
}

/*
 * Inner wrapper for most blocks, good for margin, padding and borders,
 * block_system_main does not have it
 */
.block-inner {}

/*
 * The first block in the region
 */
.block.first {}

/*
 * The last block in the region
 */
.block.last {}

/*
 * Zebra striping for each block in the region
 */
.block.odd {}

/*
 * Zebra striping for each block in the region
 */
.block.even {}

/*
 * Block title
 */
.block-title {
    margin: 0;
}

/*
 * Block content wrapper
 */
.block-content {}

/*
 * Match item list and block menu margin and padding
 */
.block-content {}

.block-content ul,
.block-content ol {
    padding: 0 0 0 15px;
}

.block-content li {
    margin: 0;
    padding: 0;
}

/*
 * Block for the latest news items in the first category
 */
#block-aggregator-category-1 {}

/*
 * Block for the latest news items in the first feed
 */
#block-aggregator-feed-1 {}

/*
 * First block created with "Add block" link
 */
#block-block-1 {}

/*
 * "Recent blog posts" block
 */
#block-blog-recent {}

/*
 * "Book navigation" block for the current book's table of contents
 */
#block-book-navigation {}

/*
 * "Recent comments" block
 */
#block-comment-recent {}

/*
 * "Active forum topics" block
 */
#block-forum-active {}

/*
 * "New forum topics" block
 */
#block-forum-new {}

/*
 * Language switcher block
 */
#block-locale-language {}

/*
 * Custom menu block
 */
#block-menu-menu-NAME {}

/*
 * "Recent content" block
 */
#block-node-recent {}

/*
 * "Syndicate" block for primary RSS feed; see also page.css's .feed-icon
 */
#block-node-syndicate {}

/*
 * "Most recent poll" block
 */
#block-poll-recent {}

/*
 * "Author information" block for the profile of the page's author
 */
#block-profile-author-information {}

/*
 * "Search form" block
 */
#block-search-form {}

/*
 * "Shortcuts" block
 */
#block-shortcut-shortcuts {}

/*
 * "Popular content" block
 */
#block-statistics-popular {}

/*
 * "Main menu" block
 */
#block-system-main-menu {}

/*
 * "Management" block for Drupal management menu
 */
#block-system-management {}

/*
 * "Navigation" block for Drupal navigation menu
 */
#block-system-navigation {}

/*
 * "User menu" block for Drupal user menu
 */
#block-system-user-menu {}

/*
 * "System help" block
 */
#block-system-help {}

/*
 * "Main page content" block
 */
#block-system-main {
    margin:0;
    overflow: hidden;
}

/*
 * "Powered by Drupal" block
 */
#block-system-powered-by {}

/*
 * "User login form" block
 */
#block-user-login {}

/*
 * "Who's new" block for a list of the newest users
 */
#block-user-new {}

/*
 * "Who's online" block for a list of the online users
 */
#block-user-online {}


/* =============================================================================
 *   Node Styling
 * ========================================================================== */

.node {
    margin-bottom: 0px;
}

.node.node-promoted {}

.node.node-sticky {}

.node.node-by-viewer {}

.node.node-teaser {}

.node.node-full {}

.node.odd {}

.node.even {}

.node .node-title {
    margin: 0;
}

.node .user-picture {}

.node .submitted {}

.node .submitted .username {}

.node .submitted time {}

.node .node-content {}

.node ul.links {}

.node ul.links li {}

.node ul.links li a {}

.node ul.links li.node-read-more a {}

.node ul.links li.comment-add a {}

.node ul.links li.comment-comments a {}

.node ul.links li.comment-new-comments a {}

.node ul.links li.blog-sernames-blog a {}

.node ul.links li.print-html a {}

.node ul.links li.print-email a {}

.node ul.links li.print-pdf a {}

.preview .node {}

/*
 * All nodes are given a node-FOO class that describes the type of content that
 * it is. If you create a new content type called "my-custom-type", it will
 * receive a "node-my-custom-type" class.
 */
.node-page {}

.node-article {}

.node-book {}

.node-forum {}

.node-poll {}


/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */

/*
 * Wrapper for the list of comments and its titles
 */
#comments {
    margin: 1.5em 0;
}

#comments h2 {}

#comments h2.comment-title {
    margin: 0;
}

#comments h2.comment-form {
    margin: 0;
}

/*
 * Wrapper for a single comment
 */
.comment {
    margin-bottom: 20px;
}

.comment.first {}

.comment.last {}

.comment.odd {}

.comment.even {}

.comment .user-picture {}

.comment .submitted {}

.comment .submitted p {}

.comment .submitted .username {}

.comment .submitted time {}

.comment .user-signature {}

.comment ul.links {}

/*
 * Comment title
 */
.comment-title {
    margin: 0;
}

/*
 * Comment states
 */
.comment-new {}

.comment-by-anonymous {}

.comment-by-node-author {}

.comment-by-viewer {}

.comment-title-hidden {}

.comment-with-picture {}

.comment-with-signature {}

/*
 * Preview of the comment before submitting new or updated comment
 */
.comment-preview {}

/*
 * "New" marker for comments that are new for the current user
 */
.new {
    color: #c00;
}

/*
 * Nested comments are indented
 */
.indented {
    margin-left: 40px;
}


/* =============================================================================
 *   Forms
 * ========================================================================== */

/*
 * Wrapper for a form element (or group of form elements) and its label
 */
.form-item {}

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
    border: 1px solid #c00;
}

.form-item label {
    font-weight: 700;
}

.form-item label.option {}

/*
 * Highlight marks and form required mark
 */
.marker,
.form-required {
    color: #c00;
}

.form-item .description {
    font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item {}

/*
 * The submit button
 */
.form-submit {}

.container-inline div,
.container-inline label {
    display: inline;
}

/*
 * Define consistent borders
 */
fieldset {
    border: 1px solid #ccc;
}

/*
 * Tips for Drupal's input formats
 */
.tips {}

/*
 * Buttons used by contrib modules like Media
 */
a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
}

/*
 * Password confirmation
 */
.password-parent,
.confirm-parent {
    margin: 0;
}


/* =============================================================================
 *   Tables
 * ========================================================================== */

table {
    margin: 10px 0;
    padding: 0;
    width: 100%;
}

table.sticky-header {
    z-index: 10;
}

table,
thead,
tbody,
tr,
th,
td {
    border-color: #ccc;
}

table,
td,
th {
    vertical-align: middle;
}

caption,
th,
td {
    text-align: left;
}

thead tr {
    font-weight: 700;
    background-color: #e5e5e5;

}

td,
th {
    border-bottom: 0;
    margin: 0;
    padding: 5px 7px;
}

tbody {}

tbody tr {
    border-top: 1px solid #ccc;
}

tr.odd {
    background: #fff;
}

tr.info,
tr.even,
tr:nth-child(2n+2) {
    border-bottom: 0;
    background-color: #f5f5f5;
}

tr.drag {}

tr.drag-previous {}

tr.odd td.active {
    background-color: #eee;
}

tr.even td.active {
    background-color: #ebebeb;
}

.lt-ie8 tr {}

.lt-ie8 tr.even,
.lt-ie8 tr.odd {}

.lt-ie8 tr.even th,
.lt-ie8 tr.even td,
.lt-ie8 tr.odd th,
.lt-ie8 tr.odd td {
}

/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
#forum td {}

#forum td.created,
#forum td.posts,
#forum td.topics,
#forum td.last-reply,
#forum td.replies,
#forum td.pager {
    white-space: normal;
}



/* =============================================================================
 *   Messages
 * ========================================================================== */

/* Left and right margin are set by the global gutter width */
div.messages {
    margin-bottom: 10px;
    margin-top: 10px;
}

div.messages ul {
    margin-top: 0;
    margin-bottom: 0;
}

div.status {}

div.warning {}

tr.warning {}

div.error,
tr.error {}

.error {}

.warning {}

/*
 * Unpublished nodes
 */
.node-unpublished,
.comment-unpublished {}

.node-unpublished,
.comment-unpublished {}

.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
    color: pink;
    color: rgba(239, 170, 170, 0.4);
    font-family: "Sailec-Regular",Impact,"Arial Narrow",Helvetica,sans-serif;
    font-size: 75px;
    font-weight: bold;
    height: 0;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    overflow: visible;
    text-align: center;
    text-transform: uppercase;
    word-wrap: break-word;
}

/*
 * Otherwise these elements will appear below the "Unpublished" text
 */
.lt-ie8 {}

.lt-ie8 .node-unpublished > *,
.lt-ie8 .comment-unpublished > * {
    position: relative;
}


/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */

.maintenance-page {}
.maintenance-page .container {
    padding: 40px 0;
}

.maintenance-page #site-name,
.maintenance-page #page-title {
    margin: 0;
}

.db-offline {}

.db-offline .container {
    margin: 0 auto;
    padding: 40px 0;
    width: 100%;
    max-width: 960px;
}

.db-offline div.messages {
    margin: 20px 0 0;
}

.db-offline #content {
    padding: 20px 0;
}


/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */

/*
 * Admin menu overrides
 */
#admin-menu {
    margin: 0;
    padding: 0;
}

/*
 * Devel Module
 */
.dev-query {
    background: #eee;
    padding: 30px;
}

/*
 * Styleguide module tweaks
 */
#styleguide-header {
    padding: 0 10px;
}

#styleguide-header .item-list {
    font-family: inherit;
    margin: 0 20px 20px 0;
    min-height: 260px;
    width: auto;
}

/* =============================================================================
 *   Własne style
 * ========================================================================== */
.ui-tabs {
    padding: 0;
}
.ui-tabs a,
.ui-tabs h2 {
    width:100%;
    padding-left: 0;
    padding-right: 0;
}
.ui-tabs .ui-tabs-nav li a {
    padding-left: 0;
    padding-right: 0;
}
#header {
    vertical-align: top;
}
#header .region-header,
#branding {
    display: inline-block;
}

.serduszko-lupa {
    position: absolute;
    right: 25px;
    top: 52px;
}
.serduszko-lupa #bookmarkme2 {
    background: url('../images/serce.png') no-repeat;
    width: 18px;
    height: 18px;
    text-indent: -10000px;
    display: inline-block;
    margin-right: 15px;
}
#search-block-form--2 .form-submit,
.serduszko-lupa #search {
    background: url('../images/lupa.png') no-repeat;
    width: 18px;
    height: 18px;
    text-indent: -10000px;
    display: inline-block;
    margin-right: 5px;
    border: 0;
}



#menu-bar {
    display: inline-block;
    float:right;
    margin: 0px;
    margin-right: 110px;
    font-size: 16px;
}

#menu-bar a {
    color:#404545;
    padding:50px 25px 20px 25px;
    margin:0;
}
#menu-bar li.menu-depth-1:hover {
    background:#f6f6f2;
}

#menu-bar li.expanded ul.menu {
    position: absolute;
    z-index: 9999;
    background: #f6f6f2;
    left:0;
    right:0;
    display: none;
}

#menu-bar li.expanded:hover ul.menu {
    display: block;
}

#menu-bar li.expanded ul.menu li {
    float: none;
}

#menu-bar li.expanded ul.menu li .views-field-field-image-product-type-1 {
    min-height: 108px;
}

#menu-bar li.expanded ul.menu li .views-field-name-field a {
    padding-top: 0;
    white-space: normal;
}

#menu-bar li.expanded ul.menu li .attachment {
    background: white;
}
#menu-bar ul.menu ul {
    padding:0px;
}

#block-system-main-menu {
    position: static !important;
}
#footer .region-footer {
    position: relative;
    overflow: hidden;
}
#footer .region-footer .region-inner {
    /*margin:25px;*/
}

#footer .block-menu .block-content ul.menu {
    list-style: outside none none;
    margin: 25px;
    padding: 0;
    min-height: 130px;
}
#footer .block-menu .block-content ul.menu ul.menu {
    display: none;
}

#footer .block-menu .block-content ul.menu li {
    list-style:none;
    display: inline-block;
    vertical-align: top;
    margin-right: 40px;
}

#footer .block-menu .block-content ul.menu li a {
    color:white
}

#footer .copyright {
    color: white;
    text-indent: 30px;
    font-size: 12px;
    position: absolute;
    bottom:30px
}

#footer .block-views {
    display: inline-block;
    vertical-align: top;
    max-width: 33.3%;
    color:white;
}
#footer #block-views-frontpage-last-exhibition-block,
#footer #block-views-frontpage-last-about-us-block {
    background: #404545;
    min-height: 590px;
    color:white;
}
#footer .block-views .views-field-field-about-us-body-subtitle1,
#footer .block-views .views-field-views-conditional,
#footer .block-views .views-field-views-conditional-2,
#footer .block-views .views-field-title-field,
#footer .block-views .views-field-title,
#footer .block-views .views-field-body,
#footer .block-views .view-frontpage-catalogue-bottom-box-files {
    margin: 0px 30px;
}
#footer .block-views .views-field-views-conditional-2 h3,
#footer .block-views .views-field-views-conditional-2 h3 a,
#footer .block-views .views-field-title-field h3,
#footer .block-views .views-field-title h3 {
    font-size: 24px;
    color:white;
}
#footer .block-views .views-field-views-conditional a,
#footer .block-views .view-frontpage-catalogue-bottom-box-files a,
#footer .block-views .views-field-body {
    font-size: 12px;
}
#footer .block-views .view-frontpage-catalogue-bottom-box-files {
    font-size: 16px;
    line-height: 1.5em;
}
#footer .block-views .views-field-views-conditional a,
#footer .block-views .view-frontpage-catalogue-bottom-box-files a {
    color:white
}
#footer .block-views .views-field-views-conditional a:hover,
#footer .block-views .view-frontpage-catalogue-bottom-box-files a:hover {
    color:#aaa
}
#footer #block-views-frontpage-view-socials,
#footer #block-views-frontpage-view-sits-apps,
#footer #block-menu-menu-menu-bottom {
    display: inline-table;
    vertical-align: top;
}
#footer #block-views-frontpage-view-socials,
#footer #block-views-frontpage-view-sits-apps {
    float: right;
    font-size: 14px;
    color:white;
}

#footer #block-views-frontpage-view-sits-apps * {
    font-size: 14px;
    color:white;
}
#footer #block-views-frontpage-view-sits-apps a:hover {
    color: #aaa;
}

#footer #block-views-frontpage-view-socials .block-inner,
#footer #block-views-frontpage-view-sits-apps h2,
#footer #block-views-frontpage-view-sits-apps .block-content {
    display: inline-table;
    margin-top: 25px;
    margin-right: 25px;
}
#footer #block-views-frontpage-view-socials .block-inner {
    margin-top: 20px;
}

#footer #block-views-frontpage-view-socials .block-inner .item-list li,
#footer #block-views-frontpage-view-sits-apps .block-content .views-field {
    margin: 0 0 0 15px;
}

.item-list ul {
    list-style: none;
    margin:0;
    padding:0;
}

.item-list ul li {
    display: inline-block;
    margin:0;
    padding:0;
    position: relative;
}

#footer .block-views .view-frontpage-catalogue-bottom-box-files ul li {
    display: block;
    margin-bottom: 20px;
}

#block-views-frontpage-collections-block {
    margin: 0px;
    overflow: hidden;
}
#block-views-frontpage-collections-block .view-content {
    width: 100.3%;
    margin-left: -1px;
}
#footer .block-menu .block-content ul.menu li a:hover,
#block-views-frontpage-collections-block .view-content .views-field-name a:hover {
    color:#aaa;
    text-decoration: none;
}
#block-views-frontpage-collections-block .block-title {
    background: #404545;
    line-height: 85px;
    display: none;
}
#block-views-frontpage-collections-block .block-title,
#block-views-frontpage-collections-block .view-content .views-field-name,
#block-views-frontpage-collections-block .view-content .views-field-field-collection-subtitle .field-content {
    padding-left: 30px;
    padding-right: 30px;
    color: white;
    font-weight: normal;
    font-size: 24px;
}
#block-views-frontpage-collections-block .view-content .views-field-name .field-content {
    margin: 20px 0 0 0;
}

#block-views-frontpage-collections-block .view-content .views-field-name a {
    color:white;
}

#block-views-frontpage-collections-block .view-content .views-field-field-collection-subtitle .field-content {
    margin: 0px;
    font-size: 12px;
}

#block-views-frontpage-collections-block .view-content .views-row {
    display: inline-block;
    vertical-align: top;
    max-width: 33%;
    position: relative;
    margin-left: 0.5px;
}
#block-views-frontpage-collections-block .view-content .views-row .views-field-field-collection-image {
    width:101%;
}

#block-views-frontpage-collections-block .view-content .views-row.views-row-last .views-field-field-collection-image img {
    /*margin-top: -1px;*/
}

#block-views-frontpage-collections-block .view-content .views-row .views-field-nothing {
    position: absolute;
    top:0;
    left:0;
    right:-5px;
    cursor:pointer;
    bottom:6px;
}

#block-views-frontpage-collections-block .view-content .views-row.views-row-last .views-field-nothing {
    bottom:6px;
}

#block-views-frontpage-collections-block .view-content .views-row:hover .views-field-nothing {
    background: rgba(64,69,69,0.8);
}

#block-views-fr-block {
    margin-top: -5px;
    background: #F6F6F2;
    min-height: 265px;
}
.view-menu-top-furniture-collection-rollover .view-content li,
#block-views-fr-block .view-fr li {
    list-style: none;
    margin:0;
    display: inline-block;
    width: 13.5%;
    min-width: 110px;
    text-align: center;
    height: 265px;
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .view-content ul {
    height: 190px;
    overflow: hidden;
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .view-content li {
    height: 190px;
    float: none;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .view-content li:hover,
#block-views-fr-block .view-fr li:hover {
    background: #404545;
    color: white;
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .view-content li,
#block-views-fr-block .view-fr li a {
    color:#646868;
    font-size: 14px;
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .view-content li:hover,
#menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .view-content .attachment li:hover .views-field-nothing .field-content,
#menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .view-content li:hover a,
#block-views-fr-block .view-fr li:hover a {
    color: white;
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .view-content li a:hover,
#block-views-fr-block .view-fr li a:hover {
    text-decoration: none;
}
#menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .view-content .views-field-name a {
    padding-top: 0;
    font-size: 14px;
}
#menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .view-content .views-field-field-image-product-type-1 a {
    padding-bottom: 0;
    padding-top: 65px;
}

#block-views-fr-block .view-fr li .views-field-field-image-product-type {
    margin-top: 95px;
    min-height: 58px;
    position: relative;
}
#block-views-fr-block .view-fr li .views-field-field-image-product-type .field-content {
    position: absolute;
    bottom: 0;
    left:0;
    right:0;
}
#block-views-fr-block .view-fr li .views-field-name {
    margin-bottom: 95px;
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content ul {
    height:auto;
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li{
    min-width: 24.5%;
    height:auto;
    margin-bottom: -6px;
    overflow: hidden;
}

#menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li.views-row-last {
    /*float: right;*/
}

#menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li {
    /*    padding:30px;
        padding-right:10px;*/
    vertical-align: top;
    margin-bottom: -7px;
}
#menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li>div {
    margin-top: 30px;
    margin-bottom: 30px;
}

#menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li>div:first-child {
    margin-left: 30px;
}

#menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li a {
    padding: 0;
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-field-collection-image,
.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-nothing{
    display: inline-block;
    vertical-align: top;
    max-width: 140px;
    padding-right:30px;
}

.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-nothing {
    text-align: left;
    /*max-width: 100px;*/
}

.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-nothing .views-field-name {
    font-size: 16px;
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-nothing .views-field-field-collection-subtitle {
    font-size: 12px;
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li:hover .views-field-nothing .field-content {
    color: white
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-nothing .views-field-name span.field-content {
    white-space: nowrap;
}
#block-locale-language {
    position: absolute;
    right:30px;
    top:20px;
    z-index: 10;
    /*border: 1px solid white;*/
}
#block-locale-language .block-title {
    text-indent: -10000px;
    background: url(../images/locate.png) no-repeat top right;
    height:15px;
    cursor: pointer;
    min-width:15px;
    display:none;
}

#block-locale-language .block-content {
    /*background: #404545;*/
    color:#404545;
    position: relative;
    overflow: hidden;
    /*display: none;*/
}
#block-locale-language .block-content ul {
    margin: 0px;
    list-style: none;
    padding:0;
}

#block-locale-language .block-content li {
    margin:0;
}
#block-locale-language .block-content li a {
    color: #404545;
    text-align: center;
}
#block-locale-language .block-content li a.active,
#block-locale-language .block-content li a:hover {
    color:#aaa;
}

#columns #main-content #main-content-header #page-title {
    height: 90px;
    font-size: 30px;
    color: #3F4545;
    /*background: #F6F6F2;*/
    text-indent: 30px;
    padding-top: 30px;
}
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl,
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr,
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br, .ui-corner-bl, .ui-corner-tr, .ui-corner-tl {
    border-radius: 0;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active,
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default,
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active,
.ui-widget-header,
.ui-widget-content {
    border: 0;
}
#fabric-tabs ul.ftabs,.ui-widget-header,
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    background: #F6F6F2;
}
.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
    background: #fff;
}
#fabric-tabs ul.ftabs {
    margin-bottom: 45px;   
}
#fabric-tabs ul.ftabs li {
    display: inline-block;
    width: 49.5%;
    margin-top: -3px;
    margin-bottom: -4px;
    padding-bottom: 4px;
    margin-left: -4px;
    padding-left: 4px;
}
#fabric-tabs ul.ftabs li:last-child {
    /*float: right;*/
}
#fabric-tabs ul.ftabs li a {
    text-indent: 30px;
    font-size: 16px;
    display: block;
    line-height: 40px;
}
#fabric-tabs ul.ftabs li a h2 {
    margin-bottom: 0;
}
#fabric-tabs ul.ftabs li a h3 {
    font-size: 0.9em;
    line-height: 1.3em;
    margin-top: 0;
}

#fabric-tabs .view-content .item-list ul {
    margin:0;
}
#fabric-tabs .view>.view-content > .item-list>ul>li {
    display: inline-block;
    vertical-align: top;
    max-width: 170px;
    height: 280px;
    margin: 0 0 0 -6px;
    cursor: pointer;
    position: relative
}
.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li:first-child {
    margin:0;
}
.views-field-field-fabrics-tags,
.views-field-field-fabrics-colors-tags {
    height: auto;
    position: absolute;
    top: 0px;
    left:0;

}
.views-field-field-fabrics-tags .field-content,
.views-field-field-fabrics-colors-tags ul li {
    height: auto;
    color:#393E3E;
    background: white;
    font-size: 14px;
    margin-left: 0;
    padding: 3px 5px;
}
.views-field-field-fabrics-colors-tags ul li.Exclusive {
    /*    background:#393E3E;
        color: white;*/
    height:auto !important;
}
.view-collection-overview-products-by-type .views-field-field-fabrics-tags,
.view-collection-overview-products-by-type .views-field-field-fabrics-colors-tags,
.view-furniture-collection-products-by-type-and-collection .views-field-field-fabrics-tags,
.view-furniture-collection-products-by-type-and-collection .views-field-field-fabrics-colors-tags,
.view-designers .views-field-field-fabrics-colors-tags {
    background:#393E3E;
    color: white;
    font-size: 14px;
    padding: 0px 7px;
    left:70%;
}

.views-field-field-fabrics-tags .field-content,
.views-field-field-fabrics-colors-tags ul li.New {
    height:auto !important;
}

#fabric-tabs .view-content .item-list ul li:hover {
    background: #F6F6F2;
}

#fabric-tabs .view-content .item-list ul li .views-field-field-fabrics-color-range-image {
    overflow: hidden;
}
.view-fabric-collection .view-content .views-row .views-field-field-fabrics-colors-name,
#fabric-tabs .item-list ul li .views-field-name {
    text-align: center;
    font-size: 14px;
    margin-top: 7px;
}

.ui-tabs .ui-tabs-panel {
    padding:0px;
}

.view-filters {
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}
.view-filters .views-exposed-form {
    float: right;
}

.view-filters .views-exposed-widget label,
.view-filters .views-exposed-widget .views-widget {
    display: inline-block;
}
.view-filters .views-exposed-widget select {
    width: 280px;
    line-height: 24px;
    min-height: 24px;
    padding: 3px 0 0;
    background: #f6f6f2;
    border:0;
}
.view-filters .views-exposed-widget label {
    min-width: 145px;
    font-weight: normal;
    text-align: center;
}
.page-fabric-collection #columns #main-content #main-content-header #page-title {
    background: #f6f6f2;
}
.view-furniture-collection-products-by-type-and-collection h3,
.view-collection-overview-products-by-type h3 {
    text-indent: 30px;
    font-size: 19px;
}
.view-furniture-collection-products-by-type-and-collection .item-list li,
.view-collection-overview-products-by-type .item-list li {
    width: 24.5%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
    color:#3F4545
}
.view-collection-overview-products-by-type .item-list li,
.view-furniture-collection-products-by-type-and-collection .item-list li.special,
.view-collection-overview-products-by-type .item-list li.special {
    width: 33%;
}

.vocabulary-collection .field-name-field-collection-image-big {
    margin-bottom: -7px;
}

.description-text-helper {
    margin-bottom: 50px;
    background: #404545;
    padding: 100px 80px;
    color:white;
}
.description-text-helper .field {
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
    font-weight: 100;
}
.description-text-helper .field em {
    font-size: normal;
    font-weight: normal;
}

.description-text-helper .field-name-description-field {
    max-width: 640px;
    font-size: 24px;
}
.description-text-helper .field-name-field-collection-description2 {
    max-width: 340px;
    float: right;
}

.view-furniture-collection-products-by-type-and-collection .view-filters {
    position: absolute;
    top:30px; 
    right:30px;
    z-index: 1;
}

.view-furniture-collection-products-by-type-and-collection.contextual-links-region {
    position: static
}

#block-views-frontpage-top-slider-block {
    margin: 0;
    margin-bottom: -6px;
    position: relative;
    display: none;
}

#block-views-frontpage-top-slider-block .views-field-title {
    position: absolute;
    font-size: 30px;
    color:white;
    top:30px;
    left:30px;
}

#block-views-frontpage-new-arrivals2-block {
    position: relative;  
}

#block-views-frontpage-new-arrivals2-block .block-title {
    font-size: 24px;
    text-indent: 30px;
    color: #3F4545;
    margin-bottom: 20px;
}

#block-views-frontpage-new-arrivals2-block .item-list li {
    display: inline-block;
    width: 24.5%;
    text-align: center;
    font-size: 16px;
}
#block-views-frontpage-new-arrivals2-block .item-list li:hover {
    /*background: #3a3e3e;*/
    /*color:white;*/
    cursor: pointer;
}
/*#block-views-frontpage-new-arrivals2-block */.item-list li:hover .background-trans {
    background: rgba(64,69,69,0.8);
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}
#block-views-frontpage-new-arrivals2-block .item-list li .views-field-title-field {
    margin: 15px;
}

#block-views-frontpage-new-arrivals2-block .more-link {
    position: absolute;
    top:30px;
    right:30px;
    font-size:12px;
}
#block-views-frontpage-new-arrivals2-block .more-link a:link,
#block-views-frontpage-new-arrivals2-block .more-link a:visited {
    color:#3a3e3e
}
.view-exhibitions-other-list .item-list ul li,
.view-exhibitions .item-list ul li  {
    vertical-align: top;
    width: 33%;
    margin-right: -3px;
    color:#3F4545;
    font-size:14px;
    margin-left: -1px;
    margin-bottom: 30px;    
}
.view-exhibitions-other-list .item-list ul li img,
.view-exhibitions .item-list ul li img {

}

/*.view-exhibitions-other-list .item-list ul li:hover .views-field-nothing a,
.view-exhibitions-other-list .item-list ul li:hover .views-field-nothing,
.view-exhibitions-other-list .item-list ul li:hover,
.view-exhibitions .item-list ul li:hover h2,
.view-exhibitions .item-list ul li:hover .views-field-nothing a,
.view-exhibitions .item-list ul li:hover {
    background: #3a3e3e;
    color:white !important;
}*/
.view-exhibitions .item-list ul li .views-field-nothing a:hover{
    color:#aaa;
}

.view-exhibitions-other-list .item-list ul li .views-field-title,
.view-exhibitions-other-list .item-list ul li .views-field-title-field-et,
.view-exhibitions-other-list .item-list ul li .views-field-nothing,
.view-exhibitions-other-list .item-list ul li .views-field-field-exhibition-date,
.view-exhibitions .item-list ul li .views-field-title,
.view-exhibitions .item-list ul li .views-field-title-field-et,
.view-exhibitions .item-list ul li .views-field-nothing,
.view-exhibitions .item-list ul li .views-field-field-exhibition-date {
    margin: 0px 30px;
}
.view-exhibitions-other-list .item-list ul li .views-field-title h2,
.view-exhibitions .item-list ul li .views-field-title h2 {
    font-size: 24px;
}
.view-exhibitions-other-list .item-list ul li .views-field-nothing,
.view-exhibitions .item-list ul li .views-field-nothing {
    min-height: 200px;
    overflow:hidden;
}
.view-exhibitions-other-list .item-list ul li .views-field-nothing  .views-field-field-exibition-file .exhibition-file,
.view-exhibitions .item-list ul li .views-field-field-exibition-file .exhibition-file {
    background: url(../images/buttonSave.gif) no-repeat bottom left;
    padding-top: 20px;
    padding-left: 25px;
}

.view-exhibitions-other-list .item-list ul li .views-field-field-exhibition-date,
.view-exhibitions .item-list ul li .views-field-field-exhibition-date {
    font-size: 12px;
    margin-bottom: 30px;
    min-height: 18px;
}
.view-exhibitions-other-list .item-list ul li .views-field-nothing a,
.view-exhibitions .item-list ul li .views-field-nothing a {
    color:#3F4545;
}
.views-field-nothing .views-field-body {
    overflow: hidden;
    /*margin-bottom: -1em;*/
    line-height: 2em;
}

.node-exhibitions h3 {
    /*text-indent: 30px;*/
    background: #404545 none repeat scroll 0 0;
    line-height: 85px;
    color: white;
    font-size: 24px;
    font-weight: normal;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 0px;
}

.node-exhibitions .image-exhibitions_internal:first-child {
    margin-left: -170px;
}

.helper-1 .helper-inner {
    display: table-cell;
    vertical-align: top;
    width: 49%;
    position: relative;
}
.helper-1 .helper-inner-2 .field {
    margin-left: 30px;
    font-size: 18px;
    color:#3F4545;
}
.helper-1 .helper-inner .field h3 {
    text-indent: 0;
    font-size: 30px;
    margin-top:0;
}

.helper-1 .helper-inner-2 .icons {
    position: absolute;
    bottom: 20px;
    left:20px;
    /*background: url(../images/download.gif) no-repeat;*/
    text-indent: -10000px;
    width: 170px;
}
.helper-1 .helper-inner-2 .icons .service-links {
    margin-top: 0;
    cursor: pointer;
}
.helper-1 .helper-inner-2 .icons>* {
    float: left;
    margin-right: 20px;
}

.helper-1 .helper-inner-2 .icons ul.links {
    /*background: white;*/
}
.node-exhibitions .field-name-field-exhibition-body2,
.node-exhibitions .field-name-body {
    margin: 100px 170px;
    font-size: 18px;
    margin-bottom: 0;
    overflow: hidden;
}
.node-exhibitions .field-name-field-exhibition-body2 {
    margin-top: 30px;
    margin-bottom: 170px;
}

.field-name-field-exhibition-image {
    overflow: hidden;
}

.field-name-field-exhibition-image figure {
    display: inline-block;
    max-width: 25%;
}

.node-exhibitions .views-field-field-exibition-file {
    margin: 0 30px;
}

.node-exhibitions .views-field-field-exibition-file .download-file {
    background: url(../images/save.gif) no-repeat left center;
    padding-left: 20px;
}

.node-about-us .field-name-field-about-us-image1 {
    float: left;
    margin-right: 100px;
    margin-bottom: -6px;
}

.node-about-us .field-name-field-about-us-subtitle1 h3 {
    font-size: 24px;
    text-indent: -70px;
    margin-top:0;
}

.node-about-us .field-name-field-about-us-body-subtitle1 {
    margin: 100px;
    /*line-height: 1.5em;*/
}
.double-columns,.about_us_subtitle2,
.node-about-us .field-name-field-about-us-body-subtitle1 p {
    line-height: 2em;
}
.node-about-us .video {
    display: block;
    width: 100%;
    overflow: hidden;
}

.node-career .node-content {
    background: #3F4545;
    color: white;
    overflow: hidden;
}
.field-name-field-career-image:before,
.field-name-field-career-image:after {
    content: none;
}
.node-career .career-image,
.field-name-field-career-image {
    float: right;
    /*width: 24.5%;*/
    margin-bottom: -9px;
}
.node-career {
    line-height: 2em;
    margin-top:30px;
}
.node-career .career-image,
.node-career .career-box {
    display: inline-block;
    width: 24.5%;
    vertical-align: top;
}
.node-career .career-image {
    width:0;
    display: none;
}
.node-job-offers .field-type-text-long,
.node-job-offers .field-type-text,
.node-career .field-type-text-long,
.node-career .field-type-text {
    display: block;
    /*width: 100%;*/
    font-size: 14px;

    /*vertical-align: top;*/
}
.node-job-offers .field-type-text .field-items,
.node-career .field-type-text .field-items {
    font-size: 24px;
    margin: 30px;
    line-height: 2em;
}
.job-offert .job-offer-body .view-career-job-offer.view-display-id-contents .field-type-text .field-items {
    margin-top: 0;
}

.node-job-offers .field-type-text-long .field-items,
.node-career .field-type-text-long .field-items {
    margin: 30px;
    margin-top:0;
}
.job-offert h3 {
    font-size: 24px;
    margin: 65px 30px 30px 30px;
}
.job-offert .job-offer-body .view-career-job-offer.view-display-id-contents,
.job-offert .job-offer-body .view-career-job-offer.view-display-id-list,
.job-offert .job-offer-body .node-content {
    display: inline-block;
    vertical-align: top;
}

.job-offert .job-offer-body .view-career-job-offer.view-display-id-list {
    width: 25%;
}
.job-offert .job-offer-body .view-career-job-offer.view-display-id-list ul li,
.job-offert .job-offer-body .view-career-job-offer.view-display-id-list ul {
    background: none;
}

.job-offert .job-offer-body .view-career-job-offer.view-display-id-list .ui-tabs-nav li a {
    float: none;
}

.job-offert .job-offer-body .view-career-job-offer.view-display-id-list .item-list ul li {
    display: block;
    text-indent: 30px;
    height: 45px;
    line-height: 45px;
    float: none;
    position: static;
}
.job-offert .job-offer-body .view-career-job-offer.view-display-id-list .item-list ul li a {
    color:#3F4545
}
.job-offert .job-offer-body .view-career-job-offer.view-display-id-list .item-list ul li.ui-state-active,
.job-offert .job-offer-body .view-career-job-offer.view-display-id-list .item-list ul li.active,
.job-offert .job-offer-body .view-career-job-offer.view-display-id-list .item-list ul li:hover{
    background: #F6F6F2;
}
.job-offert .job-offer-body .view-career-job-offer.view-display-id-contents,
.job-offert .job-offer-body .node-content {
    width: 74%;
}

.job-offert .job-offer-body .node-content .field-name-field-job-offers-for,
.job-offert .job-offer-body .node-content .field-name-field-job-offers-description,
.job-offert .job-offer-body .node-content .field-name-field-job-offers-requirements,
.job-offert .job-offer-body .node-content .field-name-field-job-offers-contact {
    display: block;
    width:100%;
    font-size: 24px;
    margin: 30px;
    margin-left: -50px;
}
.job-offert .job-offer-body .node-content strong:first-child {
    margin-top: 0;
}
.job-offert .job-offer-body .node-content>div {
    padding-left: 80px;
    padding-right: 80px;
    margin-bottom: 30px;
}

.job-offert .job-offer-body .node-content {
    line-height: 2em;
}


.iner-blok-table {
    display: table-cell;
    vertical-align: top;
}
.iner-blok {
    display: inline-block;
    vertical-align: top;
}

.iner-blok-table .field-name-field-about-us-subtitle1 {
    font-size: 24px;
}

.about_us_subtitle2,
.double-columns,
.tower-image {
    vertical-align: middle;
}
.tower-image .field {
    margin-bottom: -6px;
}
.tower-image2 img,
.tower-image img {
    max-width: 1000px !important;
}
.tower-image2 {
    margin-bottom: -5px;
}

.tower-image2 .field-name-field-about-us-image4 {
    margin-bottom: -5px;
    overflow: hidden;
}



.double-columns {
    padding: 0 90px;
}

.double-columns .field {
    display: inline-block;
    width: 45%;
    vertical-align: top;
    line-height: 1.8em;
}
.double-columns .field:first-child {
    margin-right: 4%;
}

.about_us_subtitle2,
.tower-image2 {
    background: #F6F6F2;
}
.about_us_subtitle2 {
    width: 100%;
    position: relative;
}
.about_us_subtitle2 .field-name-field-about-us-subtitle2 {
    position: absolute;
    top: 20px;
    left:30px;
    font-size: 24px;
}

.about_us_subtitle2 .field-center {
    margin: 0 110px;
}
.about_us_subtitle2 .field-center .ethical-code-file {
    float: right;
    margin-top:20px;
    font-size: 16px;
    background: url(../images/download.gif) no-repeat;
    padding-left: 35px;
}
.node-products .product-overview .title-designer .designer a,
.about_us_subtitle2 .field-center .ethical-code-file a {
    color: #3f4545;
}
.node-products .product-overview .title-designer .designer a:hover,
.about_us_subtitle2 .field-center .ethical-code-file a:hover {
    color: #aaa;
}

.node-about-us {
    margin-bottom: 0;
}
.view-product-view-top-slider {
    position: relative;
}
.view-product-view-top-slider .flex-direction-nav a {
    position: absolute;
    top:45%;
    z-index: 20;
    text-indent: -100000px;
    background: url('../images/strzalkaL.gif') no-repeat;
    height:56px;
    width: 30px;
    left:30px;
    display: block;
    color:white;
    font-size: 1px;
    /*padding-left:50px;*/
}
.view-product-view-top-slider .flex-direction-nav a.flex-next {
    background: url('../images/strzalkaP.gif') no-repeat;
    right: 30px;
    left:auto;
    text-indent: -100000px;
}

.flex-direction-nav a:before {
    content: none !important;
}

.view-product-view-top-slider #views_slideshow_controls_text_pause_product_view_top_slider-default {
    display: none;
}
.view-product-view-top-slider .flex-control-paging {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
}
.view-product-view-top-slider .flex-control-paging li a {
    height: 8px;
    width: 8px;
    background: url('../images/buttonA.gif') no-repeat;
    margin-left: 5px;
    display: inline-block;
    cursor: pointer
}
.view-product-view-top-slider .flex-control-paging li a.flex-active {
    background: url('../images/buttonB.gif') no-repeat;
}

/*.view-product-view-top-slider #views_slideshow_cycle_teaser_section_product_view_top_slider-default .views-field-field-fabrics-colors-name {
    position: absolute;
    bottom: -50px;
    right: 300px;
}*/

.view-product-view-top-slider .slides .views-field-nothing {
    right: 13%;
    bottom: -90px;
    position: absolute;
    height: 5em;
    width: 185px;
}
.view-product-view-top-slider .slides .views-field-field-fabrics-colors-name .field-content,
.view-product-view-top-slider .slides .views-field-field-fabrics-colors-name .views-label {
    display: inline-block;
}

.flexslider {
    margin-bottom: 0;
}

.product-social{
    height: 20px;
    margin: -20px 0 0;
    position: relative;
    z-index: 100;
}
.service-links-facebook-like{
    position: absolute;
    top: -30px;
    left: 32px;
}
.social.pinterest{
    background: url('../images/pinterest.png') 0 0 no-repeat;
    border: 0;
    display: table;
    width: 16px;
    height: 21px;
    padding: 0;
    position: absolute;
    top: -30px;
    left: 140px;
    text-indent: -9999px;
}

.node-products .product-overview {
    background: #f6f6f2;
    /*overflow: hidden;*/
    margin-top: -5px;
}
.node-products .product-overview .title-designer {
    font-size: 30px;
    margin:30px;
    height:100px;
    display: inline-block;
    width: 30%;
}
.node-products .product-overview .title-designer .designer {
    font-size: 12px;
}

.node-products .product-overview .title-designer .designer .field {
    display: inline-block;

}

.node-products .product-overview .icons {
    display: inline-block;
    vertical-align: top;
    text-indent: -100000px;
    width: 40%;
    position: relative;

}
.node-products .product-overview .field-name-field-product-collection {
    display: inline-block;
    vertical-align: top;
    margin: 0px;
    margin-right: 30px;
    margin-top:-10px;
    float: right
}

.node-products .product-overview .field-name-field-product-collection li {
    display:block
}

.node-products .product-overview .field-name-field-product-collection ul {
    margin-top: 25px;
}
.icons .flag-outer a,
.icons>a{
    width: 29px;
    height: 27px;
    display: block;
}
.node-products .product-overview .icons .flag-outer a,
.node-products .product-overview .icons>a {
    width: 18px;
    height: 20px;
    display: block;
}
.icons .service-links,
.icons .flag-outer,
.node-products .product-overview .icons .service-links,
.node-products .product-overview .icons .flag-outer,
.node-products .product-overview .icons>a {
    margin-right: 20px;
    margin-top: 30px;
    float: left;
}
.icons .service-links,
.icons .flag-outer,
.node-products .product-overview .icons .service-links,
.node-products .product-overview .icons .flag-outer {
    width:29px;
    height:27px;
}
.icons .icon-favorites,
.icons .flag-outer a,
.node-products .product-overview .icons .flag-outer a,
.node-products .product-overview .icons .icon-favorites {
    background: url('../images/serce.png') no-repeat;
}
.node-products .product-overview .icons .icon-3dview{
    background: url('../images/3D-view.png') no-repeat;
}
.node-products .product-overview .icons .flag-outer a {
    background: url('../images/serce.png') no-repeat;
}
.service-links,
.icons .icon-share,
.node-products .product-overview .icons .service-links,
.node-products .product-overview .icons .icon-share {
    background: url('../images/buttonShare.gif') no-repeat;
    cursor: pointer;
}

.node-products .product-overview .icons .service-links {
    background: url('../images/icons/share.gif') no-repeat;
}

.icons .icon-download,
.node-products .product-overview .icons .icon-download {
    background: url('../images/buttonSave.gif') no-repeat;
}
.node-products .product-overview .icons .icon-download {
    /*background: url('../images/icons/pdf.gif') no-repeat;*/
    background: none;
    text-indent: 0;
}
.node-products .product-overview .icons > a.icon-download{
    width: auto;
}
.icons .icon-print,
.node-products .product-overview .icons .icon-print {
    background: url('../images/buttonPrint.gif') no-repeat;
    background-size: auto 15px;
}
.node-products .product-overview .icons .icon-print {
    background: url('../images/icons/print.gif') no-repeat;
}

.ui-tooltip {
    max-width: 300px;
    width:auto !important;
    background: #f6f6f2;
}

.ui-tooltip-content {
    display: inline-block;
    width: auto !important;
    float: left;
    background: #f6f6f2;
}


.icons .flag-outer a.unflag-action,
.node-products .product-overview .icons .flag-outer a.unflag-action {
    -webkit-filter: invert(100%);
    -ms-filter: invert(100%);
    -o-filter: invert(100%);
    filter: invert(100%);
    filter:progid:DXImageTransform.Microsoft.BasicImage(invert=1);
    filter:DXImageTransform.Microsoft.Invert(1);
}

.node-products .product-overview .field-name-field-product-collection ul {
    list-style: none;
    margin: 30px 0;
}
.ui-widget-header,
.ui-widget-content,
.node-products .product-overview .field-name-field-product-collection a {
    color:#3f4545
}
.node-products .product-overview .field-name-field-product-collection a:hover {
    color:#aaa;
}
#product-tabs .product-tabs-list {
    padding: 0;
}
#product-tabs .product-tabs-list li {
    width: 24.5%;
    display: inline-table;
    text-indent: 30px;
    cursor: pointer;
    margin:0px;
    margin-bottom: -1px;
}
#product-tabs.one-tabs .product-tabs-list li {
    width: 100%;
}
#product-tabs.two-tabs .product-tabs-list li {
    width: 50%;
}
#product-tabs.three-tabs .product-tabs-list li {
    width: 33%;
}
#product-tabs.four-tabs .product-tabs-list li {
    width: 25%;
}
#product-tabs.five-tabs .product-tabs-list li {
    width: 20%;
}

#product-tabs .product-tabs-list h2 {
    margin: 0;
    font-size: 16px;
    line-height: 2em;
}

#product-tabs-1 .description,
#product-tabs-1 .description-image {
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
}
#product-tabs-1.empty{
    height: 76px;
}
#product-tabs-1.empty img{
    display: none;
}
#product-tabs-1 .description-image {
    /*float: right;*/
    width: 33%;
}
#product-tabs-1 .description .field-items {
    margin: auto 100px;
    line-height: 2em;
}

#product-tabs-1 .description-image img {
    margin-bottom: -6px;
}
#product-tabs-4 .item-list .views-row,
#product-tabs-3 .item-list .views-row,
#product-tabs-2 .item-list .views-row {
    margin-right: -5px;
    cursor: pointer;
}
#product-tabs-3 .item-list .views-row .views-field-field-fabrics-colors-name,
#product-tabs-2 .item-list .views-row .views-field-field-fabrics-colors-name,
#product-tabs-2 .item-list .views-row .views-field-name {
    text-align: center;
    margin: 30px 0;
    font-size: 14px;
}
#product-tabs-4 .item-list .views-row .views-field-field-materials-name {
    text-align: left;
}

#product-tabs-5 {
    overflow: hidden;
}
#product-tabs-5 .field-item {
    display: inline-block;
    text-align: center;
    max-width: 33%;
    margin: 10px 0;
}
#product-tabs-5 .field-item img {
    display: block;
    margin: 0px auto;
}

.product-applications{
    background-image: url('../images/bg-app.png');
    background-repeat: no-repeat;
    background-position: 18% bottom;
    background-size: auto;
}
.product-applications-inner{
    display: table;
    padding: 180px 20% 180px 50%;
}
.product-applications h3{
    font-size: 30px;
    margin: 0 0 30px;
}
.product-applications p{
    margin: 0 0 40px;
}
.product-applications a{
    display: block;
    float: left;
    margin: 0 30px 30px 0;
    text-indent: -9999px;
}
.product-applications a.appstore{
    background: url('../images/appstore.png') 0 0 no-repeat;
    width: 136px;
    height: 40px;
}
.product-applications a.googleplay{
    background: url('../images/googleplay.png') 0 0 no-repeat;
    width: 136px;
    height: 40px;
}

.matching-products h3 {
    text-indent: 30px;
}

.matching-products .item-list li {
    width: 24.5%;
    text-align: center
}

.nav ul.menu .view-menu-top-furniture-collection-rollover .view-content li:hover .views-field-field-image-product-type-1 img,
#block-views-fr-block .view-fr li:hover img {
    /*filter:progid:DXImageTransform.Microsoft.BasicImage(invert=1);*/
    -webkit-filter: invert(100%);
    -ms-filter: invert(100%);
    -o-filter: invert(100%);
    filter: invert(100%);
    filter:progid:DXImageTransform.Microsoft.BasicImage(invert=1);
    filter:DXImageTransform.Microsoft.Invert(1);
}


/* realizations *****************************************************/
.view-realizacje .views-row{
    float: left;
    width: 50%;
}
.view-realizacje .views-row .field-content{
    max-height: 380px;
    overflow: hidden;
}
.view-realizacje .views-field-title a{
    display: table;
    font-size: 26px;
    padding: 20px 0 0 30px;
}
.view-realizacje .views-field-field-implementation-data-from{
    font-size: 13px;
    padding: 0 0 60px 30px;
}



/* customer care *******************************************************/
.page-customer-care #main-content-header{
    background: #f6f6f2;
}
#cc-tabs .cc-tabs-list {
    padding: 0;
    width: 100%;
}
#cc-tabs .cc-tabs-list li {
    width: 50%;
    display: inline-table;
    text-indent: 30px;
    cursor: pointer;
    margin:0px;
    margin-bottom: -1px;
}
#cc-tabs .cc-tabs-list h2 {
    margin: 0;
    font-size: 16px;
    line-height: 2em;
}
#cc-tabs .ui-tabs-panel{
    padding: 70px 0 140px;
    position: relative;
}
#cc-tabs #node_filter{
    border: 0;
    height: 35px;
    left: 25%;
    top: 75px;
    position: absolute;
    width: 65%;
    z-index: 100;
}
#cc-tabs .view-filters{
    display: none;
}

#cc-tabs table{
    border: 0;
    border-collapse: inherit;
}
#cc-tabs td{
    padding: 0;
}
#cc-tabs .title{
    float: left;
    width: 25%;
}
#cc-tabs .title h1{
    font-size: 1.6em;
    margin: 0 0 0 30px;
}
#cc-tabs .block-system{
    float: left;
    padding: 0 0 150px;
    width: 65%;
}
#cc-tabs article{
    line-height: 1.9;
    padding: 80px 0 0;
}
#cc-tabs .node-header h2{
    font-size: 2em;
    padding: 0 0 40px;
}
#cc-tabs .node-content li{
    padding: 20px 0 20px 30px;
}
#cc-tabs .field-type-youtube{
    clear: both;
    padding: 60px 0;
}
#cc-tabs .field-name-field-cc-additional-instruction{
    float: right;
    font-size: 16px;
    width: 30%;
}
#cc-tabs .field-items img{
    display: none;
}
#cc-tabs .field-items a{
    background: url('../images/save.gif') 0 center no-repeat;
    display: block;
    padding: 10px 0 10px 30px;
}

#cc-tabs #my-form{
    margin: 0 auto;
    width: 50%;
}
#cc-tabs #my-form .form-item {
    display: table;
    font-size: 14px;
    width: 100%;
}
#cc-tabs label{
    display: inline-table;
    font-weight: normal;
    width: 30%;
    vertical-align: top;
}
#cc-tabs #my-form input,
#cc-tabs #my-form select{
    background: #F6F6F2;
    display: inline-table;
    float: right;
    line-height: 1.5em;
    border: 0;
    vertical-align: top;
    width: 66%;
}
#cc-tabs #my-form .form-textarea-wrapper{
    display: inline-table;
    float: right;
    vertical-align: top;
    width: 66%;

}
#cc-tabs #my-form textarea{
    background: #F6F6F2;
    border: 0;
}
#cc-tabs .form-item-usage-time textarea{
    height: 23px;
}
#cc-tabs #my-form input.form-submit {
    background: white url("../images/send.png") no-repeat scroll 0 center;
    border: 0 none;
    float: right;
    margin-right: 1%;
    margin-top: 10px;
    padding-left: 25px;
    width: auto;
}
#cc-tabs #my-form input.form-submit:hover{
    color: #aaa;
}

#cc-tabs-2 .after_form{
    clear: both;
    display: table;
    margin: 0 auto;
    padding: 40px 0 0;
    width: 50%;
}
#cc-tabs-2 .after_form .download{
    background: url('../images/save.gif') 0 center no-repeat;
    display: block;
    padding: 10px 0 10px 30px;
}



#block-views-fr-block .view-fr li:hover .views-field-field-image-product-type a {
    /*filter:progid:DXImageTransform.Microsoft.BasicImage(invert=1);*/
    /*filter:DXImageTransform.Microsoft.Invert(1);*/
    /*border: 1px solid red*/
}

.matching-products .item-list li .views-field-title {
    margin: 30px 0;
}

.view-designers .item-list ul li {
    width: 24.5%;
    margin-right: -5px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 30px;
}

.view-designers .item-list ul li .views-field-title {
    margin: 10px 0;
    margin-bottom: 0;
}
.view-designers .item-list ul li .views-field-field-product-collection {
    font-size: 0.7em;
}
.view-designers .item-list ul li:hover {
    /*    color:white;
        background: #3a3e3e;*/
}

.view-designers .views-field-title-field {
    margin: 30px 0;
}

.node-designers .field-name-field-designer-content-image-1,
.node-designers .field-name-field-designer-content-image-2 {
    display: inline-block;
    vertical-align: top;
}
.node-designers .field-name-field-designer-content-image-1 {
    width: 66%;
}
.node-designers .field-name-field-designer-content-image-2 {
    width: 33%;
    margin-left: -5px;
}

.node-type-designers #page-title {
    display: none;
}

.node-designers .field-image-quotation {
    background: #3a3e3e;
    overflow: hidden;
    color:white;
    font-size: 18px;
    width: 32%;
}
.node-type-designers .node-designers .field-image-quotation figure{
    margin-bottom: -8px;
}
.node-designers .field-name-field-designer-quotation .field-items {
    margin: 30px;
    height: 250px;
}
.node-designers .field-title-body-signature {
    position: relative;
    width: 66%;
}
.node-designers .field-title-body-signature .field-name-title-field {
    margin: 30px;
    font-size: 30px;
}
.node-designers .field-name-field-designer-signature {
    position: absolute;
    right:55px;
    bottom:65px;
}

.node-designers .field-name-body {
    margin: 100px;
    line-height: 2em;
}
#designer-tabs ul {
    padding: 0;
}
#designer-tabs .dtabs li {
    width: 49.5%;
    display: inline-table;
    margin: 0;
    padding: 0;
    text-indent: 30px;
    font-size: 16px;
}
#designer-tabs .dtabs li h2 {
    margin: 0;
    font-size: 16px;
}

#designer-tabs-2 .view-designers.view-display-id-interview ul {
    margin-top:90px;
}
#designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row {
    display: block;
    width: 100%;
    color:#3f4545;
}
#designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row:hover {
    background: white;
    color:#3f4545;
}
#designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row .views-field {
    display: inline-table;
    vertical-align: top;
    font-size: 18px;
    width: 66%;
    text-align: left;
}
#designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row .views-field-title {
    margin: 0;
    width: 33%;
    font-size: 14px;
}
#designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row .views-field-title .field-content {
    margin-left: 150px;
    margin-right: 30px;
    display: block;
    font-size: 0.97em;
    margin-top: 7px;
}

#designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row .views-field-body .field-content {
    margin-right: 90px;
}

.page-contact #main-content-header {
    background: #f6f6f2;
}

.page-contact .dtabs {
    padding: 0;
    margin:0;
}

.page-contact .dtabs li {
    width: 49.5%;
    display: inline-table;
    font-size: 12px;
}
.page-contact .dtabs li:last-child {
    margin-left: -2px;
}
.page-contact .dtabs li h2 {
    margin:0 30px;
    font-size: 16px;
    line-height: 2em;
}

#contact-tabs-1 {
    margin-bottom: 50px;
}

#contact-tabs-1 .contact-content {
    display: inline-table;
    width: 49.5%;
}
#contact-tabs-1 .contact-content h3 {
    font-size: 24px;
    margin-top: 110px;
    margin-bottom: 50px;
    margin-left: 30px;
}

#contact-tabs-1 .contact-content .node-contact,
#contact-tabs-1 .contact-content .view-contact-address.view-display-id-address {
    margin: 0 90px;
}

#contact-tabs-1 .contact-content .node-contact .field-name-field-contact-address,
#contact-tabs-1 .contact-content .view-contact-address.view-display-id-address .views-field-field-contact-address {
    margin-bottom: 50px;
    font-size: 18px;
}
#contact-tabs-1 .contact-content .node-contact .field-name-field-contact-address-footer p,
#contact-tabs-1 .contact-content .node-contact .field-name-field-contact-address p,
#contact-tabs-1 .contact-content .view-contact-address.view-display-id-address p,
#contact-tabs-1 .contact-content .view-contact-address.view-display-id-address .views-field-field-contact-address-footer p {
    margin:0;
}
#contact-tabs-1 .contact-content .node-contact .field-name-field-contact-address-footer,
#contact-tabs-1 .contact-content .view-contact-address.view-display-id-address .views-field-field-contact-address-footer {
    font-size: 12px;
}

.contact-content-form #block-system-main {
    margin: 0 30px;
}
.contact-content-form .form-item,
.contact-content-form {
    overflow: hidden;
}

.contact-content-form .form-item label,
.contact-content-form .form-item input,
.contact-content-form .form-item .form-textarea-wrapper,
.contact-content-form .form-item .form-select{
    display: inline-table;
    width: 66%;
    background: #F6F6F2;
    border: 0;
    vertical-align: top;
}
.contact-content-form .form-item input,
.contact-content-form .form-item .form-textarea-wrapper,
.contact-content-form .form-item .form-select {
    float: right;
}

.contact-content-form .form-item label {
    width: 30%;
    font-weight: normal;
    font-size: 14px;
    max-width: 100px;
    background: white
}
.contact-content-form .form-item input,
.contact-content-form .form-item .form-textarea-wrapper textarea {
    border: 0;
    line-height: 1.5em;
    background: #F6F6F2;
    resize: none;
}

.contact-content-form .form-type-checkbox {
    display: none;
}

.contact-content-form .form-actions {
    overflow: hidden;
}
.contact-content-form .form-actions input {
    float: right;
    background: white url(../images/send.png) 0 center no-repeat;
    border:0;
    margin-top: 10px;
    margin-right: 1%;
    padding-left: 25px;
}
.contact-content-form .form-actions input:hover {
    color: #aaa;
}

#contact-tabs-2 .view-contact .view-filters,
#contact-tabs-2 .view-contact .view-content {
    width: 49.5%;
    display: inline-block;
    vertical-align: top;
}


#contact-tabs-2{
    padding: 200px 0 0;
    position: relative;
}
#contact-tabs-2 .view-display-id-find_a_store_agent{
    float: right;
    width: 50%;
}
#contact-tabs-2 .view-display-id-block_1{
    float: left;
    padding: 0 0 0 50px;
    width: calc(50% - 50px);
}
#contact-tabs-2 h2{
    font-weight: bold;
    padding: 0 0 0 30px;
}
#contact-tabs-2 h3,
#contact-tabs-2 .view-display-id-block_1 .view-filters{
    display: none;
}
#contact-tabs-2 .view-display-id-find_a_store_agent .view-filters{
    position: absolute;
    top: 40px;
    left: 0;
}
#contact-tabs-2 .view-contact .view-filters, #contact-tabs-2 .view-contact .view-content{
    width: 100%;
}

#contact-tabs-2 .view-contact .views-exposed-widget {
    float:none;
    display: block;
    margin: 15px 60px;
}
#contact-tabs-2 .view-contact .views-exposed-widget:last-child {
    width: 15%;
}
#contact-tabs-2 .view-filters .views-exposed-widget .views-widget,
#contact-tabs-2 .view-filters .views-exposed-widget label {
    min-width: 10px;
    display: inline-block;
    max-width: 200px;
    font-size: 14px;
}
#contact-tabs-2 .view-filters .views-exposed-widget .views-widget * {
    width: 500px;
    max-width: 340px;
}
#contact-tabs-2 .view-filters .views-exposed-widget label {
    width: 80px;
    text-align: left;
}
#contact-tabs-2 .view-filters .views-exposed-widget .views-widget input {
    background: none repeat scroll 0 0 #f6f6f2;
    border: 0 none;
    line-height: 1.5em;
}

#contact-tabs-2 .view-filters .views-exposed-widget .views-widget #edit-field-stores-zip-value {
    max-width: 140px;
}

#contact-tabs-2 h3 {
    font-size: 24px;
    text-indent: 30px;
    margin-top:80px;
}

#contact-tabs-2 .views-exposed-form .views-submit-button {
    float: right;
    margin-right: 0;
    padding-right: 0;
}

#contact-tabs-2 .views-exposed-form .views-exposed-widget .form-submit {
    margin: 0;
    background:url(../images/lupa_szukaj.png) no-repeat center left white;
    border: 0 none;
    margin-right: 0;
    margin-top: 10px;
    padding-left: 25px;

}
#contact-tabs-2 .view-filters .views-exposed-form {
    float: none;
    margin: 30px;
    max-width: 490px;
}

#contact-tabs-2 .view-content .item-list {
}
#contact-tabs-2 .view-content .item-list ul li {
    width: 49.5%;
    vertical-align: top;
    font-size: 18px;
    margin-bottom: 50px;
}

#contact-tabs-2 .view-content .item-list ul li .views-field {
    margin: 0 30px;
}

.node-fabric .material-top .material-image,
.node-fabric .material-top .material-description {
    width: 49.5%;
    display: inline-block;
    vertical-align: top;
}

.node-fabric .material-top .material-description .material-description-inner {
    margin: 0 30px;
}

.node-fabric .material-top .material-description .material-description-inner h3 {
    font-size: 18px;
    margin: 10px;
}
.node-fabric .material-top .material-description .material-description-inner .description h3 {
    margin-top: 0px;
}
.node-fabric .material-top .material-description .material-description-inner .field {
    margin: 10px 100px;
}
.node-fabric .material-top .material-description .material-description-inner .description .field {
    margin: 0px 100px;
}

.view-fabrics-collection-family-color-fields .views-row {
    margin-right: -4px;
    max-width: 200px;
    vertical-align: top;
    min-height: 308px;
}

.view-fabrics-collection-family-color-fields .views-field-field-fabrics-colors-name .field-content {
    margin: 30px;
    text-align: center;
}

.view-fabrics-collection-family-color-fields .views-row:hover {
    background: #3a3e3e;
    color: white;
}
.material-description-inner .description h3 {
    margin-top: 0;
}
.node-fabric .views-field-field-fabrics-colors-color-range,
.node-fabric .node-content>.material-description {
    margin: 0px 30px;
}
.material-description .details ul,
.material-description .field-type-taxonomy-term-reference ul {
    padding-left: 20px;
}
.material-description .details li,
.material-description .field-type-taxonomy-term-reference li {
    list-style: none;
}
.material-description .details li:before,
.material-description .field-type-taxonomy-term-reference li:before {
    content:"> ";
}
/*.node-fabric .node-content>.material-description li {
    list-style: none;
}*/
/*.node-fabric .node-content>.material-description li:before {
    content:"> ";
}*/

.node-fabric .views-field-field-fabrics-colors-color-range>* {
    display: inline-block;
}

.node-fabric .material-bottom h3 {
    text-indent: 30px;
}

.care-label .view-fabric-collection ul li {
    display: block
}
.care-label .view-fabric-collection ul li .views-field {
    display: table-cell;
    vertical-align: middle;
    min-width: 20px;
}

.care-label .view-fabric-collection ul li .views-field-name-field .field-content {
    margin: 0px 0px 0px 15px;
}

.field-helper {
    display: inline-block;
    vertical-align: top;
    width: 24.5%;
}

.field-helper .view-field-collection-view-fabric .item-list ul li {
    display: block;
    width: 100%;
    overflow: hidden
}
.field-helper .field,
.field-helper .label,
.field-helper .view-field-collection-view-fabric .item-list ul li .views-field {
    display: inline-block;
    /*float: left;*/
}

#search-form label {
    font-weight: normal;
}
#search-form #edit-keys {
    background: #F6F6F2;
    border: 0;
}

#search-form #edit-submit {
    background: white;
    border: 0;
}

.item-list-pager {
    margin-bottom: 30px;
}

.is-mouseover.is-playing.flowplayer .fp-ui{
    background:  url("../images/pause_player.png") no-repeat scroll center center / 12% auto rgba(0, 0, 0, 0) !important;
}
.is-splash.flowplayer .fp-ui,
.is-finished.flowplayer  .fp-ui,
.is-paused.flowplayer .fp-ui {
    background-image: url("../images/play_player.png") !important;
}

.flowplayer {
    margin-bottom: -5px;
}

.flowplayer>a {
    /*display:none !important;*/

    background: none !important;
}

#product-tabs h3 {
    text-indent: 30px;
    font-size: 16px;
    margin: 50px 0;
}

#product-tabs #product-tabs-3 .view-fabric-collection {
    margin-bottom: 50px
}
.read-prev_next {
    margin: 50px 30px;
    overflow: hidden;
    display: block;
}

.read-prev_next a {
    font-size: 14px;
}
.read-prev_next a.next {
    float: right;
}
.read-prev_next a.prev:before,
.read-prev_next a.next:after {
    content: ' > ';
    font-size: 16px;
    font-weight: bold;
    vertical-align: middle;
}
.read-prev_next a.prev:before {
    content: ' < ';
}

#search-block-form--2 {
    background: none;
    position: absolute;
    right:-10px;
    top:25px;
    width: 385px;
    display: none;
    z-index:1000;
}
#search-block-form--2 #edit-search-block-form--4 {
    border:0;
    background: #f6f6f2;
    line-height: 40px;
    width: 373px;
    text-indent: 5px;
}
#search-block-form--2 .form-submit {
    position: absolute;
    top:-25px;
    right:10px;
}

#ui-theme-basic-green.ui-menu .ui-menu-item:hover {
    cursor: pointer;
}

ul.ui-autocomplete li:last-child
{
    display:none !important;
}

.service-links .links {
    height: 30px;
    margin-top: 25px;
    position: absolute;
    width: 300px;
    display: none;
    right: 0;
    /*left:-250px;*/
    text-align: center;
}
.service-links .links * {
    display: block;
}

.service-links ul.links li {
    display: inline-block;
    float:right;
}

.service-links ul.links li.service-links-twitter-widget {
    width: 100px;
}

.service-links ul.links li.service-links-facebook-like iframe {
    min-width: 125px;
}

.view-bookmarks .views-field {
    text-align: center;
}
.view-bookmarks .views-field-title {
    margin-top:30px;
    margin-bottom:20px;
    font-size: 14px;
}
.view-bookmarks .views-field-ops {
    margin-bottom:30px;
}
.page-favorites #block-system-main {
    overflow: visible;
}

.view-bookmarks #favorites-icons{
    float: right;
    margin-right: 30px;
    margin-top: -80px;
}

.view-bookmarks #favorites-icons>div {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    padding-left: 20px;
    background: url(../images/save.gif) no-repeat left center;
}

.view-bookmarks #favorites-icons div.favorites-pdf {
    background-image: url(../images/download.gif);
    padding-left: 25px;
}

.view-bookmarks .item-list>ul>li {
    max-width: 24.5%;
    margin-bottom: 20px;
}

.flag-bookmarks .unflag-action {
    color:white;
    float: right;
    display: block;
    margin-right: 5%;
}

.flag-bookmarks .unflag-action:after {
    content: ' X ';
    font-size: 16px;
    font-weight: 900;
    color:rgb(63,69,69);
    text-indent:0px;
}
.flag-bookmarks .unflag-action:hover:after {
    color:#aaa;
}

.service-links-forward {
    background: url(../images/send.png) no-repeat;
    background-size: 30px 20px;
    display: block;
    width: 30px;
    height: 20px;
    margin-right: 5px;
}
.service-links-forward img {
    display: none !important;
}

#forward-form {
    max-width: 600px;
    margin: 0px auto;
    margin-bottom: 30px;
    overflow: hidden;
}

#forward-form input,
#forward-form textarea {
    border:0;
    padding:5px;
    background: #f6f6f2;
    width: 100%;
}
#forward-form input[type="submit"] {
    width:auto;
    float: right;
}
#forward-form input[type="submit"]:hover {
    color:#aaa;
}

#forward-form #edit-recipients {
    height: 45px;
}

.view-display-id-care_label .item-list ul {
    margin: 0px 100px;
}

.view-display-id-fabric_collection_color .views-field-field-fabrics-colors-name {
    margin: 30px;
}

.material-image .item-list ul li {
    max-width: 100%;
}
.item-list {
    overflow: hidden;
}

.view .view-empty {
    text-align: center;
}

#sliding-popup {
    background: #404545 !important;
}

.views_slideshow_cycle_main * {
    max-width: 100%;
}

.views-slideshow-cycle-main-frame-row {
    position: relative !important;
}

.flowplayer.is-splash {
    background-size: 100% 100%;
}

.page-search #search-form input {
    line-height: 40px;
    min-height: 40px;
}

.page-search #search-form #edit-submit {
    background: rgba(0, 0, 0, 0) url("../images/lupa.png") no-repeat scroll center 7px;
    width: 34px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    text-indent: -10000px;
    background-position: 0 10px;
}
.ui-tabs .ui-tabs-nav,
#footer .region-footer .region-inner {
    width: 101%;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
    cursor: pointer;
}

#contact-tabs {
    width: 100%;
    overflow: hidden;
}

.ui-autocomplete-loading {
    /*background: white url(../images/loader.gif) no-repeat right !important;*/

    background-image: url(../images/loader.gif) !important;
    background-position: right !important;
    background-repeat: no-repeat !important;
}

.search-results li {
    display: inline-block;
    width: 33%;
    text-align: center;
}

.page-search #columns h2{
    font-size: 19px;
    text-indent: 30px;
    color: #3f4545;
    font-weight: normal;
    margin: 1em 0;
}
#search-form .form-item-keys label {
    margin-left: 30px;
}

#search-form fieldset {
    padding-left: 30px;
}

#ui-theme-basic-green .ui-autocomplete-field-group {
    color:rgb(63,69,69);
}

#ui-theme-basic-green .ui-menu-item-first {
    border:0;
}

.ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a.ui-state-active v{
    border:0;
    color:white;
    background: #3a3e3e;
}
#ui-theme-basic-green .ui-autocomplete-field-term {
    font-weight: 100;
}

/* animacja strzalki
@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}*/

.product-arrow-down {
    background-image: url(../images/strzalkaC.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    bottom: 60px;
    height: 30px;
    position: fixed;
    right: 10px;
    width: 81px;
    z-index: 999;
    text-align: center;

}
/*
.product-arrow-down {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}
*/
.product-slider {
    position: relative;
}
#kariera-tabs {
    display: inline-block;
    width: 100%;
}

#kariera-tabs .kariera-tabs-list .ui-state-default,
#kariera-tabs .kariera-tabs-list,
#kariera-tabs {
    background: #3f4545;
    color:white
}
#kariera-tabs .kariera-tabs-list .ui-state-default,
#kariera-tabs .kariera-tabs-list {
    padding: 0; margin:0;
}
#kariera-tabs .kariera-tabs-list .ui-state-default:hover,
#kariera-tabs .kariera-tabs-list .ui-state-default.ui-state-active {
    background:#2f3535
}
#kariera-tabs .career-box2 {
    color:white !important;
    padding: 100px
}
#kariera-tabs.ui-tabs .ui-tabs-panel a,
#kariera-tabs .kariera-tabs-list .ui-state-default a {
    color:white;
}
#kariera-tabs .kariera-tabs-list .ui-state-default a .field {
    padding: 0 14px;
}

#kariera-tabs .field-type-text .field-items {
    margin: 0px 10px;
    line-height: 1.5em;
}

#kariera-tabs .kariera-tabs-list .ui-state-default {
    width: 25%;
    display: inline-block;
}

#kariera-tabs.ui-tabs .ui-tabs-nav li {
    white-space: normal;
}
#kariera-tabs.ui-tabs .ui-tabs-nav {
    width: 100%;
}

#kariera-tabs.ui-tabs .ui-tabs-panel a {
    text-decoration: underline;
}
#kariera-tabs.ui-tabs .ui-tabs-panel a:hover {
    color: #aaa;
}

#kariera-tabs.ui-tabs .ui-tabs-panel li::before {
    content: "> ";
}

#kariera-tabs.ui-tabs .ui-tabs-panel li {
    list-style: none;
}

.carousel-drupal .owl-pagination {
    display: none;
}

.carousel-drupal .owl-carousel .owl-wrapper-outer {
    width: 100%;
    margin: auto;
    display: block;
}

.carousel-drupal .owl-theme .owl-controls .owl-buttons div {
    background: rgba(0, 0, 0, 0) url("../images/strzalkaL.gif") no-repeat scroll center -10px;
    height: 28px;
    position: absolute;
    text-indent: -10000px;
    top: 18%;
    width: 30px;
}
.carousel-drupal .owl-theme .owl-controls .owl-buttons div.owl-prev {
    left: 5px;
}

.carousel-drupal .owl-theme .owl-controls .owl-buttons div.owl-next {
    background: rgba(0, 0, 0, 0) url("../images/strzalkaP.gif") no-repeat scroll center -10px;
    left: auto;
    right: 5px;
}

.carousel-drupal .owl-carousel .owl-item {
    margin-bottom: 45px;
}
.carousel-drupal .owl-carousel .owl-item .views-field {
    text-align: center;
}
.carousel-drupal .owl-carousel .owl-item .views-field img {
    margin-bottom: 30px;
}

.carousel-drupal .owl-carousel .owl-item .views-field-title {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
}

.carousel-drupal>h3 {
    margin-left: 30px;
}

@media only screen and (max-width: 1570px) {
    /*.node-designers .field-name-field-designer-signature {
        bottom: 0px;
    }*/

    .node-designers .field-name-body {
        margin-bottom: 190px;
    }
}

@media only screen and (max-width: 1380px) {
    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li>div:first-child {
        margin-left:20px;
    }

    /*    .node-designers .field-name-body {
            margin: 35px;
        }*/
}
@media only screen and (max-width: 1260px) {
    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li>div:first-child {
        margin-right:10px;
    }
    .nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-nothing {
        max-width: 120px;
    }

    .nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-field-collection-image,
    .nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-nothing {
        padding-right: 0px;
    }

    .node-products .product-overview .title-designer {
        width: 30%;
    }
    .node-products .product-overview .icons {
        width: 30%;
    }
    .product-applications{
        background-position: 12% bottom;
    }

    .node-about-us .field-name-field-about-us-image1 {
        margin-right: 50px;
    }
    .node-about-us .field-name-field-about-us-body-subtitle1 {
        margin: 50px;
    }

    .views-exposed-form .views-exposed-widget {
        float: none;
    }

    /*    .node-designers .field-name-field-designer-signature {
            position: relative;
            right:0;
            margin-right: 55px;
            text-align: right;
        }
        .node-designers .field-name-field-designer-signature img {
            max-width: 70%;
        }
        .node-designers .field-title-body-signature .field-name-title-field {
            margin: 0px 30px;
        }
        .node-designers .field-name-body {
            margin: 20px 30px
        }*/
}
@media only screen and (max-width: 1175px) {
    .nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-nothing .views-field-name span.field-content {
        white-space: normal;
    }

    .description-text-helper {
        padding: 50px;
    }

    #cc-tabs #my-form,
    #cc-tabs-2 .after_form{
        width: 80%;
    }

    .product-applications{
        background-position: 7% bottom;
        background-size: 40% auto;
    }
    .product-applications-inner{
        padding: 126px 10% 180px 50%;
    }


}
@media only screen and (max-width: 1100px) {
    .nav ul.menu .view-menu-top-furniture-collection-rollover .view-content ul {
        max-width: 102%;
    }
    .nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content ul {
        max-width: 101%;
    }
    .nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-nothing  {
        max-width: 100px;
    }

    #footer #block-views-frontpage-view-socials {
        display: block;
    }
    #footer #block-views-frontpage-view-socials .block-inner .item-list li, #footer #block-views-frontpage-view-sits-apps .block-content .views-field {
        margin-left: 0px;
        margin-right: 15px;
    }
    .description-text-helper {
        padding: 30px;
        margin-bottom: 30px
    }

    .product-applications-inner{
        padding: 90px 10% 180px 50%;
    }

    .view-product-view-top-slider .flex-control-paging {
        right:0;
    }
    .view-display-id-care_label .item-list ul {
        margin: 0 50px;
    }
    .node-career .career-image img,
    .node-career .career-image {
        display: none;
    }
}
@media only screen and (min-width: 780px) and (max-width: 1100px) {
    #footer #block-views-frontpage-view-socials .block-inner, #footer #block-views-frontpage-view-sits-apps h2, #footer #block-views-frontpage-view-sits-apps .block-content {
        display: block;
    }
}

@media only screen and (max-width: 1050px) {

    .description-text-helper .field {
        display: block;
        float: none;
        margin: 20px auto;
        max-width: 800px;
    }
    .node-about-us .field-name-field-about-us-body-subtitle1 {
        margin: 30px 50px;
    }

    .double-columns .field {
        width: 100%;
    }
    .double-columns .field:first-child {
        margin-bottom: 30px;
    }

    .about_us_subtitle2 .field-center {
        margin: 70px 50px;
    }

    .about_us_subtitle2 {
        vertical-align: top;
    }

    .product-applications-inner{
        padding: 70px 10% 180px 50%;
    }

    .view-designers .item-list ul li {
        width: 33%;
    }
    .node-designers .field-name-field-designer-signature {
        max-width: 77%
    }

    #cc-tabs .ui-tabs-panel{
        padding: 20px 30px 60px;
    }
    #cc-tabs .title{
        float: none;
        width: 100%;
    }
    #cc-tabs .title h1{
        margin: 0 0 20px;
    }
    #cc-tabs #node_filter{
        left: auto;
        top: auto;
        position: relative;
        width: 100%;
    }
    #cc-tabs .block-system{
        float: none;
        padding: 0 0 40px;
        width: 100%;
    }
    #cc-tabs article{
        padding: 20px 0 0;
    }
    #cc-tabs .node-header{
        float: none;
        width: 100%;
    }
    #cc-tabs .node-header h2{
        padding: 0 0 30px;
    }

    #contact-tabs-2 .view-filters .views-exposed-widget .views-widget * {
        width: 300px;
    }
    #contact-tabs-2 .view-content .item-list ul li{
        width: 100%;
    }

    .node-career .career-image,
    .node-career .career-box {
        width: 49%;
    }

    #designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row .views-field-title .field-content {
        margin-left: 90px;
    }
}

@media only screen and (max-width: 985px) {
    .nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-nothing  {
        max-width: 84px;
    }
    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li>div:first-child {
        margin-left: 10px;
    }

    .node-about-us .field-name-field-about-us-body-subtitle1 {
        margin: 50px;
    }

    .field-name-field-exhibition-image figure {
        max-width: 50%;
    }
    .field-name-field-exhibition-image figure img {
        margin-bottom: -7px;
    }

    .product-applications-inner{
        padding: 70px 10% 120px 50%;
    }

    .node-exhibitions .field-name-field-exhibition-body2, .node-exhibitions .field-name-body {
        margin: 50px 100px;
    }

    .node-exhibitions .field-name-body {
        margin-bottom: 0;
    }

    .node-exhibitions .field-name-field-exhibition-body2 {
        margin-top: 30;
    }
    .field-name-field-exhibition-image figure img {
        margin-bottom: -7px !important;
    }
    #footer .block-menu .block-content ul.menu{
        margin: 25px 25px 0;
        min-height: auto;
    }
    #footer #block-views-frontpage-view-sits-apps.block-views{
        display: block;
        max-width: 100%;
    }
    #footer #block-views-frontpage-view-sits-apps{
        clear: both;
        float: left;
        margin: 0 0 0 25px;
    }
    #footer #block-views-frontpage-view-sits-apps h2,
    #footer #block-views-frontpage-view-sits-apps .block-content{
        float: left;
    }
}
@media only screen and (max-width: 910px) {
    .view-menu-top-furniture-collection-rollover .view-content li,
    #block-views-fr-block .view-fr li {
        width: 10%;
    }
    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li>div:first-child {
        margin-left: 0px;
    }

    .node-products .product-overview .title-designer {
        width: 20%;
    }

}

@media only screen and (max-width: 900px) {
    .view-menu-top-furniture-collection-rollover .view-content li,
    #block-views-fr-block .view-fr li {
        width: 24.5%;
    }
    .nav ul.menu .view-menu-top-furniture-collection-rollover .view-content li,
    .nav ul.menu .view-menu-top-furniture-collection-rollover .view-content ul {
        height: auto;
    }
    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .view-content .views-field-field-image-product-type-1 a {
        padding-top: 40px;
    }
    #menu-bar li.expanded ul.menu li .views-field-field-image-product-type-1 {
        min-height: 80px;
    }
    .view-menu-top-furniture-collection-rollover .view-content li, #block-views-fr-block .view-fr li {
        height: 175px;
    }
    #block-views-fr-block .view-fr li .views-field-field-image-product-type {
        margin-top: 35px;
    }
    #block-views-fr-block .view-fr ul {
        padding: 40px 0;
        max-width:101%;
    }
    #block-views-frontpage-collections-block .view-content .views-row {
        margin-left: -1px;
    }

    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li>div:first-child {
        display: none;
    }
    .nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-nothing {
        max-width: 95%;
    }
    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content ul {
        max-width: 98%;
        padding-left: 1%;
        padding-right: 1%;
    }

    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li {
        max-width: 24%
    }
    #footer #block-views-frontpage-view-socials, #footer #block-views-frontpage-view-sits-apps,
    #footer #block-menu-menu-menu-bottom {
        display: inline;
    }
    #footer #block-views-frontpage-view-sits-apps,
    #footer #block-menu-menu-menu-bottom {
        float: left;
    }
    #block-views-frontpage-collections-block .view-content .views-field-name {
        text-indent: 0px;
        padding-left: 30px;
    }

    .views-exposed-form .views-exposed-widget {
        float: right;
    }

    .node-products .product-overview .icons {
        width: 38%;
    }

    .node-about-us .field-name-field-about-us-image1 {
        margin-right: 20px;
    }

    .double-columns {
        padding: 50px;
    }

    #kariera-tabs .field-type-text .field-items {
        margin:0;
    }

    #designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row .views-field-title .field-content {
        margin-left: 30px;
    }
    #designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row .views-field-body .field-content {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 850px) {
    .product-applications{
        background-position: -7% bottom;
        background-size: 40% auto;
    }
    .product-applications-inner{
        padding: 20px 10% 100px 40%;
    }

}

@media only screen and (max-width: 810px) {
    .product-arrow-down{
        display: none;
    }
    .view-product-view-top-slider .flex-control-paging {
        bottom: 0;
        position: relative;
    }

    .product-social{
        height: 10px;
        margin: 30px 0 0;
    }

    .node-products .product-overview{
        margin-top: 0;
    }
    .view-product-view-top-slider .slides .views-field-nothing {
        bottom: auto;
        height: 5em;
        padding: 12px 0 0 27px;
        position: relative;
        right: auto;
        width: 185px;
    }
    .view-bookmarks .item-list>ul {
        max-width: 101%;
    }
    .view-bookmarks .item-list>ul>li,
    .tower-image2,
    .iner {
        width: 33%;
    }

    .view-bookmarks .item-list>ul>li {
        max-width: 33%;
    }

    .tower-image2 img {
        max-width: 100% !important;
    }

    .view-display-id-care_label .item-list ul {
        margin: 0;
    }

    .field-helper {
        width: 49%;
    }
    .node-fabric .material-top .material-description .material-description-inner h3 {
        margin-left: 0;
    }

    .view-filters .views-exposed-form {
        margin-right: 35px;
    }

    .views-exposed-form .views-exposed-widget {
        float: right;

    }

    .view-furniture-collection-products-by-type-and-collection .view-filters {
        position: relative;
        top:0;
        right: auto;
    }

    .view-filters .views-exposed-widget select {
        width: 200px;
    }
    .node-designers .field-name-field-designer-signature {
        max-width: 70%
    }
    .node-designers .field-title-body-signature .field-name-title-field {
        margin: 0px 30px
    }

    #contact-tabs-1 .contact-content {
        display: block;
        width: 100%;
    }

    #contact-tabs-1 .contact-content.sits-address .field {
        display: inline-block;
        width: 49%;
    }

    #contact-tabs-1 .contact-content .node-contact {
        margin: 0 auto;
        max-width: 570px;
    }
    #contact-tabs-1 .contact-content .node-contact .node-content {
        margin: 0px 50px;
    }

    #contact-tabs-1 .contact-content.contact-content-form h3 {
        margin-top: 40px;
    }
    .contact-content-form #block-system-main {
        margin: 0 auto;
        width: auto;
        max-width: 630px;
    }

    .contact-content-form #block-system-main form {
        margin: 0px 30px;
    }

    #contact-tabs-2 .view-contact .view-content {
        width: 100%;
        display: block;
    }
    #contact-tabs-2 .view-filters .views-exposed-form {
        margin: 30px auto;
    }
    #contact-tabs-2 .view-filters .views-exposed-widget .views-widget * {
        width: 100%;
    }
    #contact-tabs-2 .view-filters .views-exposed-widget .views-widget {
        width: 100%;
    }
    #contact-tabs-2 .view-contact .views-exposed-widget:last-child {
        width: 100px;
    }
}
@media only screen and (max-width: 780px) {

    #page{
        overflow: hidden;
    }
    #footer #block-views-frontpage-view-socials,
    #footer #block-menu-menu-menu-bottom {
        clear: both;
        float: left;
        width: auto;
    }
    #footer #block-views-frontpage-view-socials{
        margin: 0 0 0 25px;
    }
    #footer .block-menu .block-content ul.menu {
        min-height: 10px;
    }
    #footer #block-views-frontpage-view-sits-apps{
        clear: both;
        float: left;
        margin: 0 0 25px 25px;
    }

    #footer .copyright {
        bottom: auto;
        position: relative;
    }

    #block-locale-language {
        width: auto !important;
    }

    #menu-bar .menu-depth-1 {
        max-width: 26vw;
    }
    .view-collection-overview-products-by-type .item-list li,
    .view-designers .item-list ul li,
    .view-exhibitions-other-list .item-list ul li,
    .view-exhibitions .item-list ul li,
    .search-results li,
    .view-furniture-collection-products-by-type-and-collection .item-list li.special,
    .view-collection-overview-products-by-type .item-list li.special {
        width: 49%;
    }

    #cc-tabs .field-name-field-cc-additional-instruction {
        float: left;
        width: 100%;
    }

    #product-tabs-1 .description, #product-tabs-1 .description-image {
        width: 100%;
    }
    #product-tabs-1 .description-image img,
    #product-tabs-1 .description-image {
        float: none; display: block;
        margin: 0px auto;
    }
    #product-tabs-1 .description .field-items {
        margin: 30px 50px;
    }

    #product-tabs-5 .field-item {
        max-width: 49.5%;
    }

    .product-applications{
        background-image: url('../images/bg-app-2.png');
        background-position: right bottom;
    }
    .product-applications-inner{
        padding: 20px 240px 60px 30px;
    }
}

@media only screen and (max-width: 750px) {
    #menu-bar .menu-depth-1 {
        max-width: 24vw;
    }
    #menu-bar a {
        white-space: normal;
        padding-left: 10px;
        padding-right: 10px;
    }

    .view-filters .views-exposed-form {
        margin-right: 0px;
    }

    #kariera-tabs .kariera-tabs-list .ui-state-default {
        width: 100%;
    }
    #kariera-tabs .career-box2 {
        padding: 50px;
    }
}
@media only screen and (max-width: 700px) {
    #block-views-frontpage-collections-block .view-content .views-row .views-field-field-collection-image {
        width: 102%;
    }

    #product-tabs.five-tabs .product-tabs-list li {
        width: 100%;
    }

    .node-products .product-overview .title-designer {
        margin: 25px 19px;
        width: 40%;
    }
    .node-products .product-overview .icons {
        width: 50%;
    }

    .node-products .product-overview .field-name-field-product-collection {
        display: block;
        float: none;
        padding-left: 20px;
    }
    .node-products .product-overview .title-designer {
        height: auto;
    }

    .view-product-view-top-slider .flex-control-paging {
        bottom: 0;
    }

    .view-bookmarks .item-list>ul>li {
        max-width: 49%;
        width:49%;
    }
    .job-offert .job-offer-body #ajax-content,
    .job-offert .job-offer-body .node-content,
    .job-offert .job-offer-body .view-career-job-offer.view-display-id-list {
        width: 100%;
    }
}
@media only screen and (max-width: 650px) {
    .serduszko-lupa #bookmarkme2 {
        top: -32px;
        position: absolute;
        left: 0px;
    }
    #block-locale-language {
        right: 60px;
    }
    #menu-bar {
        margin-right: 54px;
    }

    #cc-tabs .cc-tabs-list li,
    #designer-tabs .dtabs li,
    #product-tabs .product-tabs-list li,
    #product-tabs.one-tabs .product-tabs-list li,
    #product-tabs.two-tabs .product-tabs-list li,
    #product-tabs.three-tabs .product-tabs-list li,
    #product-tabs.four-tabs .product-tabs-list li,
    #product-tabs.five-tabs .product-tabs-list li {
        width: 100%;
    }

    #cc-tabs #my-form,
    #cc-tabs-2 .after_form{
        margin: 0;
        width: 100%;
    }

    #product-tabs-2 .view-product-view-suggested-fabrics .item-list .views-row,
    #fabric-tabs ul.ftabs li {
        width: 49%;
    }

    #product-tabs-2 .view-product-view-suggested-fabrics .item-list .views-row {
        margin: 0px auto;
        display: block;
    }

    #product-tabs-5 .field-item {
        max-width: 100%
    }
    #designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row .views-field,
    #designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row .views-field-title {
        width: 96%;
        display: block;
        margin: 0 auto 20px;
    }

    #designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row .views-field-body .field-content {
        margin:0;
    }

    #designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row .views-field-title .field-content {
        margin-left: 20px;
    }
    #designer-tabs-2 .view-designers.view-display-id-interview ul li.views-row .views-field-body .field-content {
        margin: 0px 20px;
    }

    #designer-tabs-2 .view-designers.view-display-id-interview ul {
        margin-top: 20px
    }
}
@media only screen and (max-width: 580px) {

    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li>div:first-child {
        display: inline-block;
        margin: 0;
        max-width: 70px;
    }
    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li>div{
        display: inline-block;
        vertical-align: middle;
        margin: 0;
    }
    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li {
        width: 100%;
        max-width: 100%;
        display: block;
        text-align: left;
    }

    .product-applications-inner{
        padding: 20px 30px 130px;
    }

    #footer .block-menu .block-content ul.menu li {
        margin-right: 10px
    }
    #block-views-frontpage-collections-block {
        margin-top:-8px;
    }
    .tower-image2 img,
    .tower-image2,
    .iner {
        width: 100%;
        display: block;
    }
    .node-about-us .field-name-field-about-us-image1 {
        margin-right: 0px;
        float: none;
    }
    .node-about-us .field-name-field-about-us-image1 img {
        width: 100%;
    }
    .iner-blok-table .field-name-field-about-us-subtitle1 {
        margin: 50px 50px 0px 50px;
    }
    .tower-image {
        display: none;
    }

    .tower-image2 {
        overflow: hidden;
    }

    .about_us_subtitle2 .field-name-field-about-us-subtitle2 {
        position: relative;
        margin: 30px 50px 0 50px;
        top:0;left:0;
    }
    .about_us_subtitle2 .field-center {
        margin-top:30px;
    }

    #search-form #edit-keys {
        width: 250px;
    }
    .node-designers .field-image-quotation,
    .node-designers .field-title-body-signature,   
    .iner-blok-table {
        display: block;
        width: 100%;
        overflow: hidden;
    }
    .node-designers .field-title-body-signature .field-name-title-field {
        margin: 30px;
    }

    .node-designers .field-name-body {
        margin: 50px;
        margin-bottom: 190px;
    }
    .node-designers .field-name-field-designer-content-image-2,
    .node-designers .field-name-field-designer-content-image-1 {
        width: 100%;
        margin-bottom: -8px;
        margin-left: 0;
    }
}
@media only screen and (max-width: 560px) {
    .view-menu-top-furniture-collection-rollover .view-content li, #block-views-fr-block .view-fr li {
        width: 24%;
    }

    #block-views-frontpage-new-arrivals2-block .item-list li {
        width: 49.5%
    }
    #block-views-frontpage-collections-block .view-content .views-row {
        display: block;
        max-width: 100%;
        margin-top: -10px;
    }

    #footer .block-views {
        max-width: 100%;
    }

    #footer .block {
        margin-bottom:0;
    }

    #footer #block-views-frontpage-last-exhibition-block, #footer #block-views-frontpage-last-about-us-block {
        min-height: 10px;
        padding-bottom: 20px;
    }
}
@media only screen and (max-width: 550px) {
    #menu-bar {
        display: inline;
        margin-left: 20px;
        float: left;
    }
    #menu-bar .menu-depth-1 {
        max-width: 30vw;
        min-width: 27vw;
    }
    #menu-bar a {
        padding-top: 10px;
    }

    .node-fabric .material-top .material-image, .node-fabric .material-top .material-description {
        display: block;
        width: 100%;
    }
    .node-fabric .material-top .material-description .material-description-inner {
        margin:30px;
    }

    .serduszko-lupa #bookmarkme2 {
        top: 0;
        position: relative;
        left: 0px;
    }
    #block-locale-language {
        right: 20px;
    }

    #contact-tabs-2 .view-display-id-find_a_store_agent{
        float: none;
        width: 100%;
    }
    #contact-tabs-2 .view-display-id-block_1{
        float: none;
        padding: 0;
        width: 100%;
    }

}
@media only screen and (max-width: 530px) {
    #menu-bar .menu-depth-1 {
        max-width: 30%;
        min-width: 1vw;
        float: left;
    }

    #footer #block-menu-menu-menu-bottom {
        float: none;
        display: block;
        width: 100%;
    }
    #branding {
        display: block;
    }

    #menu-bar {
        width: 90%;
        margin-right: 0;
    }

    .view-bookmarks .item-list>ul>li {
        max-width: 100%;
        width:100%;
    }
    .view-bookmarks #favorites-icons {
        float: none;
        margin-left: 30px;
        margin-top:0px;
        margin-bottom: 30px;
        margin-right: 30px;
        width:100%;
    }

    .product-applications{
        background-image: none;
    }
    .product-applications-inner{
        padding: 20px 30px 30px;
    }

    .field-name-field-exhibition-image figure {
        max-width: 100%;
    }

    .field-name-field-exhibition-image figure img {
        margin: 0px auto;
        display:block;
    }

    .node-exhibitions .field-name-field-exhibition-body2, .node-exhibitions .field-name-body {
        margin: 30px;
    }
    .node-exhibitions .field-name-body {
        margin-bottom: 0;
    }

    .node-exhibitions .field-name-field-exhibition-body2 {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 510px) {
    .node-products .product-overview .title-designer {
        margin: 20px 0 0 19px;
        width: 100%;
    }
    .node-products .product-overview .icons {
        margin: 25px 0 0 19px;
        width: 100%;
    }
    .node-products .product-overview .icons .btn-3dview {
        margin-top: 0;
    }
    .node-products .product-overview .icons .service-links,
    .node-products .product-overview .icons .flag-outer,
    .node-products .product-overview .icons .icon-print,
    .node-products .product-overview .icons .icon-download,
    .node-products .product-overview .icons .icon-3dview{
        margin-top: 10px;
    }
    .node-products .product-overview .field-name-field-product-collection {
        clear: both;
        display: block;
        float: none;
    }
}

@media only screen and (max-width: 480px) {
    .view-menu-top-furniture-collection-rollover .view-content li, #block-views-fr-block .view-fr li {
        width: 32%;
    }
    #block-views-fr-block .view-fr ul {
        padding: 0;
    }
    .view-menu-top-furniture-collection-rollover .view-content li, #block-views-fr-block .view-fr li {
        height: 125px;
    }

    .view-filters .views-exposed-widget label {
        min-width: 100px;
    }

    .field-helper {
        width: 100%;
    }

    #cc-tabs label {
        max-width: 100%;
        width: 100%;
    }
    #cc-tabs #my-form .form-textarea-wrapper,
    #cc-tabs #my-form input, #cc-tabs #my-form select{
        width: 100%;
    }

    .view-filters .views-exposed-form {
        max-width: 350px;
        margin:0px auto;
        float:none;
    }
    .contact-content-form .form-item input, .contact-content-form .form-item .form-textarea-wrapper,
    .contact-content-form .form-item label,
    .contact-content-form .form-item .form-select {
        width: 100%;
        float:none;
        display: block;
        max-width: 100%;
    }
    #contact-tabs-1 .contact-content.contact-content-form h3 {
        margin: 0 30px;
    }
    #contact-tabs-1 .contact-content.sits-address .field {
        width: 100%;
        display: block;
    }
    #contact-tabs-1 .contact-content .node-contact .field-name-field-contact-address {
        margin-bottom: 20px;
    }
    #contact-tabs-1 .contact-content.sits-address .field-name-field-contact-address-footer {
        margin-bottom: 50px;
    }
    .node-career .career-image, .node-career .career-box,
    #contact-tabs-2 .view-content .item-list ul li {
        width: 100%;
    }


}
@media only screen and (max-width: 470px) {
    #search-form .form-item-keys label {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
        display: block;
    }
    #search-form #edit-keys {
        display: block;
        padding: 0px 20px;
        max-width: 100%;
        width: 100%;
    }
    .page-search #search-form #edit-submit {
        float:right;
        margin-top:-30px;
        margin-right: 10px;
    }
}
@media only screen and (max-width: 440px) {
    .view-filters .views-exposed-widget select,
    .view-filters .views-exposed-widget label, 
    .view-filters .views-exposed-widget .views-widget {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .views-exposed-form .views-exposed-widget,
    .view-filters .views-exposed-form {
        float: none;
    }
    .views-exposed-form .views-exposed-widget {
        padding: 0;
    }


    .view-fabrics-collection-family-color-fields .views-row {
        display: block;
        margin: 0 auto;
    }
    .view-collection-overview-products-by-type .item-list li,
    .view-designers .item-list ul li,
    .view-exhibitions .item-list ul li,
    .search-results li,
    .view-furniture-collection-products-by-type-and-collection .item-list li.special, .view-collection-overview-products-by-type .item-list li.special {
        width: 100%;
        overflow: hidden;
    }
    #contact-tabs-2 .view-contact .views-exposed-widget {
        margin: 15px 30px;
    }

    .page-contact .dtabs li {
        width: 45%;
        margin:0; padding:0;
    }
}

@media only screen and (max-width: 400px) {
    #menu-bar {
        margin-right: 20px;
        margin-left:20px;
        width: 100%;
    }
    #menu-bar .menu-depth-1 {
        max-width: 28vw;
    }

    .view-menu-top-furniture-collection-rollover .view-content li, #block-views-fr-block .view-fr li {
        width: 49%;
    }
    #block-views-frontpage-new-arrivals2-block .item-list li {
        width: 100%;
    }

    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li {
        max-width:300px;
    }
    #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li>div {
        max-width: 200px;
    }

    #search-block-form--2 {
        width: 290px;
    }
    #search-block-form--2 #edit-search-block-form--4 {
        width: 255px;
    }
    #ui-theme-basic-green.ui-menu .ui-menu-item,
    #ui-theme-basic-green.ui-menu li,
    #ui-theme-basic-green.ui-menu {
        min-width: 200px !important;
        max-width: 300px !important;
        width:300px !important;
    }

    #fabric-tabs ul.ftabs li {
        width: 48.5%;
    }

    #product-tabs-2 .item-list .views-row img,
    #product-tabs-2 .item-list .views-row {
        display: block;
        float: none;
        margin: 0px auto;
    }


    .node-products .product-overview .icons,
    .node-products .product-overview .title-designer {
        display: block;
        width:100%;
        margin: 10px 20px;
    }

    #product-tabs.three-tabs .product-tabs-list li {
        text-indent: 0px;
        text-align: center;
    }
    .page-contact .dtabs li {
        width: 40%;
        margin:0; padding:0;
    }

    .job-offert .job-offer-body .node-content>div {
        padding: 0 30px;
    }

    .job-offert .job-offer-body .node-content .field-name-field-job-offers-for, .job-offert .job-offer-body .node-content .field-name-field-job-offers-description, .job-offert .job-offer-body .node-content .field-name-field-job-offers-requirements, .job-offert .job-offer-body .node-content .field-name-field-job-offers-contact {
        margin: 30px 0 0 0;
    }

    #kariera-tabs .career-box2 {
        padding: 30px;
    }
}
@media only screen and (max-width: 360px) {
    .node-products .product-overview .icons {
        margin-left: 20px;
/*        overflow: hidden;*/
    }

    node-products .product-overview .title-designer {
        margin: 0px 20px;
    }
    .view-furniture-collection-products-by-type-and-collection h3, .view-collection-overview-products-by-type h3,
    #columns #main-content #main-content-header #page-title {
        text-indent: 0px;
        padding-left: 30px;
        padding-right: 30px;
    }
    #menu-bar .menu-depth-1 {
        max-width: 33%;
    }

    #menu-bar {
        margin-left: 0px;
    }

    .page-contact .dtabs li {
        width: 35%;
        margin:0; padding:0;
    }
    .ui-tabs .ui-tabs-nav {
        width: 110%;
    }
}

@media only screen and (max-width: 335px) {
    #fabric-tabs .view>.view-content > .item-list>ul>li {
        display: block;
        margin: 0 auto;
    }
}

/* ukrycie błędu wysyłania formularza kontaktowego */
.front .messages.error {
    display: none;
}

.view-product-composition .item-list li {
    display: block;
}

.view-product-composition .item-list .views-field {
    display: inline-block;
}

.view-product-taxonomies .item-list ul li.views-row {
    display: block;
}

.view-frontpage-last-exhibition p {
    font-size: 14px;
}

.language-switcher-locale-url li {
    display:inline-block;
}
.language-switcher-locale-url li.first {
    padding-right: 5px;
    margin-right: 5px !important;
    border-right: 1px solid #3f4545
}

/* Ukryty język szwedzki */
/*
.language-switcher-locale-url .sv {
    display: none;
}
*/

#block-locale-language .language-switcher-locale-url li {
    border-right: 1px solid #3f4545;
    padding-right: 5px;
    margin-right: 5px;
}

#block-locale-language .language-switcher-locale-url .sv {
    border-right-width: 1px !important; 
    padding-right: 4px !important;
    margin-right: 0px;
}
#block-locale-language .language-switcher-locale-url li.last {
    border-right: none;
    padding-left: 4px; 
}

.no-results {
    text-align: center;
}

#product-tabs .no-results {
    padding-top: 30px;
}

.front #views_slideshow_cycle_main_frontpage_top_slider-block .views-field-title .field-content span {
    font-size:12px;
    display:block;
}
.front #views_slideshow_cycle_main_frontpage_top_slider-block .views-field-title .field-content span.birds {
    text-indent: -10000px;
    background: url(../images/icons/sits_birds_logo_big-2.png) no-repeat;
    width: 140px;
    height:44px;
}
.front #views_slideshow_cycle_main_frontpage_top_slider-block:hover {
    cursor: pointer;
}


/*contact tabs*/
.node-type-find-sales-representative-retail #page #main-content-header {
    background: #F6F6F2;
}
.node-type-find-sales-representative-retail #tasks, .node-type-find-sales-representative-retail #tasks .tabs {
    margin-bottom: 0;
}
.node-type-find-sales-representative-retail #contact-tabs .dtabs{
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 80px;
}
.node-type-find-sales-representative-retail #contact-tabs .dtabs li {
    list-style: none;
    float: left;
    width: 50%;
}
.node-type-find-sales-representative-retail #contact-tabs .dtabs li >a, .page-contact #contact-tabs .dtabs li>a{
    background: #F6F6F2;
    padding: .5em 1em;
    text-decoration: none;
    float:left;
    width: 100%;
}
.page-contact  #contact-tabs .dtabs li.current>a,
.page-contact  #contact-tabs .dtabs li>a:focus,
.page-contact  #contact-tabs .dtabs li>a:hover,
.page-contact  #contact-tabs .dtabs li.current>a:focus,
.page-contact #contact-tabs .dtabs li.current>a:hover,
.page-contact  #contact-tabs .dtabs li.current>a, .node-type-find-sales-representative-retail #contact-tabs .dtabs li.current>a,
.node-type-find-sales-representative-retail #contact-tabs .dtabs li a:hover, 
.node-type-find-sales-representative-retail #contact-tabs .dtabs li a:focus,
.node-type-find-sales-representative-retail  #contact-tabs .dtabs li.current>a:hover,
.node-type-find-sales-representative-retail  #contact-tabs .dtabs li.current>a:focus{
    background: #fff;
    cursor: pointer;
}
.node-type-find-sales-representative-retail #contact-tabs .dtabs li h2 {
    margin: 0 30px;
    font-size: 16px;
    line-height: 2em;
}
@media screen and (max-width: 679px){
    .node-type-find-sales-representative-retail #contact-tabs .dtabs {
        margin-bottom: 80px;
    }
    .node-type-find-sales-representative-retail #contact-tabs .dtabs li , .page-contact  #contact-tabs .dtabs li{
        width: 100%;
    }
}

/* REALIZACJA*/

.field_implementation_room_name .field-item {
    color: white;
    text-transform: capitalize;
    position: absolute;
    padding-top: 30px;
    font-size: 28px;
    text-indent: 30px;
    z-index: 1000;
}
.backto-link{
    font-size: 15px;
    float: right;
    margin-right: 30px;
}
.implementation-pagging a{
    font-size: 15px;
}
.implementation-pagging .prev,
.implementation-pagging .next{
    display: table;
}
.implementation-pagging .prev a{
    background: url(../images/prev-small.png) 0 5px no-repeat;
    margin: 0 20px 0 0;
    padding: 0 0 0 10px;
}
.implementation-pagging .next a{
    background: url(../images/next-small.png) right 5px no-repeat;
    padding: 0 10px 0 0;
}
#page-title .date {
    font-size: 16px;
    font-weight: normal;
}
.implementation-slider, .implementation-products{
    clear: both;
    min-width: 100%;
}
.mplementation-products-lists{
    padding: 30px;
    overflow: auto;
}
.mplementation-products-lists .item{
    padding: 30px;
    text-align: center;
    box-sizing: border-box;
}
.mplementation-products-lists .title {
    width: 100%;
    padding: 30px 0;
    font-size: 16px;
}
.implementation-overview {
    width: 100%;
    background: #414546;
    overflow: auto;
    padding: 0 0 60px 0;
}
.implementation-overview >div{
    float: left;
    display: inline-block;
    padding: 30px;
    box-sizing: border-box;
    color: white;
}
.implementation-overview >div h2{
    color: white;
}
.implementation-overview .implementation-description{
    width: 75%;
    font-size: 18px;
}
.implementation-overview .implementation-description .field-items{
    width: 75%;
    font-size: 18px;
    padding: 30px;
    text-indent: 30px;
}
@media screen and (min-width: 768px){
    .field_implementation_room_name .field-item {
        padding-top: 30px;
        font-size: 28px;
        text-indent: 30px;
    }
    .mplementation-products-lists .item{
        width: 25%;
        display: inline-block;
    }  
    .implementation-overview .implementation-designer{
        width: 25%;
    }
    .implementation-overview .implementation-designer .field-label, .implementation-overview .implementation-designer .field-items {
        display: inline-block;
        padding: 30px 10px;
        vertical-align: top;
        margin-top: 0;
    }    
}

@media screen and (max-width: 767px) and (min-width: 601px){
    .field_implementation_room_name .field-item {
        padding-top: 15px;
        font-size: 18px;
        text-indent: 15px;
    }
    .mplementation-products-lists .item{
        width: 50%;
        display: inline-block;
        float: left;
    }
    .implementation-overview {
        padding: 0;
    }
}

/* flexslider */
.node-type-realizacja .flex-control-nav{
    display: none;    
}
.flexslider .slides > li {
    margin-right: 0;
}
.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 0.7;
    left: 10px;
    position: absolute;
    top: 45%;
    z-index: 20;
    text-indent: -100000px;
    background: url(../images/strzalkaL.gif) no-repeat;
    height: 56px;
    width: 30px;
    left: 30px;
    display: block;
    color: white;
    font-size: 1px;
}
.flexslider:hover .flex-direction-nav .flex-next {
    opacity: 0.7;
    right: 10px;
    background: url(../images/strzalkaP.gif) no-repeat;
    right: 30px;
    left: auto;
    text-indent: -100000px;
    position: absolute;
    top: 45%;
    z-index: 20;
    height: 56px;
    width: 30px;
    display: block;
    color: white;
    font-size: 1px;
}
.flexslider:hover .flex-direction-nav a {
    opacity: 1;
}

.implementation-slider>.field_implementation_images {
    width: 90%;
}

.implementation-slider>.field_implementation_images .flex-viewport {
    overflow: visible !important
}

.implementation-slider>.field_implementation_images .flexslider .flex-direction-nav .flex-prev {
    display: none;
}
.implementation-slider>.field_implementation_images .flexslider .flex-direction-nav .flex-next,
.implementation-slider>.field_implementation_images .flexslider:hover .flex-direction-nav .flex-next {
    right: -15%;
    text-align: right;
    width: 15%;
    top: 0;
    bottom: 0;
    background: none;
    height: auto;
    background: rgba(0, 0, 0, 0) url("../images/strzalkaP.gif") no-repeat scroll center;
    text-indent: -9999px;
}


@media screen and (max-width: 600px){
    .field_implementation_room_name .field-item {
        padding-top: 10px;
        font-size: 16px;
        text-indent: 10px;
    }
    .mplementation-products-lists .item{
        display: block;
        margin: auto;
    }
    .implementation-overview {
        padding: 0;
    }
    /* COOKIES */
    #sliding-popup .popup-content #popup-buttons button {
        margin-top: 0;
        font-size: 14px;
    }
    #sliding-popup .popup-content #popup-text p {
        line-height: 1.2;
        font-weight: normal;
    }
}

/* FOOTER */
#footer #block-views-frontpage-last-exhibition-block, #footer #block-views-frontpage-last-about-us-block {
    min-height: 650px;
}

.view-menu-top-furniture-collection-rollover.view-display-id-block>.view-content .views-row-first,
#block-views-fr-block .views-row-first,
#block-views-fr-block .views-row.views-row-5, 
.view-menu-top-furniture-collection-rollover.view-display-id-block>.view-content .views-row-5
{
    display: none !important;
}


/*przycisk exclusively*/

.exclusively {
    color: #3F4545;
    text-indent: 0px;
    position: absolute;
    top: 60px;
}

@media (max-width: 510px) {
    .exclusively {
        top: 50px;
    }

    #block-system-main .product-overview .field-name-field-product-collection {
        margin-top: 25px;
    }
}
.exclusively,
.views-field-field-product-nap,
.views-field-field-product-euforma,
.views-field-field-product-moma {
    display:none;
}

/*label na str kategorii "dostępne tylko w NAP"*/
.i18n-pl .exclusively,
.i18n-pl .views-field-field-product-moma,
.i18n-pl .views-field-field-product-euforma,
.i18n-pl .views-field-field-product-nap {
    display: block;
}
.i18n-pl .views-field-field-product-moma span,
.i18n-pl .views-field-field-product-euforma span,
.i18n-pl .views-field-field-product-nap span {
    display: block;
    font-size: 14px;
    float: right;
    border: 1px solid #DFE0E0;
    color: #3F4545;
    padding: 0px 7px;
    position: absolute;
    right: 18%;
    top: 0px;
    margin: -1px 0    
}

.i18n-pl .views-field-field-product-moma>span,
.i18n-pl .views-field-field-product-euforma>span,
.i18n-pl .views-field-field-product-nap>span  {
    display: none;
}

.i18n-pl .has-tags-new .views-field-field-product-moma span,
.i18n-pl .has-tags-new .views-field-field-product-euforma span,
.i18n-pl .has-tags-new .views-field-field-product-nap span {
    right: 30%;
}


@media (max-width: 900px) {
    .i18n-pl .views-field-field-product-moma > span,
    .i18n-pl .views-field-field-product-euforma > span,
    .i18n-pl .views-field-field-product-nap > span,
    .i18n-pl .has-tags-new .views-field-field-product-moma > span,
    .i18n-pl .has-tags-new .views-field-field-product-euforma > span,
    .i18n-pl .has-tags-new .views-field-field-product-nap > span,
    .item-list .views-field-views-conditional-1 .views-field-field-fabrics-colors-tags {
        right: 8%;
        left:auto;
    }
    .view-furniture-collection-products-by-type-and-collection .views-field-field-fabrics-colors-tags {
        top:-26px;
    }

    .i18n-pl .views-field-field-product-nap > span, 
    .i18n-pl .views-field-field-product-euforma > span, 
    .i18n-pl .views-field-field-product-moma > span {
        top: 0px;
    }


    .item-list .views-field-views-conditional-1 .views-field-field-fabrics-colors-tags {
        border: 1px solid #393E3E;
    }

    /*label na str produktu "dostepne tylko w nap"*/

    #content-column .product-overview .exclusively {
        display: none;
    }

    .i18n-pl #content-column .product-overview .exclusively {
        display: block;
    }
}

@media (max-width: 900px) {
    .view-furniture-collection-products-by-type-and-collection .views-field-field-fabrics-colors-tags {
        top:26px;
    }
}


#page .view-furniture-collection-products-by-type-and-collection span.field-content.views-field-field-fabrics-colors-tags, #page .view-collection-overview-products-by-type span.field-content.views-field-field-fabrics-colors-tags {
    border: none;
    top: -1px;
    left: 71%;
    font-size: 15px;
}


/*
3d view links
*/



.node-products .product-overview .icons .popup-3dlinks .icon-3dview {
    background: url('../images/icons/3D-view_white.png') no-repeat;
}
.node-products .product-overview .icons .popup-3dlinks a:nth-child(1){
    background: none;
    text-indent: 0;
    font-family: "Sailec-Regular","Trebuchet MS", "Helvetica Neue", Arial, Helvetica, sans-serif;
    margin-left: 4px;
}
 .node-products .product-overview .icons .popup-3dlinks a:nth-child(2) {
    background: none;
    text-indent: 0;
    font-family: "Sailec-Regular","Trebuchet MS", "Helvetica Neue", Arial, Helvetica, sans-serif;
    margin: 2px 0px 0 4px;
}
 .node-products .product-overview .icons .popup-3dlinks a:nth-child(3) {
    background: none;
    text-indent: 0;
    font-family: "Sailec-Regular","Trebuchet MS", "Helvetica Neue", Arial, Helvetica, sans-serif;
    margin-right: 0;
}
.node-products .product-overview .icons .popup-3dlinks {
    position: absolute;
    top: -41px;
    left: 40%;
    -ms-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    height: auto;
    width: auto;
    z-index: 1000;
    padding: 5px;
    background: black; 
    border-radius: 5px;
    display: -webkit-box;      
    display: -moz-box;       
    display: -ms-flexbox;   
    display: -webkit-flex;
    display: flex;
    opacity: 1;
}
.node-products .product-overview .icons .popup-3dlinks-hidden {
    display: none;
}
.node-products .product-overview .icons .popup-3dlinks-transition {
    opacity: 0;
    -webkit-transition: opacity ease-in 0.4s;
    transition: opacity ease-in 0.4s;
}
.node-products .product-overview .icons .btn-3dview:hover {
    color: #aaa;
}
.node-products .product-overview .icons .popup-3dlinks .pointer-wrap{
    width: 100%;
    height: 18px;
    position: absolute;
    bottom: -17px;
    left: 0;
    text-align: center;
}
.node-products .product-overview .icons .popup-3dlinks #down-triangle { 
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: 6px solid black;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
}
.node-products .product-overview .icons .btn-3dview {
    margin-right: 20px;
    margin-top: 30px;
    float: left;
    width: 23px;
    height: 20px;
    position: relative;
    background: none;
    text-indent: 0;
    font-family: "Sailec-Regular","Trebuchet MS", "Helvetica Neue", Arial, Helvetica, sans-serif;
    cursor: default;
}
.node-products .product-overview .icons .link-3dview {
    margin-right: 0px;
    margin-top: 0px;
    float: left;
    width: 24px;
    display: inline-block;
    height: 20px;
    color: white;
    margin: 2px 2px 2px 2px;
    line-height: 20px;
    font-size: 11px;
}
.node-products .product-overview .icons .link-3dview:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 510px) {
    .node-products .product-overview .icons .btn-3dview {
        margin-top: 10px;
    }
}


/*
slider popup
*/
.product-container .product-slider .slider-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 300px;
    height: 80px;
    background: #FFFFFF;
    display: flex;
    padding: 19px 0 15px 22px;
    z-index: 1000;
    -webkit-box-shadow: 2px 2px 7px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 2px 2px 7px 0px rgba(0,0,0,0.2);
    box-shadow: 2px 2px 7px 0px rgba(0,0,0,0.2);
}
.product-container .product-slider .slider-popup .slider-popup-link {
    width: 55%;
}
.product-container .product-slider .slider-popup .slider-popup-link .slider-popup-title {
    display: block;
    font-size: 2.3em;
    line-height: 0.95em;
}
.product-container .product-slider .slider-popup .slider-popup-link .slider-popup-descr {
    display: block;
    font-size: 0.9em;
    padding-left: 1px;
}
.product-container .product-slider .slider-popup .slider-popup-close-icon{
    font-size: 1.4em;
    position: absolute;
    top: 5px;
    right: 15px;
    width: auto;
    height: 22px;
    cursor: pointer;
}
.product-container .product-slider .slider-popup .slider-popup-img {
    width: 30%;
    margin-top: -10px;
}
.product-container .product-slider .slider-popup .slider-popup-img img {
    width: 100%;
    height: auto;
}


@media screen and (max-width: 767px) {
    .has-box-birds #flexslider-1 {
        margin-top: 105px;
    }

   .product-container .product-slider .slider-popup {
        position: relative;
        float: right;
        margin-top: -105px;
    }
}

@media screen and (max-width: 340px) {
    .has-box-birds #flexslider-1 {
        margin-top: 135px;
    }

   .product-container .product-slider .slider-popup {
        position: relative;
        float: right;
        margin-top: -130px;
        margin-right: -15px;
        width: 94%;
    }
    .product-container .product-slider .slider-popup .slider-popup-link {
        width: 48%;
    }
    .product-container .product-slider .slider-popup .slider-popup-img {
        margin-top: -6px;
    }
}


/*
dodaj do ulubionych przycisk
*/
@media screen and (min-width: 510px) and (max-width: 810px){
    .node-products .product-overview .icons .flag-outer {
        margin-top: 31px;
    }
}
@media screen and (max-width: 510px){
    .node-products .product-overview .icons .flag-outer {
        margin-top: 12px;
    }
}
.product-overview .icons .flag-outer .flag-wrapper {
    float: left;
}

.product-overview .icons .flag-outer .flag-wrapper a {
    float: left;
}

/*UKRYCIE  WYBORU JEZYKA HEBRAJSKIEGO*/


/*STYLE DLA JEZYKA HEBRAJSKIEGO*/

.i18n-he #header #branding {
    margin-right: 10px;
}


/*menu górne*/

.i18n-he #menu-bar {
    float: left;
    margin-left: 110px;
}
@media screen and (max-width: 550px) {
    .i18n-he #menu-bar {
        margin-left: 0px;
    }
}
.i18n-he #menu-bar.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li {
    text-align: right;
}
/* footer */

.i18n-he #footer #block-views-frontpage-view-socials, .i18n-he #footer #block-views-frontpage-view-sits-apps {
    float: left;
}
.i18n-he  #footer #block-views-frontpage-view-socials .block-inner {
    margin-top: 20px;
    margin-left: 10px;
}
.i18n-he  #footer #block-views-frontpage-view-sits-apps h2, #footer #block-views-frontpage-view-sits-apps .block-content {
    float: right;
}

/*strona glowna*/


.i18n-he #block-locale-language {
    left: 25px;
    right: auto;
}

.i18n-he .serduszko-lupa {
    right: auto;
    left: 25px;
}
.i18n-he #block-locale-language .language-switcher-locale-url li {
    border-left: 1px solid #3f4545;
    border-right: none;
    padding-right: 1px;
    padding-left: 4px;
}

.i18n-he #block-locale-language .language-switcher-locale-url .sv {
    border-left-width: 0px !important; 
    padding-left: 0px !important;
    margin-right: 0px;
    border-right: none;
}
.i18n-he #block-locale-language .language-switcher-locale-url li.last {
    border-left: none;
    border-right: 1px solid #3f4545;
    padding-right: 5px;
}
.i18n-he #block-locale-language .language-switcher-locale-url li.first {
    border-right: none;
}

.i18n-he #block-views-frontpage-collections-block .view-content .views-row .views-field-nothing {
    right: 0px;
    left: -5px;
}

/*strona kontakt*/ 


.i18n-he .contact-content-form .form-item input,
.i18n-he .contact-content-form .form-item .form-textarea-wrapper,
.i18n-he .contact-content-form .form-item .form-select {
    float: left;
}
.i18n-he .contact-content-form .form-item label {
    max-width: 150px;
}

.i18n-he #contact-tabs-1 .user-info-from-cookie #edit-country {
    background: url(../images/select.png) no-repeat center left #f6f6f2 !important;
}
.i18n-he  .page-contact .dtabs li h2 {
    margin:0 45px;
}
.i18n-he .form-item-country > select {
    background: url(../images/select.png) no-repeat center left #f6f6f2 !important;
}
.i18n-he #contact-tabs-1 .contact-content {
    display: inline-table;
    width: 47.5%;
    padding-right: 20px;
}
.i18n-he #contact-tabs-2 .view-display-id-find_a_store_agent {
    float: left;
}
.i18n-he #contact-tabs-2 .view-display-id-block_1 {
    float: right;
    width: 47.5%;
    padding: 0 14px 0 0px;
}
.i18n-he #contact-tabs #edit-name-list-wrapper > label {
    margin-left: 15px;
}
.i18n-he #contact-tabs #edit-field-stores-city-value-wrapper > label {
    margin-left: 15px;
}
.i18n-he #contact-tabs-2 h2 {
    margin-right: 30px;
}
@media screen and (max-width: 370px) {
    .i18n-he #contact-tabs #edit-name-list-wrapper > label {
        margin-left: 0px;
        text-align: right;
    }
    .i18n-he #contact-tabs #edit-field-stores-city-value-wrapper > label {
        margin-left: 0px;
        text-align: right;
    }
}
@media screen and (max-width: 680px) {
    #content > #contact-tabs > ul > li:last-child a {
        margin-left: -15px;
    }
}
.i18n-he #main-content #content #contact-tabs .dtabs li:nth-child(1) {
    float: right;
}
#contact-tabs-2 .view-contact > .view-content,
#contact-tabs-2 .view-contact > .view-header,
#contact-tabs-2 .view-contact > .item-list-pager {
    display: none; 
}
#contact-tabs-2 .view-contact > .view-content.adress-visible,
#contact-tabs-2 .view-contact > .view-header.adress-visible,
#contact-tabs-2 .view-contact > .item-list-pager.adress-visible {
    display: block;
}
.find-store-title {
    margin-left: 20px;
    margin-right: 20px;
}
.find-store-title span {
    font-size: 25px;
}
/*strona kategorii*/

.i18n-he .view-filters .views-exposed-widget label {
    float: right;
}
.i18n-he .view-filters .views-exposed-form {
    float: left;
}
.i18n-he  .view-furniture-collection-products-by-type-and-collection .view-filters {
    left: 25px;
}
.i18n-he .view-filters .views-exposed-widget select {
    background: url(../images/select.png) no-repeat center left #f6f6f2 !important;
}
.i18n-he .ajax-progress.ajax-progress-throbber{
    margin-right: -45px;
}
@media screen and (max-width: 440px) {

    .i18n-he .view-filters .views-exposed-widget label {
        float: none;
    }
    .i18n-he  .view-filters .views-exposed-form {
        float: none;
    }
}
@media only screen and (max-width: 900px) {
    .i18n-he .views-exposed-form .views-exposed-widget {
        float: left;
    }
}
@media only screen and (max-width: 480px) {
    
    .i18n-he .view-filters .views-exposed-form {
        max-width: 350px;
        margin: 0px auto;
        float: none;
    }
    .i18n-he .view-furniture-collection-products-by-type-and-collection .view-filters {
        left: 0px;
    }
}
@media only screen and (max-width: 440px) {
    .i18n-he .view-filters .views-exposed-widget label {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .i18n-he .views-exposed-form .views-exposed-widget {
        float: none;
    }
}
@media only screen and (min-width: 1050px) {
    .i18n-he .description-text-helper .field-name-field-collection-description2 {
        float: left;
    } 
}

/*strona produktu*/ 
@media only screen and (min-width: 1050px) {
    .i18n-he .node-products .product-overview .field-name-field-product-collection {
        float: left;
        margin-left: 30px;   
    }
}
.i18n-he .view-product-view-top-slider .slides .views-field-nothing {
    right: auto;
    left: 13%;
}
.i18n-he .product-overview .icons .flag-outer, .i18n-he .product-overview .icons .icon-download {
    float: right;
}
.i18n-he #product-tabs .product-tabs-list li {
    margin-bottom: 0px;
}
.i18n-he .carousel-drupal>h3 {
        margin-right: 30px;
    }

/*strona about us asdd*/ 

.i18n-he .node-about-us .field-name-field-about-us-image1 {
    float: right;
    margin-right: 0px;
    margin-bottom: -6px;
}
.i18n-he .iner-blok-table > .field-type-text {
    margin-right: 70px;
}
.i18n-he .iner-blok-table > .field-type-text-with-summary {
    margin-right: 150px;
}

.i18n-he .about_us_subtitle2 .field-name-field-about-us-subtitle2 {
    right: 30px;
    margin-right: 70px;
}
.i18n-he .about_us_subtitle2 .field-center {
    margin-right: 150px;
}
.i18n-he .double-columns {
    padding: 0 70px;
}
.i18n-he .double-columns > div:first-child {
    margin-left: 20px;
    margin-right: auto;
}
.i18n-he .double-columns > div:last-child {
    margin-right: auto;
    margin-left: 20px;
}

@media only screen and (max-width: 680px) {
    
    .i18n-he .iner-blok-table > .field-type-text {
        margin-right: 40px;
    }
    .i18n-he .iner-blok-table > .field-type-text-with-summary {
        margin-right: 100px;
    }
    .i18n-he #block-system-main .node-about-us .about_us_subtitle2 .field-name-field-about-us-subtitle2 {
        margin-right: 40px;
    }
    .i18n-he #block-system-main .node-about-us .about_us_subtitle2 .field-center {
        margin-right: 100px;
    }
}

@media only screen and (max-width: 580px) {
    .i18n-he .node-about-us .field-name-field-about-us-image1 img {
        width: 100%;
    } 
    .i18n-he #block-system-main .node-about-us .iner-blok-table {
        display: block;
        width: 100%;
        overflow: hidden;
    }
    .i18n-he #block-system-main .node-about-us .iner-blok-table .field-name-field-about-us-subtitle1 {
        margin: 50px 50px 0px 50px;
    }
    .i18n-he #block-system-main .node-about-us .iner-blok-table .field-name-field-about-us-body-subtitle1 {
        margin: 50px;
    }
    .i18n-he .node-about-us .field-name-field-about-us-image1 {
        float: none;
    }
    .i18n-he .node-about-us .tower-image2 .field-type-image {
        margin: 0px;
    }
    .i18n-he #block-system-main .node-about-us .about_us_subtitle2 .field-name-field-about-us-subtitle2 {
        margin: 50px 50px 0px 50px;
        right: 0;
    }
    .i18n-he #block-system-main .node-about-us .about_us_subtitle2 .field-center {
        margin: 50px;
    }
    .i18n-he .node-about-us .double-columns {
        padding: 50px;
    } 
}


/* Strona events */
.i18n-he .node-exhibitions .helper-1 .helper-inner-2 {
    padding-right: 30px;
}
.i18n-he .node-exhibitions .helper-1 .helper-inner-2 .icons {
    left: auto;
    right: -70px;
}
.language-switcher-locale-url li:nth-child(5) {
    border-right: none;
}
.i18n-he .language-switcher-locale-url li:nth-child(5) {
    border-right: 1px solid #3f4545;
}
body:lang(he) .pager-next, body:lang(he) .pager-previous, body:lang(he) .pager-current{
    display: inline-block;
}
body:lang(he) .pager-current span:nth-child(2){
    margin-left: 2px;
    margin-right: 2px;
}

/* str głowna */
.i18n-he #search-block-form--2 {
    right: auto;
    left: -20px;
    top: 45px;
}
/*strona produktu BIRDS */

.i18n-he .product-container .product-slider .slider-popup {
    flex-direction: row-reverse;
}
.i18n-he .product-container .product-slider .slider-popup .slider-popup-link {
    margin-right: 10px;
    margin-left: -10px;
}

.views_slideshow_cycle_main .views-field-title span.field-content {
    display: none;
}
.node-simple-page .node-content {
    margin: 0 20px 10px;
}

#block-views-frontpage-collections-block .view-content .views-field-field-collection-subtitle .field-content {
    display: none;
}

.description-text-helper .field-name-field-collection-description2 {
 display: none;
}

.description-text-helper .field-name-description-field {
    font-size: 16px;
}

.nav ul.menu .view-menu-top-furniture-collection-rollover .attachment .view-content li .views-field-nothing .views-field-field-collection-subtitle {
    display: none;
}

/*about player*/

.is-splash.flowplayer .fp-ui, .is-finished.flowplayer .fp-ui, .is-paused.flowplayer .fp-ui {
display: none;
}


.flowplayer.is-splash {
cursor: default;
}

.fp-ratio {
padding-top: 40% !important;
}

.flowplayer.is-splash {
    background-size: auto;
}