/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 0;
}
.slick-arrow.slick-hidden {
    display: none;
}
/*
Version: @@ver@@ Timestamp: @@timestamp@@
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input{
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 27px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 27px;
    color: #444;
    text-decoration: none;

    border-radius: 0px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white));
    background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%);
    background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%);
    background-image: -o-linear-gradient(bottom, #eeeeee 0%, #ffffff 50%);
    background-image: -ms-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(top, #ffffff 0%, #eeeeee 50%);
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius:0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.9, white));
    background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 90%);
    background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 90%);
    background-image: -o-linear-gradient(bottom, #eeeeee 0%, white 90%);
    background-image: -ms-linear-gradient(top, #eeeeee 0%,#ffffff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 );
    background-image: linear-gradient(top, #eeeeee 0%,#ffffff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url('select2.png') right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-undermask {
    border: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9998;
    background-color: transparent;
    filter: alpha(opacity=0);
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -o-linear-gradient(bottom, #ccc 0%, #eee 60%);
    background-image: -ms-linear-gradient(top, #cccccc 0%, #eeeeee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(top, #cccccc 0%, #eeeeee 60%);
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url('select2.png') no-repeat 0 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background: #fff url('select2.png') no-repeat 100% -22px;
    background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
    background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
    background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
    background: url('select2.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
    background: url('select2.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
    background: url('select2.png') no-repeat 100% -22px, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url('select2-spinner.gif') no-repeat 100%;
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
            box-shadow: 0 0 5px rgba(0,0,0,.3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, white), color-stop(0.5, #eeeeee));
    background-image: -webkit-linear-gradient(center bottom, white 0%, #eeeeee 50%);
    background-image: -moz-linear-gradient(center bottom, white 0%, #eeeeee 50%);
    background-image: -o-linear-gradient(bottom, white 0%, #eeeeee 50%);
    background-image: -ms-linear-gradient(top, #ffffff 0%,#eeeeee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
    background-image: linear-gradient(top, #ffffff 0%,#eeeeee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, white), color-stop(0.5, #eeeeee));
    background-image: -webkit-linear-gradient(center top, white 0%, #eeeeee 50%);
    background-image: -moz-linear-gradient(center top, white 0%, #eeeeee 50%);
    background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
    background-image: -ms-linear-gradient(bottom, #ffffff 0%,#eeeeee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
    background-image: linear-gradient(bottom, #ffffff 0%,#eeeeee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results ul.select2-result-sub > li .select2-result-label { padding-left: 20px }
.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 40px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 60px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 80px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 100px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 110px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 120px }

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: white;
    color: #000;
}


.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
    background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
            box-shadow: 0 0 5px rgba(0,0,0,.3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url('select2-spinner.gif') no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
            box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0 );
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url('select2.png') right top no-repeat;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices{
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background:none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    border: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: absolute;
    outline: 0;
    left: 0px;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}
/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi)  {
  .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
      background-image: url('select2x2.png') !important;
      background-repeat: no-repeat !important;
      background-size: 60px 40px !important;
  }
  .select2-search input {
      background-position: 100% -21px !important;
  }
}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url('../images/fancybox/fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('../images/fancybox/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('../images/fancybox/blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url('../images/fancybox/fancybox_overlay.png');
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url('../images/fancybox/fancybox_sprite@2x.png');
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url('../images/fancybox/fancybox_loading@2x.gif');
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}
.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
    line-height: 0;
}

.clearfix:after {
    clear: both;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #fff;
    line-height: 1.5em;
}

img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #000;
}

*:focus {
    outline: none
}

*:focus {
    outline: none !important
}

a,
a:after {
    transition: all 0.4s;
}

p {
    margin: 0;
    -webkit-column-break-inside: avoid; /* Chrome, Safari */
    page-break-inside: avoid; /* Theoretically FF 20+ */
    break-inside: avoid-column;
}

input,
textarea {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

body {
    background: #000;
}





table.table-cart {
    border-collapse: collapse;
    border-spacing: 0;
}
.table-cart tr td {
    border-bottom: 1px solid #ffdd00;
    padding: 10px 0;
    text-align: center;
}

.table-cart tr td.table-cart-item-pic {
    width: 1%;
}
.table-cart tr td.table-cart-item-name {
    text-align: left;
}
.table-cart tr td.table-cart-item-pic img {
    max-width: 90px;
    margin-right: 10px;
}



.btn-cart-remove {
    color: #dc3545;
    font-size: 1.2em;
}
.btn-cart-remove:hover {
    color: #fff;
}

@media (max-width: 1000px) {
    #content table.table-cart tr:after {
        display: table;
        content: "";
        line-height: 0;
        clear: both;
    }
    #content table.table-cart td {
        border: none;
        position: relative;
        padding-left: 0;
        text-align: left;
        min-height: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    #content table.table-cart td:before {
        display: none;
    }
    #content table.table-cart tr {
        border-bottom: 1px solid #ffdd00;
        margin-top: 20px;
        padding-bottom: 20px;
    }
    #content td.table-cart-item-pic {
        width: 70px;
        float: left;
        margin-bottom: 10px;
    }
    #content td.table-cart-item-name {
        margin-left: 100px;
    }
    #content td.table-cart-item-unit-price {
        clear: both;
        float: left;
        width: 35%;
    }
    #content td.table-cart-item-qty {
        float: left;
        width: 20%;
    }
    #content td.table-cart-item-total-price {
        float: left;
        width: 35%;
    }
    #content table.table-cart td.table-cart-item-unit-price:before,
    #content table.table-cart td.table-cart-item-qty:before ,
    #content table.table-cart td.table-cart-item-total-price:before
    {
        display: inline;
        position: static;
        width: auto;
        top: auto;
        left: auto;
        text-align: left;
    }

    #content td.table-cart-item-actions {
        float:right
    }
}
@media(max-width: 480px) {
    #content table.table-cart td.table-cart-item-unit-price:before,
    #content table.table-cart td.table-cart-item-qty:before ,
    #content table.table-cart td.table-cart-item-total-price:before
    {
        display: block;
    }
}


