* {
  box-sizing: border-box;
}
html {
  font-size: 16px; /* 1rem = 16px */
}

.h1, h1 {
  font-size: 3.5rem; /* 40px */
  margin-bottom: 20px;
}
.h2, h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
}
.h3, h3 {
  font-size: 1.75rem; /* 28px */
  margin-bottom: 20px;
}
.h4, h4 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 20px;
}
.h5, h5 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 20px;
}

.fs-1 {
  font-size: 16px;
}
.fs-2 {
  font-size: 15px;
}
.fs-3 {
  font-size: 14px;
}
.fs-4 {
  font-size: 12px;
}

.text-xsmall {
  font-size: 10px;
}
.text-xxsmall {
  font-size: 8px;
}

.fw-light {
  font-weight: 300;
}
.fw-regular {
  font-weight: 400;
}
.fw-medium {
  font-family: "PFDinTextCondPro-Medium.ttf";
}
.fw-bold {
    font-family: "PFDinTextCondPro-Bold.ttf";
}
.fw-bolder {
  font-weight: bolder;
}
.fw-lighter {
  font-weight: lighter;
}
.text-center {
    text-align: center;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-red {
    color: #860d0d;
}

#scroll-top {
    bottom: 10px;
    color: #000000;
    display: none;
    font-size: 12px;
    position: fixed;
    left: 5px;
    text-decoration: none;
    z-index: 500;
    cursor: pointer;
}
#shadow {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 500;
}

.managersTo {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 500px;
    background-color: #fff;
    z-index: 600;
    padding: 20px;
}

.managersTo__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #aaaaaa;
    padding: 20px;
}

.managersTo__question {
    font-weight: bold;
    margin-bottom: 40px;
    font-size: 20px;
}

.managersTo__btn {
    width: 120px;
    font-size: 22px;
    font-weight: bold;
    padding: 5px 0;
    cursor: pointer;
    margin-bottom: 10px;
    background-color: #cccbcb;
    border: none;
    outline: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: color 300ms ease-in-out, -webkit-box-shadow 300ms ease-in-out;
    transition: color 300ms ease-in-out, -webkit-box-shadow 300ms ease-in-out;
    -o-transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out, -webkit-box-shadow 300ms ease-in-out;
}

.managersTo__btn:hover {
    -webkit-box-shadow: 0 0 39px 39px #adadad inset;
    box-shadow: 0 0 39px 39px #adadad inset;
    color: #fff;
}

.managersTo__btn--active {
    border: 1px solid #444444;
}

.managersTo__wrapper {
    overflow-y: auto;
    padding: 0 20px;
}

.managersTo__list {
    list-style: none;
    margin-bottom: 20px;
}

.managersTo__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.managersTo__avatar {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.managersTo__name {
    text-decoration: none;
    background-color: #cccbcb;
    color: #000;
    width: 120px;
    font-size: 20px;
    font-weight: bold;
    padding: 8px 0;
    cursor: pointer;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transition: color 300ms ease-in-out, -webkit-box-shadow 300ms ease-in-out;
    transition: color 300ms ease-in-out, -webkit-box-shadow 300ms ease-in-out;
    -o-transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out, -webkit-box-shadow 300ms ease-in-out;
}

.managersTo__name:hover {
    -webkit-box-shadow: 0 0 39px 39px #adadad inset;
    box-shadow: 0 0 39px 39px #adadad inset;
    color: #fff;
}

.change-btn-group {
    display: inline-block;
    width: 150px;
    text-align: center;
}

.change-btn-group:after {
    content: '';
    display: table;
    clear: both;
}

.btn-open-change {
    display: inline-block;
    padding: 10px 0;
    cursor: pointer;
}

.btn-open-change:not(:last-child) {
    margin-right: 10px;
}

.btn-open-change svg {
    display: block;
}

.btn-open-change:hover {
    animation: shake 0.5s;
    -webkit-animation: shake 0.5s;
}

.btn-back-change {
    cursor: pointer;
}
.btn-open-change--phone {
    position: relative;
}

.chef-link {
  display: block;
  text-align: center;
  padding: 5px 0;
}

.bx-wrapper {
    position: relative;
    margin: 0 auto;
    padding: 0;
    *zoom: 1
}

.bx-wrapper img {
    max-width: 100%;
    display: block
}

.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 25px;
    width: 100%
}

.bx-wrapper .bx-loading {
    min-height: 50px;
    background: url(../images/bx_loader.gif) center center no-repeat #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000
}

.bx-wrapper .bx-pager {
    text-align: center;
    font-size: .85em;
    font-weight: bold;
    display: inline-block;
    width: auto;
    right: 0;
    padding-top: 0;
    bottom: -24px;
}

.bx-wrapper .bx-pager .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
    *zoom: 1;
    *display: inline
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #fff;
    text-indent: -9999px;
    display: block;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 100%
}

.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #ed2a24
}

.bx-wrapper .bx-prev {
    left: -30px;
    background: url(../images/slide_left.png) no-repeat
}

.bx-wrapper .bx-next {
    right: -30px;
    background: url(../images/slide_right.png) no-repeat
}

.bx-wrapper .bx-prev:hover, .bx-wrapper .bx-next:hover {
    opacity: .8
}

.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 29px;
    height: 49px;
    text-indent: -9999px;
    z-index: 9999
}

.bx-wrapper .bx-controls-direction a.disabled {
    display: none
}

.bx-wrapper .bx-controls-auto {
    text-align: center
}

.bx-wrapper .bx-controls-auto .bx-start {
    display: block;
    text-indent: -9999px;
    width: 10px;
    height: 11px;
    outline: 0;
    background: url(../images/controls.png) -86px -11px no-repeat;
    margin: 0 3px
}

.bx-wrapper .bx-controls-auto .bx-start:hover, .bx-wrapper .bx-controls-auto .bx-start.active {
    background-position: -86px 0
}

.bx-wrapper .bx-controls-auto .bx-stop {
    display: block;
    text-indent: -9999px;
    width: 9px;
    height: 11px;
    outline: 0;
    background: url(../images/controls.png) -86px -44px no-repeat;
    margin: 0 3px
}

.bx-wrapper .bx-controls-auto .bx-stop:hover, .bx-wrapper .bx-controls-auto .bx-stop.active {
    background-position: -86px -33px
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    text-align: left;
    width: 80%
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
    right: 0;
    width: 35px
}

.bx-wrapper .bx-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #666 \9;
    background: rgba(80, 80, 80, 0.75);
    width: 100%
}

.bx-wrapper .bx-caption span {
    color: #fff;
    font-family: Arial;
    display: block;
    font-size: .85em;
    padding: 10px
}
/* line 7, ../sass/lightbox.sass */
body:after {
    content: url(../images/c.png) url(../images/loading.gif) url(../images/p.png) url(../images/n.png);
    display: none;
}

/* line 11, ../sass/lightbox.sass */
.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: black;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    display: none;
}

/* line 20, ../sass/lightbox.sass */
.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
}
/* line 28, ../sass/lightbox.sass */
.lightbox .lb-image {
    display: block;
    height: auto;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}
/* line 32, ../sass/lightbox.sass */
.lightbox a img {
    border: none;
}

/* line 35, ../sass/lightbox.sass */
.lb-outerContainer {
    position: relative;
    background-color: white;
    *zoom: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}
/* line 38, ../../../../.rvm/gems/ruby-1.9.3-p392/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
}

/* line 44, ../sass/lightbox.sass */
.lb-container {
    padding: 4px;
}

/* line 47, ../sass/lightbox.sass */
.lb-loader {
    position: absolute;
    top: 43%;
    left: 0%;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

/* line 56, ../sass/lightbox.sass */
.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../images/loading.gif) no-repeat;
}

/* line 63, ../sass/lightbox.sass */
.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

/* line 71, ../sass/lightbox.sass */
.lb-container > .nav {
    left: 0;
}

/* line 74, ../sass/lightbox.sass */
.lb-nav a {
    outline: none;
}

/* line 77, ../sass/lightbox.sass */
.lb-prev, .lb-next {
    width: 49%;
    height: 100%;
    cursor: pointer;
    /* Trick IE into showing hover */
    display: block;
}

/* line 84, ../sass/lightbox.sass */
.lb-prev {
    left: 0;
    float: left;
}
/* line 87, ../sass/lightbox.sass */
.lb-prev:hover {
    background: url(../images/p.png) left 48% no-repeat;
}

/* line 90, ../sass/lightbox.sass */
.lb-next {
    right: 0;
    float: right;
}
/* line 93, ../sass/lightbox.sass */
.lb-next:hover {
    background: url(../images/n.png) right 48% no-repeat;
}

/* line 96, ../sass/lightbox.sass */
.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    *zoom: 1;
    width: 100%;
    -moz-border-radius-bottomleft: 4px;
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
/* line 38, ../../../../.rvm/gems/ruby-1.9.3-p392/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
}

/* line 103, ../sass/lightbox.sass */
.lb-data {
    padding: 0 4px;
    color: #bbbbbb;
}
/* line 106, ../sass/lightbox.sass */
.lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em;
}
/* line 111, ../sass/lightbox.sass */
.lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
}
/* line 115, ../sass/lightbox.sass */
.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999999;
}
/* line 121, ../sass/lightbox.sass */
.lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url(../images/c.png) top right no-repeat;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
}
/* line 130, ../sass/lightbox.sass */
.lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}
/*! jQuery UI - v1.9.1 - 2012-10-25
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css, jquery.ui.theme.css
* Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
.ui-helper-clearfix:after { clear: both; }
.ui-helper-clearfix { zoom: 1; }
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }


/* Interaction Cues
----------------------------------*/
.ui-state-disabled { cursor: default !important; }


/* Icons
----------------------------------*/

/* states and images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; }
.ui-accordion .ui-accordion-icons { padding-left: 2.2em; }
.ui-accordion .ui-accordion-noicons { padding-left: .7em; }
.ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; }
.ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; }

.ui-autocomplete {
    position: absolute;
    top: 0; /* #8656 */
    cursor: default;
}

/* workarounds */
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */

.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active { text-decoration: none; }
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
.ui-button-icons-only { width: 3.4em; }
button.ui-button-icons-only { width: 3.7em; }

/*button text element */
.ui-button .ui-button-text { display: block; line-height: 1.4;  }
.ui-button-text-only .ui-button-text { padding: .4em 1em; }
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
/* no icon support for input elements, provide padding by default */
input.ui-button { padding: .4em 1em; }

/*button icon element(s) */
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }

/*button sets*/
.ui-buttonset { margin-right: 7px; }
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }

/* workarounds */
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */

.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
.ui-datepicker .ui-datepicker-prev { left:2px; }
.ui-datepicker .ui-datepicker-next { right:2px; }
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;  }
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year { width: 49%;}
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0;  }
.ui-datepicker td { border: 0; padding: 1px; }
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi { width:auto; }
.ui-datepicker-multi .ui-datepicker-group { float:left; }
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }

/* RTL support */
.ui-datepicker-rtl { direction: rtl; }
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 200px; /*must have*/
    height: 200px; /*must have*/
}
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative;  }
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }

.ui-menu { list-style:none; padding: 2px; margin: 0; display:block; outline: none; }
.ui-menu .ui-menu { margin-top: -3px; position: absolute; }
.ui-menu .ui-menu-item { margin: 0; padding: 0; zoom: 1; width: 100%; }
.ui-menu .ui-menu-divider { margin: 5px -2px 5px -2px; height: 0; font-size: 0; line-height: 0; border-width: 1px 0 0 0; }
.ui-menu .ui-menu-item a { text-decoration: none; display: block; padding: 2px .4em; line-height: 1.5; zoom: 1; font-weight: normal; }
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active { font-weight: normal; margin: -1px; }

.ui-menu .ui-state-disabled { font-weight: normal; margin: .4em 0 .2em; line-height: 1.5; }
.ui-menu .ui-state-disabled a { cursor: default; }

/* icon support */
.ui-menu-icons { position: relative; }
.ui-menu-icons .ui-menu-item a { position: relative; padding-left: 2em; }

/* left-aligned */
.ui-menu .ui-icon { position: absolute; top: .2em; left: .2em; }

/* right-aligned */
.ui-menu .ui-menu-icon { position: static; float: right; }

.ui-progressbar { height:2em; text-align: left; overflow: hidden; }
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
.ui-resizable { position: relative;}
.ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }

.ui-slider { position: relative; text-align: left; }
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }

.ui-slider-horizontal { height: .8em; }
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
.ui-slider-horizontal .ui-slider-range-max { right: 0; }

.ui-slider-vertical { width: .8em; height: 100px; }
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
.ui-slider-vertical .ui-slider-range-max { top: 0; }
.ui-spinner { position:relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; }
.ui-spinner-input { border: none; background: none; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; }
.ui-spinner-button { width: 16px; height: 50%; font-size: .5em; padding: 0; margin: 0; text-align: center; position: absolute; cursor: default; display: block; overflow: hidden; right: 0; }
.ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; } /* more specificity required here to overide default borders */
.ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; } /* vertical centre icon */
.ui-spinner-up { top: 0; }
.ui-spinner-down { bottom: 0; }

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
    /* need to fix icons sprite */
    background-position:-65px -16px;
}

.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 0; margin: 1px .2em 0 0; border-bottom: 0; padding: 0; white-space: nowrap; }
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
.ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; }
.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: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    -webkit-box-shadow: 0 0 5px #aaa;
    box-shadow: 0 0 5px #aaa;
}
/* Fades and background-images don't work well together in IE6, drop the image */
* html .ui-tooltip {
    background-image: none;
}
body .ui-tooltip { border-width: 2px; }

