

/* Start:/bitrix/templates/coffee/js/select2/select2.css?146373453419336*/
/*
Version: 3.5.0 Timestamp: Mon Jun 16 19:29:44 EDT 2014
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url('/bitrix/templates/coffee/js/select2/select2.png') right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;

    border-left: none;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url('/bitrix/templates/coffee/js/select2/select2.png') no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 2px 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background: #fff url('/bitrix/templates/coffee/js/select2/select2.png') no-repeat 100% -22px;
    background: url('/bitrix/templates/coffee/js/select2/select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('/bitrix/templates/coffee/js/select2/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('/bitrix/templates/coffee/js/select2/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('/bitrix/templates/coffee/js/select2/select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;

    background: #fff url('/bitrix/templates/coffee/js/select2/select2.png') no-repeat -37px -22px;
    background: url('/bitrix/templates/coffee/js/select2/select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('/bitrix/templates/coffee/js/select2/select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('/bitrix/templates/coffee/js/select2/select2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('/bitrix/templates/coffee/js/select2/select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url('/bitrix/templates/coffee/js/select2/select2-spinner.gif') no-repeat 100%;
    background: url('/bitrix/templates/coffee/js/select2/select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('/bitrix/templates/coffee/js/select2/select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('/bitrix/templates/coffee/js/select2/select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('/bitrix/templates/coffee/js/select2/select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}


.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('/bitrix/templates/coffee/js/select2/select2-spinner.gif') no-repeat 100%;
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url('/bitrix/templates/coffee/js/select2/select2-spinner.gif') no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin: 3px 5px 3px 0;
    padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url('/bitrix/templates/coffee/js/select2/select2.png') right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url('/bitrix/templates/coffee/js/select2/select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}

/* End */


/* Start:/bitrix/templates/coffee/js/prettyCheckbox-master/prettyCheckbox.css?1463734534905*/
.prettyCheckbox 
{
    float: right;
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border: 2px solid #e6e6e6;
    cursor: pointer;
}

.prettyCheckbox.checked 
{ 
    position: relative; 
}

.prettyCheckbox.checked .check 
{
    background: url('/bitrix/templates/coffee/js/prettyCheckbox-master/img/checkbox.png') no-repeat;
    display: block;
    height: 18px;
    width: 18px;
    position: absolute;
    top: -1px;
    left: 0px;
    z-index: 100;
}

.prettyRadiobox
{
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border: 2px solid #e6e6e6;
    border-radius: 50%;
    cursor: pointer;
}

.prettyRadiobox.checked 
{ 
    position: relative; 
}

.prettyRadiobox.checked .check 
{
    display: block;
    position: absolute;
    left: 5px;
    top: 5px;
    z-index: 100;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #33ad50;
}

/* End */