.order-total {
    margin-bottom: 15px;
}
.order-total > div{
    float: right;
    padding: 20px;
    font-size: 22px;
    background-color: #ffdd00;
    color: #000;
    text-align: right;
}
.order-total > div > span {
    font-weight: bold;
}
@media(max-width: 800px) {
    .order-total > div {
        display: block;
        float: none;
        padding: 10px;
        font-size: 16px;
    }
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
}
@media(max-width: 800px) {
    .cart-buttons {
        display: block;
    }
}


.order-status {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.order-status-pending {
    color: #212529;
    background-color: #ffdd00;
}
.order-status-completed {
    color: #000;
    background-color: limegreen;
}
.order-status-canceled {
    color: #fff;
    background-color: #6c757d;
}.
 order-status-invalid {
    color: #fff;
    background-color: red;
}
#unite-overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100vh;
    table-layout: fixed;
    width: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
}
#unite-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    background: url('../images/close.png');
}
#unite-wrapper {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}
#unite-buttons {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1000;
}
#unite-buttons .btn {
    margin-right: 15px;
}

#unite {
    display: inline-block;
    position: relative;
    padding-top: 0px;
    padding-bottom: 40px;
    box-sizing: border-box;
    min-height: 230px;
    min-width: 320px;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}
#unite * {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#unite-photo {
    background: #000;
    cursor: pointer;
}
#unite-photo img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    display: block;
    pointer-events: none;
}
#unite-photo .slick-next {
    opacity: 0;
    right: 10px;
}
#unite-photo .slick-prev {
    opacity: 0;
    left: 10px;
}
#unite-photo:hover .slick-prev {
    opacity: 0.6;
}
#unite-photo:hover .slick-next {
    opacity: 0.6;
}
#unite-photo:hover .slick-prev.hover {
    opacity: 1.0;
}
#unite-photo:hover .slick-next.hover {
    opacity: 1.0;
}
#cookiePolicy {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    padding: 10px 0;
    color: #fff;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-family: Arial, Helvetica, Tahoma, Verdana;
    background: rgba(0, 0, 0, 0.9);
}

div#cookiePolicyWrap {
    margin: 0 auto;
    width: 960px;
    max-width: 100%
}

div#cookiePolicyWrap a {
    text-decoration: underline;
    color: #fff;
    font-size: 11px
}

div#cookiePolicyWrap a:hover {
    text-decoration: none;
    color: #fff;
    font-size: 11px
}

div#cookiePolicyClose {
    line-height: 40px;
    font-size: 40px;
    float: right;
    font-weight: bold;
    cursor: pointer;
    margin: 0 0 0 10px;
    color: #fff
}
div#cookiePolicyClose:hover {
    opacity: 0.9;
}
div#cookiePolicyClose::before {
    content: "\00d7";
}
div#cookiePolicyMore {
    clear:both;padding:10px 0 0 0;display:none;width:100%
}
#nav-trigger {
    position: relative;
    display: none;
    float: left;
    font-size: 16px;
    color: #fff;
    padding-left: 32px;
    transition: all 0.4s;
    margin-top: 14px;
    height: 22px;
}
#nav-trigger > span {
    display: none;
}
#nav-trigger > i,
#nav-trigger > i::before,
#nav-trigger > i::after {
    display: block;
    position: absolute;
    height: 2px;
    border-radius: 0px;
    background: #fff;
    width: 20px;
    top: 50%;
    left: 0;
    margin-top: -1px;
    transition: all 0.4s;
}

#nav-trigger i:before,
#nav-trigger i:after {
    content: "";
}
#nav-trigger i:before {
    transform: translateY(-7px);
}
#nav-trigger i:after {
    transform: translateY(7px);
}

#nav-trigger:hover i,
#nav-trigger:hover i:before,
#nav-trigger:hover i:after{
    background: #fff;
}
.nav-open #nav-trigger i {
    background: rgba(0,0,0,0);
}
.nav-open #nav-trigger i:after {
    transform: rotate(45deg);
    background: #cc061c;
}
.nav-open #nav-trigger i:before {
    transform: rotate(-45deg) ;
    background: #cc061c;
}
/** SHOW **/
#nav-trigger {
    display: block;
}
header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    z-index: 7001;
    height: 48px;
    border: 0;
    box-sizing: border-box;
    border-bottom: 3px solid #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
    transition: all 0.4s;
    transition-delay: 0.4s;
}

#header-wrap {
    box-sizing: border-box;
    height: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