/* Component containers
----------------------------------*/
.ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 1.1em; }
.ui-widget .ui-widget { font-size: 1em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; }
.ui-widget-content { border: 1px solid #a6c9e2; background: #fcfdfd url(images/ui-bg_inset-hard_100_fcfdfd_1x100.png) 50% bottom repeat-x; color: #222222; }
.ui-widget-content a { color: #222222; }
.ui-widget-header { border: 1px solid #4297d7; background: #2191c0 url(images/ui-bg_gloss-wave_75_2191c0_500x100.png) 50% 50% repeat-x; color: #eaf5f7; font-weight: bold; }
.ui-widget-header a { color: #eaf5f7; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #77d5f7; background: #0078ae url(images/ui-bg_glass_45_0078ae_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #ffffff; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #ffffff; text-decoration: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #448dae; background: #79c9ec url(images/ui-bg_glass_75_79c9ec_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #026890; }
.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited { color: #026890; text-decoration: none; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #acdd4a; background: #6eac2c url(images/ui-bg_gloss-wave_50_6eac2c_500x100.png) 50% 50% repeat-x; font-weight: normal; color: #ffffff; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #ffffff; text-decoration: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #fcd113; background: #f8da4e url(images/ui-bg_glass_55_f8da4e_1x400.png) 50% 50% repeat-x; color: #915608; }
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #915608; }
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #e14f1c url(images/ui-bg_gloss-wave_45_e14f1c_500x100.png) 50% top repeat-x; color: #ffffff; }
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ffffff; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ffffff; }
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
.ui-state-disabled .ui-icon { filter:Alpha(Opacity=35); } /* For IE8 - See #6059 */

/* Icons
----------------------------------*/

/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_0078ae_256x240.png); }
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_0078ae_256x240.png); }
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_d8e7f3_256x240.png); }
.ui-state-default .ui-icon { background-image: url(images/ui-icons_e0fdff_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_056b93_256x240.png); }
.ui-state-active .ui-icon {background-image: url(images/ui-icons_f5e175_256x240.png); }
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_f7a50d_256x240.png); }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_fcd113_256x240.png); }

/* positioning */
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; -khtml-border-top-left-radius: 5px; border-top-left-radius: 5px; }
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; -khtml-border-top-right-radius: 5px; border-top-right-radius: 5px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; -khtml-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -khtml-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; }

/* Overlays */
.ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_75_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3;filter:Alpha(Opacity=30); }
.ui-widget-shadow { margin: 5px 0 0 5px; padding: 0px; background: #999999 url(images/ui-bg_flat_55_999999_40x100.png) 50% 50% repeat-x; opacity: .45;filter:Alpha(Opacity=45); -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }


.blocker {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
    overflow: auto;
    z-index: 1;
    padding: 20px;
    
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.75);
    text-align: center;
}
.blocker:before{
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em;
}
.blocker.behind {
    background-color: transparent;
}
.modal {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    max-width: 500px;
    
    width: 90%;
    background: #fff;
    padding: 15px 30px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    text-align: left;
}

.modal a.close-modal {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background: url("data:image/png;base64,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") no-repeat 0 0;
}

.modal-spinner {
    display: none;
    width: 64px;
    height: 64px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -32px;
    margin-top: -32px;
    background: url("data:image/gif;base64,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") #111 no-repeat center center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
}


@charset "utf-8";

@font-face {
    font-family: "PFDinTextCondPro-Regular.ttf";
    src: url('../fonts/PFDinTextCondPro-Regular/PFDinTextCondPro-Regular.eot');
    src: local('☺'), url('../fonts/PFDinTextCondPro-Regular/PFDinTextCondPro-Regular.woff') format('woff'),
    url('../fonts/PFDinTextCondPro-Regular/PFDinTextCondPro-Regular.ttf') format('truetype'),
    url('../fonts/PFDinTextCondPro-Regular/PFDinTextCondPro-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "PFDinTextCondPro-Bold.ttf";
    src: url('../fonts/PFDinTextCondPro-Bold/PFDinTextCondPro-Bold.eot');
    src: local('☺'), url('../fonts/PFDinTextCondPro-Bold/PFDinTextCondPro-Bold.woff') format('woff'),
    url('../fonts/PFDinTextCondPro-Bold/PFDinTextCondPro-Bold.ttf') format('truetype'),
    url('../fonts/PFDinTextCondPro-Bold/PFDinTextCondPro-Bold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "PFDinTextCondPro-Light.ttf";
    src: url('../fonts/PFDinTextCondPro-Light/PFDinTextCondPro-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/PFDinTextCondPro-Light/PFDinTextCondPro-Light.woff') format('woff'),
    url('../fonts/PFDinTextCondPro-Light/PFDinTextCondPro-Light.ttf')  format('truetype'),
    url('../fonts/PFDinTextCondPro-Light/PFDinTextCondPro-Light.svg#PFDinTextCondPro-Light') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "PFDinTextCondPro-Medium.ttf";
    src: url('../fonts/PFDinTextCondPro-Medium/PFDinTextCondPro-Medium.eot');
    src: local('☺'), url('../fonts/PFDinTextCondPro-Medium/PFDinTextCondPro-Medium.woff') format('woff'),
    url('../fonts/PFDinTextCondPro-Medium/PFDinTextCondPro-Medium.ttf') format('truetype'),
    url('../fonts/PFDinTextCondPro-Medium/PFDinTextCondPro-Medium.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* <reset> */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{border:0;outline:0;vertical-align:baseline;background:transparent}blockquote,q{quotes:none}:focus{outline:0}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0 }
article, aside, details, figcaption, figure, footer, header, menu, nav, section {
    display:block;
}

input[type="button"], input[type="submit"]  {
    cursor: pointer;
    border: 0;
}
img { pointer-events: none; }
.clear {
    clear: both;
}
*{
    padding: 0;
    margin: 0;
}
body {
    font-family: 'PFDinTextCondPro-Regular.ttf';
    width: 100%;
}

a {
    text-decoration: none;
    cursor: pointer
}

h1, h2, h3 {
    font-weight: normal;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}
.section {
    padding: 40px 0;
}

.p_time {
    display: block;
}
.contacts-tel {
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 24px;
    color: #000000;
}


.contacts p a{
    color: #404040;
    display: inline-block;
    font-size: 30px;
}
#map .adress .block p a{
    color: #404040;
}
#top .contacts p .s_span{

}
.contacts-link {
    color: #860d0d;
    text-decoration: underline;
}
.contacts-link:hover {
    text-decoration: none;
}
.benefit_p_ltl1{
    display: none;
}
.scheme1{
    display: none;
}
.visible_480{
    display: none;
}
.visible_320{
    display: none;
}
.menu_btn{
    display: none;
}
.full_width {
    width: 100%;
}
#sert1{
    display: none;
}
/******************************/



.remodal .container_r {
    margin: 20px auto 0;
    overflow: hidden;
    max-width:90% ;
}
.remodal .price_title img{
    float: left;
    width: 200px;
}

.remodal .price_title h2{
    color: #9D0505;
    font-size: 32px;
    font-family: "PFDinTextCondPro-Bold.ttf"!important;
    text-transform: uppercase;
    padding-top: 85px;
    text-align: left;
    margin-left: 32%;
}

.remodal .price_title p{
    color: #9D0505;
    font-family: "PFDinTextCondPro-Regular.ttf"!important;

}

.remodal .container_r table {
    font-family: "PFDinTextCondPro-Regular.ttf" !important;
    margin-bottom: 0;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    min-width: 500px;
}

.remodal .container_r table .table_title{
    min-height: 60px;
    background-color: #9D0505;
    color: #ffffff;
    font-size: 18px;
    vertical-align: middle;
    font-weight: lighter;
}
.remodal .container_r table .table_title td{
    min-height: 60px;
    background-color: #9D0505;
    color: #ffffff;
    font-size: 20px;
}
.remodal .container_r table .active{
    background-color: #d7951a;
    color: #ffffff;
}
.remodal .container_r table .table_title td{
    height: 80px;
    width: 80px;
    background-color: #9D0505;
    color: #ffffff;
    font-size: 17px;
}
.remodal .container_r table td{
    border: 1px solid #b6b6b6;
    color: #343434;
    font-size: 17px;
    height: 45px;
    vertical-align: middle;
}
.remodal .container_r table td.photo{
    width: 280px;
}
.remodal .container_r table td img{
    height: 460px;
    vertical-align: text-top;
}
.remodal .container_r .table3 img{
    width: 200px;
    height: 90px;
}
.remodal .container_r .table3.ogol img{
    width: 150px;
    height: auto;
}
.remodal .p_table_bottom{
    text-align: center;
    margin: 0;
}
.remodal .p_table_bottom span{
    color: #9D0505;
}
.price_h1 {
    font-family: "PFDinTextCondPro-Bold.ttf";
    font-size: 51px;
    color: #9D0505;
    text-transform: uppercase; 
}
/*****************************************/
.menu_hidden ul{
    display: none;
    position: absolute;
    z-index: 1000;
}
.menu_hidden ul li {
    border-bottom: 1px solid #ccc;
    display: block;
    height: 29px;
    line-height: 29px;
    text-transform: uppercase;
    cursor: pointer;
    background-color: #fff;
}
.menu_hidden ul li:hover {
    background-color: #cccccc;
}
.hid{
    display: none;
}
.menu_hidden ul li:hover a{
    color: #ffffff;
}
.menu_hidden ul li a {
    color: #777;
    padding-left: 30px;
    padding-right: 30px;
}
.menu_btn{
    cursor: pointer;
}

.btn {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-family: "PFDinTextCondPro-Medium.ttf";
  text-transform: uppercase;
  text-align: center;
  border-radius: 5px;
  width: 100%;
  max-width: 320px;
  height: 46px;
  line-height: 46px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#e78e24), to(#f5b51d));
  background-image: -webkit-linear-gradient(bottom, #e78e24, #f5b51d);
  background-image: -o-linear-gradient(bottom, #e78e24, #f5b51d);
  background-image: linear-gradient(to top, #e78e24, #f5b51d);
}

.btn:hover {
    background: #c3860f; /* Old browsers */
    background: -moz-linear-gradient(top,  #c3860f 0%, #f2a92b 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c3860f), color-stop(100%,#f2a92b)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #c3860f 0%,#f2a92b 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #c3860f 0%,#f2a92b 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #c3860f 0%,#f2a92b 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #c3860f 0%,#f2a92b 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c3860f', endColorstr='#f2a92b',GradientType=0 ); /* IE6-9 */
}

.btn2 {
    display: inline-block;
    color: #fff;
    font-size: 24px;
    font-family: "PFDinTextCondPro-Medium.ttf";
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 4px 13px rgba(244, 216, 27, 0.75);
    width: 320px;
    height: 55px;
    line-height: 55px;
    margin-bottom: 20px;
    background: #f2a92b; /* Old browsers */
    background: -moz-linear-gradient(top,  #f2a92b 0%, #c3860f 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2a92b), color-stop(100%,#c3860f)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f2a92b 0%,#c3860f 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f2a92b 0%,#c3860f 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f2a92b 0%,#c3860f 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f2a92b 0%,#c3860f 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2a92b', endColorstr='#c3860f',GradientType=0 ); /* IE6-9 */
}

.btn2:hover {
    background: #c3860f; /* Old browsers */
    background: -moz-linear-gradient(top,  #c3860f 0%, #f2a92b 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c3860f), color-stop(100%,#f2a92b)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #c3860f 0%,#f2a92b 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #c3860f 0%,#f2a92b 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #c3860f 0%,#f2a92b 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #c3860f 0%,#f2a92b 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c3860f', endColorstr='#f2a92b',GradientType=0 ); /* IE6-9 */
}
.needsfilled {
    border-color: red !important;
}
#top_bg {
    padding: 20px 0;
}
#top:after {
    content: '';
    display: table;
    clear: both;
}
.back-to-top {
    bottom: 10px;
    color: #000000;
    display: none;
    font-size: 12px;
    position: fixed;
    left: 5px;
    text-decoration: none;
    z-index: 500;
}
#top_bg .hidden_span {
    display: none;
}

/*----------*/
#href_bg {
    padding: 25px 0;
    display: none;
}

#href_bg>a {
    display: block;
    width: 100%;
    color: #757575;
    font-size: 19px;
    font-family: "PFDinTextCondPro-Medium.ttf";
    margin-bottom: 25px;
    text-align: center;
    text-decoration: underline;
}

#href_bg>a:hover {
    text-decoration: none;
}

#href {
    display: table;
}

#href>div {
    display: table-cell;
    vertical-align: top;
    width: 33.3%;
    padding: 0 10px;
}

#href a {
    display: block;
    width: 100%;
    color: #757575;
    font-size: 22px;
    font-family: "PFDinTextCondPro-Medium.ttf";
    margin-bottom: 20px;
    padding-left: 10px;
    background: url(../images/arr.png) top 5px left no-repeat;
}

#href a:hover {
    text-decoration: underline;
}
/*----------*/
#articles_bg {
    padding: 25px 0;
    display: none;
}

#articles_bg>a {
    display: block;
    width: 100%;
    color: #757575;
    font-size: 19px;
    font-family: "PFDinTextCondPro-Medium.ttf";
    margin-bottom: 25px;
    text-align: center;
    text-decoration: underline;
}

#articles_bg>a:hover {
    text-decoration: none;
}
#articles:after {
    content: '';
    display: table;
    clear: both;
}
#articles h1 {
        font-family: 'PFDinTextCondPro-Medium.ttf';
        text-align: center;
        margin: 20px;
        font-size: 45px;
        margin-bottom: 30px;
}

#articles .articles_item {
    display: block;
    float: left;
    padding: 0 10px;
    vertical-align: top;
    width: 370px;
}