/* Start:/bitrix/templates/coffee/js/prettyPhoto/css/prettyPhoto.css?146373504019994*/
div.pp_default .pp_top,div.pp_default .pp_top .pp_middle,div.pp_default .pp_top .pp_left,div.pp_default .pp_top .pp_right,div.pp_default .pp_bottom,div.pp_default .pp_bottom .pp_left,div.pp_default .pp_bottom .pp_middle,div.pp_default .pp_bottom .pp_right{height:13px}
div.pp_default .pp_top .pp_left{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite.png) -78px -93px no-repeat}
div.pp_default .pp_top .pp_middle{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite_x.png) top left repeat-x}
div.pp_default .pp_top .pp_right{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite.png) -112px -93px no-repeat}
div.pp_default .pp_content .ppt{color:#f8f8f8}
div.pp_default .pp_content_container .pp_left{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;padding-left:13px}
div.pp_default .pp_content_container .pp_right{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite_y.png) top right repeat-y;padding-right:13px}
div.pp_default .pp_next:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite_next.png) center right no-repeat;cursor:pointer}
div.pp_default .pp_previous:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite_prev.png) center left no-repeat;cursor:pointer}
div.pp_default .pp_expand{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_expand:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;cursor:pointer}
div.pp_default .pp_contract{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_contract:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;cursor:pointer}
div.pp_default .pp_close{width:30px;height:30px;background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;cursor:pointer;z-index: 2001}
div.pp_default .pp_gallery ul li a{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;border:1px solid #aaa}
div.pp_default .pp_social{margin-top:7px}
div.pp_default .pp_gallery a.pp_arrow_previous,div.pp_default .pp_gallery a.pp_arrow_next{position:static;left:auto}
div.pp_default .pp_nav .pp_play,div.pp_default .pp_nav .pp_pause{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;height:30px;width:30px}
div.pp_default .pp_nav .pp_pause{background-position:-51px -29px}
div.pp_default a.pp_arrow_previous,div.pp_default a.pp_arrow_next{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;height:20px;width:20px;margin:4px 0 0}
div.pp_default a.pp_arrow_next{left:52px;background-position:-82px -3px}
div.pp_default .pp_content_container .pp_details{margin-top:5px}
div.pp_default .pp_nav{clear:none;height:30px;width:110px;position:relative}
div.pp_default .pp_nav .currentTextHolder{font-family:Georgia;font-style:italic;color:#999;font-size:11px;left:75px;line-height:25px;position:absolute;top:2px;margin:0;padding:0 0 0 10px}
div.pp_default .pp_close:hover,div.pp_default .pp_nav .pp_play:hover,div.pp_default .pp_nav .pp_pause:hover,div.pp_default .pp_arrow_next:hover,div.pp_default .pp_arrow_previous:hover{opacity:0.7}
div.pp_default .pp_description{font-size:11px;font-weight:700;line-height:14px;margin:5px 50px 5px 0}
div.pp_default .pp_bottom .pp_left{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite.png) -78px -127px no-repeat}
div.pp_default .pp_bottom .pp_middle{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite_x.png) bottom left repeat-x}
div.pp_default .pp_bottom .pp_right{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/sprite.png) -112px -127px no-repeat}
div.pp_default .pp_loaderIcon{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/default/loader.gif) center center no-repeat}
div.light_rounded .pp_top .pp_left{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat}
div.light_rounded .pp_top .pp_right{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat}
div.light_rounded .pp_next:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/btnNext.png) center right no-repeat;cursor:pointer}
div.light_rounded .pp_previous:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
div.light_rounded .pp_expand{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.light_rounded .pp_expand:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.light_rounded .pp_contract{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.light_rounded .pp_contract:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.light_rounded .pp_close{width:75px;height:22px;background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.light_rounded .pp_nav .pp_play{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.light_rounded .pp_nav .pp_pause{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.light_rounded .pp_arrow_previous{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat}
div.light_rounded .pp_arrow_next{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat}
div.light_rounded .pp_bottom .pp_left{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat}
div.light_rounded .pp_bottom .pp_right{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat}
div.dark_rounded .pp_top .pp_left{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat}
div.dark_rounded .pp_top .pp_right{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat}
div.dark_rounded .pp_content_container .pp_left{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y}
div.dark_rounded .pp_content_container .pp_right{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y}
div.dark_rounded .pp_next:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat;cursor:pointer}
div.dark_rounded .pp_previous:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
div.dark_rounded .pp_expand{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.dark_rounded .pp_expand:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.dark_rounded .pp_contract{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.dark_rounded .pp_contract:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.dark_rounded .pp_close{width:75px;height:22px;background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.dark_rounded .pp_description{margin-right:85px;color:#fff}
div.dark_rounded .pp_nav .pp_play{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.dark_rounded .pp_nav .pp_pause{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.dark_rounded .pp_arrow_previous{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat}
div.dark_rounded .pp_arrow_next{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat}
div.dark_rounded .pp_bottom .pp_left{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat}
div.dark_rounded .pp_bottom .pp_right{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat}
div.dark_rounded .pp_loaderIcon{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat}
div.dark_square .pp_left,div.dark_square .pp_middle,div.dark_square .pp_right,div.dark_square .pp_content{background:#000}
div.dark_square .pp_description{color:#fff;margin:0 85px 0 0}
div.dark_square .pp_loaderIcon{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_square/loader.gif) center center no-repeat}
div.dark_square .pp_expand{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.dark_square .pp_expand:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.dark_square .pp_contract{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.dark_square .pp_contract:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.dark_square .pp_close{width:75px;height:22px;background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.dark_square .pp_nav{clear:none}
div.dark_square .pp_nav .pp_play{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.dark_square .pp_nav .pp_pause{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.dark_square .pp_arrow_previous{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat}
div.dark_square .pp_arrow_next{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat}
div.dark_square .pp_next:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_square/btnNext.png) center right no-repeat;cursor:pointer}
div.dark_square .pp_previous:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat;cursor:pointer}
div.light_square .pp_expand{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.light_square .pp_expand:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.light_square .pp_contract{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.light_square .pp_contract:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.light_square .pp_close{width:75px;height:22px;background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.light_square .pp_nav .pp_play{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.light_square .pp_nav .pp_pause{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.light_square .pp_arrow_previous{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat}
div.light_square .pp_arrow_next{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat}
div.light_square .pp_next:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_square/btnNext.png) center right no-repeat;cursor:pointer}
div.light_square .pp_previous:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_square/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_top .pp_left{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat}
div.facebook .pp_top .pp_middle{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x}
div.facebook .pp_top .pp_right{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat}
div.facebook .pp_content_container .pp_left{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y}
div.facebook .pp_content_container .pp_right{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y}
div.facebook .pp_expand{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.facebook .pp_expand:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.facebook .pp_contract{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.facebook .pp_contract:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.facebook .pp_close{width:22px;height:22px;background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.facebook .pp_description{margin:0 37px 0 0}
div.facebook .pp_loaderIcon{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/loader.gif) center center no-repeat}
div.facebook .pp_arrow_previous{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default}
div.facebook .pp_arrow_next{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_next.disabled{background-position:-32px -96px;cursor:default}
div.facebook .pp_nav{margin-top:0}
div.facebook .pp_nav p{font-size:15px;padding:0 3px 0 4px}
div.facebook .pp_nav .pp_play{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_nav .pp_pause{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_next:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/btnNext.png) center right no-repeat;cursor:pointer}
div.facebook .pp_previous:hover{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_bottom .pp_left{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat}
div.facebook .pp_bottom .pp_middle{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x}
div.facebook .pp_bottom .pp_right{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat}
div.pp_pic_holder a:focus{outline:none}
div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:9500}
div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:10000}
.pp_content{height:40px;min-width:40px}
* html .pp_content{width:40px}
.pp_content_container{position:relative;text-align:left;width:100%}
.pp_content_container .pp_left{padding-left:20px}
.pp_content_container .pp_right{padding-right:20px}
.pp_content_container .pp_details{float:left;margin:10px 0 2px}
.pp_description{display:none;margin:0}
.pp_social{float:left;margin:0}
.pp_social .facebook{float:left;margin-left:5px;width:55px;overflow:hidden}
.pp_social .twitter{float:left}
.pp_nav{clear:right;float:left;margin:3px 10px 0 0}
.pp_nav p{float:left;white-space:nowrap;margin:2px 4px}
.pp_nav .pp_play,.pp_nav .pp_pause{float:left;margin-right:4px;text-indent:-10000px}
a.pp_arrow_previous,a.pp_arrow_next{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}
.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}
.pp_gallery{display:block !important;left:50%;margin-top:5px;position:absolute;z-index:10000; opacity: 1 !important;}
.pp_gallery div{float:left;overflow:hidden;position:relative}
.pp_gallery ul{float:left;height:35px;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}
.pp_gallery ul a{border:1px rgba(0,0,0,0.5) solid;display:block;float:left;height:33px;overflow:hidden}
.pp_gallery ul a img{border:0}
.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}
.pp_gallery li.default a{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;display:block;height:33px;width:50px}
.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}
a.pp_next{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float:right;height:100%;text-indent:-10000px;width:49%}
a.pp_previous{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float:left;height:100%;text-indent:-10000px;width:49%}
a.pp_expand,a.pp_contract{cursor:pointer;display:none;height:20px;position:absolute;right:20px;text-indent:-10000px;bottom:0px;width:20px;z-index:20000}
a.pp_close{position:absolute;right:30px;top:10px;display:block;line-height:22px;text-indent:-10000px}
.pp_loaderIcon{display:block;height:24px;left:50%;position:absolute;top:50%;width:24px;margin:-12px 0 0 -12px}
#pp_full_res{line-height:1!important}
#pp_full_res .pp_inline{text-align:left}
#pp_full_res .pp_inline p{margin:0 0 15px}
div.ppt{color:#fff;display:none;font-size:17px;z-index:9999;margin:0 0 5px 15px}
div.pp_default .pp_content,div.light_rounded .pp_content{background-color:#fff}
div.pp_default #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.facebook #pp_full_res .pp_inline{color:#000}
div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a,.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}
div.pp_default .pp_details,div.light_rounded .pp_details,div.dark_rounded .pp_details,div.dark_square .pp_details,div.light_square .pp_details,div.facebook .pp_details{position:relative}
div.light_rounded .pp_top .pp_middle,div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right,div.light_rounded .pp_bottom .pp_middle,div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right,div.light_square .pp_content,div.facebook .pp_content{background:#fff}
div.light_rounded .pp_description,div.light_square .pp_description{margin-right:85px}
div.light_rounded .pp_gallery a.pp_arrow_previous,div.light_rounded .pp_gallery a.pp_arrow_next,div.dark_rounded .pp_gallery a.pp_arrow_previous,div.dark_rounded .pp_gallery a.pp_arrow_next,div.dark_square .pp_gallery a.pp_arrow_previous,div.dark_square .pp_gallery a.pp_arrow_next,div.light_square .pp_gallery a.pp_arrow_previous,div.light_square .pp_gallery a.pp_arrow_next{margin-top:12px!important}
div.light_rounded .pp_arrow_previous.disabled,div.dark_rounded .pp_arrow_previous.disabled,div.dark_square .pp_arrow_previous.disabled,div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}
div.light_rounded .pp_arrow_next.disabled,div.dark_rounded .pp_arrow_next.disabled,div.dark_square .pp_arrow_next.disabled,div.light_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}
div.light_rounded .pp_loaderIcon,div.light_square .pp_loaderIcon{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/light_rounded/loader.gif) center center no-repeat}
div.dark_rounded .pp_top .pp_middle,div.dark_rounded .pp_content,div.dark_rounded .pp_bottom .pp_middle{background:url(/bitrix/templates/coffee/js/prettyPhoto/css/../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat}
div.dark_rounded .currentTextHolder,div.dark_square .currentTextHolder{color:#c4c4c4}
div.dark_rounded #pp_full_res .pp_inline,div.dark_square #pp_full_res .pp_inline{color:#fff}
.pp_top,.pp_bottom{height:20px;position:relative}
* html .pp_top,* html .pp_bottom{padding:0 20px}
.pp_top .pp_left,.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}
.pp_top .pp_middle,.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}
* html .pp_top .pp_middle,* html .pp_bottom .pp_middle{left:0;position:static}
.pp_top .pp_right,.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}
.pp_fade,.pp_gallery li.default a img{display:none}

div.pp_default .pp_nav {display:none !important}
/* End */


/* Start:/bitrix/templates/coffee/components/bitrix/sale.basket.basket.line/top/style.css?14637353454478*/
.bx-basket 
{
    padding: 12px 20px;
    background: white;
    font-size: 14px;
    box-shadow: 0px 1px 10px -6px gray;
    line-height: 24px;
}

.bx-basket-block 
{
}

.bx-basket-block a 
{
    text-decoration: underline;
}

.bx-basket-block a:hover 
{
}

.bx-basket-block .sprite
{
    width: 30px;
    height: 30px;
    background-position: -80px 0px;
    vertical-align: middle;
}

.bx-basket-block .num
{
    padding: 2px 5px;
    border: 1px solid #023c89;
}

.bx-basket-block .price
{
    margin-left: 10px;
    color: #c73737;
}

/*FIXED BASKET*/

@media (min-width: 768px) {
    .bx-basket-fixed{
        width: 200px;
        position: fixed;
        z-index: 1100;
        background: #fff;
        padding-top: 10px;
        border: 1px solid #F0F0F0;
        box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
        border-radius: 1px;
        overflow: hidden;
    }
    .bx-basket-fixed.top	  {top:10px}
    .bx-basket-fixed.right  {right:10px}
    .bx-basket-fixed.bottom{bottom:10px}
    .bx-basket-fixed.left	 {left:10px}
    .bx-basket-fixed.bx-max-height{top:10px;bottom:10px;}
}
@media (max-width: 767px) {
    .bx-basket-fixed{
        /*width: 200px;*/
        position: fixed;
        z-index: 1100;
        background: #fff;
        padding-top: 10px;
        border: 1px solid #F0F0F0;
        box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
        border-radius: 1px;
        overflow: hidden;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .bx-basket-item-list{
        display: none;
    }
    /*.bx-basket-fixed */
}
.bx-basket-fixed .bx-basket-block{
    margin-left: 10px;
}
.bx-basket-item-list{
    position: relative;
    padding-bottom: 20px;
    border-top: 1px solid #F7F7F7;
    overflow: hidden;
}
.bx-opener .bx-basket-item-list{
    padding-bottom: 75px;
}
.bx-max-height .bx-basket-item-list{
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
}
.bx-closed .bx-basket-item-list{
    height: 20px;
    overflow: hidden;
}
.bx-basket-item-list-action{
    cursor: pointer;
    background: #F7F7F7;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 120;
    height: 20px;
    line-height: 14px;
    vertical-align: middle;
    text-align: center;
    font-size: 12px;
    color: #4f4f4f;
    padding: 3px 0;
}
.bx-basket-item-list-button-container{
    text-align: center;
    position: absolute;
    bottom: 20px;
    border-top: 1px solid #F7F7F7;
    padding: 10px 0;
    background: #fff;
    left: 0;
    right: 0;
}

.bx-basket-item-list-container{
    overflow-y: auto;
    max-height: 100%
}
.bx-basket-item-list-item{
    padding-top: 15px;
    position: relative;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #F7F7F7;
}
.bx-basket-item-list-container .bx-basket-item-list-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
}
.bx-basket-item-list-item-status{
    font-weight: bold;
    padding: 3px;
    background: #EBEBEB;
    margin: 0 10px 20px;
    line-height: 16px;
    font-size: 13px;
    border-radius: 3px;
    text-align: center;
}
.bx-basket-item-list-item-img{
    text-align: center;
    position: relative;
    padding-bottom: 5px;
}
.bx-basket-item-list-item-img img{
    max-width: 90px;
    height: auto;
    border: 1px solid #E6E6E6;
}
.bx-basket-item-list-item-name{padding-bottom: 5px;}
.bx-basket-item-list-item-name a{
    font-size: 13px;
    color: #3F3F3F;
    text-decoration: none;
}
.bx-basket-item-list-item-remove{
    position: absolute;
    right: 10px;
    top: -7px;
    width: 20px;
    height:20px;
    cursor: pointer;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAAJFBMVEX///8yMjI6Ojpvb29wcHCEhISHh4eIiIiqqqqtra2wsLCxsbE3yvJ6AAAAAXRSTlMAQObYZgAAACxJREFUCNcFwYEBgCAMA7BYUMb2/78m9sXdJtfNMHkzcJ4DlS9FpXXKavT6ARdgANGqCJ38AAAAAElFTkSuQmCC) no-repeat center;
    opacity: .5;
}
.bx-basket-item-list-item-remove:hover{
    opacity: .7;
}
.bx-basket-item-list-item-price-block{
    padding-bottom: 5px;
    font-size: 12px;
}
.bx-basket-item-list-item-price{
    display: inline-block;
    margin-right: 5px;
}
.bx-basket-item-list-item-price-old{
    display: inline-block;
    margin-right: 5px;
    text-decoration: line-through;
    color: #B0B0B0
}
.bx-basket-item-list-item-price-summ{}

.bx_cart_login_top .bx-hdr-profile a {
    text-decoration: none;
}
.bx_cart_login_top .bx-hdr-profile{
    line-height: 1.44em;
}
/* End */


/* Start:/bitrix/templates/coffee/components/bitrix/menu/top/style.css?1463735343255*/
ul.top-menu
{
    font-family: Arial;
    position: relative;
    list-style: none;
    margin: 0; 
    padding: 0;
}

ul.top-menu li
{
    float: left;
    line-height: 37px;
    padding-right: 50px;
}

ul.top-menu li:last-child
{
    padding-right: 0;
}
/* End */


/* Start:/bitrix/templates/coffee/components/bitrix/search.title/main/style.css?15759652282818*/
div.title-search-result {
    border:1px solid #c6c6c6;
    display:none;
    overflow:hidden;
    z-index:205;
}

table.title-search-result {
    border-collapse: collapse;
    border:none;
    width:10%;
}

table.title-search-result th {
    background-color:#F7F7F7;
    border-right:1px solid #e8e8e8;
    color:#949494;
    font-weight:normal;
    padding-top:2px;
    padding-bottom:2px;
    padding-left:14px;
    padding-right:12px;
    text-align:right;
    vertical-align:top;
    white-space:nowrap;
    width:1%;
}

table.title-search-result td {
    background-color:white;
    color:black;
    font-weight:normal;
    padding-top:2px;
    padding-bottom:2px;
    text-align:left;
    white-space:nowrap;
}

table.title-search-result td.title-search-item {
    padding-left:8px;
    padding-right:15px;
}

table.title-search-result td.title-search-item a {
    padding-left:4px;
    padding-right:15px;
    text-decoration: none;
    color:black;
    vertical-align:top;
    display:block;
}

table.title-search-result td.title-search-item img {
    vertical-align:top;
}

table.title-search-result td.title-search-item b {
    color:#cf0000;
    font-weight:normal;
}

table.title-search-result tr.title-search-selected td
,table.title-search-result tr.title-search-selected a
,table.title-search-result tr.title-search-selected td.title-search-more a
{
    background-color:#fff2be;
}

table.title-search-result td.title-search-more {
    font-size:11px;
    font-weight:normal;
    padding-right:15px;
    padding-left:24px;
    padding-top:0px;
}

table.title-search-result td.title-search-more a
{
    padding-left:12px;
    padding-right:15px;
    text-decoration:none;
    color:#999999;
}

table.title-search-result td.title-search-all {
    padding-left:24px;
    padding-right:15px;
}

table.title-search-result td.title-search-all a
{
    padding-left:4px;
    text-decoration:none;
    color:#808080;
}

table.title-search-result td.title-search-separator
, table.title-search-result th.title-search-separator {
    padding-top:0px;
    padding-bottom:0px;
    font-size:4px;
}

div.title-search-fader {
    display:none;
    background-image: url('/bitrix/templates/coffee/components/bitrix/search.title/main/images/fader.png');
    background-position: right top;
    background-repeat: repeat-y;
    position:absolute;
}

#title-search .btn1
{
    width: 85px;
}

#title-search-input
{
    width: 795px;
    vertical-align: top;
}

#title-search .btn1 .sprite
{
    width: 20px;
    height: 20px;
    background-position: -284px 0;
}

@media (max-width: 1199.98px) {
    .main .search {
        width: 100% !important;
    }

    .main .search input[type="text"] {
        width: 90% !important;
    }

    .main .search button {
        width: 10% !important;
    }
}

@media (max-width: 575.98px) {
    .main .search {
        display: none;
    }
}
/* End */


/* Start:/bitrix/templates/coffee/components/bitrix/catalog.section.list/left/style.css?15759905731621*/
.main.left-lite div.catalog-section-list.left
{
    display: block !important;
}

div.catalog-section-list.left
{
    font-size: 14px;
    box-shadow: 0px 0px 10px -3px #cccccc;
    margin-bottom: 10px;
}

div.catalog-section-list.left a.head
{
    display: block;
    position: relative;
    padding: 12px 20px;
    background: #00aded;
    color: white;
}

div.catalog-section-list.left a.head:hover
{
    text-decoration: none;
}

div.catalog-section-list.left a.head .sprite
{
    position: absolute;
    right: 20px;
    top: 11px;
    width: 20px;
    height: 16px;
    background-position: -1118px -1px;
}

.main.left-lite div.catalog-section-list.left .list
{
    display: none;
    position: absolute;
    z-index: 100;
    width: 100%;
    background: white;
    box-shadow: 0px 0px 10px -3px rgb(204, 204, 204);
}

div.catalog-section-list.left ul,
div.catalog-section-list.left li
{
    list-style: none;
}

div.catalog-section-list.left ul
{
    padding: 0 20px;
}

div.catalog-section-list.left li
{
    padding: 5px 0;
}

div.catalog-section-list.left li a
{
    position: relative;
    display: block;
}

div.catalog-section-list.left li a .arrow.down
{
    position: absolute;
    right: 0px;
    top: 7px;
}

div.catalog-section-list.left li a .arrow.right
{
    position: absolute;
    right: 0px;
    top: 7px;
}

div.catalog-section-list.left ul ul a
{
    color: #444444;
    text-decoration: underline;
}

@media screen and (max-width: 991.98px){
    div.catalog-section-list.left {
        background-color: #fff;
    }

    div.catalog-section-list.left .list {
        display: none;
    }


}


/* End */


/* Start:/bitrix/templates/coffee/components//bitrix/system.pagenavigation/.default/style.css?1463735345303*/
div.pagination
{
    display: block;
    font-size: 14px;
}

div.pagination ul,
div.pagination li
{
    margin: 0;
    padding: 0;
    list-style: none;
}

div.pagination ul
{
    text-align: center;
}

div.pagination li
{
    display: inline-block;
}

div.pagination span.active
{
    color: #00aded;
}
/* End */


/* Start:/bitrix/templates/coffee/components/bitrix/news.list/service-left/style.css?1576048270661*/
div.news-list.service-left .item
{
    display: block;
    margin-bottom: 30px;
    padding: 20px;
    border-width: 3px;
    border-style: solid;
    text-align: center;
    text-decoration: none;
}

div.news-list.service-left .item .name
{
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

div.news-list.service-left .item img
{
    margin: 25px auto;
}

div.news-list.service-left .item .text
{
    line-height: 16px;
    font-family: Ubuntu;
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width: 991.98px) {
    div.news-list.service-left {
        display: none !important;
    }
}
/* End */


/* Start:/bitrix/templates/coffee/components/bitrix/breadcrumb/.default/style.min.css?1576763760448*/
.bx-breadcrumb{margin:10px 0}.bx-breadcrumb i{color:#b5bdc2;line-height:13px;font-size:12px;vertical-align:middle;margin-right:5px}.bx-breadcrumb .bx-breadcrumb-item{float:left;margin-bottom:10px;white-space:nowrap;line-height:13px;vertical-align:middle;margin-right:10px}.bx-breadcrumb .bx-breadcrumb-item span{font-family:"Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;font-size:13px}.bx-breadcrumb .bx-breadcrumb-item a{border-bottom:0}
/* End */


/* Start:/bitrix/templates/coffee/components/bitrix/news.list/index-faq/style.css?1576238001895*/
div.news-list.index-faq .ash1
{
    margin: 35px 0;
}

div.news-list.index-faq
{
    text-align: justify;
}

div.news-list.index-faq .item
{
    display: inline-block;
    width: 377px;
    margin-right: 20px;
    padding: 12px;
    border: 1px solid #e1e1e1;
    text-align: center;
}

div.news-list.index-faq .item:last-child
{
    margin-right: 0;
}

@media screen and (max-width: 1199.98px) {
    div.news-list.index-faq .items {
        display: flex;
    }

    div.news-list.index-faq .items .item {
        width: 33%;
    }
}



@media screen and (max-width: 575.98px) {
    div.news-list.index-faq .items {
        flex-wrap: wrap;
        justify-content: center;
    }

    div.news-list.index-faq .items .item {
        width: 80%;
        margin-bottom: 10px;
        margin-right: 0;
    }

    div.news-list.index-faq .items .item:last-child {
        margin-bottom: 0;
    }
}


/* End */


/* Start:/bitrix/templates/coffee/components/bitrix/news.list/futures/style.css?1576238055972*/
div.news-list.futures .ash1
{
    margin: 35px 0;
}

div.news-list.futures .items
{
    float: left;
    width: 962px;
    padding: 10px 0px;
    border: 1px solid #e1e1e1;
}

div.news-list.futures .item
{
    float: left;
    width: 320px;
    height: 43px;
    padding: 11px 30px;
    font-size: 18px;
}

div.news-list.futures .item .sprite
{
    width: 20px;
    height: 15px;
    margin-right: 10px;
    background-position: -732px 0px;
}

div.news-list.futures .btn2
{
    float: left;
    display: table;
    width: 218px;
    height: 108px;
    border: 0;
}

div.news-list.futures .btn2 span
{
    display: table-cell;
    vertical-align: middle;
}

@media screen and (max-width: 991.98px) {
    div.news-list.futures .items {
        width: 100%;
    }

    div.news-list.futures .btn2 {
        height: 60px;
    }
}

@media screen and (max-width: 767.98px) {
    div.news-list.futures {
        display: none;
    }

    iframe {
        display: none;
    }
}


/* End */


/* Start:/bitrix/templates/coffee/components/bitrix/menu/bottom/style.css?1463735342240*/
ul.bottom-menu
{
    font-family: Arial;
    position: relative;
    list-style: none;
    margin: 0; 
    padding: 0;
    text-align: left;
}

ul.bottom-menu li
{
    display: inline-block;
    line-height: 52px;
    padding-right: 50px;
}
/* End */


/* Start:/bitrix/templates/coffee/template_styles.css?158029997526132*/
*
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html
{
    display: block !important;
    min-width: 1200px;
    height: 100%;
    margin: 0;
    padding: 0;
}

body
{
    margin: 0;
    padding: 0;
    height: 100%;
    color: #444444;
    font-family: Arial;
    font-size: 14px;
}

h1,
.ash1
{
    font-size: 24px;
    font-weight: bold;    
}

h2,
.ash2
{
    font-size: 20px;
    font-weight: bold;  
}

h3,
.ash3
{
    color: #073e8f;
    font-size: 18px;
    font-weight: normal;
    text-transform: none;
}

.tcenter
{
    text-align: center;
}

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

a:hover
{
    color: #00aded;
	text-decoration: none;
}

a:active
{
    color: #00aded;
}

img
{
    border: 0;
}

table
{
    border-collapse: collapse;
}


.hidden
{
    display: none !important;
}

.spacer
{
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    padding: 0  !important;
    margin: 0 !important;
    float: none !important;
    clear: both !important;
}

.sprite
{
    display: inline-block;
    background-image: url(/bitrix/templates/coffee/images/sprite.svg);
    background-repeat: no-repeat;
    vertical-align: middle;
}

.fleft
{
    float: left;
}

.fright
{
    float: right;
}

.btn1,
a.btn1,
input[type="submit"],
input[type="reset"]
{
    display: inline-block;
    width: 152px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    margin: 0;
    border: 1px solid #cccccc;
    background: #00aded;
    color: white;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
}

.btn1:hover,
a.btn1:hover,
input[type="submit"]:hover,
input[type="reset"]:hover
{
    background: #01b6f9;
    color: white;
    text-decoration: none;
}

.btn1:active,
a.btn1:active,
input[type="submit"]:active,
input[type="reset"]:active,
.btn1.in-basket,
a.btn1.in-basket,
input[type="submit"].in-basket,
input[type="reset"].in-basket
{
    background: #023c89;
    color: white;
    text-decoration: none;
}

.btn1:focus,
a.btn1:focus
{
    color: white;
    text-decoration: none;
    outline: none;
}

.btn2,
a.btn2
{
    display: inline-block;
    width: 230px;
    height: 107px;
    padding: 0;
    margin: 0;
    border: 1px solid #cccccc;
    background: #023c89;
    color: white;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    cursor: pointer;
}

.btn2:hover
{
    background: #01b6f9;
    color: white;
}

.btn2:active
{
    background: #023c89;
    color: white;
}

header
{
    height: 167px;
    padding-bottom: 1px;
    background: #fbfbfb;
    font-size: 14px;
}

.container
{
    width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

header .header-top
{
    height: 125px;
    margin-bottom: 1px;
    border-bottom: 1px solid #e4e4e4;
}

.page-wrapper
{
    min-height: 100%;
    margin-bottom: -214px;
    padding-bottom: 214px;
}

header .header-top .logo
{
    float: left;
    display: block;
    width: 176px;
    height: 34px;
	text-align: center;
    margin-right: 100px;
    background: url(/bitrix/templates/coffee/images/logo.png) no-repeat center 42px;
	color: #134991;
	text-decoration: none;
	padding-top: 80px;
}

header .header-top .contacts
{
    float: left;
    width: 280px;
    margin-right: 20px;
    padding-top: 40px;
}

header .header-top .contacts .phone
{
    color: #033d89;
    font-size: 22px;
}

header .header-top .contacts .phone .sprite
{
    width: 22px;
    height: 20px;
    background-position: 0 0;
}

header .header-top .contacts .city
{
    padding-left: 30px;
    color: #033d89;
    font-size: 15px;
}

header .header-top .delivery
{
    float: left;
    padding-top: 40px;
    font-size: 14px;
    line-height: 30px;
}

header .header-top .delivery .time .sprite
{
    width: 23px;
    height: 20px;
    margin: 0 3px;
    background-position: -24px 0;
}

header .header-top .delivery .russia .sprite
{
    width: 26px;
    height: 20px;
    background-position: -49px 0;
}

header .header-top .cart
{
    float: right;
    padding-top: 40px;
}

header .header-bottom
{
    height: 40px;
    margin-bottom: 1px;
    border-top: 2px solid white;
    border-bottom: 1px solid #e4e4e4;
}

header .header-bottom .user-menu
{
    border-left: 1px solid #e0e0e0;
    line-height: 37px;
    background: white;
}

header .header-bottom .user-menu a
{
    display: inline-block;
    padding: 0 5px;
}

.compare .sprite
{
    width: 20px;
    height: 20px;
    background-position: -151px 0px;
}

.compare:hover .sprite
{
    background-position: -110px 0px;
}

.compare.active .sprite
{
    background-position: -194px 0px;
}

.fav .sprite
{
    width: 20px;
    height: 20px;
    background-position: -172px 0px;
}

.fav:hover .sprite
{
    background-position: -131px 0px;
}

.fav.active .sprite
{
    background-position: -215px 0px;
}

header .header-bottom .user-menu .personal
{
    border-left: 1px solid #e0e0e0;
    color: #f78948;
}

header .header-bottom .user-menu .personal .sprite
{
    width: 20px;
    height: 20px;
    background-position: -264px 0px;
	margin-right: 5px;
}

footer
{
    height: 214px;
    background: #fbfbfb;
    font-family: Arial;
}

footer .footer-top
{
    height: 52px;
    font-size: 14px;
}

footer .footer-bottom
{
    height: 205px;
    padding-top: 30px;
    border-top: 1px solid #e3e3e3;
    color: #999999;
    position: relative;
}

footer .footer-bottom img
{
    vertical-align: middle;
}

footer .footer-bottom .cards
{
    float: left;
    width: 380px;
}

footer .footer-bottom .social
{
    float: left;
    width: 380px;
}

footer .footer-bottom .develoer
{
    float: left;
    text-decoration: none;
}
footer .footer-bottom .bottom_block {
	position: absolute;
	right: 35px;
	bottom: 12px;
}
footer .footer-bottom .confidencial {
	position: absolute;
	/*left: 35px;*/
	bottom: 0;
	margin: 0 auto;

}
footer .footer-bottom .confidencial ul li {
	padding-right: 25px;
	margin-top:20px;
}
footer .footer-bottom .developer .ed-logo
{
    display: inline-block;
    width: 80px;
    height: 20px;
    vertical-align: middle;
    background: url(/bitrix/templates/coffee/images/edvance.svg) no-repeat left center;
    background-size: 100%;
}

footer .footer-bottom .cards img:first-child,
footer .footer-bottom .social a:first-child
{
    margin-left: 15px;
}

footer .bottom-text
{
    float: left;
    width: 1000px;
    padding-top: 25px;
}

footer .market
{
    float: right;
}

h1.h1-hide
{
    display: none;
}

.container.main
{
    padding-top: 50px;
    padding-bottom: 50px;
}

header .container:before {
    display: none;
}

header .container:after {
    display: none;
}

.main .left-col
{
    float: left;
    width: 280px;
    min-height: 81px;
    margin-right: 20px;
}

.main.left-hide .left-col
{
    display: none;
}

.main.left-lite .left-col
{
    position: relative;
    z-index: 2;
    min-height: 0;
    height: 60px;
}

.main.left-lite .left-col > *
{
    display: none;
}

.main .search
{
    float: left;
    width: 880px;
    height: 40px;
    margin-bottom: 40px;
}

.main.left-hide .search
{
    display: none;
}

.main .content
{
    float: left;
    position: relative;
    width: 880px;
}

.main.left-hide .content,
.main.left-lite .content
{
    float: none;
    clear: both;
    width: 100%;
}

input[type="text"],
input[type="url"],
input[type="email"],
input[type="password"],
textarea
{
    height: 40px;
    padding: 0 15px;
    border: 1px solid #ebebeb;
    border-radius: 0;
    font-size: 14px;
    box-shadow: 0px 1px 10px -6px gray;
}

textarea
{
    height: auto;
    padding: 10px 15px;
    resize: none;
}

.sprite.arrow.down
{
    width: 11px;
    height: 7px;
    background-position: -323px -3px;
}

.sprite.arrow.down:hover,
a:hover .sprite.arrow.down,
span:hover .sprite.arrow.down
{
    background-position: -340px -3px;
}

.sprite.arrow.right
{
    width: 7px;
    height: 11px;
    background-position: -310px -1px;
}

.sprite.arrow.right:hover,
a:hover .sprite.arrow.right
{
    background-position: -310px -14px;
}

.sprite.arrow.right-big,
.sprite.arrow.left-big
{
    width: 11px;
    height: 18px;
    background-position: -357px -1px;
}

.sprite.arrow.left-big
{
    background-position: -356px -22px;
}

.sprite.arrow.right-big:hover,
.item:hover .sprite.arrow-big.right
{
    background-position: -373px -1px;
}

.sprite.arrow.left-big:hover
{
    background-position: -372px -22px;
}
.stickers {
	/*relative*/
}
.stickers .sale
{
    position: absolute;
    left: -25px;
    top: 3px;
    width: 80px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    background: #c73737;
    text-align: center;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.stickers .sale-percent
{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    background: url(/bitrix/templates/coffee/images/sale.png) no-repeat center center;
    color: white;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    line-height: 50px;
}

.stickers .hit
{
    position: absolute;
    left: -10px;
    top: 10px;
    width: 105px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 22px;
    background: #00aded;
    text-align: center;
}

.gray
{
    color: #999999;
}

.avail
{
    color: #44c87c;
    font-size: 12px;
    white-space: nowrap;
}

.notavail
{
    color: #c73737;
    font-size: 12px;
    white-space: nowrap;
}

.byorder
{
    color: #023c89;
    font-size: 12px;
    white-space: nowrap;
}

.byorder-date
{
    color: #999999;
    text-align: left;
}
.reviews_link {
	border-bottom: 1px dotted !important;
}
.reviews_link:hover{
	text-decoration: none;
}
.catalog-price-big
{
    color: #c73737;
    font-size: 24px;
    font-weight: bold;
}

.old-price
{
    color: #999;
    font-size: 12px;
    text-decoration: line-through;
}

div.catalog-section-list.left ul ul a {
	
	text-decoration: none;
	
}

header .header-top .delivery {
	padding-top: 35px;
}

.icons-block{
    margin-top: 12px;
}
.icon{
    display: inline-block;
    cursor: pointer;
    margin-right: 2px;
}
.icon-text{
    display: none;
    position: absolute;
    margin: 10px;
    padding: 5px;
    background: #fff;
    border: 1px solid #ccc;
    min-width: 300px;
    width: auto;
    box-shadow: 0 4px 0 1px rgba(10,10,10,0.2);
}
.show{
    display: inherit;
}
.preview-text-empty{
    min-height: 16px;
    margin-top: 148px;
}
.bx_stars_container {
    position: relative;
    width: 106px;
    height: 17px;
    background-color: #cccccc;
    background-size: 100% 100%;
    cursor: pointer;
}
.bx_stars_bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 11;
    background: url(/bitrix/templates/coffee/components/bitrix/iblock.vote/stars_only_view/images/stars-2.png) no-repeat center;
    background-size: 100%;
}
.bx_stars_progress {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #ffeb00;
}
.catalog_op {
    float: left;
    margin-right: 15px;
}
.rating{
    height: 18px;
    margin-top: 6px;
}
.rating,
.catalog_op:after{
    clear: both;
}
.main .content {
    line-height: 1.42;
}
#la-popup{

}
.la_tooltip{
    z-index: 400;
    width: 150px;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    text-align: center;
    margin: 10px 0 0 243px;
    box-shadow: 5px 5px 18px 1px rgba(25,25,25,0.25);
    padding: 5px 0 10px!important;
    border-radius: 3px;
    line-height: 24px;
}

#la_button,
.la_tooltip  > .la_tooltip_text  > a.button {
    display: block;
    height: 33px;
    margin: 7px 10px 7px 11px;
    cursor: pointer;
    outline: 0;
    border: 1px solid;
    border-color: #c89411 #b0820f #99710d;
    -webkit-border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    border-radius: 0\9;
    *border-radius: 0;
    -webkit-box-shadow: inset 0 1px 0 0 #fcf3dc;
    -moz-box-shadow: inset 0 1px 0 0 #fcf3dc;
    box-shadow: inset 0 1px 0 0 #fcf3dc;
    background: #f3ce72;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF8E3AD', endColorstr='#FFEEBA37', GradientType=0);
    *zoom: 1;
    background: linear-gradient(to bottom,#f8e3ad,#eeba37);
    background: -moz-linear-gradient(top,#f8e3ad,#eeba37);
    background: -webkit-linear-gradient(top,#f8e3ad,#eeba37);
    background: -o-linear-gradient(top,#f8e3ad,#eeba37);
    background: -ms-linear-gradient(top,#f8e3ad,#eeba37);
    text-align: center;
    line-height: 31px;
    vertical-align: middle;
    color: #111;
    font-family: arial,sans-serif;
    text-decoration: none;
    line-height: 30px;
    font-size: 13px;
}
.nav-arrow {
    border-style: solid;
    _border-style: dashed;
    border-width: 9px;
    border-color: transparent;
    border-top-width: 0;
    border-bottom: 9px solid #aaa;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: -9px;
}
.nav-arrow-inner {
    border-style: solid;
    _border-style: dashed;
    border-width: 9px;
    border-color: transparent;
    border-top-width: 0;
    border-bottom: 9px solid #fff;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 1px;
    left: -9px;
}
#la_button:hover,
#la_button:focus,
#la_button:active,
.la_tooltip > .la_tooltip_text > a.button:hover,
.la_tooltip >  .la_tooltip_text >  a.button:active,
.la_tooltip >  .la_tooltip_text >  a.button:focus{
    background: #f0c14b;
    -webkit-box-shadow: 0 1px 0 0 #fcf3dc;
    -moz-box-shadow:  0 1px 0 0 #fcf3dc;
    box-shadow:  0 1px 0 0 #fcf3dc;
}

.header-top-leftside-adaptive, .header-top-rightside-adaptive {
    display: none !important;
}

.basket-adaptive-link {
    display: none;
}

.search-adaptive-wrapper {
    display: none;
}

div.catalog-section .item .image {
    background-size: contain;
}

div.catalog-section.catalog-slider .item {
    display: block !important;
}



@media screen and (max-width: 1199.98px) {
    html {
        min-width: 0;
        width: 100%;
    }

    .container {
        width: 100%;
    }

    .left-col {
        width: 20% !important;
    }

    .main .search {
        width: calc(80% - 20px) !important;
    }

    .content {
        width: calc(80% - 20px) !important;
    }

    header .header-top .container {
        padding: 0 !important;
    }

    header .header-bottom .container {
        padding: 0 !important;
    }

    footer .footer-top {
        height: auto;
    }

    footer .footer-top ul.bottom-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

    }

    footer .footer-top ul.bottom-menu li {
        line-height: 1.5;
        padding-right: 0;
        margin-right: 30px;
        margin-bottom: 10px;
    }

    footer .footer-bottom .container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    footer .footer-bottom .container .cards {
        width: auto;
        margin-right: 30px;
        margin-bottom: 20px;
        flex-basis: calc(50% - 30px);
    }

    footer .footer-bottom .container .social {
        width: auto;
        flex-basis: 50%;
        margin-bottom: 20px;
    }

    footer .footer-bottom {
        height: auto;
        width: 100%;
        padding-bottom: 30px;
    }

    footer .footer-bottom .subscribtion_form {
        display: flex;
        flex-direction: column;
    }

    footer .footer-bottom .subscribtion_form .subscribe-form-item--input-email {
        display: flex;
        flex-direction: column;
    }

    footer .footer-bottom .bottom-text {
        width: 100% !important;
        margin-top: 0 !important;
    }

    footer .footer-bottom .confidencial {
        position: static;
        margin-top: 20px;
    }

    footer .footer-bottom ul.bottom-menu li {
        margin-top: 0;
        margin: 0 !important;
        line-height: 1.2;
    }

    header .header-bottom {
        height: auto;
    }

    header .header-bottom .container {
        display: flex;
        justify-content: space-between;
        padding: 5px 10px;
    }

    header .header-bottom .container .top-menu {
        display: flex;
        align-items: flex-start;
    }

    header .header-bottom .container .top-menu li {
        margin-right: 25px;
        padding: 0;
    }

    header .header-top .container .logo {
        margin-right: 0;
    }

    header .header-top .container .contacts {
        width: auto;
    }

    iframe {
        width: 100% !important;
    }

    div.catalog-section .item .image
    {
        background-size: contain !important;
    }

    div.catalog-section .item {
        display: flex;
        flex-direction: column;
    }

    .preview-text-empty {
        margin-top: 10px;
    }
}

@media screen and (max-width: 991.98px) {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    div.catalog-section .item {
        display: flex;
    }

    .container.main {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .left-col {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .main .search {
        width: 100% !important;
    }

    .content {
        width: 100% !important;
    }

    header {
        height: auto;
    }

    header .header-top .container {
        flex-direction: row;
        justify-content: space-between !important;
        align-items: center;
        padding: 30px 10px !important;
    }

    header .header-top .container .logo {
        display: none;
    }

    header .header-top .container .contacts {
        display: none;
    }

    header .header-top .container .cart {
        display: none;
    }

    header .header-top .container .delivery {
        display: none;
    }

    header .header-top {
        height: auto;
    }

    .header-top-leftside-adaptive, .header-top-rightside-adaptive {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        position: relative;
    }

    .header-top-leftside-adaptive .leftside-adaptive-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header-top-leftside-adaptive .leftside-adaptive-button {
        margin-right: 10px;
    }

    .header-top-leftside-adaptive .leftside-adaptive-button button {
        border: none;
        background-color: #134991;
        border-radius: 50%;
        padding: 10px;
        outline: none;
        cursor: pointer;
    }

    .header-top-leftside-adaptive .leftside-adaptive-button button:hover {
        background-color: #0c338d;
    }

    .header-top-leftside-adaptive .leftside-adaptive-button button span {
        width: 20px;
        height: 20px;
        background-position: -701px 4px;
        background-size: auto 64px;
    }

    .phone-opener, .search-opener, .cart-opener {
        padding: 10px;
        cursor: pointer;
        border-radius: 50%;
        margin-right: 10px;
    }

    .phone-opener {
        margin-right: 5px !important;
    }

    .phone-opener:hover {
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
        -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    }

    .phone-opener__image {
        width: 22px;
        height: 20px;
        background-position: 0 0;
    }

    .phone-opener-popup-wrapper {
        display: none;
        position: absolute;
        top: 27px;
        right: 68px;
        width: 200px;
        background-color: #fff;
        border-radius: 6px;
        padding: 20px;
        border: 1px solid #134991;
        z-index: 100;
    }

    .phone-opener-popup {
        display: flex;
        flex-direction: column;
    }

    .phone-opener-popup a {
        margin-bottom: 10px;
    }

    .phone-opener-popup a:nth-child(even) {
        color: #0b1221;
    }

    .search-opener {
        background-color: #134991;
    }

    .search-opener:hover {
        background-color: #0c338d;
    }

    .search-opener__image {
        width: 20px;
        height: 20px;
        background-position: -284px 0;
    }

    .basket-adaptive-link {
        display: inline-block;
    }

    .basket-usual-link {
        display: none;
    }

    .basket-cart-link {
        display: none;
    }

    .bx-basket-block .price {
        display: none;
    }

    .bx-basket-block {
        position: relative;
    }

    .bx-basket-block .num {
        position: absolute;
        top: -5px;
        left: 15px;
        display: flex;
        width: 20px;
        height: 20px;
        align-items: center;
        justify-content: center;
        background-color: yellow;
        font-weight: bold;
        border: none;
        border-radius: 50%;
    }

    .basket-adaptive-link .sprite {
        width: 22px;
        height: 20px;
        background-position: -66px 0px;
        background-size: auto 84px;
    }

    .bx-basket {
        padding: 10px;
        box-shadow: none;
        border-radius: 50%;
    }

    .bx-basket:hover {
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
        -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    }

    header .header-bottom {
        display: none;
    }

    .search-adaptive-wrapper {
        padding: 10px;
        border-bottom: 1px solid #e4e4e4;
    }

    .search-adaptive {
        display: flex;
        justify-content: center;
    }

    .search-adaptive-wrapper .search-adaptive #title-search {
        width: 100%;
    }

    .search-adaptive-wrapper .search-adaptive #title-search input {
        width: 90% !important;
    }

    .search-adaptive-wrapper .search-adaptive #title-search button {
        width: 10% !important;
    }

    .search {
        display: none;
    }

    div.catalog-section .item {
        display: flex;
    }

    div.before_links {
        display: none;
    }

    .news-list {
        /*display: none;*/
    }

    .news-list.main-slider {
        display: block !important;
    }

    .bx-breadcrumb {
        margin: 10px 0 30px 0;
    }
}

@media screen and (max-width: 767.98px) {
    header .header-bottom .container .top-menu {
        flex-direction: column;
        align-items: center;
    }

    header .header-bottom .container .top-menu li {
        margin-right: 0;
    }

    header .header-bottom .user-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-left: none;
    }

    header .header-bottom .user-menu a {
        padding: 0;
    }

    header .header-bottom .user-menu .personal {
        border-left: none;
    }
}

@media screen and (max-width: 688.98px) {
    div.catalog-section .item {
        flex-direction: column;
        align-items: center;
    }

    div.catalog-section .item .info {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 0;
    }

    div.catalog-section .item .info .name {
        margin-right: 0;
        text-align: center;
    }

    div.catalog-section .item .info .rating .catalog_op {
        margin-right: 0;
    }

    div.catalog-section .item .info .preview-text {
        text-align: left;
    }

    div.catalog-section .item .sale {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    div.catalog-section .item .sale .compare {
        display: none !important;
    }

    div.catalog-section .item .sale .fav {
        display: none !important;
    }

    div.catalog-section .item .image {
        margin-right: 0 !important;
    }

    div.catalog-section .item .info .rating {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }
}

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

    footer .footer-top ul.bottom-menu {
        justify-content: flex-start;

    }

    footer .footer-top ul.bottom-menu li {
        margin-right: 0;
        flex-basis: calc(50% - 10px);
    }

    footer .footer-top ul.bottom-menu li:nth-child(odd) {
        margin-right: 10px;
    }

    footer .footer-bottom .subscribtion_form {
        display: none;
    }

    footer .footer-bottom .market {
        display: none;
    }

    footer .footer-bottom .container .cards {
        margin-right: 0;
        flex-basis: 100%;
    }

    footer .footer-bottom .container .social {
        flex-basis: 100%;
    }

    footer .footer-bottom .bottom-text {
        padding-top: 0;
    }

    footer .footer-bottom .cards img:first-child,
    footer .footer-bottom .social a:first-child
    {
        margin-left: 10px;
    }

    .phone-opener, .search-opener, .cart-opener {
        padding: 5px;
    }

    .bx-basket {
        padding: 5px;
    }

    .header-top-leftside-adaptive .leftside-adaptive-logo img {
        width: 100px;
    }

    .header-top-leftside-adaptive .leftside-adaptive-logo span {
        font-size: 10px;
    }

    .header-top-leftside-adaptive .leftside-adaptive-button button {
        padding: 5px;
    }

    .globalClass_ET {
        display: none;
    }

    .bx_stars_bg {
        z-index: 1 !important;
    }

    div.catalog-section .item .info {
        width: 100% !important;
    }
}
@media screen and (max-width: 575.98px) {
    .user-logout {
        left: 0;
        top: -20px;
    }

    .user-logout a {
        margin-left: 0 !important;
    }

    .lk-heading {
        padding-top: 30px;
    }

    .bx-auth-profile {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .btn1, a.btn1, input[type="submit"], input[type="reset"] {
        width: 145px !important;
    }
}
@media screen and (max-width: 575.98px) {
    a.btn1.logout-btn {
        left: 0 !important;
        top:-20px !important;
    }
}
/* End */
/* /bitrix/templates/coffee/js/select2/select2.css?146373453419336 */
/* /bitrix/templates/coffee/js/prettyCheckbox-master/prettyCheckbox.css?1463734534905 */
/* /bitrix/templates/coffee/js/prettyPhoto/css/prettyPhoto.css?146373504019994 */
/* /bitrix/templates/coffee/components/bitrix/sale.basket.basket.line/top/style.css?14637353454478 */
/* /bitrix/templates/coffee/components/bitrix/menu/top/style.css?1463735343255 */
/* /bitrix/templates/coffee/components/bitrix/search.title/main/style.css?15759652282818 */
/* /bitrix/templates/coffee/components/bitrix/catalog.section.list/left/style.css?15759905731621 */
/* /bitrix/templates/coffee/components//bitrix/system.pagenavigation/.default/style.css?1463735345303 */
/* /bitrix/templates/coffee/components/bitrix/news.list/service-left/style.css?1576048270661 */
/* /bitrix/templates/coffee/components/bitrix/breadcrumb/.default/style.min.css?1576763760448 */
/* /bitrix/templates/coffee/components/bitrix/news.list/index-faq/style.css?1576238001895 */
/* /bitrix/templates/coffee/components/bitrix/news.list/futures/style.css?1576238055972 */
/* /bitrix/templates/coffee/components/bitrix/menu/bottom/style.css?1463735342240 */
/* /bitrix/templates/coffee/template_styles.css?158029997526132 */