#header-wrap::before {
    clear: both;
    content: "";
    display: table;

}
header nav {
    position: absolute;
    display: block;
    float: none;
    background: #000;
    padding: 0;
    margin: 0;
    width: 100%;
    top: 75px;
    right: 100%;
    transition: all 0.4s;
    color: #fff;
}
body.nav-open {
    overflow: hidden;
}
.nav-open header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    overflow-x: hidden;
    height: 100%;
    transition-delay: 0s;
    background: #000 !important;
}
.nav-open header nav {
    display: block;
    right: 0;
    transition-delay: 0.4s;
}
header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
header nav>ul {
    float: none;
    clear: both;
    border: 0;
}
header nav>ul.secondary {
    margin-top: 0;
    float: none;
}
header nav>ul>li {
    float: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 0;
    text-align: center;
}
header nav>ul>li:first-child {
}
header nav>ul>li>a {
    display: block;
    padding: 12px 0;
    font-size: 18px !important;
    font-weight: 800;
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
}
header nav>ul>li>a:hover {
    color: #cc061c;
}
/*header nav>ul>li:hover>.submenu {
    display: none;
}*/
header nav>ul>li>.submenu {
    display: none;
}
header nav>ul>li.open>.submenu {
    display: block;
}
.submenu {
    left: auto;
    min-height: 0;
    min-width: 0;
    padding: 0;
    position: static;
    top: 0;
    width: auto;
    font-size: 16px;
}

header nav>ul>li>.submenu ul {
    padding: 0;
}
header nav>ul>li>.submenu ul li {
    border-top: 1px solid rgba(255,255,255,0.1);
}
header nav>ul>li>.submenu ul li a,
header nav>ul>li>.submenu ul li span {

    white-space: normal;
    padding: 4px 0;
    display: block;
}
header nav>ul>li>.submenu ul li a:hover {
    color: #cc061c;
}

.submenu-heading {
    font-weight: 800;
    font-size: 12px;
}

header nav .submenu a:not([href]),
header nav .submenu a[href=""]
{
    opacity: 0.75 !important;
}
.header-contact {
    padding-left: 25px;
    padding-right: 25px;
    display: none;
}
.header-contact-item {
    margin-bottom: 25px;
}
.header-contact-icon {
    font-size: 3em;
    float: left;
    font-weight: 400;
}
.header-contact-heading,
.header-contact-content {
    margin-left: 64px;
}
.header-contact-heading {
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 15px;
}

@media screen and (min-width: 1024px) {
    #nav-trigger {
        margin-top: 25px;
    }


    #nav-trigger > span {
        display: inline;
    }
    header {
        height: 75px;
    }
    #header-wrap {
        position: relative;
    }
    .nav-open header {

        overflow: visible;
        height: 75px;
        /*transition-delay: 0s;*/
        /*background: #000 !important;*/
    }
    header nav {
        background: rgba(0,0,0,0.85);
        right: auto;
        left: 0;
        transform: translateY(-100%);
        z-index: -1;
        visibility: hidden;
        opacity: 0;
    }
    .nav-open header nav {
        z-index: 100;
        visibility: visible;
        transform: translateY(0);
        transition-delay: 0s;
        padding: 50px 0;
        opacity: 1;
    }
    header nav>ul {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        align-content: space-around;
    }
    header nav>ul>li {
        flex-grow: 1;
        border-right: 1px dashed rgba(255,255,255,0.1);
        border-top: 0;
        text-align: left;
        padding: 0 25px;
    }
    header nav>ul>li>a,
    header nav>ul>li>span {
        padding-top: 0;
    }
    header nav>ul>li .submenu {
        display: block;
        padding-left: 0px;
        font-size: 12px;
        font-weight: 300;
    }
    header nav>ul>li>.submenu ul li {
        border-top: 0;
    }
    header nav>ul>li .submenu ul ul {
        padding-left: 15px;
    }

    .nav-open header nav {
        display: flex ;
        flex-wrap: nowrap;
    }
    header nav > ul {
        flex-grow: 5;
    }
    header nav > .header-contact {
        flex-grow: 2;
        display: block;
    }
}
.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}
.checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    display: inline-block;
    max-width: 100%;
}
.checkbox input[type=checkbox]
{
    position: absolute;
    margin-top: 4px\9;
    margin-left: -20px;
}
.checkbox label > p { display: inline;}

input[type=text],
input[type=date],
input[type=email],
input[type=password],
input[type=number],
textarea
{
    width: 300px;
    height: 50px;
    padding: 5px 25px;
    background: #fff;
    border: 1px solid #dddddd;
    color: #000;
    box-sizing: border-box;
    max-width: 100%;
    transition: all 0.4s;
    border-radius: 25px;
}
input[type=text]:focus,
input[type=date]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
textarea:focus {
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
}
textarea {
    height: 150px;
    padding-top: 5px;
    resize: none;
}
fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 10px 0;
}

::-webkit-input-placeholder { /* Chrome */
    color: #000;
    opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #000;
    opacity: 1;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #000;
    opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
    color: #000;
    opacity: 1;
}

.form-container select {
    width: 100%;
}
.form-container input[type=text].error,
.form-container input[type=date].error,
.form-container input[type=email].error,
.form-container input[type=password].error,
#form-container input[type=text].error,
#form-container input[type=date].error
{
    border-color: red;
}
.form-container input[type=checkbox] {

}
.controls {
    position: relative;
    padding-right: 25px;
    padding-top: 5px;
}

.form-separator {
    display: block;
    height: 1px;
    background: #cccccc;
    overflow: hidden;
    margin: 15px 0 15px 0;
}

label.control-label {
    font-weight: normal;
    margin-bottom: 10px;

}
.form-container .control-group {
    margin: 14px 0 14px 0;

}