#articles a {
    background: rgba(0, 0, 0, 0) url("../images/arr.png") no-repeat scroll left top 5px;
    color: #757575;
    display: block;
    float: left;
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 19px;
    margin-bottom: 20px;
    margin-left: 20px;
    padding-left: 10px;
    width: 28%;
}

#articles a:hover {
    text-decoration: underline;
}
#top>div{
    float: left;
}
#top .logo {
    display: inline-block;
    margin-right: 19px;
    float: left;
}
#top .logo img {
    width: 116px;
    height: auto;
}
#top>h2,
#footer>h2 {
    color: #404040;
    font-size: 18px;
    line-height: 22px;
    font-family: "PFDinTextCondPro-Light.ttf";
    text-transform: uppercase;
    display: inline-block;
}
.footer__p {
    margin-bottom: 5px;
}
#top .top_h2{
    font-size: 20px;
    margin-top: 20px;
}
#top>h2 {
    padding-top: 10px;
    font-size: 18px;
}

.contacts {
    font-family: "PFDinTextCondPro-Light.ttf";
    position: absolute;
    display: inline-block;
    right: 0;
    top: 0;
}
.contacts .hidden_span{
    display: none;
}
.contacts_btn {
    display: block;
    color: #ae0603;
    font-size: 19px;
    font-family: "PFDinTextCondPro-Light.ttf";
    text-transform: uppercase;
    text-decoration: underline;
    margin-bottom: 10px;
    font-weight:bold;
}

.contacts_btn:hover {
    text-decoration: none;
}

.contacts p {
    color: #404040;
    font-family: "PFDinTextCondPro-Light.ttf";
    font-size: 32px;
    font-weight: bold;
    position: relative;
    text-align: left;
    line-height: 1.1;
}

.contacts p span {
    display: inline-block;
    font-size: 22px;
    font-weight: lighter;
    letter-spacing: 0;
    position: absolute;
    right: 20px;
    top: 7px;
    width: 90px;
    line-height: 1.6;
    font-family: "PFDinTextCondPro-Regular.ttf";
}

.contacts p span img:last-child {
    left: 20px;
    position: relative;
    top: 11px;
    width: 40px;
}

.contacts span.hour {
    position: relative;
    top: 7px;
}
#top .contacts p span.contacts__span-top {
    position: absolute;
    top: 6px;
    right: 0;
    width: 115px;
    line-height: 1.1;
}
#top .contacts p span.contacts__span-bottom {
    position: absolute;
    top: 74px;
    right: -60px;
    line-height: 1.1;
}
#top_menu_bg {
    border-top: 1px solid #575757;
    border-bottom: 1px solid #575757;
    background-color: #191919;
    text-align: center;
    position: relative;
    top: 0;
    z-index: 500;
}
#top_menu_bg a {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 45px;
    padding: 0 12px;
    border-left: 1px solid #626262;
}
#top_menu_bg a.link_price {
    border: 2px solid #fff;
    font-family: "PFDinTextCondPro-Bold.ttf";
    padding: 3px 14px;
}
#top_menu_bg a:last-child {
    border-right: 1px solid #626262;
}

#top_menu_bg a:hover {
    text-decoration: underline;
}

#header_bg {
    background-image: url("../images/header_bg3.jpg");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    height: auto;
    position: relative;
}
#header {
    padding: 20px 0 0;
    /*background: rgba(255, 255, 255, 0.75);*/
    text-align: center;
    margin-bottom: 5px;
    position: relative;
}
#header .shad{
    position: absolute;
    top: 0;
    left: 0;
    height: 1424px;
    width: 100%;
}

        .header_shadow {
            position: absolute;
            background: rgba(255, 255, 255, 0.75);
            top: 0;
            left: 0;
            width: 100%;
            height: 210px;
        }
        @media screen and (max-width: 1180px) {
            .header_shadow {
                height: 163px;
            }
        }
        @media screen and (max-width: 992px) {
            .header_shadow {
                height: 124px;
            }
        }
        @media screen and (max-width: 768px) {
            .header_shadow {
                height: 96px;
            }
        }

#header h1 {
    color: #af0e0a;
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 58px;
    letter-spacing: 0;
    line-height: 61px;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    z-index: 20;
}

#header h3 {
    color: #000;
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 40px;
    position: relative;
    z-index: 20;
    width: 70%;
    margin: 0 auto;
}
#promo .credit {
    bottom: 162px;
    left: 15px;
    padding-top: 20px;
    position: absolute;
    width: 210px;
    cursor: pointer;
}
#promo .credit img{
    width: 210px;
}
#promo_block {
    width: 260px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.75);
}

#promo_block>h3 {
    color: #fff;
    font-size: 30px;
    font-family: "PFDinTextCondPro-Medium.ttf";
    padding: 10px 0;
    text-transform: uppercase;
    background: #860d0d;
    border-radius: 10px 10px 0 0;
}

#promo_block>p {
    font-size: 25px;
    font-family: "PFDinTextCondPro-Light.ttf";
    padding: 15px 0 10px 0;
    background: #fff;
}

#promo_block>p span {
    font-family: "PFDinTextCondPro-Medium.ttf";
    text-transform: uppercase;
}

.form {
    text-align: center;
}

.form>h3 {
    color: #b40701;
    font-size: 24px;
    margin-bottom: 10px;
    font-family: "PFDinTextCondPro-Medium.ttf";
}
.form>h4 {
    margin-bottom: 20px;
}

.form>h3 span {
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 18px;
}

.form input {
    color: #7c7c7c;
    font-size: 19px;
    font-family: "PFDinTextCondPro-Regular.ttf";
    width: 315px;
    height: 44px;
    text-align: center;
    text-transform: none;
    border: 1px solid #7b7b7b;
    margin-bottom: 15px;
}
/*******************************Акция*********************/
#form1 {
    display: inline-block;
    background: #fff none repeat scroll 0 0;
    border: 7px solid #b40701;
    height: auto;
    padding: 20px;
}
p.privacy_form {
    color: #8d90a3!important;
    font-size: 14px;
    margin: 0 auto;
    text-transform: uppercase;
    width: 315px;
}
.privacy_form a {
    color: #8d90a3;
    cursor: pointer;
    text-decoration: underline;
}
.privacy_form img {
    display: block;
    height: 25px;
    margin-left: 5px;
    position: relative;
    top: 0;
    width: 25px;
    float: left;
}
p.privacy_form2 {
    color: #fff;
    font-size: 14px;
    margin: 9px auto 0;
    text-transform: uppercase;
    width: 675px;
}
.privacy_form2 a {
    color: #fff;
    cursor: pointer;
    text-decoration: underline;
}
.privacy_form2 img {
    display: block;
    height: 25px;
    margin-left: 5px;
    position: relative;
    top: -8px;
    width: 25px;
    float: left;
}
p.privacy_form3 {
    color: #ffffff;
    font-size: 14px;
    margin: 0 auto;
    text-transform: uppercase;
    width: 356px;
}
.privacy_form3 a {
    color: #ffffff;
    cursor: pointer;
    text-decoration: underline;
}
.privacy_form3 img {
    display: block;
    height: 25px;
    margin-left: 5px;
    position: relative;
    top: 0;
    width: 25px;
    float: left;
}
.form {
    text-align: center;
}

#promo_popup_block p.form_p {
    font-size: 16px;
}

.form > h3 span {
    display: inline-block;
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 24px;
    line-height: 26px;
    margin-top: 20px;
}

.form input {
    color: #7c7c7c;
    font-size: 19px;
    font-family: "PFDinTextCondPro-Regular.ttf";
    width: 315px;
    height: 44px;
    text-align: center;
    text-transform: none;
    border: 1px solid #7b7b7b;
    margin-bottom: 15px;
}
.red{
    color: red;
}
.remodal .container_r table td span.rtd{
    position: relative;
}
.remodal .container_r table td span .rspan {
    height: 20px;
    left: -5px;
    position: absolute;
    top: -1px;
    width: 42px;
}
#items .item{
    position: relative;
}
#items .item768{
    display: none;
}
#items .item .line_red {
    height: 44px;
    left: 389px;
    position: absolute;
    top: 47px;
    width: 128px;
}
#items .item .line_red.r1 {
    height: 44px;
    left: 387px;
    top: 125px;
    width: 128px;
}
.item .item_price.new {
    left: 326px;
    position: absolute;
    top: 5px;
    color: #B40701;
}
.item .item_price.new2 {
    color: #b40701;
    left: 361px;
    position: absolute;
    top: 171px;
}

.title_h3 {
    color: #860d0d;
    font-size: 47px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    margin-left: 15px;
    font-family: "PFDinTextCondPro-Medium.ttf";
}

.greel {
    left: 84px;
    position: absolute;
    top: 120px;
    width: 253px;
}
.moyka {
    left: 438px;
    position: absolute;
    top: 91px;
    width: 200px;
}
#top .may{
    position: absolute;
    top: 10px;
    color: #ae0603;
    font-weight: bold;
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 20px;
}
#why_bg {
    background: rgba(0, 0, 0, 0) url("../images/striped_bg.jpg") repeat scroll 0 0;
    height: 609px;
    overflow: hidden;
    padding-top: 45px;
}
#advantages #why_bg {
    height: auto;
}
.advantages__firstImg {
    max-width: 150px;
}

#why_bg .line {
    background-color: #951612;
    height: 4px;
    margin: 10px auto 0;
    width: 449px;
}
.why_bg_bottom{
    height: 50px;
    background: rgba(0, 0, 0, 0) url("../images/striped_bg.jpg") repeat scroll 0 0;

}
.why_bg_bottom .line_rd2 {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    height: 100%;
    width: 100%;
}
.why_bg_bottom.two{
    height: 100%;
    width: 100%;
    background: none;

}
#bg, #bg2 {
    color: #951612;
    cursor: pointer;
    display: inline-block;
    font-size: 30px;
    line-height: 47px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    text-decoration: underline;
}

#bg_btn, #bg2_btn {
    display: inline-block;
    margin: 0;
    left: 20px;
    top: 6px;
    width: 42px;
    position: relative;
    cursor: pointer;
}

#bg_btn .size-ico, #bg2_btn .size-ico {
    left: auto;
    position: static;
    top: auto;
}

.size-ico {
    left: 20px;
    position: relative;
    top: 6px;
    width: 42px;
}
#bg:hover {
    text-decoration: underline;
}
#bg2:hover {
    text-decoration: underline;
}

.black{
    color: #000;
    margin-top: 0!important;
}
#term_tube h4 .bg_red {
    background-color: #af0e0a;
    color: #fff;
    display: inline-block;
    padding: 7px 7px 0;
}
.form2_class{
    background-color: #af2c29;
    padding: 20px 0 20px;
}
.form2__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form2_class.sheet{
    height: 215px;
    background-color: #af2c29;
}
#form2 {
    margin: 0 auto;
    padding: 10px 0 4px;
    width: 950px;
}

.form2_class #form2 input {
    float: left;
    height: 58px;
    margin: 0 20px 20px 0;
    padding: 0;
    text-align: center;
    width: 235px;
}

.form2_class #form2 .btn {
    font-size: 24px;
    margin-top: 0;
    padding: 0 20px;
    width: 386px;
}
.form2_class h5 {
  color: #ffffff;
  font-family: "PFDinTextCondPro-Medium.ttf";
  font-size: 28px;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  margin-right: 20px;
}
.form2_class__mark {
  color: #fed329;
}
.form2_class p {
    color: #ffffff;
    font-size: 16px;
    padding-top: 1px;
    text-align: center;
}

.table_wrapper {
    background-color: #e2e2e2;
    padding-bottom: 40px;
}


#our_prices > .title_h3 {
    margin-bottom: 15px;
    padding-top: 15px;
    text-align: center;
}
#full_price_btn {
    box-shadow: none;
    display: block;
    margin: -5px auto 15px;
    text-align: center;
}
#full_btn {
    box-shadow: none;
    display: block;
    margin: 0 auto 15px;
    text-align: center;
    width: 320px;
}
.item {
    background: #ffffff none repeat scroll 0 0;
    display: inline-block;
    margin-bottom: 20px;
    padding: 15px 20px;
    text-align: center;
    vertical-align: top;
    width: 538px;
}
.zakaz {
    left: -80px;
    margin-top: 10px;
    position: relative;
    width: 200px;
}
.ico_arr{
    color: #af2c29;
}
.item:nth-child(2n+1) {
    margin-right: 15px;
}

.item>* {
    display: inline-block;
    vertical-align: middle;
}

.item > img {
    float: left;
    margin-right: 40px;
}

.app_img > p {
    font-size: 36px;
}
.item > div > div {
    margin: 22px 0;
}

.item > div > div > p {
    color: #000;
    display: inline-block;
    font-size: 26px;
    text-align: left;
    text-transform: uppercase;
    font-family: "PFDinTextCondPro-Medium.ttf";
}

.item_descr {
    width: 200px;
}

.item .item_price {
    font-family: "PFDinTextCondPro-Bold.ttf";
    font-size: 41px;
    margin-left: 37px;
}

.item .item_price span {
    font-size: 18px;
    font-family: "PFDinTextCondPro-Medium.ttf";
}

.note {
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 18px;
    margin-left: 20px;
    text-align: left;
}
#our_prices ul {
    float: left;
    margin: 10px 0 20px 20px;
    text-align: left;
}