.form-container .control-group span.error {
    display: block;
    color: red;
    font-weight: bold;
}

.form-container .form-column {
    width: 330px;
    float: left;
}
.form-container .form-column3 {
    width: 220px;
    float: left;
}
.form-container .form-column3 input[type=date],.form-container .form-column3 input[type=text],.form-container .form-column3 select {
    width: 180px;
    float: left;
}
.form-container .form-column4 {
    width: 150px;
    float: left;
}
.form-container .form-column4 input[type=date],
.form-container .form-column4 input[type=text],
.form-container .form-column4 select {
    width: 110px;
    float: left;
}

.form-container select[name="birthDate[day]"],
.form-container select[name="childBirthDate[day]"]
{
    width: 100px;
}
.form-container select[name="birthDate[month]"],
.form-container select[name="childBirthDate[month]"]
{
    width: 200px;
}
.form-container select[name="birthDate[year]"],
.form-container select[name="childBirthDate[year]"]
{
    width: 150px;
}





/* SELECT 2*/

.select2-container .select2-choice {
    background: #fff;
    border: 1px solid #dddddd;

    color: #111;
    height: 50px;
    line-height: 50px;
    box-shadow: none;
    box-sizing: border-box;
    border-radius: 25px;
    padding: 0 0 0 25px;
}
.error .select2-choice {
    border-color: red;
}
.select2-container .select2-choice .select2-arrow {
    background: transparent;
    border: 0;
    border-radius: 0;
    width: 25px;
    text-align: center;
}
.select2-container .select2-choice .select2-arrow b {
    background: none;
    border-top: 5px solid #111111;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    width: 0;
    height: 0;
    margin-top: 20px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: top;
}
.select2-container .select2-choice abbr.select2-search-choice-close {
    background: none !important;
    top: 0;
    height: 50px;
    line-height: 50px;
    right: 25px;
    width: 25px;
}
.select2-container .select2-choice abbr.select2-search-choice-close:before {
    content: "\d7";
    color: #111111;
    font-size: 24px;
}
.select2-container .select2-choice abbr.select2-search-choice-close:hover:before {
    color: #c60e14;
}
.select2-dropdown-open .select2-choice {
    box-shadow: none;
}
.select2-drop {

    background: #dddddd;
    color: #111111;
    border-color: #dddddd;

    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}
.select2-results {
    margin: 0;
    padding: 0;
}
.select2-results .select2-highlighted {
    background: #cc061c;
    color: #fff;
}
.select2-drop.select2-drop-above {
    border: 0;
    border-radius: 0;

    -webkit-box-shadow: none;
    box-shadow: none;
}
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #20130b;
    border-radius: 0;
    border-top-color: transparent;

    background: #080300;
    color: #fff;
}
.select2-drop.select2-drop-above.select2-drop-active {
    border-top: none;
}
.select2-search {
    padding-left: 0;
    padding-right: 0;
}
.select2-search input[type=text] {
    width: 100%;
}
.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-selection-limit {
    background: none;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}
.select2-container-multi .select2-choices li {
    float: none;
    list-style: outside none none;
}
.select2-container-multi .select2-choices {
    background: #252525;
    border: 1px solid #ffdd00;
}
.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #ffdd00;
    box-shadow: none;
    outline: none;
}
.select2-container-multi .select2-choices .select2-search-choice {
    background: #2c1709;
    color: #ffde00;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 3px;
}
.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: none;
}
.select2-results .select2-disabled {
    background: none;
    opacity: 0.5;
}


.checkbox.required label:after,
.control-group.required >label:after,
.control-group.required .controls>label:after,
.control-group.required .form-check::after
{
    content:"*";
    transform:scale(1.2);
    color: #cc061c;
    display: inline-block;
    line-height: 100%;
    margin-right: -22px;
    width: 22px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}
.control-group.required .controls>label.radio:after {
    content: "";
    display: none;
}
.no-required .control-group.required .form-check::after {
    display: none;
}

div.required-information {
    padding: 10px 0 10px 0;
    line-height: 29px;
}
div.required-information span {
    font-size: 29px;
    color: #cc061c;
    display: inline-block;

}
.product-tile {
    display: block;
    max-width: 750px;
    overflow: hidden;
}
.product-tile-image {
    display: block;
    padding-bottom: calc(100% * 285/375);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.product-tile-bottom {
    height: 80px;
    border-top: 6px solid #cc061c;
    box-sizing: border-box;
    display: block;
    padding: 15px 25px 0 25px;
}
.product-tile-name {
    font-size: 17px;
    font-weight: 300;
    display: block;
}
.product-tile-content {
    font-size: 14px;
    font-weight: 800;
    color: #cc061c;
    display: block;
}

.product-tiles {
    display: flex;
    flex-wrap: wrap;
    padding-top: 25px;
}
.product-tile {
    width: 50%;
}

@media screen and (min-width: 751px) {
    .product-tiles {
        flex-wrap: nowrap;
        align-items: stretch;
        align-content: stretch;
    }
    .product-tile {
        max-width: 25%;
    }
    .product-tile.index-tile {
        max-width: 100%
    }
}
@media screen and (min-width: 1024px) {
    .product-tiles:last-child {
        margin-bottom: -75px;
    }
}
.product-tile .btn,
.product-tile .btn:hover {
    position: absolute;
    line-height: 40px;
    min-width: 70px;
    bottom: 25%;
    left: 15%;
    transform: translateX(-200%);

    background: #fff;
    color: #111111;
}
.product-tile  *,
.product-tile  *::before {
    transition: all 0.4s;
}
.product-tile-image::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #cc061c;
    opacity: 0.0;
}
.product-tile:hover .product-tile-image::before {
    opacity: 1.0;
}
.product-tile:hover .product-tile-bottom {
    background: #cc061c;
}
.product-tile:hover .product-tile-name,
.product-tile:hover .product-tile-content {
    color: #fff;
}

.product-tile:hover .btn {
    transform: translateX(0);
}

h3.section-heading {
    font-size: 22px;
    line-height: 1.25em;
    font-weight: normal;
    margin-bottom: 1em;
}

.section-content {
    margin-bottom: 1em;
}

.product-image {
    margin-bottom: 2em;
}
.index #wrap {
    padding-top: 0;
}
.index header {
    background: rgba(0,0,0,0.6);
    border-bottom: 3px solid rgba(255,255,255,0.1);
}
#index-wrap {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    min-height: calc(100vh);
}
#index-slides {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.slick-list,
.slick-track {
    height: 100%;
}
.index-slide {
    position: relative;
    text-align: center;
}
.index-video > video {
    min-width: 100%;
    min-height: 100%;

    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    width: auto;
    height: auto;

    /* Center the video */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.index-slide:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.index-slide-text {
    vertical-align: middle;
    display: inline-block;
    width: 90%;
}
.index-slide-text1 {
    position: relative;
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 5px 5px rgba(0,0,0,0.75);
    margin-bottom: 0.5em;
    line-height: 1em;
}
.index-slide-text2 {
    position: relative;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-shadow: 0px 5px 5px rgba(0,0,0,0.75);
}


#index-partners-wrap {
    margin-top: -105px;
    position: relative;
    display: block;
}
#index-partners {
    height: 105px;
    background: rgba(255,255,255,0.82);
    text-align: center;
}
#partners-wrap {
    height: 100%;
}
.partner {
    display: block;
    height: 100%;
}
.partner::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.partner img {
    display: inline-block;
    vertical-align: middle;
}
.partner:hover img {
    opacity: 0.8;
}
.index #content {
    margin-top: 0;
    padding-top: 0;
}
.index-section {
    margin-left: -25px;
    margin-right: -25px;
}
#index-news-header {
    padding: 45px 0px;
    text-align: center;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    font-size: 30px;
    font-weight: bold;
    color: #111111;
}

.index-news-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.index-news-item {
    padding: 15px;
    text-align: center;
}
.index-news-item-image {
    overflow: hidden;
}
.index-news-item-name {
    padding: 25px 0 25px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #111111;
}
.index-news-item-name a {
    font-size: 20px;
    color: #111111;
}
.index-news-item-date {
    font-size: 12px;
    color: #bbbbbb;
}
.index-news-item:hover .index-news-item-image img {
    transform: scale(1.1);
}

.index-news-item-teaser {
    display: none;
}

#index-tiles {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.index-tile {
    width: 100%;
}
.index-tile:first-child .product-tile-image {
    padding-bottom: calc(100% * 660/750);
}

@media screen and (min-width: 361px) {
    .index-tile {
        width: 50%;
    }
    .index-tile:first-child {
        width: 100%;
    }
}
@media screen and (min-width: 961px) {
    #index-tiles {
        display: block;
    }
    .index-tile:first-child {
        width: 50%;
        margin: 0 auto;
    }
    .index-tile:not(:first-child) {
        width: 25%;
        position: absolute;
    }
    .index-tile:nth-child(2) {
        left: 0;
        top: 0;
    }
    .index-tile:nth-child(3) {
        left: 0;
        bottom: 0;
    }
    .index-tile:nth-child(4) {
        right: 0;
        top: 0;
    }
    .index-tile:nth-child(5) {
        right: 0;
        bottom: 0;
    }


}
/*@media screen and (min-width: 1501px) {*/
/*    .index-tile:not(:first-child) .index-tile {*/
/*        width: 25%;*/
/*        float: left;*/
/*    }*/
/*}*/
@media screen and (min-width: 1024px) {
    .index-slide-text1 {
        font-size: 53px;
        text-shadow: 0px 5px 5px rgba(0,0,0,0.75);
    }
    .index-slide-text2 {
        font-size: 25px;
        text-shadow: 0px 5px 5px rgba(0,0,0,0.75);
    }
}

@media screen and (min-width: 1224px) {
    .index-slide-text1 {
        font-size: 83px;
        text-shadow: 0px 5px 5px rgba(0,0,0,0.75);

    }
    .index-slide-text2 {
        font-size: 33px;
        text-shadow: 0px 5px 5px rgba(0,0,0,0.75);
    }
}
body {
    background: #222222;
    color: #111111;
}

#wrap {
    position: relative;
    padding-top: 48px;
}

img {
    transition: all 0.4s;
}

#header-btns {
    float: right;
    font-size: 16px;
    margin-top: 14px;
}
#header-btns > a,
#header-btns > div
{
    float: left;
    margin-left: 15px;
}
#header-btns a {
    color: #fff;
}
#header-btns a:hover {
    color: #cc061c;
}
#header-lang {
    color: #fff;
    font-size: 14px;
}
#header-lang a.active {
    font-weight: bold;
}

#logo {
    background: url('../images/pbt.svg') no-repeat center center;
    background-size: contain;
    width: 110px;
    height: 25px;
    margin: 11px 0 0 48px;
    float: none;

    display: block;
}