#our_prices ul li {
    font-size: 18px;
    list-style-image: url(../images/prices_li.png);
    margin-bottom: 10px;
    margin-left: 32px;
}
#full_price_btn{
    width: 300px;
}
.p_items {
    margin: 20px 0 30px;
    text-align: center;
}
.p_item {
    display: inline-block;
    height: 240px;
    margin-right: 16px;
    width: 180px;
    position: relative;
}
/* .p_item.i1{
    background-image: url("../images/obv_sprite.jpg");
}
.p_item.i2{
    background-image: url("../images/obv_sprite.jpg");
    background-position: -180px 0;
}
.p_item.i5{
    background-image: url("../images/obv_sprite.jpg");
    background-position: -520px 0;
}
.p_item.i6{
    background-image: url("../images/obv_sprite.jpg");
    background-position: -720px 0;
} */
.p_item p{
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    top: 20px;
}
.p_item.i5 p,
.p_item.i6 p{
   line-height: 25px;
}
.p_item p.obv_butt {
    text-transform: inherit;
    top: 177px;
}
.p_item.i5 p.obv_butt,
.p_item.i6 p.obv_butt {
    top: 150px;
    color: #af0e0a;
}
.p_item.i5 p span,
.p_item.i6 p span{
    color: #af0e0a;
}
.p_item p.obv_butt span{
    font-family: "PFDinTextCondPro-Bold.ttf";
    font-size: 27px;
}

.p_item .p_action{
     width: 42px;
     height: 42px;
     background-color: #af0e0a;
     border-radius: 100%;
     position: absolute;
     top: -21px;
 }
.p_item .p_action p{
    font-family: "PFDinTextCondPro-Bold.ttf";
    font-size: 15px;
    color: #ffffff;
    position: relative;
    top: 8px;
}
.p_item img {
    position: absolute;
    top: 0;
    left: 0;
}
.p_item p.obv_butt .p_item__currency {
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 20px;
}
#items {
    padding-bottom: 1px;
}

.znak {
    color: #ffffff;
    font-size: 34px;
    left: 17px;
    position: relative;
    top: -5px;
}
#callback_btn {
    width: 300px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
}

#calc_outer {
    font-size: 16pt;
    padding: 20px 0 10px;
}

#calc_menu li {
    display: inline-block;
    font-size: 28px;
    margin-right: 10px;
    vertical-align: top;
}

.del_txt {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: left;
}


.len_txt {
    display: inline-block;
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 24px;
    left: -12px;
    position: relative;
    text-transform: uppercase;
    width: 80%;
}
.len_txt.lt {
    left: 0;
}
.mrg div{
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 18px;
}
.mrg div:first-child {
    left: 0;
    position: relative;
}
.mrg div:last-child {
    left: 252px;
    position: relative;
}
.mrg_bl{
    position: relative;
    top: 30px;
}

#form_wr {
    background-color: #fff;
    min-height: 375px;
}
.form3_wrapper{
    width: 1020px;
    margin: 0 auto;
    padding: 45px 0 60px;
}
.form3_wrapper .left{
    width: 620px;
    float: left;
    position: relative;
}
.form3_wrapper .left img {
    left: 537px;
    position: absolute;
}
.form3_wrapper .left h5 {
    font-size: 40px;
    margin-top: 30px;
    margin-bottom: 20px;
}
.form3_wrapper .left h6{
    font-size: 30px;
}
.form3_wrapper .right {
    float: right;
    width: 400px;
}
.form3_wrapper .right form{
    background-color: #af2c29;
    height: 260px;
    padding: 20px;
    border-radius: 4px;
}
.form3_wrapper .right form p{
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}
.form3_wrapper .right form input,
.form3_wrapper .right form .form_btn{
    width: 340px;
}
.bx-wrapper .bx-controls-direction a {
    height: 60px;
    margin-top: -16px;
    outline: 0 none;
    position: absolute;
    text-indent: -9999px;
    top: 170px;
    width: 60px;
    z-index: 499;
}

.bx-wrapper .bx-next {
    background: rgba(0, 0, 0, 0) url("../images/slide_right.png") no-repeat scroll 0 0;
    right: -30px;
}

.bx-wrapper .bx-prev {
    background: rgba(0, 0, 0, 0) url("../images/slide_left.png") no-repeat scroll 0 0;

}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #d7d7d7 none repeat scroll 0 0;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #ed2a24 none repeat scroll 0 0;
}


#map {
    background-image: url("../images/map.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    min-height: 660px;
}
#map img {
    margin-top: 176px;
    width: 344px;
}
#map h2 {
    position: relative;
    padding-top: 50px;
}
#map .title_h3 {
    color: #860d0d;
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 47px;
    margin-bottom: 20px;
    margin-left: 15px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    top: 20px;
}

#map .adress {
    background-color: #fff;
    border: 1px solid #e8d4bb;
    border-radius: 2px;
    float: right;
    height: 150px;
    position: relative;
    right: 214px;
    top: 50px;
    width: 292px;
}
#map .adress .arr {
    left: 66px;
    position: absolute;
    top: -27px;
    width: 25px;
}
#map .adress .block img {
    float: left;
    margin: 5px 10px 15px;
    width: 10px;
}
#map .adress .block p:nth-child(2) img {
    width: 14px;
    margin-right: 6px;
}
#map .adress .block p:nth-child(3) img {
    width: 11px;
    margin-right: 9px;
}
#map .adress .block p {
    margin-top: 17px;
    width: 300px;
}
.visible_block{
    border-bottom: 1px dashed #af0e0a;
    color: #af0e0a;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    width: 76px;
    position: relative;
    cursor: pointer;
    display: none;
}
.visible_block_active{
    border-bottom: 1px dashed #af0e0a;
    color: #af0e0a;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    width: 60px;
    position: relative;
    cursor: pointer;
    display: none;
}
.why_wrapper .visible_block span {
    background-image: url("../images/block_arrow.png");
    background-position: 0 14px;
    display: block;
    height: 14px;
    position: absolute;
    right: -23px;
    top: 1px;
    width: 14px;
}
.why_wrapper .visible_block_active span {
    background-image: url("../images/block_arrow.png");
    background-position: 0 0;
    display: block;
    height: 14px;
    position: absolute;
    right: -23px;
    top: 1px;
    width: 14px;
}

.skroll_wrapper{
    display: block;
}

#footer_bg {
    border-top: 3px solid #c4c4c4;
    padding: 10px 0;
}


#footer>* {
    display: inline-block;
    vertical-align: middle;
}
#footer .fv{
    display: inline-block;
}
#footer .fh{
    display: none;
}
#footer_bg .recv {
    display: block;
    text-align: center;
}
#footer_bg .recv span{
    display: inline-block;
    width: 30px;
}
#footer_bg .recv a{
    text-decoration: underline;
    color: #000;
    cursor: pointer;
}
#footer_bg .recv a:hover{
    text-decoration: none;
}
#footer .contacts {
    font-family: "PFDinTextCondPro-Light.ttf";
    position: relative;
    float: right;
    width: 350px;
    text-align: center;
}
#footer h2 {
    margin-bottom: 5px;
}

#footer .contacts .contacts_btn {
    font-size: 17px;
    margin-bottom: 16px;
}

.modal{
    display: none;
}
.remodal{
    display: none;
}
.remodal3,
.remodal4,
.remodal2{
    width: 310px;
}
.remodal3 p{
    font-size: 22px;
}
.remodal2 #form5 {
    width: 100%
}
.remodal4 #form6 {
    width: 100%
}
#form6.form input,
#form5.form input {
     margin-bottom: 0;
     margin-top: 10px;
     width: 232px;
 }

#form5.form a,
#form6.form a {
    width: 232px;
}
#form6.form h3 {
    font-size: 20px;
}
#form6.form p,
#form5.form p {
    font-size: 14px;
}
#modal_form{
    width: 400px;
}
#modal3{
    width: 250px;
}
#modal3 p{
    text-align: center;
    font-size: 22px;
}
.blocker{
    z-index: 10000;
}
.modal {
    max-width:90%;
    display: none;
}
#modal .btn_ok {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #f2a92b 0%, #c3860f 100%) repeat scroll 0 0;
    height: 40px;
    line-height: 40px;
    margin: 10px auto;
    position: relative;
    text-align: center;
    text-indent: 0;
    width: 200px;
}
#modal1{
    max-width: 600px;
}
#total_close span {
    color: #000;
    font-size: 27px;
    margin-left: 80px;
    margin-right: 0;
}
.red{
    color: #af0e0a!important;
}

#footer_bg #footer .footer_center {
    width: 250px;
}

#footer_bg #footer .footer_center a {
    color: #000;
    line-height: 20px;
    text-decoration: underline;
    text-transform: uppercase;
}
#footer_bg #footer .footer_center a img {
    margin-bottom: 1px;
    margin-right: 6px;
}


#modal3 {
    /*display: inline-block;*/
    /*height: 50%;*/
    /*left: 25%;*/
    max-width: 50%;
    /*position: absolute;*/
    /*top: 25%;*/
    width: 50%;
}
#modal3 h2 {
    color: #ae0603;
    font-size: 29px;
    margin: 12px;
    text-align: center;
    text-transform: uppercase;
}
#modal3 h4 {
    font-size: 21px;
    margin: 12px;
    text-align: center;
}
#modal3 .useful_article {
    display: inline-block;
    margin: 0 10px;
    vertical-align: top;
    width: 21%;
}
#modal3 .useful_article .ua_a{
    display: none;
}
.blocker {
    z-index: 1000;
}


#map_new {
    background-color: #ffffff;
    background-image: url(../images/bg_contacts_spb.jpg);
    min-height: 600px;
    width: 100%;
    background-position: center, center;
    background-repeat: no-repeat;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}
#map_new .button_duble {
    margin: 0;
    width: 569px;
}
#map_new .button_duble .btn {
    box-shadow: 2px 3.464px 10px 0 #594e41;
    float: left;
    font-size: 18px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    text-transform: none;
    width: 150px;
    border-radius: 29px;
}
#map_new .button_duble .b_left {
    border-radius: 29px 0 0 29px;
}
#map_new .button_duble a {
    border-radius: 0 29px 29px 0;
    background-image: -moz-linear-gradient(90deg, #e8e8e8 0%, #ffffff 100%);
    background-image: -webkit-linear-gradient(90deg, #e8e8e8 0%, #ffffff 100%);
    background-image: -ms-linear-gradient(90deg, #e8e8e8 0%, #ffffff 100%);
    color: #000;
}
#map_new .button_duble a.active {
    /*border-radius: 0 29px 29px 0;*/
    background-image: none;
    background-color: #fbb034;
    color: #fff;
}
#map_new .moskow {
    background-color: #fff;
    border: 1px solid #b6b6b6;
    left: 222px;
    position: absolute;
    top: 294px;
    width: 467px;
    display: none;
}
#map_new #moskow {
    left: 390px;
    top: 170px;
    width: 284px;
}
#map_new #moskow .office3 {
    left: -348px;
    position: absolute;
    top: -130px;
    width: 229px;
}
#map_new #spb {
    background-color: #fff;
    border: 1px solid #b6b6b6;
    left: 600px;
    display: block;
    position: absolute;
    top: 100px;
    width: 344px;
}
#map_new #moskow img {
    position: absolute;
    bottom: -18px;
    left: 120px;
}
#map_new #spb img {
    position: absolute;
    top: 40px;
    left: -18px;
}
#map_new .moskow #mos_close {
    right: -423px;
    top: -17px;
    cursor: pointer;
    z-index: 1000;
}

#map_new .moskow #mos_close1 {
    right: -423px;
    top: -17px;
    cursor: pointer;
}
#map_new .moskow .text {
    position: relative;
    padding: 5px 0;
}
#map_new .moskow .text p {
    font-size: 18px;
    line-height: 23px;
    margin: 4px 25px;
}
#map_new .moskow .text span {
    font-family: "PFDinTextCondPro-Medium.ttf";
}
#map_new .spb {
    /*background-image: url("../images/bg_spb.png");*/
    height: 400px;
    left: 610px;
    position: relative;
    top: 45px;
    width: 581px;
    opacity:0;
}
#map_new .spb .bott {
    background-color: #193760;
    bottom: 0;
    color: #ffffff;
    font-size: 18px;
    height: 120px;
    padding: 10px;
    position: absolute;
}
#map_new .spb .bott span {
    font-family: 'SeroPro-Bold';
}
#map_new h2 {
    color: #860d0d;
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 47px;
    margin-bottom: 20px;
    margin-left: 15px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    top: 10px;
}
#map_new #spb img.office {
    left: -312px;
    position: absolute;
    top: -248px;
    width: 229px;
}
.remodal .container_r .table3 img.tut {
    height: auto;
    width: 200px;
}

#header_bg.credit_page {
    background: rgba(0, 0, 0, 0) url("../images/credit_bg.png") no-repeat scroll center 130px;
    position: relative;
}
#header_bg.credit_page #header h4 {
    background-color: #af0e0a;
    color: #ffffff;
    display: block;
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 38px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    position: relative;
    text-transform: uppercase;
    width: 565px;
}
#header_bg.credit_page form {
    background: #fff none repeat scroll 0 0;
    border: 4px solid #af0e0a;
    height: 340px;
    margin: 33px 0 0 auto;
    padding: 30px 0 25px;
    width: 415px;
}
#header_bg.credit_page .form > h3 {
    color: #b40701;
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 40px;
    line-height: 36px;
    margin-bottom: 25px;
}
#header_bg.credit_page .form input {
    border: 1px solid #7b7b7b;
    color: #7c7c7c;
    font-family: "PFDinTextCondPro-Regular.ttf";
    font-size: 19px;
    height: 44px;
    margin-bottom: 15px;
    text-align: center;
    text-transform: none;
    max-width: 290px;
}
#header_bg.credit_page .form .btn {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #f2a92b 0%, #c3860f 100%) repeat scroll 0 0;
    box-shadow: 0 1px 5px rgba(242, 173, 30, 0.75);
    max-width: 290px;
}

.form2_class.credit_href {
    background-color: #af2c29;
    border-bottom: 30px solid #ffffff;
    height: 79px;
    padding-top: 15px;
}
.form2_class.credit_href .btn {
    display: block;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    width: 300px;
}

#footer .contacts p a {
    color: #404040;
    font-family: "PFDinTextCondPro-Light.ttf";
    font-size: 30px;
    font-weight: bold;
    position: relative;
    text-align: left;
}
#footer .contacts p {
    text-align: center;
}
#footer .contacts p.p_time {
    font-size: 18px;
    margin-top: 0;
}

.contacts p a{
    color: #404040;
    display: inline-block;
}
.contacts p span {
    display: inline-block;
    font-size: 24px;
    font-weight: lighter;
    letter-spacing: 0;
    position: absolute;
    right: -50px;
    top: 0;
    width: 214px;
    line-height: 1.5;
    font-family: "PFDinTextCondPro-Regular.ttf";
}
#footer .contacts p span {
    display: inline-block;
    font-size: 26px;
    font-weight: lighter;
    letter-spacing: 0;
    position: absolute;
}
.contacts p span img:last-child {
    left: 20px;
    position: relative;
    top: 11px;
    width: 70px;
}

#footer_bg .recv span {
    display: inline-block;
    text-align: center;
    width: 231px;
}
#footer_bg .recv a {
    color: #000;
    cursor: pointer;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: underline;
}
#footer_bg .recv a:hover{
    text-decoration: none;
}
#footer {
    margin: 0 auto;
}
#footer:after {
    content: '';
    display: table;
    clear: both;
}
#footer .logo {
    position: relative;
    float: left;
    margin-right: 20px;
}
#footer .logo img{
    width: 100px;
}
#footer_h2 {
    position: relative;
}
#footer_bg #footer .footer_center {
    position: relative;
    width: 200px;
}


.alert {
    text-align: center;
    background-color: #af0e0a;
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    padding: 10px; 
}

#top .select {
    float: none;
    margin-left: 100px;
    margin-top: 15px;
    font-size: 20px;
    font-family: "PFDinTextCondPro-Medium.ttf";
    color: #8c8c8c;
}

#top select {
    font-size: 20px;
    margin-left: 10px;
    padding-left: 5px;
    border-color: #d0d0d0;
}

.no-working {
    display: none;
}

.user-info h1 {
    text-align: center;
    margin: 20px;
    font-size: 42px;
}

.user-info>.wrapper {
    display: flex;
    justify-content: space-around;
    font-size: 22px;
    padding-bottom: 20px;
}

.status-info2 {
    display: none;
    font-size: 16px;
    width: 230px;
    margin-top: 20px;
    border: 1px solid #cacaca;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 10px #d0d0d0;
    position: relative;
    z-index: 50000;
    line-height: 1.2;
}

.status-info2 b {
    font-size: 20px;
    color: #b30603;
    margin-left: 5px;
}

.user-info p span {
    font-family: 'PFDinTextCondPro-Light.ttf';
}

.status-info a {
    font-size: 26px;
    font-family: 'PFDinTextCondPro-Medium.ttf';
    color: #ae0603;
}

.status-info a:hover {
    color: #040000;
}

.status-info a.qa{
    color: #000;
    font-size: 16px;
    font-family: 'PFDinTextCondPro-Regular.ttf';
    vertical-align: super;
    display: inline-block;
    margin-left: 10px;
    border: 1px solid;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 50%;
    background-color: #ffffed;
}

.status-info a:focus ~ .status-info2 {
    display: block;
}

.order-menu {
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    margin: 0 auto;
    background: #ececec;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 26px;
    color: #636363;
}

.order-menu>a:first-child {
    border-right: 1px solid #696060;
    padding-right: 190px;
    height: 30px;
}

.order-menu .active {
    color: #000;
}

.order-history {
    display: none;
}

.order-history table {
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.5;
    color: #525252;
    margin-bottom: 40px;
    border: 1px solid #c1c1c1;
}

.order-history table tr:first-of-type {
    color: #000;
    font-size: 22px;
}

.order-history table tr {
    border-bottom: 1px solid #c1c1c1; 
}

.order-history table td {
    padding-left: 10px;
    padding-right: 10px;
}

.current-order table {
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 40px;
    text-align: center;
    width: 1180px;
    background-color: #fff;
}
.current-order table td {
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #a0a0a0;
    max-width: 390px;
    vertical-align: middle;
}

.current-order table tr:first-child {
    background-color: #ae0603;
    color: #fff;
}

.current-order table select {
    height: 47px;
    font-size: 25px;
    border: none;
    font-family: 'PFDinTextCondPro-Regular.ttf';
}

.current-order table tr:first-child select {
    width: 100%;
    background-color: #ae0603;
    color: #fff;
    font-size: 24px;
    height: 80px;
}
.current-order table input[type="number"] {
    font-family: 'PFDinTextCondPro-Regular.ttf';
    font-size: 25px;
    text-align: center;
}

.current-order table input[type="checkbox"] {
    width: 20px;
    height: 20px;
}


.order-sum {
    width: 300px;
    margin: 0 auto;
    margin-bottom: 50px;
    text-align: center;
    border: 1px solid #c7c7c7;
    padding: 30px;
    font-size: 32px;
}

.order-sum span {
    font-size: 38px;
    font-family: 'PFDinTextCondPro-Medium.ttf';
}


#ya-site-form0 {
    display: inline-block;
    width: 210px;
        padding-top: 1px !important;
}

#ya-site-form0 .ya-site-form__form .ya-site-form__input-text {
    padding-left: 10px;
}


@keyframes button {
from { filter: none;}
49% {filter: none;}
50% {filter: hue-rotate(70deg) saturate(70%) brightness(120%);}
to {    filter: hue-rotate(0deg) saturate(170%) brightness(70%);}
}

@keyframes scale{
    from {transform: scale(1);}
    50% {transform: scale(0.8);}
    to { transform: scale(1);}
}