header nav a {
    color: #fff;
}

section#newsletter {
    background: url('../images/newsletter-bg.png') repeat center center;
    padding: 160px 0;
}
#footer-wrap {
    padding: 0 15px;
}
#footer-nl {
    float: none;
    text-align: center;
    width: auto;
    height: auto;
    padding: 0 15px;
}
#footer-nl-header {
    color: #222222;
    letter-spacing: .1em;
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}
form#footer-nl-form {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 500px;
}
input#newsletter-email {
    width: 100%;
    margin: 0;
    height: 60px;
    border-radius: 30px;
    padding: 0 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 0;
    box-sizing: border-box;
    margin-bottom: 25px;
}
button#newsletter-btn {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    height: 60px;
    background: transparent;
    cursor: pointer;
    width: 60px;
    color: #cc061c;
    margin: 0;
    padding: 0;
    text-align: center;
}
button#newsletter-btn:hover {
    color: #000;
}
#footer-nl-form label.error {
    color: #cc061c;
    font-size: 16px;
    display: block;
    text-align: center;
}

footer {
    background: transparent;
    border: 0;
    padding: 80px 0 80px 0;
}
#footer-copy-heading {
    font-size: 18px;
    font-weight: 800;
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 25px 0;
}
#footer-copy-text {
    margin: 0 0 25px 0;
    color: #888888;
}
#footer-copy-nav {
    margin-bottom: 15px;
}
#footer-copy-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#footer-copy-nav ul li {
    float: left;
    margin: 0 25px 0 0;
    padding: 0;
}
#footer-copy-nav ul li a {
    color: #888888;
}
#footer-copy-nav ul li a:hover {
    color: #fff;
}
#footer-copy-copyright {
    color: #888888;
}

#footer-social {
    text-align: center;
    margin-bottom: 25px;
}
#footer-social a {
    color: #fff;
    display: inline-block;
    width: 32px;
    margin: 0 0 0 16px;
}
#footer-social a:hover {
    color: #555555;
}
#footer-payment {
    text-align: center;
}
#footer-payment a img {
    width: 50px;
}
/* HEADING */
section#heading {
    padding: 55px 0 120px 0;
    background: #cc061c;
    text-align: center;
    display: block;
}
h1 {
    font-size: 25px;
    margin: 0;
    padding: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}
h2 {
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 500;
    margin: 0 0 25px 0;
}

/* MIDDLE */
.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
#container {
    background: #fff;
}
#content {
    padding: 25px;
    margin-bottom: -75px;
    margin-top: -75px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.25);
    position: relative;
}

/* ALERTS */
.alert {
    padding: 8px 35px 8px 14px;
    margin-bottom: 20px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.alert, .alert h4 {
    color: #c09853;
}
.alert .close {
    position: relative;
    top: -2px;
    right: -21px;
    line-height: 20px;
}
.close {
    float: right;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
}
.alert-block {
    padding-top: 14px;
    padding-bottom: 14px;
}
.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #468847;
}
.alert-danger, .alert-error {
    background-color: #f2dede;
    border-color: #eed3d7;
    color: #b94a48;
}
.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #3a87ad;
}




/** COMMON **/
.btn {
    border-radius: 25px;
    line-height: 50px;
    padding: 0 25px;
    margin: 0 auto;
    display: inline-block;
    color: #fff;
    background: #cc061c;
    min-width: 150px;
    text-align: center;
    box-sizing: border-box;
    border: 0;
    cursor: pointer;
    font-size: 14px;
}
.btn:hover {
    background: #111111;
}
.btn-invert {
    background: #111111;
}
.btn-invert:hover {
    background: #cc061c;
}
/** BLOG **/
.blog-item {

}
.blog-item-image {
    background: #cccccc;
}
.blog-item-image img {
    width: 100%;
}
.blog-item-right {
    padding: 25px 50px 25px;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}
.blog-item-date {
    text-align: right;
    color: #bbbbbb;
    font-size: 12px;
    margin-bottom: 25px;
}
.blog-item-name {
    margin-bottom: 30px;
}
.blog-item-name a {
    color: #111111;
    font-weight: 800;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 25px;

}
.blog-item-teaser {
    color: #bbbbbb;
    margin-bottom: 30px;
}
.blog-item-btn {
    text-align: right;
}
/** FORM **/

/** LOGIN **/
.user-login input[type=text],
.user-login input[type=password],
.user-login input[type=email] {
    width: 100%;
}

/* PARTNERZY */

.partners-element-name {
    display: none;
    font-weight: bold;
    padding: 0 0 15px 0;
}
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.partners-logo {
   margin: 25px;

}
/*.partners-logo:before {*/
/*    content: "";*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*    height: 100%;*/
/*    text-align: center;*/
/*}*/
/*.partners-logo a {*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*}*/

/* TABLE */
table.table-wide {
    width: 100%;
}
table.table-bordered {
    border-collapse: collapse;
    background: #EEEEEE;
    border: 1px solid #cccccc;
}
table.table-bordered th {
    border: 1px solid #cccccc;
    background: #cccccc;
    color: #111;
    padding: 5px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Open Sans Condensed', sans-serif;
}
table.table-bordered td {
    border: 1px solid #cccccc;
    padding: 5px 3px 5px 3px;
    text-align: center;
}

.order-total > div{
    background: transparent;
    color: #c60e14;
    text-align: right;
}
.table-cart tr td {
    border-bottom: 1px solid #cccccc;
}
#content table.table-cart tr {
    border-bottom: 1px solid #cccccc;
}
.table-cart tr td.table-cart-item-name {
    font-size: 16px;
    font-weight: 300;
}

.content-nav {
    margin: -25px -25px 0;
}
.content-nav ul {
    list-style: none;
    margin: 0 0px;
    padding: 0;

}
.content-nav ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #cccccc;
}
.content-nav ul li a {
    font-size: 12px;
    font-weight: bold;
    padding: 5px 15px;
    display: block;
    line-height: 25px;
    text-align: center;
}
.content-nav ul li a:hover {
    background: #c60e14;
    color: #fff;
}

@media screen and (min-width: 1024px) {
    .content-nav {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        margin: 0;
    }
    .content-nav ul {
        display: flex;
    }
    .content-nav ul li {
        flex-grow: 1;
        border-left: 1px solid #cccccc;
    }
    .content-nav ul li:first-child {
        border-left: 0;
    }
    .content-nav ul li a {
         line-height: 50px;

    }


}

.text {
    margin-bottom: 1em;
}

.product-cart {
    display: flex;
    line-height: 50px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 30px;
    justify-content: space-between;
}
.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #111111;
    margin-right: 25px;
}
.product-price-regular {
    font-size: 0.7em;
    text-decoration: line-through;
    color: #b1b1b1;
    font-weight: 400;
}
.product-price-discount {
    font-size: 0.8em;
    background: #cc061c;
    color: #fff;
    border-radius: 2px;
    display: inline-block;
    font-weight: 400;
    line-height: 1.75em;
    padding: 0 10px;
    margin-left: 15px;
}

#content-photo {
    background-position: center center;
    background-size: cover;
    position: relative;
    margin: -25px -25px 50px -25px;

}
#content-photo::before {
    content: "";
    display: inline-block;
    padding-bottom: calc(100% * 625 / 1500);
}

#content-photo-wrap {
    box-sizing: border-box;
    position: relative;
    padding: 0px 25px 25px 25px;
    display: inline-block;
    width: 100%;
}
#content-photo-wrap-flex {
    display: block;
}
#content-photo h3 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 800;
    color: #fff;

    font-size: 36px;
    line-height: 42px;
    vertical-align: middle;
    text-shadow: 0px 3px 3px rgba(0,0,0,0.75);
    margin: 0;
}
#content-photo-text {
    color: #fff;
    font-size: 12px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.75);
    text-align: right;
}
@media screen and (min-width: 1024px) {
    #content-photo {
        margin: -75px -75px 50px -75px;
        padding-left: 75px;
        padding-right: 75px;
    }
    #content-photo-wrap {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        vertical-align: bottom;
        padding-bottom: 100px;
    }
    #content-photo-wrap-flex {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-end;
    }
    #content-photo h3 {
        font-size: 60px;
        line-height: 72px;
        text-shadow: 0px 5px 5px rgba(0,0,0,0.75);
    }
    #content-photo-text {

    }
}

.product-name {
    margin-bottom: 35px;
}
.product-container {
    display: flex;
    flex-wrap: nowrap;
    flex-flow: column;
}
.product-content {
    margin: 0;
}

.product-gallery {
    min-width: 200px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}
.product-photos-wrap {
    max-width: 500px;

    position: relative;
    margin-bottom: 25px;
}
.product-photos {
    display: block;
    overflow: hidden;
}
.product-photos .slick-track {
    height: auto;
}
.product-photo {
    display: block;
    text-align: center;
}
.product-photo a {
    display: inline-block;
}
.product-photo a img {
    display: inline-block;
}
.product-thumbnails {
    display: block;

}
.product-thumbnail {
    margin: 0 1px;
    display: inline-block;

    width: 60px;

    text-align: center;
}
.product-thumbnail a {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.product-thumbnail.slick-current a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #cc061c;
}

@media screen and (min-width: 1024px) {
    .product-container {
        flex-flow: row;
        justify-content: space-between;
    }
    .product-cart {
        margin-right: 50px;
    }
    .product-gallery {
        margin: 0 50px 50px 50px;
        width: 500px;
        flex-shrink: 0;
    }
}


#faq-container {
    padding: 0 0 0 0;
    max-width: 1000px;
    margin: 0 auto;
}
.faq-elements {
    counter-reset: faq-counter;
}
.faq-element-name:before {
    content: counter(faq-counter)".";
    counter-increment: faq-counter;
    width: 25px;
    display: inline-block;
    text-align: right;
    margin-right: 5px;
}
.faq-element {
    padding-bottom: 25px;
}
.faq-element-name {
    color: #111111;
    font-size: 22px;
    font-family: 'Open Sans Condensed', sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.faq-element.active .faq-element-name {
    text-decoration: underline;
}
.faq-element-answer {
    display: none;
    width: 100%;
}

.gallery-element {
    margin-bottom: 50px;
}
.gallery-element-name {
    color: #111111;
    font-size: 22px;
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 24px;
}
.gallery-photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.gallery-photo {
    flex-basis: 50%;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}
.gallery-photo:hover img {
    transform: scale(1.1);
}
.gallery-photo.gallery-photo-facebook {
    background: #0163e1;
    background: linear-gradient(0deg, rgba(1,99,225,1) 0%, rgba(1,99,225,1) 52%, rgba(24,172,254,1) 100%);
    text-align: center;
}
.gallery-photo.gallery-photo-social a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}
.gallery-photo.gallery-photo-social a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.gallery-photo-social-wrap {
    display: inline-block;
    vertical-align: middle;
}
.gallery-photo.gallery-photo-social .gallery-photo-social-icon {
    font-size: 42px;
    color: #fff;
    display: block;
    margin-bottom: 10%;
}
.gallery-photo.gallery-photo-social .gallery-photo-social-name {
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 20%;
    display: block;
}
.gallery-photo.gallery-photo-social .gallery-photo-social-name {
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 20%;
    display: block;
}
.gallery-photo.gallery-photo-social .gallery-photo-social-hash {
    font-size: 14px;
    display: block;
    font-weight: bold;
 }