#bg_btn, #bg2_btn {
    animation-name: button, scale;
    animation-duration: 30s, 6s;
    animation-iteration-count:infinite;
}
        .promo-form {
            width: 360px;
            border: 7px solid #af0e0a;
            background: #ffffff;
            padding-top: 10px;
            padding-bottom: 10px;
            float: right;
            font-family: "PFDinTextCondPro-Medium.ttf";
        }

        .promo-form__caption {
            color: #af0e0a;
            text-transform: uppercase;
            font-size: 36px;
            text-align: center;
        }

        .promo-form__desc {
            color: #191919;
            font-size: 25px;
            text-align: center;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .promo-form__input-group {
            text-align: center;
            margin-bottom: 9px;
        }

        .promo-form__input {
            font-family: "PFDinTextCondPro-Regular.ttf";
            width: 300px;
            height: 50px;
            border: 1px solid #a0a0a0;
            text-align: center;
            font-size: 19px;
            color: #a0a0a0;
        }
                
        .promo-form__input--small {
            width: 100%;
            height: 40px;
        }

        .promo-form__btn {
            font-family: "PFDinTextCondPro-Medium.ttf";
            font-size: 24px;
            text-transform: uppercase;
            color: #ffffff;
            line-height: 50px;
            width: 300px;
            height: 55px;
            border: none;
            border-radius: 5px;
            background-image: -webkit-gradient(linear, left bottom, left top, from(#af0e0a), to(#f1433f));
            background-image: -webkit-linear-gradient(bottom, #af0e0a, #f1433f);
            background-image: -o-linear-gradient(bottom, #af0e0a, #f1433f);
            background-image: linear-gradient(to top, #af0e0a, #f1433f);
            cursor: pointer;
            display: inline-block;
            box-shadow: 0 1px 5px rgba(225, 0, 0, 0.75);
        }

        .promo-form__text {
            font-family: "PFDinTextCondPro-Medium.ttf";
            font-size: 16px;
            line-height: 1.2;
            text-align: center;
        }
        
        .promo-form--secondary {
            width: 401px; 
            padding: 20px;
        }

        .advantages__container {
            max-width: 1349px;
            
        }

        .advantages__list {
            position: relative;
            top: -60px;
            list-style: none;
            
        }
            
        .advantages__list:after {
            content: '';
            display: table;
            clear: both;
        }

        .advantages__item {
            text-align: center;
            padding-left: 10px;
            padding-right: 10px;
            float: left;
            width: 14.2857142857%;
            
        }
        
        .advantages__pic {
            width: 126px;
            height: 126px;
            border: 3px solid #af0e0a;
            border-radius: 50%;
            background-color: #ffffff; 
            background-image: url("../images/new-pages/advantage-sprite.png");
            background-repeat: no-repeat; 
            display: inline-block;
            margin-bottom: 17px;
            
        }
            
        .advantages__pic--1 {
                background-color: #d72e2a;
            }
        .advantages__pic--2 {
                background-position: -120px 0;
            }
        .advantages__pic--3 {
                background-position: -240px 0;
            }
        .advantages__pic--4 {
                background-position: -360px 0;
            }
        .advantages__pic--5 {
                background-position: -480px 0;
            }
        .advantages__pic--6 {
                background-position: -600px 0;
            }
        .advantages__pic--7 {
                background-position: -720px 0;
            }
        .advantages__text {
            font-family: "PFDinTextCondPro-Bold.ttf";
            font-size: 16px;
            text-transform: uppercase;
            margin-bottom: 10px;
            }
            
        .advantages__link {
            font-family: "PFDinTextCondPro-Regular.ttf";
            font-size: 18px;
            color: #af0e0a;
            text-decoration: none;
            border-bottom: 1px dashed #af0e0a;
            }

        .btn-text-open {
            font-family: "PFDinTextCondPro-Bold.ttf";
            font-size: 20px;
            text-transform: uppercase;
            height: 50px;
            padding-left: 30px;
            padding-right: 30px;
            border: 2px solid #f2b626;
            border-radius: 4px;
            background: #ffffff;
            cursor: pointer;
            margin: 55px auto 0;
            display: block;
        }
        #form1 .btn {
            background-image: -webkit-gradient(linear, left bottom, left top, from(#e78e24), to(#f5b51d));
            background-image: -webkit-linear-gradient(bottom, #e78e24, #f5b51d);
            background-image: -o-linear-gradient(bottom, #e78e24, #f5b51d);
            background-image: linear-gradient(to top, #e78e24, #f5b51d);
            margin-bottom: 20px;
        }
        #form1 .btn:hover {
            background-image: -webkit-gradient(linear, left top, left bottom, from(#e78e24), to(#f5b51d));
            background-image: -webkit-linear-gradient(bottom, #f5b51d, #e78e24);
            background-image: -o-linear-gradient(bottom,#f5b51d, #e78e24);
            background-image: linear-gradient(to top,#f5b51d, #e78e24);
        }
        .btn-small {
            font-family: "PFDinTextCondPro-Bold.ttf";
            text-transform: uppercase;
            font-size: 24px;
            color: #ffffff;
            padding-left: 40px;
            padding-right: 40px;
            height: 50px;
            border: none;
            border-radius: 3px;
            background-image: -webkit-gradient(linear, left bottom, left top, from(#e78e24), to(#f5b51d));
            background-image: -webkit-linear-gradient(bottom, #e78e24, #f5b51d);
            background-image: -o-linear-gradient(bottom, #e78e24, #f5b51d);
            background-image: linear-gradient(to top, #e78e24, #f5b51d);
            box-shadow: 0 4px 13px rgba(244, 216, 27, 0.75);
            cursor: pointer;
        }

        .thanks-socials {
            text-align: center;
            margin-bottom: 10px;
        }
        .thanks-socials p {
            margin-bottom: 5px;
            color: #555;
        }
        .thanks-socials__link {
            display: inline-block;
            margin: 1px;
        }
        .thanks-socials__link img {
            width: 30px;
            height: 30px;
        }
        .add_fav__box {
            width: 320px;
            margin: 0 auto;
        }
        .add_fav__box-mobile {
            display: none;
        }
        @media screen and (max-width: 768px) {
            .add_fav__box-mobile {
                display: block;
            }
            .add_fav__box {
                display: none;
            }
        }
        
        .otz_link {
            position: absolute;
            display: inline-block;
            width: 65px;
            text-align: center;
            bottom: 107px;
            right: 15px;
            font-size: 18px;
            color: #ffffff;
            text-decoration: none;
            background-color: #860d0d;
            padding: 10px;
        }
        
        #otzyv1 .otz_link {
            position: relative;
            display: inline-block;
            width: auto;
            text-align: center;
            bottom: 40px;
            left: 50%;
            margin-left: -80px;
            font-size: 18px;
            color: #ffffff;
            text-decoration: none;
            background-color: #860d0d;
            padding: 10px;
        }

        .btn2_look_price {
            display: block;
            margin: 0 auto 20px;
            text-align: center;
        }
        
#footer .contacts p span {
    width: 130px;
    right: 0;
}

.breadcrumbs-container {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}
.breadcrumbs {
    color: #757575;
    padding-top: 10px;
    padding-bottom: 10px;
}
.breadcrumbs a {
    color: #860d0d;
}
.breadcrumbs__link {
    display: inline-block;
    width: 116px;
    margin-left: 50px;
}

        .section-promo {
            background-color: #b40701;
        }
        .section-promo__title {
            position: relative;
            text-transform: uppercase;
            font-size: 70px;
            line-height: 120px;
            padding-bottom: 0;
            padding-left: 80px;
            white-space: nowrap;
            font-family: "PFDinTextCondPro-Bold.ttf";
            text-align: center;
            color: #ffffff;
            text-shadow: 2px 2px #000000, -2px -2px #000000, -2px 2px #000000, 2px -2px #000000;
        }
        .section-promo__title:before {
            content: '';
            position: absolute;
            top: 0;
            left: 40px;
            width: 80px;
            height: 120px;
            display: block;
            background: url("../images/icon_promo.png");
            background-repeat: no-repeat;
            background-position: center;
        }
        .section-promo__text-dif {
            color: #ffffff;
            text-shadow: none;
            white-space: nowrap;
        }
        .section-promo__service {
            position: relative;
            font-size: 85px;
        }
        .section-promo__subtext {
            font-size: 18px;
            line-height: 1;
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
        }
        @media screen and (max-width: 1180px) {
            .section-promo__title {
                padding-left: 20px;
                font-size: 40px;
                line-height: 80px;
            }
            .section-promo__title:before {
                top: 10px;
                left: 60px;
                width: 40px;
                height: 60px;
                -webkit-background-size: contain;
                background-size: contain;
            }
            .section-promo__service {
                font-size: 45px;
            }
            .section-promo__subtext {
                font-size: 12px;
            }
        }
        @media screen and (max-width: 768px) {
            .section-promo__title {
                white-space: normal;
                padding-left: 0;
                padding-bottom: 10px;
                line-height: 1.2;
            }
            .section-promo__title:before {
                display: none;
            }
            .section-promo__text-dif {
                white-space: normal;
            }
        }
        
.section-promo__btn {
    display: inline-block;
    position: absolute;
    text-shadow: none;
    bottom: -55px;
    left: 50%;
    margin-left: -175px;
    color: #fff;
    font-size: 24px;
    font-family: "PFDinTextCondPro-Medium.ttf";
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 4px 13px rgba(244, 216, 27, 0.75);
    width: 350px;
    height: 55px;
    line-height: 55px;
    background: #f2a92b; /* Old browsers */
    background: -moz-linear-gradient(top,  #f2a92b 0%, #c3860f 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2a92b), color-stop(100%,#c3860f)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f2a92b 0%,#c3860f 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f2a92b 0%,#c3860f 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f2a92b 0%,#c3860f 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f2a92b 0%,#c3860f 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2a92b', endColorstr='#c3860f',GradientType=0 ); /* IE6-9 */
    z-index: 200;
}

.canopy-service {
            background-image: url("../images/new-pages/canopy_bg.jpg");
            background-repeat: no-repeat;
            -webkit-background-size: cover; 
            -o-background-size: cover;
            background-size: cover;
            background-position: 0 100% ; 
            padding-top: 40px;
            padding-bottom: 40px;  
        }

        .canopy-service__desc {
            font-family: "PFDinTextCondPro-Medium.ttf";
            font-size: 24px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 30px;
        }

        .type-of-canopy__subtitle {
            font-family: "PFDinTextCondPro-Bold.ttf";
            font-size: 32px;
            text-transform: uppercase;
            text-align: center;
        }
            
        .type-of-canopy__row {
            margin-left: -12px;
            margin-right: -12px;
        }

        .type-of-canopy__cart-box {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            margin-bottom: 20px;
            margin-left: -12px;
            margin-right: -12px;
            padding-top: 20px;
        }

        .type-of-canopy__col {
            width: 33.333333%;
            padding-left: 12px;
            padding-right: 12px;
            
        }

        .type-of-canopy__cart {
            position: relative;
            border: 2px solid #c3c3c3;
            text-align: center;
            padding-top: 20px;
            padding-bottom: 20px;
        }

        .type-of-canopy__cart span {
            position: absolute;
            display: inline-block;
            width: 42px;
            height: 42px;
            top: 15px;
            left: 15px;
            background-color: #a70703;
            border-radius: 50%;
            font-family: 'PFDinTextCondPro-Bold.ttf';
            color: #ffffff;
            font-size: 30px;
            line-height: 42px;
            text-align: center;
        }

        .type-of-canopy__cart img {
            position: static;
        }

        .type-of-canopy__text {
            font-family: 'PFDinTextCondPro-Bold.ttf';
            font-size: 24px;
            line-height: 1.4;
            text-align: center;
        }

        .type-of-canopy__text--mark {
            color: #a70703;
        }

        .type-of-canopy__table-row {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin-bottom: 30px;
        }

        .canopy-table__caption {
            font-family: 'PFDinTextCondPro-Bold.ttf';
            font-size: 24px;
            line-height: 1.4;
            text-align: left;
        }

        .canopy-table {
            max-width: 800px;
            border: 2px solid #c3c3c3;
            margin-top: 20px;
        }

        .canopy-table__tr {
            width: 800px;
        }

        .canopy-table tr:nth-child(2) {
            background-color: #ebebeb;
        }

        .canopy-table tr:last-child {
            background-color: #a70703;
        }

        .canopy-table tr:first-child .canopy-table__td {
            line-height: 58px;
        }

        .canopy-table tr:last-child .canopy-table__td {
            font-size: 28px;
            line-height: 58px;
            color: #ffffff;
            text-transform: uppercase;
        }

        .canopy-table td {
            font-family: 'PFDinTextCondPro-Medium.ttf';
            font-size: 20px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .canopy-table td:nth-child(2) {
            vertical-align: bottom;
            text-align: right;
        }

        .canopy-table__td--mark {
            color: #a70703;
            line-height: 58px;
        }

        .canopy-table p {
            line-height: 1.5;
        }

        .canopy-table ul {
            list-style: none;
            padding-left: 20px;
            line-height: 1.5;
        }

        .type-of-canopy button {
            margin-right: 30px;
        }
            
        .canopy__btn {
            font-family: 'PFDinTextCondPro-Medium.ttf';
            width: 300px;
            padding-left: 0;
            padding-right: 0;
        }

        .done-project__cart {
            max-width: 820px;
            margin: 0 auto;
            font-size: 14px;
            color: #ffffff;
            text-align: left;
        }

        .done-project__figcaption {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .done-project__figcaption p {
            line-height: 1.2;
        }

        .done-project__desc {
            font-family: 'PFDinTextCondPro-Bold.ttf';
            font-size: 20px;
            text-transform: uppercase;
            margin-top: 10px;
            margin-bottom: 5px;
        }

        .rp_slideshow6__item .done-project__cart img {
            width: 820px;
        }

        .advantages__pic--8 {
            background-position: -840px 0;
        }
        
        #promotion h1 {
            font-size: 45px;
            margin-bottom: 20px;
        }
        .promotion {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            position: relative;
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .promotion__center {
            position: relative;
            padding-bottom: 50px;
        }
        .promotion ul {
            list-style-position: inside;
            margin-bottom: 5px;
        }
        .promotion li {
            line-height: 1.3;
        }
        .promotion__title {
            color: #860d0d;
            font-size: 24px;
            line-height: 1.3;
        }
        .promotion:nth-child(even) {
            background-color: #f4f5f7;
        }
        .promotion__left {
            padding-left: 10px;
            padding-right: 10px;
        }
        .promotion__img {
            width: 200px;
            height: auto;
        }
        .promotion__text {
            line-height: 1.3;
            margin-bottom: 3px;
        }
        .promotion__open {
            color: #860d0d;
            border-bottom: 1px dashed #860d0d;
            cursor: pointer;
            position: relative;
            left: 10px;
        }
        .promotion__text-hide {
            display: none;
        }
        .promotion__btn {
            display: inline-block;
            position: absolute;
            bottom: 0;
            text-shadow: none;
            color: #fff;
            font-size: 24px;
            font-family: "PFDinTextCondPro-Medium.ttf";
            text-align: center;
            text-transform: uppercase;
            border-radius: 5px;
            box-shadow: 0 4px 13px rgba(244, 216, 27, 0.75);
            width: 240px;
            height: 40px;
            line-height: 40px;
            margin-top: 5px;
            background: #f2a92b;
            background: -moz-linear-gradient(top, #f2a92b 0%, #c3860f 100%);
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2a92b), color-stop(100%,#c3860f));
            background: -webkit-linear-gradient(top, #f2a92b 0%,#c3860f 100%);
            background: -o-linear-gradient(top, #f2a92b 0%,#c3860f 100%);
            background: -ms-linear-gradient(top, #f2a92b 0%,#c3860f 100%);
            background: linear-gradient(to bottom, #f2a92b 0%,#c3860f 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2a92b', endColorstr='#c3860f',GradientType=0 );
            z-index: 200;
        }
        .promotion__timer {
           width: 240px;
           position: absolute;
           bottom: 10px;
           right: 10px;
        }
        .promotion__timer p {
            font-size: 24px;
        }
        .promotion__days {
            color: #860d0d;
            font-size: 30px;
            text-align: center;
        }
        .past-promotion {
            margin-top: 20px;
            background-color: #d9d9d9;
            padding: 20px 20px 0;
        }
        .past-promotion__row {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            justify-content: space-around;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }
        .past-promotion__item {
            width: 31%;
            text-align: center;
            background-color: #ffffff;
            margin-bottom: 20px;
        }
        .past-promotion__title {
            font-family: "PFDinTextCondPro-Medium.ttf";
            font-size: 22px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 20px;
        }
        .past-promotion__subtitle {
            text-align: center;
        }
        .past-promotion__subtitle-link {
            color: #860d0d;
            font-size: 18px;
            line-height: 1.3;
        }
        .past-promotion__img {
            width: 100%;
            height: auto;
        }
        .past-promotion__item .promotion__text {
            text-align: center;
        }
        .past-promotion__item .past-promotion__img  {
            max-width: 150px;
        }
        .tech-support {
            position: relative;
            font-size: 16px;
            text-align: left;
            margin-top: 0;
            width: 360px;
        }
        #footer .contacts .tech-support__link {
            display: inline-block;
            margin-top: 5px;
            font-size: 16px;
            color: #ae0603;
        }
        
        .banner-testd {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            text-align: left;
        }
        .banner-testd__left {
            width: 37%;
            background: url("../images/banner-testd.jpg");
            background-repeat: no-repeat;
            -webkit-background-size: cover;
            background-size: cover;
            background-position: 60% 0;
        }
        .banner-testd__middle {
            width: 37%;
            background: -webkit-gradient(linear, left top, right top, from(#f5302c), to(#b10e0b));
            background: -webkit-linear-gradient(left, #f5302c, #b10e0b);
            background: -o-linear-gradient(left, #f5302c, #b10e0b);
            background: linear-gradient(to right, #f5302c, #b10e0b);
            padding: 15px 30px;
        }
        .banner-testd__right {
            width: 26%;
            background: #9d0c09;
            padding: 15px;
        }
        .banner-testd__img {
            width: 100%;
            height: auto;
        }
        .banner-testd__title {
            font-family: "PFDinTextCondPro-Bold.ttf";
            font-size: 52px;
            color: #ffffff;
            margin-bottom: 10px;
        }
        .banner-testd__text-mark {
            font-family: "PFDinTextCondPro-Bold.ttf";
            font-size: 36px;
            color: #fed329;
            text-transform: uppercase;
        }
        .banner-testd__text-strike {
            font-size: 27px;
            color: #ffffff;
            text-decoration: line-through;
        }
        .banner-testd__adress {
            position: relative;
            font-size: 18px;
            color: #ffffff;
            padding-bottom: 30px;
            margin-bottom: 15px;
        }
        .banner-testd__adress:after {
            content: '';
            display: block;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #ffffff;
        }
        .banner-testd__promo {
            font-size: 22px;
            color: #ffffff;
            line-height: 1.3;
        }
        .banner-testd__price {
            margin-bottom: 10px;
        }
        .banner-testd .form input {
            width: 260px;
            height: 55px;
            line-height: 55px;
            border-radius: 5px;
        }
        .banner-testd .btn {
            width: 260px;
            background: -webkit-gradient(linear, left bottom, left top, from(#d89911), to(#fec830));
            background: -webkit-linear-gradient(bottom, #d89911, #fec830);
            background: -o-linear-gradient(bottom, #d89911, #fec830);
            background: linear-gradient(to top, #d89911, #fec830);
            box-shadow: none;
        }
        .banner-testd__form-title {
            font-size: 22px;
            color: #ffffff;
            margin-bottom: 10px;
        }
        .banner-testd .form p {
            font-size: 12px;
            color: #ffffff;
            margin-bottom: 10px;
        }
        
        .banner-testd .privacy_form2 {
            width: 100%;
            line-height: 1.4;
        }
        .banner-testd .form a {
            margin-top: 0;
        }
        .pile-container {
            text-align: center;
        }
        .pile-scheme__h1 {
            font-size: 45px;
            margin-left: 0;
            margin-bottom: 30px;
        }
        .pile-scheme__h2 {
            font-size: 36px;
            color: #860d0d;
            text-align: center;
            line-height: 1.5;
            margin-bottom: 5px;
        }
        .pile-scheme__download {
            text-align: center;
            margin-bottom: 40px;
        }
        .pile-scheme__download a {
            position: relative;
            font-size: 21px;
            color: #860d0d;
            line-height: 1.5;
            text-decoration: underline;
            padding-left: 30px;
            margin-bottom: 20px;
        }
        .pile-scheme__download a:hover {
            text-decoration: none;
        }
        .pile-scheme__download a:before {
            content: '';
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            width: 25px;
            height: 25px;
            background: url(../схема-сваи/img/icon-pdf.png) no-repeat;
            -webkit-background-size: cover;
            background-size: cover;
        }
        .pile-scheme__content {
            margin-bottom: 40px;
            padding-left: 10px;
            padding-right: 10px;
        }
        .pile-scheme__content h3 {
            font-size: 24px;
            font-weight: bold;
            color: #860d0d;
            margin-top: 40px;
            margin-bottom: 40px;
            text-indent: 20px;
        }
        .pile-scheme__content h4 {
            font-size: 24px;
            color: #860d0d;
            margin-top: 40px;
            margin-bottom: 30px;
            text-indent: 20px;
        }
        .pile-scheme__content p {
            font-size: 21px;
            line-height: 1.5;
            color: #757575;
            text-indent: 20px;
        }
        .pile-scheme__content p.pile-scheme__subtext {
            text-indent: 40px;
        }
        .pile-scheme__pagination-list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            list-style: none;
            margin-bottom: 40px;
        }
        .pile-scheme__pagination-item {
            margin-right: 10px;
        }
        .pile-scheme__pagination-link {
            display: inline-block;
            width: 30px;
            font-size: 20px;
            line-height: 30px;
            color: #860d0d;
            border: 1px solid #860d0d;
        }
        .pile-scheme__pagination-link--active {
            display: inline-block;
            width: 30px;
            font-size: 20px;
            line-height: 30px;
            color: #ffffff;
            border: 1px solid #860d0d;
            background-color: #860d0d;
        }
        .pile-scheme__table {
            margin: 0 auto 40px;
        }
        .pile-scheme__table caption {
            font-size: 21px;
            color: #343434;
            margin-bottom: 10px;
        }
        .pile-scheme__table th {
            border: 1px solid #b6b6b6;
            color: #343434;
            font-size: 17px;
            height: 70px;
            vertical-align: middle;
            text-align: center;
            padding-left: 10px;
            padding-right: 10px;
        }
        .pile-scheme__table td {
            border: 1px solid #b6b6b6;
            color: #343434;
            font-size: 17px;
            height: 45px;
            vertical-align: middle;
            text-align: center;
            padding-left: 10px;
            padding-right: 10px;
        }
        .pile-scheme__table td.pile-scheme__td-right {
            text-align: left;
        }
        .pile-scheme__table td.pile-scheme__td-first {
            text-align: left;
            width: 140px;
        }
        .pile-scheme__prev {
            line-height: 30px;
            color: #860d0d;
        }
        .pile-scheme__next {
            line-height: 30px;
            color: #860d0d;
        }
        ul.del_txt {
            list-style: none;
            padding-left: 20px;
            margin-bottom: 10px;
        }
        .lifting-prices {
            width: 100%;
            font-size: 30px;
            line-height: 60px;
            text-align: center;
            margin-bottom: 10px;
        }
        #lifting_prices h2 {
            margin-bottom: 20px;
        }
        .lifting-prices th {
            width: 20%;
            color: #ffffff;
            text-transform: uppercase;
        }
        .lifting-prices th:nth-child(even) {
            background-color: #911310;
        }
        .lifting-prices th:nth-child(odd){
            background-color: #d63632;
        }
        .lifting-prices th:first-child{
            background-color: #ffffff;
        }
        .lifting-prices tr:not(:last-child) td {
            width: 20%;
            color: #af2c29;
            border: 1px solid #dedede;
            font-family: "PFDinTextCondPro-Medium.ttf";
        }
        .lifting-prices tr:last-child td {
            text-align: left;
            font-size: 20px;
            line-height: 40px;
        }
        .lifting-prices .lifting-prices__tr-bg {
            background-color: rgb(235, 235, 235);
        }
        .lifting-prices tr:not(:last-child) .lifting-prices__standart {
            color: #000000;
        }
        .lifting-prices tr:not(:last-child) .lifting-prices__comfort {
            background-color: #911310;
            color: #ffffff;
        }
        .lifting-prices img {
            position: relative;
            top: 3px;
            margin-left: 15px;
        }
        #lifting_prices {
            text-align: center;
        }
        #lifting_prices .zakaz {
            position: static;
            width: auto;
            padding-left: 20px;
            padding-right: 20px;
        }
#pile-coating #header_bg {
    background-image: url("../images/header_bg5.jpg");
}
#pile-coating #form1 {
    
    width: 360px;
}
#pile-coating #form1 .btn {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #b40701 0%, #f16863 100%) repeat scroll 0 0;
    box-shadow: 0 1px 5px rgba(225, 0, 0, 0.75);
    margin-top: 0;
}
#pile-coating #form1 h3 {
    text-transform: uppercase;
    margin-bottom: 15px;
}
#pile-coating #form1 .ps2 {
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 24px;
    margin-bottom: 15px;
}
#pile-coating .download_price {
    background: #b40701;
    padding-top: 44px;
    padding-bottom: 30px;
}
#pile-coating .download_price a {
    margin-top: 0;
}
#pile-coating .download_price .receive_price_input {
    margin-right: 15px;
}
#pile-coating .download_price .receive_price_btn {
    margin-left: 15px;
    margin-right: 15px;
}
#pile-coating .download_price .form__text {
    font-size: 25px;
    color: #ffffff;
}
#pile-coating .download_price p {
    font-size: 16px;
    color: #ffffff;
}
.ben {
    padding-top: 30px;
}
.ben__list {
    list-style: none;
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 18px;
    line-height: 1.1;
}
.ben__list:after {
    content: '';
    display: table;
    clear: both;
}
.ben__item {
    display: table;
    float: left;
    width: 50%;
    margin-bottom: 20px;
}
.ben__pic {
    display: table-cell;
    width: 80px;
    height: 80px;
    vertical-align: middle;
    background: url(../images/ben-sprite.png) no-repeat;
    -webkit-background-size: 480px 80px;
    background-size: 480px 80px;
}
.ben__pic--2 {
    background-position: -240px 0;
}
.ben__pic--3 {
    background-position: -80px 0;
}
.ben__pic--4 {
    background-position: -320px 0;
}
.ben__pic--5 {
    background-position: -160px 0;
}
.ben__pic--6 {
    background-position: -400px 0;
}
.ben__text {
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.row:after {
    content: '';
    display: table;
    clear: both;
}
.col-4 {
    
    float: left;
    width: 33.33333%;
    padding-left: 15px;
    padding-right: 15px;
}
.col-6 {
    
    float: left;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}
.article__subtitle {
    font-family: "PFDinTextCondPro-Bold.ttf";
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.pile-coating__article-parag {
    position: relative;
    padding-left: 50px;
}
.pile-coating__article-parag:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    background: url(../images/text-icons.png) no-repeat;
}
.article .col-6:nth-child(1) .pile-coating__article-parag:nth-of-type(2):before {
    background-position: -35px 0;
}
.article .col-6:nth-child(1) .pile-coating__article-parag:nth-of-type(3):before {
    background-position: -70px 0;
}
.article .col-6:nth-child(1) .pile-coating__article-parag:nth-of-type(4):before {
    background-position: -105px 0;
}
.article .col-6:nth-child(1) .pile-coating__article-parag:nth-of-type(5):before {
    background-position: -140px 0;
}
.article .col-6:nth-child(2) .pile-coating__article-parag:nth-of-type(1):before {
    background-position: -140px 0;
}
.article .col-6:nth-child(2) .pile-coating__article-parag:nth-of-type(2):before {
    background-position: -175px 0;
}
.article .col-6:nth-child(2) .pile-coating__article-parag:nth-of-type(3):before {
    background-position: -210px 0;
}
.article .col-6:nth-child(2) .pile-coating__article-parag:nth-of-type(4):before {
    background-position: -245px 0;
}
.piles-sort {
    padding-top: 30px;
    margin-bottom: 60px;
}
.piles-sort__item {
    
    position: relative;
    height: 117px;
    text-align: center;
    border: 5px solid #b40701;
}
.piles-sort__item--active {
    border: 5px solid #d7951a;
}
.piles-sort__name {
    position: relative;
    display: inline-block;
    top: -14px;
    font-family: "PFDinTextCondPro-Bold.ttf";
    font-size: 22px;
    text-transform: uppercase;
    padding-left: 25px;
    padding-right: 25px;
    background: #ffffff;
}
.piles-sort__text {
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 20px;
    line-height: 1.2;
}
.piles-sort__text--att {
    text-transform: uppercase;
    color: #b40701;
}
.piles-sort__text span {
    color: #b40701;
}
.piles-sort__btn {
    position: absolute;
    display: inline-block;
    bottom: -30px;
    left: 50%;
    margin-left: -130px;
    color: #fff;
    font-size: 24px;
    font-family: "PFDinTextCondPro-Medium.ttf";
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 4px 13px rgba(244, 216, 27, 0.75);
    width: 260px;
    height: 60px;
    line-height: 60px;
    background: #f2a92b;
    background: -moz-linear-gradient(top, #f2a92b 0%, #c3860f 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2a92b), color-stop(100%,#c3860f));
    background: -webkit-linear-gradient(top, #f2a92b 0%,#c3860f 100%);
    background: -o-linear-gradient(top, #f2a92b 0%,#c3860f 100%);
    background: -ms-linear-gradient(top, #f2a92b 0%,#c3860f 100%);
    background: linear-gradient(to bottom, #f2a92b 0%,#c3860f 100%);
}
.inst-options {
    
    border: 5px solid #b40701;
    text-align: center;
}
.inst-options:after {
    content: '';
    display: table;
    clear: both;
}
.inst-options__col {
    
    float: left;
    width: 33.33333%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
}
.inst-options__price {
    font-family: "PFDinTextCondPro-Bold.ttf";
    font-size: 90px;
    color: #b40701;
}
.inst-options__price span {
    font-size: 24px;
}
.inst-options__text {
    font-family: "PFDinTextCondPro-Bold.ttf";
    font-size: 14px;
    text-transform: uppercase;
}
#inst .title_cr {
    margin-bottom: 30px;
}
.footer__agr {
    color: #000000;
    text-decoration: underline;
}
.footer__agr:hover {
    text-decoration: none;
}

div.contacts p {
    line-height: 1.1;
}
#top a.logo img {
    top: 0;
}
#top:after {
    content: '';
    display: table;
    clear: both;
}

.container-map {
    position: relative;
}

.main-block>div.container form#form1 {
    display: inline-block;
    width: 260px;
}

.main-block>div.container form#form1 input[type="text"]{
    width: 217px;
    text-align: left;
    padding-left: 10px;
    
    height: 50px;
}

#form1 h3 {
  font-size: 30px;
    line-height: 1;
}

#promo form.form21 a.btn {
    box-shadow: 0 2px 12px rgba(199, 121, 20, 0.8);
    background-color: #f2b626;
    background-image: linear-gradient(to top, #e78e24 0%, #f5b51d 100%);
    width: 217px;
}

#promo form.form21 p:first-of-type {
    width: 225px;
    margin: 0 auto;
}

#promo form.form21 p:last-of-type {
    width: 223px;
    text-align: left;
    margin-top: 10px;
    margin-left: 45px;
}

#form1 img {
    float: left;
    margin-left: 20px;
    margin-top: 7px;
}

div.adv-description {
    width: 80%;
    margin-left: 35px;
}
.advantages img.factory {
    float: right;
    margin-right: 20px;
    margin-top: 20px;
}

.advantages img:first-of-type {
    float: left;
}
 
.advantages div {
    display: inline-block;
}

div.circle {
  border-radius: 50%;
  background-color: #b0110c;
  width: 30px;
  height: 30px;
  font-size: 19.791px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;

}

div.line {
  background-color: rgb(178, 178, 178);
  width: 100px;
  height: 2px;
    margin-left: -3px;
    margin-bottom: 5px;
}

div.adv {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(193, 193, 193);
  border-radius: 6px;
  width: 784px;
  height: 84px;
  margin-bottom: 20px;
}

div.adv0 {
    margin-right: -5px;
    position: relative;
    bottom: 20px;
}

div.advantage:nth-of-type(3)  div.adv0{
    bottom: 12px;
}

div.advantage:nth-of-type(4)  div.adv0{
    bottom: 2px;
}

div.adv1 {
    height: 122px;
}

.adv img:first-of-type {
    margin-top: 15px;
    margin-left: 20px;
    margin-right: 20px;
}

.adv1 img:first-of-type {
    margin-top: 32px;
}

.adv p {
  font-size: 19.791px;
  font-family: "PFDinTextCondPro-Bold.ttf";
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-block;
    margin-top: 10px;
}

.adv1 p {
    margin-top: 38px;
}

.adv span {
    color: #b0110c;
}

.adv a {
  font-size: 16px;
  color: #940804;
  text-decoration: underline;
  line-height: 1.2;
  text-align: left;
    display: block;
    font-family: "PFDinTextCondPro-Medium.ttf";
}

.credit {
    color: #ffffff;
    background-color: #940804;
}

.credit a {
    color: #ffffff;
    font-size: 18px;
    font-family: "PFDinTextCondPro-Regular.ttf";
    line-height: 1.5;
}

div.credit img:first-of-type {
    margin-left: 50px;
    margin-top: 10px;
}

.credit p {
    margin-top: 20px;
}

/* table */
.container table {
	font-family: "PFDinTextCondPro-Regular.ttf" !important;
	margin-bottom: 0;
	margin-top: 20px;
	text-align: center;
	width: 100%;
}

.container table .table_title{
    min-height: 60px;
    background-color: #9D0505;
    color: #ffffff;
    font-size: 18px;
    vertical-align: middle;
    font-weight: lighter;
}
.container table .table_title td{
    min-height: 60px;
    background-color: #9D0505;
    color: #ffffff;
    font-size: 20px;
}
.container table .active{
    background-color: #d7951a;
    color: #ffffff;
}
.container table .table_title td{
    height: 80px;
    width: 80px;
    background-color: #9D0505;
    color: #ffffff;
    font-size: 17px;
}
.container table td{
    border: 1px solid #b6b6b6;
    color: #343434;
    font-size: 17px;
    vertical-align: middle;
    height: 46px;
}
.container table td img{
    height: 460px;
    vertical-align: text-top;
}
.container .table3 img{
    width: 200px;
    height: auto;
}
.p_table_bottom{
    text-align: center;
    margin: 0;
}
.p_table_bottom span{
    color: #9D0505;
}

.price_title h2 {
  font-size: 48px;
  font-family: "PFDinTextCondPro-Bold.ttf";
  color: rgb(175, 14, 10);
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 50px;
}

.price_title>p {
  font-size: 24px;
  font-family: "PFDinTextCondPro-Medium.ttf";
}

.price_title>p  span {
    color: rgb(175, 14, 10);
}

table.price_table:first-of-type tr:nth-child(5),
table.price_table:nth-of-type(2) tr:nth-child(5),
table.price_table:nth-of-type(3) tr:nth-child(7),
table.price_table:nth-of-type(4) tr:nth-child(7) {
    background-color: #f1aa1f;
}

div.form2_class {
    margin-top: 40px;
}

div.logo-DL {
    background-color: #000000;
    text-align: center;
    padding-top: 28px;
    padding-bottom: 30px;
}

div.invoices {
    display: inline-block;
    width: 50%;
    margin-left: 40px;
    text-align: center;
}

div.invoices img {
    width: 290px;
}

.ttn {
   margin-top: 50px;
   margin-left: 6px;
}

div.invoices h3 {
  font-size: 30px;
  font-family: "PFDinTextCondPro-Medium.ttf";
  text-transform: uppercase;
}

.warranty h4 {
  font-size: 22px;
  font-family:  "PFDinTextCondPro-Medium.ttf";
  color: rgb(157, 5, 5);
  text-transform: uppercase;
    margin-top: 20px;
}

.warranty p {
      font-size: 22px;
  font-family:  "PFDinTextCondPro-Medium.ttf";
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 10px;
}

.warranty img {
    height: auto;
    margin-bottom: 20px;
}

.bx-wrapper .bx-controls-direction a {
    top: 60px; 
}

.bx-wrapper .bx-controls-direction a.bx-prev {
    left: -70px;
}
.bx-wrapper .bx-controls-direction a.bx-next {
    right: -70px;
}

#btn-top {
    box-shadow: 0 2px 12px rgba(199, 121, 20, 0.8);
    background-color: #f2b626;
    background-image: linear-gradient(to top, #e78e24 0%, #f5b51d 100%);
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-family: "PFDinTextCondPro-Medium.ttf";
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
}

#top_bg {
   padding: 20px 0;
}

.modal-wind {
     background-image: url(img/modal-wind.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 200px;
    height: 100px;
    
    padding: 30px 40px;
    position: relative;
}

 path.vectormap1:hover {
            background-color: pink;
            fill: #b40701;
            stroke: #ffffff;
            stroke-width: 2px;
        }
        
        .cls-1{
           fill: #b40701;
           stroke: none;
        }
        
        .cls-1:hover {
           fill: none;
	}

        .buble .city {
           font-size: 18px;
           font-weight: 700!important;
        }

        .buble .phone {
           font-size: 20px;
           font-weight: 700!important;
        }

        path ~ .buble {
            display: none;
        }
        
        path:hover ~ .buble {
            display: block;
        }
        
        path.vectormap1 {
            fill: #97a7af;
            stroke: #ffffff;
            stroke-width: 2px;
        }
        
.svainoe-header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.svainoe-header__logo a {
    display: inline-block;
    float: left;
}
.svainoe-header__logo img {
    width: 85px;
    height: auto;
}
.svainoe-header__desc {
    font-size: 16px; 
    float: left;
    margin-top: 15px;
    padding-left: 20px;
}
.svainoe-header .select {
    float: left;
}
.svainoe-header select {
    
    border: 1px solid #cacaca;
    border-radius: 2px;
    width: 180px;
    height: 40px;
    font-size: 14px;
    padding-left: 10px;
}
.svainoe-header .select p {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px;
}
.svainoe-header #ya-site-form0 {
    
    border: 1px solid #cacaca;
    border-radius: 2px;
    width: 180px;
    height: 40px;
    line-height: 30px;
    font-size: 14px;
    padding-left: 10px;
}
.ya-site-form__search-input-layout-r {
    display: none;
}
.svainoe-header__search {
    float: left;
    padding-left: 30px;
}
.svainoe-header__search p {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px;
}
.svainoe-header .p_tel {
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 24px;
    color: #000000;
}
.svainoe-header .p_time {
    font-size: 16px;
    margin-top: 3px;
}
.svainoe-header__contacts {
    float: left;
    margin-right: 20px;
}
.svainoe-header__btn-box {
    float: left;
}
.svainoe-header__btn {
    background-image: -webkit-gradient(linear,left bottom, left top,from(#e78e24), to(#f5b51d));
    background-image: -webkit-linear-gradient(bottom,#e78e24, #f5b51d);
    background-image: -o-linear-gradient(bottom,#e78e24, #f5b51d);
    background-image: linear-gradient(to top,#e78e24, #f5b51d);
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-family: "PFDinTextCondPro-Medium.ttf";
    text-transform: uppercase;
    text-align: center;
    border-radius: 5px;
    width: 180px;
    height: 40px;
    line-height: 40px;
}
.main-menu {
    
    height: 48px;
    background-color: #191919;
    text-align: center;
    border-top: 1px solid #4a4a4a;
    border-bottom: 1px solid #4a4a4a;
    position: relative;
}
.main-menu--fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 500;
}
.main-menu__list {
    display: inline-block;
    list-style: none;
}
.main-menu__list:after {
    content: '';
    display: table;
    clear: both;
}
.main-menu__item {
    position: relative;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}
.main-menu__link {
    font-family: "PFDinTextCondPro-Medium.ttf", sans-serif;
    font-size: 20px;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 48px;
}
.main-menu__link:hover {
    color: #fed329;
}
.main-menu__hyperlink {
    border-bottom: 1px solid #fed329;
    color: #fed329;
}
.main-menu__hyperlink:hover {
    border-bottom: none;
}
.main-menu__bars {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, from(#191919), to(#4d4d4d));
    background: -webkit-linear-gradient(right, #191919, #4d4d4d);
    background: -o-linear-gradient(right, #191919, #4d4d4d);
    background: linear-gradient(to left, #191919, #4d4d4d);
    cursor: pointer;
    text-align: center;
}
.main-menu__bar-item {
    display: block;
    width: 35px;
    height: 3px;
    background: #ffffff;
    margin: 10px auto 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.main-menu__bar1 {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 3px 5px;
        -ms-transform-origin: 3px 5px;
            transform-origin: 3px 5px;
}
.main-menu__bar3 {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: 14px 2px;
        -ms-transform-origin: 14px 2px;
            transform-origin: 14px 2px;
}
.main-menu__text {
    display: inline;
}
.top_menu_bg__bars {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    text-align: right;
    height: 48px;
    line-height: 48px;
    display: none;
    cursor: pointer;
    padding-right: 70px;
}

.submenu {
    position: absolute;
    display: none;
    top: 48px;
    left: 0;
    z-index: 800;
    list-style: none;
    background-color: #333;
    text-align: left;
    width: 250px;
}
.main-menu__open:hover .submenu {
    display: block;
}
.submenu__item:not(:last-child) {
    border-bottom: 1px solid #cccccc;
}

.submenu a {
    display: inline-block;
    width: 100%;
    font-family: "PFDinTextCondPro-Medium.ttf";
    font-size: 16px;
    line-height: 38px;
    color: #000000;
    background: #e5e5e5 url(../images/arr.png) no-repeat 15px 15px;
    padding-left: 30px;
}
.submenu a:hover {
    background: #b40701 url(../images/arr_white.png) no-repeat 15px 15px;
    color: #ffffff;
}
#ya-site-form0 table {
    border: none;
    margin-top: 0;
}
#ya-site-form0 table td {
    border: none;
    height: auto;
}
#ya-site-form0 .ya-site-form__form .ya-site-form__input-text {
    padding-left: 10px;
}
.contacts p span {
    right: -70px;
}
.container-map:after {
    content: '';
    display: table;
    clear: both;
}
.promo-opt {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    max-width: 400px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
#footer_bg .recv {
    top: 110px;
}
.container table td:nth-child(4) {
    width: 50px;
}
#opt {
    text-align: center;
}
.map-close {
    position: absolute;
    top: -20px;
    right: 5px;
    color: #860d0d;
    cursor: pointer;
    z-index: 10;
    border-bottom: 1px dashed #860d0d;
}
.contacts-map * {
    
}
.contacts-map {
    margin: 20px 0;
}
.contacts-map__wrapper {
    position: relative;
}
.contacts-map__pic {
    padding-right: 380px;
    overflow: hidden;
}
.contacts-map__pic img {
    width: 100%;
    min-width: 800px;
    height: auto;
}
.contacts-map__adress {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    padding: 0 20px 0 40px;
}
.contacts-map__adress-item {
    margin-bottom: 30px;
}
.contacts-map h3 {
    font-size: 22px;
    line-height: 1.2;
    color: #860d0d;
    margin-bottom: 10px;
}
.contacts-map__adress-item h3 span {
    display: inline-block;
    width: 20px;
    margin-right: 10px;
}
.contacts-map__adress-item h3 img {
    position: relative;
    top: 3px;
    width: 100%;
    height: auto;
}
.contacts-map .thanks-socials {
    text-align: left;
}

.cooperation {
    position: relative;
    padding-bottom: 60px;
    background-color: #f2f2f2;
}
.cooperation__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
    gap: 20px;
    padding-right: 100px;
}
.cooperation__col {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    background-color: #fff;
    border-radius: 6px;
    padding: 20px;
}
.cooperation__col svg {
    position: absolute;
    bottom: -30px;
    right: -40px;
    z-index: 1;
}
.cooperation__bg {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-align: end;
    -ms-flex-align: end;
        align-items: flex-end;
    bottom: 0;
    right: 0;
    height: 100%;
    z-index: 1;
}
.cooperation__bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cooperation__before {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
}
.custom-price__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
    gap: 20px;
}
.custom-price__col {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 20px;
    overflow: hidden;
}
.custom-price__img-box {
    height: 290px;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -20px;
    margin-bottom: 20px;
    overflow: hidden;
}
.custom-price__img-box:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.custom-price img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.custom-price .btn {
    margin-top: 20px;
}

.slider-section__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
    gap: 20px;
}
.slider-section__col {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px;
}
.slider-section__col:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.slider-section__content {
    margin-bottom: 20px;
}

#sliderPiles a {
    display: block;
    width: 540px;
    height: 350px;
}
#sliderPiles img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.pageArticle p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.5;
}
.pageArticle ul {
    list-style-position: inside;
    padding-left: 20px;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.5;
}
.photo_wrapper {
    padding-left: 80px;
    padding-right: 80px;
}
.photo_wrapper .thumb {
    display: block;
    height: 150px;
    margin-right: 5px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}
#map-russia svg {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
}
.maps__content {
    position: relative;
    padding-bottom: 50px;
}
.maps__text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-bottom: 0;
    background-color: #b40701;
    padding: 10px;
    color: white;
}
@media only screen and (max-width: 992px) {
    .cooperation__row {
        -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    }
    .cooperation__col svg {
        right: auto;
        left: calc(50% - 17px);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
        width: 34px;
        height: 42px;
    }
    .slider-section__row {
        display: block;
    }
}
@media only screen and (max-width: 768px) {
    .h1, h1 {
        font-size: 2.25rem;
    }
    .main-menu__link {
        line-height: 32px;
    }
    * {
        
    }
    .top_menu_bg__bars {
        display: block;
    }
    .main-menu {
        padding-top: 0;
    }
    .main-menu__list {
        position: absolute;
        display: none;
        width: 100%;
        top: 46px;
        left: 0;
        background: #191919;
        z-index: 500;
    }
    .main-menu__item {
        float: none;
        border-top: 1px solid #4a4a4a;
    }
    .main-menu__link {
        display: inline-block;
        width: 100%;
        text-align: left;
        padding: 5px 0;
    }
    .main-menu__hyperlink {
        border: none;
        color: #ffffff;
    }
    .container {
        padding: 0 15px;
    }
    .svainoe-header__search {
        display: none;
    }
    .svainoe-header__wrapper {
        display: block;
        text-align: center;
    }
    .svainoe-header__desc {
        margin-bottom: 10px;
        float: none;
        margin-top: 0;
        padding-left: 0;
    }
    .svainoe-header__input-group {
        display: none;
    }
    .svainoe-header__logo a {
        float: none;
    }
    .svainoe-header__contacts {
        float: none;
    }
    .svainoe-header__btn-box {
        float: none;
    }
    .advantages img:first-of-type {
        display: none;
    }
    .advantages img.factory {
        display: none;
    }
    .advantages div.line {
        display: none;
    }
    div.adv-description {
        display: block;
        width: 100%;
        margin-left: 0;
    }
    .advantage {
        position: relative;
        margin-bottom: 20px;
    }
    .advantages div {
        display: block;
    }
    div.adv1 {
        height: auto;
    }
    div.adv {
        border:none;
        width: 100%;
        height: auto;
        padding-left: 40px;
        margin-bottom: 0;
    }
    div.adv0 {
        position: absolute;
        display: inline-block;
        top: 0;
        left: 0;
    }
    .adv p {
        font-size: 16px;
        margin-top: 0;
    }
    .adv1 p {
        margin-top: 0;
    }
    .credit {
        color: #000000;
        background: none;
    }
    .credit a {
        color: #000000;
    }
    .price_title h2 {
        font-size: 28px;
    }
    .price_title > p {
        font-size: 20px;
    }
    div.invoices {
        display: none;
    }
    .cooperation__row {
        padding-right: 0;
    }
    .cooperation__col {
        width: 100%;
    }
    .cooperation__bg {
        display: none;
    }
    #sliderPiles a {
        height: 50vw;
    }
    #map-russia {
        padding-top: 60px;
    }
    .promo-opt {
        position: absolute;
        top: 0;
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
@media only screen and (max-width: 480px) {
    h1, .h1 {
        font-size: 1.5rem;
    }
    .h2, h2 {
        font-size: 1.5rem;
    }
    .cooperation__col {
        float: none;
        width: 100%;
    }
    #map-russia {
        padding-top: 180px;
    }
}