.text-teaser {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2em;
}
.text {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.text img {
    max-width: 100%;
    height: auto !important;
}

.btn-cart-remove:hover {
    color: #111;
}
.cart-buttons {
    justify-content: space-between;
}
.cart-buttons .btn {
    margin-left: 0;
    margin-right: 0;
}
.product-countdown {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.product-countdown-name {
    text-align: center;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 10px;
}
.countdown {
    text-align: center;

}
.countdown-segment {
    display: inline-block;
    margin: 0 10px;
}
.countdown-item {
    color: #111111;
    font-size: 30px;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 5px;
}
.countdown-segment-label {
    color: #888888;
    display: block;
    font-size: 22px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
}
.countdown-segment:first-child .countdown-item {
    color: #cc061c;
}

#index-tiles {
    position: relative;
}



#iframe_container {
    margin-top: -25px;
    margin-left: -25px;
    margin-right: -25px;
    padding-bottom: 75%;
    position: relative;
    box-sizing: border-box;
    min-height: 600px;
}
#iframe_iframe {
    border: 0;
    width: 100%;
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
}
@media screen and (min-width: 1024px) {
    #iframe_container {
        margin-top: -75px;
        margin-bottom: -75px;
        margin-left: -75px;
        margin-right: -75px;
    }
}



@media screen and (min-width: 1024px) {
    #wrap {
        padding-top: 75px;
    }
    .container {
        width: 1000px;
        max-width: none;
    }
    #logo {
        width: 225px;
        height: 51px;
        margin-left: auto;
        margin-right: auto;
    }

    #header-btns {
        margin-top: 25px;
    }
    #header-btns > a, #header-btns > div {
        margin-left: 35px;
    }

    #footer-copy {
        float: left;
        width: 40%;
    }
    #footer-nav {
        float: left;
        width: 44%;
    }
    #footer-social {
        float: right;
        text-align: right;
        width: 16%;
    }
    #footer-payment {
        float: right;
        clear: right;
        width: 16%;
        text-align: right;
    }

    h2 {
        font-size: 24px;
        line-height: 1.2em;
    }

    .user-login-left {
        float: left;
        width: 50%;
        border-right: 1px solid #eeeeee;
        box-sizing: border-box;
        padding-right: 180px;
        padding-left: 70px;
    }
    .user-login-right {
        width: 50%;
        float: left;
        box-sizing: border-box;
        padding-right: 180px;
        padding-left: 70px;
    }


    .blog-item-image {
        float: left;
        width: 50%;
    }
    .blog-item-wrap:nth-child(2n) .blog-item-image {
        float: right;
    }
    .blog-item-right {
        float: right;
        width: 50%;
    }


    .gallery-photos {
        margin-left: -75px;
        margin-right: -75px;
    }
    .gallery-element:last-child {
        margin-bottom: -75px;
    }

    .gallery-photo {
        flex-basis: 25%;
        max-width: 25%;
    }
    .gallery-photos-small .gallery-photo {
        flex-basis: calc(100% / 6);
        max-width: calc(100% / 6);
    }


    #content {
        padding: 75px;
        margin-bottom: -75px;
        margin-top: -75px;
    }
    .index-section {
        margin-left: -75px;
        margin-right: -75px;
    }

    .faq-element-answer {
        display: none;
        width: 100%;
        padding-left: 50px;
    }
}



@media screen and (min-width: 1224px) {
    .container {
        width: 1200px;
    }
}



@media screen and (min-width: 1600px) {
    .container {
        width: 1500px;
    }
}



/* tabelki... */
@media(max-width: 1000px) {
    /* Force table to not be like tables anymore */
    #content table,
    #content thead,
    #content tbody,
    #content th,
    #content td,
    #content tr
    {
        display: block;
        border: 0;
        padding: 0;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    #content thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    #content tr {
        border-bottom: 0;
    }

    #content td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #cccccc;
        position: relative;
        padding-left: 45%;
        text-align: left;
        min-height: 21px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
    #content td:last-child {
        border-bottom-color: #cc061c;
    }

    #content td:before {
        content:attr(data-heading);
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 0px;
        left: 0px;
        width: 40%;
        height: 100%;
        margin-right: 5%;
        white-space: nowrap;
        font-weight: bold;
        color: #cc061c;
        text-align: right;
        overflow: hidden;
    }

    #content td.price:before {
        line-height: 38px;
    }
    #content td.price .btn {
        margin-top: 5px;
    }
}

.table-cart tr td.table-cart-item-pic {
    width: 1%;
}
.table-cart tr td.table-cart-item-name {
    text-align: left;
}
.table-cart tr td.table-cart-item-pic img {
    max-width: 90px;
    margin-right: 10px;
}