<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Bootstrap overrides
 */
.modal-backdrop.in {
    opacity: 0.8;
}
.modal .close {
    font-family: Arial;
}


/*
 * html, body
 */
html {
    position: relative;
    min-height: 100%;
}
body {
    width: 100%;
    font: 16px/26px "Roboto Condensed", Helvetica, Helvetica Neue, Arial;
    background: #e6dfd9;
    overflow-x: hidden;
}
body.sidebar {
    overflow-y: hidden;
}


/*
 * Footer
 */
#footer-container {
    margin: 100px 0 0;
    text-align: center;
    border-radius: 0;
    background: #897f77;
    color: #fff;
}
#footer-container .container {
    margin-top: 10px;
}
#footer-container .container a {
    color: #fff;
}


/*
 * Float Btn WA
 */

 .float-btn--wa {
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 84px;
  inset: auto 9% 10% auto;
  background-color: #00d757;
  border-radius: 50%;
  transition: background-color .3s ease;
  animation: 1.6s pulse ease-out infinite;
}
.float-btn--wa:hover {
  background-color: #00b248;
}
.float-btn--wa:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  transition: 0.35s;
}
.float-btn--wa:hover:after {
  box-shadow: 0 0 0 4px rgba(0, 215, 87, 0.3), 0 0 0 8px rgba(0, 215, 87, 0.2);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 215, 87, 0.3), 0 0 0 0px rgba(0, 215, 87, 0.2);
    transform: scale(1);
  }
  18% {
    box-shadow: 0 0 0 0px rgba(0, 215, 87, 0.3), 0 0 0 0px rgba(0, 215, 87, 0.2);
  }
  35% {
    transform: scale(1.08);
  }
  76% {
    transform: scale(0.96);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(0, 215, 87, 0), 0 0 0 27px rgba(0, 215, 87, 0);
    transform: scale(1);
  }
}


/*
 * Main container
 */
#main-container {
    position: relative;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 990px;
    background: url('../img/bg.jpg') 50% 90px no-repeat;
    background-size: contain;
}

#header-menu {
    text-align: center;
    margin: 0 -15px;
    transition: all 0.3s;
}
#header-menu .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: -20px;
    margin: 0 auto;
    width: 100%;
}
#header-menu .actions {
    display: flex;
    gap: 10px;
}
#header-menu .logo img {
    position: relative;
    width: 140px;
    top: 10px;
    transition: all 0.3s;
}
#header-menu .sidebar-toggle {
    display: block;
    width: 39px;
    height: 39px;
    color: #22b24c;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}
#header-menu .sidebar-toggle img {
    display: inline;
    width: 100%;
    height: auto;
    transition: all 0.3s;
}
#header-menu .logo,
#header-menu .menu {
    padding-left: 0;
    padding-right: 0;
}
#header-menu .logo {
    text-align: left;
}
#header-menu .logo img.fly {
    display: none;
}
#header-menu .menu {
    text-align: right;
}
#header-menu .phone {
  line-height: 1;
}
#header-menu .phone a {
    font-size: 25px;
    color: #07842e;
    transition: all 0.3s;
}
#header-menu .btn--wa {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 39px;
    height: 39px;
    background-color: #00d757;
    transition: background-color .3s ease;
}
#header-menu .btn--wa:hover {
    background-color: #00b248;
}
#header-menu.affix {
    align-items: flex-start;
    position: fixed;
    z-index: 10;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0 15px;
    background: url("../img/header_menu_fly_bg.png") bottom left repeat-x;
    background-size: contain;
}
#header-menu.affix .wrapper {
    max-width: 960px;
}
#header-menu.affix .logo img.notfly {
    display: none;
}
#header-menu.affix .logo img.fly {
    display: block;
    top: 20px;
}
#header-menu.affix .phone,
#header-menu.affix .actions {
    position: relative;
    padding-top: 14px;
}

#filters-container {
    margin-left: -30px;
    margin-right: -30px;
    padding: 30px 15px 30px 15px;
}
#filters-container .form-group {
    position: relative;
    margin-left: 0;
    margin-right: 0;
}
#filters-container form label {
    padding-top: 6px;
    color: #686461;
    font-weight: normal;
    text-align: right;
    text-transform: uppercase;
}
#filters-container form input {
    color: #188d3c;
    font-weight: bold;
    text-transform: uppercase;
    border-color: #9f9f9f;
    border-radius: 0;
    background: transparent;
    cursor: default;
}
#filters-container form input:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0c0c0;
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0c0c0;
}
#filters-container form .input-group-addon {
    color: #a59f99;
    border-color: #9f9f9f;
    border-radius: 0;
    background: transparent;
}
#filters-container .filter-remove {
    position: absolute;
    z-index: 10;
    top: 7px;
    right: 50px;
    color: #a59f99;
    font-size: 1.2em;
}
#filters-container .filter-remove:hover,
#filters-container .filter-remove:active {
    color: #88837F;
}

#address-container {
    margin-top: -40px;
}
#address-container .address {
    margin-top: 40px;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 3px #908b88;
    -moz-box-shadow: 0 1px 3px #908b88;
    box-shadow: 0 1px 3px #908b88;
}
#address-container .address .header {
    position: relative;
    padding: 15px;
    background: #188d3c;
}
#address-container .address .header--not-available {
    background: #ac4040;
}
#address-container .address .header .star {
    /*display: none;*/
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -14px;
    color: #fff;
    font-size: 1.8em;
    text-decoration: none;
}
#address-container .address .header .star.in-favorite {
    color: #d7c128;
}
#address-container .address .header .star .fa-star {
    display: none;
}
#address-container .address .header .star.in-favorite .fa-star {
    display: block;
}
#address-container .address .header .star.in-favorite .fa-star-o {
    display: none;
}
#address-container .address .header .title {
    display: block;
    margin-right: 35px;
    color: #fff;
    text-decoration: underline;
}
#address-container .address .header .title span {
    font-weight: bold;
}
#address-container .address .header .title:hover,
#address-container .address .header .title:active {
    text-decoration: none;
}
#address-container .address .gallery {
}
#address-container .address .gallery .item {
    max-height: 380px;
}
#address-container .address .gallery img {
    margin: 0 auto;
    width: 930px;
    height: auto;
}
#address-container .address .special {
    text-align: center;
    background: #df5018;
}
#address-container .address .special a {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    padding: 5px 30px 5px 25px;
    color: #fff;
}
#address-container .address .special a .fa {
    position: absolute;
    top: 8px;
    left: 0;
    font-size: 1.2em;
}
#address-container .address .info {
    position: relative;
    padding: 35px 30px 30px 30px;
    background: #fff;
}
#address-container .address .info .foreground {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.5);
    pointer-events: none;
}
#address-container .address .info .col {
    text-align: center;
}
#address-container .address .info .icon {
    text-align: left;
}
#address-container .address .info .icon span {
    position: relative;
    display: block;
    padding: 10px 5px 10px 32px;
    color: #3c3c3c;
    line-height: 20px;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#address-container .address .info .icon span .fa {
    position: absolute;
    top: 5px;
    left: 0;
    width: 28px;
    color: #188d3c;
    font-size: 1.5em;
    text-align: center;
}
#address-container .address .info .icon span img {
    position: absolute;
    display: block;
    top: 5px;
    left: 0;
    margin: 0 auto 7px;
}
#address-container .address .info .special {
    margin: 30px -30px 0;
    padding: 15px 15px 5px;
    text-align: left;
    background: #fbdc81;
}
#address-container .address .info .special .title {
    color: #431a00;
    font-weight: bold;
    text-transform: uppercase;
}
#address-container .address .info .special .text {
    margin-top: 15px;
}
#address-container .address .info .price {
    margin-top: 30px;
    padding: 0 10px;
    text-align: center;
}
#address-container .address .info .price .shape {
    width: 100%;
    height: 2px;
    background-color: #000;
    background-image: -webkit-linear-gradient(left, #fff, #000, #fff);
    background-image: -moz-linear-gradient(left, #fff, #000, #fff);
    background-image: -o-linear-gradient(left, #fff, #000, #fff);
    background-image: -ms-linear-gradient(left, #fff, #000, #fff);
    background-image: linear-gradient(to right, #fff, #000, #fff);
}
#address-container .address .info .price .cost {
    position: relative;
    top: -15px;
    padding: 0 10px;
    font-size: 1.5em;
    font-weight: bold;
    background: #fff;
}
#address-container .address .info .price .cost i {
    font-size: 0.7em;
}
#address-container .address .info .price .service {
    margin-top: -15px;
}
#address-container .address .tour3d {
    padding: 20px 30px 0 30px;
    text-align: center;
}
#address-container .address .tour3d .btn-tour3d {
    display: block;
    padding: 10px 0;
    color: #ea5e00;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #ea5e00;
}
#address-container .address .tour3d .btn-tour3d:hover,
#address-container .address .tour3d .btn-tour3d:active {
    color: #fff;
    text-decoration: none;
    background: #ea5e00;
}
#address-container .address .info .order {
    margin-top: 20px;
    padding: 0 10px;
    text-align: center;
}
#address-container .address .info .order .btn-order {
    display: block;
    padding: 10px 0;
    color: #07842e;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #07842e;
}
#address-container .address .info .order .btn-order:hover,
#address-container .address .info .order .btn-order:active {
    color: #fff;
    text-decoration: none;
    background: #07842e;
}
#address-container .address .info .order .btn-order--not-available {
    position: relative;
    z-index: 20;
    display: block;
    padding: 10px 0;
    color: #c00;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #c00;
}
#address-container .address .info .descr {
    margin-top: 40px;
}
#address-container .address .info .descr .title {
    color: #431a00;
    font-weight: bold;
    text-transform: uppercase;
}
#address-container .address .info .descr.row .title {
    margin-left: 15px;
}
#address-container .address .info .descr.list {
}
#address-container .address .info .descr.list ul {
    margin-top: 10px;
    padding: 0;
    list-style-type: none;
}
#address-container .address .info .descr.list ul li:before {
    content: "вЂў";
    padding-right: 7px;
    color: #188d3c;
}
#address-container .address .info .descr.row {
}
#address-container .address .info .descr.row .content {
    position: relative;
    margin-top: 10px;
    background: #f9f9f9;
}
#address-container .address .info .descr.row .content .price-row {
    position: relative;
}
#address-container .address .info .descr.row .content .price-row:nth-of-type(odd) {
    background: #f0f0f0;
}
#address-container .address .info .descr.row .content .key {
    margin-right: 150px;
    padding: 10px 0 10px 15px;
    line-height: 1.3em;
}
#address-container .address .info .descr.row .content .value {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -13px;
    width: 130px;
    color: #2c974d;
    font-size: 1.3em;
    font-weight: bold;
}
#address-container .address .info .price-toggle-container {
    margin-top: 30px;
    text-align: center;
}
#address-container .address .info .price-toggle-container .price-toggle {
    color: #2c974d;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px dotted #2c974d;
}
#address-container .address .info .price-toggle-container .price-toggle:focus,
#address-container .address .info .price-toggle-container .price-toggle:active {
    border: none;
}

/* Address with special */
#address-container .address.with-special .tour3d,
#address-container .address.with-special .info,
#address-container .address.with-special .info .price .cost {
    background: #ffecb4;
}
#address-container .address.with-special .info .price .shape {
    background-image: -webkit-linear-gradient(left, #ffecb4, #000, #ffecb4);
    background-image: -moz-linear-gradient(left, #ffecb4, #000, #ffecb4);
    background-image: -o-linear-gradient(left, #ffecb4, #000, #ffecb4);
    background-image: -ms-linear-gradient(left, #ffecb4, #000, #ffecb4);
    background-image: linear-gradient(to right, #ffecb4, #000, #ffecb4);
}
#address-container .address.with-special .info .descr.row .content {
    background: #fdefc4;
}
#address-container .address.with-special .info .descr.row .content .price-row:nth-of-type(odd) {
    background: #fae5a4;
}


/*
 * Pagination
 */
.pagination {
    display: block;
}
.pagination .simple {
    position: relative;
    margin: 40px 0 0 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
}
.pagination .simple .item {
    display: inline-block;
}
.pagination .simple .item.prev a,
.pagination .simple .item.next a {
    position: relative;
    display: block;
    padding: 15px 0;
    width: 95px;
    color: #0f8734;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #0f8734;
}
.pagination .simple .item.prev a::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -43px;
    bottom: 0;
    border: 29px solid transparent;
    border-right: 27px solid #0f8734;
    background: #e6dfd9;
}
.pagination .simple .item.prev a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -41px;
    bottom: 0;
    border: 28px solid transparent;
    border-right: 26px solid #e6dfd9;
}
.pagination .simple .item.next a::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -43px;
    bottom: 0;
    border: 29px solid transparent;
    border-left: 27px solid #0f8734;
    background: #e6dfd9;
}
.pagination .simple .item.next a::after {
    content: '';
    position: absolute;
    top: 0;
    right: -41px;
    bottom: 0;
    border: 28px solid transparent;
    border-left: 26px solid #e6dfd9;
}
.pagination .simple .item.prev a {
}
.pagination .simple .item.next a {
}
.pagination .simple .item.info {
    padding: 0 10px;
    color: #9d9791;
}
.pagination .simple .item.info .current,
.pagination .simple .item.info .all {
    color: #0f8734;
    font-weight: bold;
}
.pagination .simple .item.prev a:hover,
.pagination .simple .item.prev a:active,
.pagination .simple .item.next a:hover,
.pagination .simple .item.next a:active,
.pagination .simple .item.next a::after:hover,
.pagination .simple .item.next a::after:active {
    color: #fff;
    background: #0f8734;
}
.pagination .simple .item.prev a:hover::after {
    border-right: 26px solid #0f8734;
}
.pagination .simple .item.next a:hover::after {
    border-left: 26px solid #0f8734;
}



/*
 * Sidebars
 */
#sidebar-menu-toggle,
#sidebar-search-toggle {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 15px;
}
#sidebar-menu-toggle {
    right: 0;
}
/*#sidebar-search-toggle {
    right: 0;
}*/

.sidebar .menu-wrap {
    margin-top: -120px;
    padding-top: 120px;
    height: 100%;
    overflow: hidden;
}
.sidebar .has-scroll {
    position: relative;
    right: -50px;
    margin-left: -50px;
    padding-right: 35px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

#sidebar-menu .menu-wrap {
    background: #0d9938;
}
#sidebar-menu .has-scroll {
    background: #188d3c;
}

#sidebar-menu {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    right: -100%;
    width: 95%;
    height: 100%;
    overflow: hidden;
    background: #188d3c;
    box-shadow: 10px 0 27px #373737;
   -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#sidebar-menu.open {
    right: 0;
}
#sidebar-menu .sidebar-toggle {
    position: relative;
    display: block;
    margin-top: 50px;
    padding: 20px 15px 0 15px;
    width: 100%;
    height: 70px;
    color: #fff;
    font-size: 1.1em;
    text-align: left;
    text-decoration: none;
    text-transform: lowercase;
    background: #09792b;
    border: 1px solid #10682b;
    border-left: none;
    border-right: none;
    box-sizing: border-box;
}
#sidebar-menu .sidebar-toggle .icon {
}
#sidebar-menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#sidebar-menu ul li {
    color: #fff;
}
#sidebar-menu ul li.divider {
    margin: 30px 0;
    border-top: 1px solid #10682b;
}
#sidebar-menu ul li a {
    display: block;
    padding: 15px 15px 15px 35px;
    color: #fff;
    font-size: 14px !important;
    text-decoration: none;
    background: #0d9938;
    border-bottom: 1px solid #02882b;
}
#sidebar-menu ul li a:hover,
#sidebar-menu ul li a:active,
#sidebar-menu ul li.catalog a:hover,
#sidebar-menu ul li.catalog a:active
{
    background: #0d9338;
}
#sidebar-menu ul li.catalog a
{
    position: relative;
    font-weight: bold;
    background: #19a242;
}
#sidebar-menu ul li.catalog a .filter
{
    display: inline-block;
    padding-right: 100px;
    width: 100%;
}
#sidebar-menu ul li.catalog a .count
{
    position: absolute;
    top: 12px;
    right: 35px;
    display: block;
    margin-left: 5px;
    padding: 3px 0;
    width: 30px;
    background: #01621e;
    border-radius: 20px;
    vertical-align: super;
    text-align: center;
}

#sidebar-search {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    right: -100%;
    padding: 20px;
    width: 95%;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 27px #898989;
   -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#sidebar-search.open {
    right: 0;
}
#sidebar-search .title {
    position: absolute;
    top: 65px;
    font-size: 1.1em;
}
#sidebar-search .menu-wrap {
    margin-top: -120px;
    padding-top: 120px;
}
#sidebar-search .sidebar-toggle {
    margin: -15px 0 0 0;
    font-size: 5em;
}
#sidebar-search .sidebar-toggle.close {
    margin: -15px 0 0 0;
    font-family: Arial;
    font-size: 5em;
}
#sidebar-search form {
    margin-top: 80px;
    height: 50px;
}
#sidebar-search form input {
    border-color: #9f9f9f;
    border-radius: 0;
}
#sidebar-search form input:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0c0c0;
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0c0c0;
}
#sidebar-search form button {
    border-radius: 0;
}
#sidebar-search .twitter-typeahead {
    display: block !important;
}

#sidebar-search-form-result {
    margin: 0 0 0 20px;
    padding: 0;
    list-style-type: none;
}
#sidebar-search-form-result li {
    margin-top: 20px;
}
#sidebar-search-form-result li a {
    color: #357954;
    text-decoration: underline;
}
#sidebar-search-form-result li a:hover,
#sidebar-search-form-result li a:active {
    text-decoration: none;
}


/*
 * Dialogs - All
 */
.modal .modal-dialog {
    position: absolute;
    display: table;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
.modal .close {
    position: absolute;
    z-index: 10;
    top: 10px;
    right: 30px;
    font-size: 4em;
}
.modal .modal-content {
    display: table-cell;
    padding: 0 30px 30px 30px;
    vertical-align: middle;
    border-radius: 0;
    background: #fff;
}

/*
 * Dialog - Order
 */
#dialog-order .close {
    color: #fff;
    font-family: Arial;
    text-shadow: 0 1px 0 #000;
    opacity: 1;
}
#dialog-order .modal-content {
    background: #188d3c;
}
#dialog-order .modal-content .title {
    margin-top: 30px;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}
#dialog-order-form-errors,
#dialog-order-form-success {
    margin: 20px auto 0;
    max-width: 345px;
}
#dialog-order-form-errors ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#dialog-order .form {
    margin: 30px auto 0 auto;
    max-width: 345px;
}
#dialog-order .form .form-control {
    padding: 22px 10px 20px 35px;
    text-transform: uppercase;
    border-radius: 0;
}
/* ------------ */
#dialog-order .form input.form-control[placeholder]          {text-overflow: ellipsis;}
#dialog-order .form input.form-control::-moz-placeholder     {text-overflow: ellipsis;}
#dialog-order .form input.form-control:-moz-placeholder      {text-overflow: ellipsis;}
#dialog-order .form input.form-control:-ms-input-placeholder {text-overflow: ellipsis;}
/* ------------ */
#dialog-order .form .form-control-feedback {
    top: 6px;
    left: 0;
    color: #147d34;
}
#dialog-order .form .btn.submit {
    display: block;
    padding: 12px 0;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #fff;
    border-radius: 0;
    background: #188d3c;
}
#dialog-order .form .btn.submit:hover,
#dialog-order .form .btn.submit:active {
    background: #32a556;
}
#dialog-order .message {
    color: #04511b;
    font-size: 0.8em;
    text-align: center;
}

/*
 * Dialog - District
 */
#dialog-district ul {
    margin: 30px auto 0 auto;
    padding: 0;
    max-width: 380px;
    list-style-type: none;
}
#dialog-district ul li {
    display: inline-block;
    width: 190px;
    vertical-align: top;
}
#dialog-district ul li a,
#dialog-district ul li &gt; span {
    display: block;
    margin-top: 10px;
    padding: 3px 5px;
    color: #cacaca;
    text-decoration: none;
    border: 1px solid #fff;
}
#dialog-district ul li a.active,
#dialog-district ul li &gt; span.active {
    color: #14a743;
}
#dialog-district ul li a .sup {
    font-size: 0.7em;
}
#dialog-district ul li a:hover,
#dialog-district ul li a:active,
#dialog-district ul li &gt; span:hover,
#dialog-district ul li &gt; span:active {
    border-color: #cacaca;
}
#dialog-district ul li a.active:hover,
#dialog-district ul li a.active:active,
#dialog-district ul li &gt; span.active:hover,
#dialog-district ul li &gt; span.active:active {
    border-color: #14a743;
}

/*
 * Dialog - Ifns
 */
#dialog-ifns .modal-content .title {
    margin-top: 30px;
    color: #3d3d3d;
    font-size: 1.2em;
    text-align: center;
    text-transform: uppercase;
}
#dialog-ifns ul {
    position: relative;
    margin: 10px auto 0 auto;
    padding: 0;
    max-width: 300px;
    list-style-type: none;
}
#dialog-ifns ul li {
    display: inline-block;
    margin: 15px 0 0 15px;
}
#dialog-ifns ul li a,
#dialog-ifns ul li &gt; span {
    display: block;
    padding-top: 4px;
    width: 35px;
    height: 35px;
    color: #cacaca;
    text-align: center;
    text-decoration: none;
    border: 1px solid #cacaca;
    border-radius: 50px;
}
#dialog-ifns ul li.active a,
#dialog-ifns ul li.active &gt; span {
    color: #14a743;
    border: 1px solid #14a743;
}
#dialog-ifns ul li a:hover,
#dialog-ifns ul li a:active,
#dialog-ifns ul li &gt; span:hover,
#dialog-ifns ul li &gt; span:active {
    color: #fff;
    background: #cacaca;
}
#dialog-ifns ul li.active a:hover,
#dialog-ifns ul li.active a:active,
#dialog-ifns ul li.active &gt; span:hover,
#dialog-ifns ul li.active &gt; span:active {
    color: #fff;
    background: #14a743;
}
#dialog-ifns ul li.uaobl a,
#dialog-ifns ul li.uaobl &gt; span {
    padding: 4px 10px;
    width: auto;
    height: auto;
}

/*
 * Dialog - 3D Tour
 */
#dialog-tour3d {}
#dialog-tour3d .close {
    position: absolute;
    top: inherit;
    left: 15px;
    right: 15px;
    bottom: 10px;
    padding: 10px 0;
    color: #07842e;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 1;
    border: 1px solid #07842e;
}
#dialog-tour3d .close:hover,
#dialog-tour3d .close:active {
    color: #fff;
    text-decoration: none;
    background: #07842e;
}
#dialog-tour3d .modal-dialog {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
#dialog-tour3d .modal-dialog .modal-content,
#dialog-tour3d .modal-dialog .modal-body {
    display: block;
    padding: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}
#tour3d-container {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 65px;
    margin: 0;
    background: url('../img/loader-gears.gif') center center no-repeat;
}

/*
 * Helpers
 */
.upper {
    text-transform: uppercase;
}
.lower {
    text-transform: lowercase;
}
.sup {
    vertical-align: super;
}
.divider-30 {
    margin-top: 30px;
}
.divider-50 {
    margin-top: 50px;
}
.divider-70 {
    margin-top: 70px;
}
.width-percent-100 {
    width: 100%;
}
.width-percent-50 {
    width: 50%;
}
.text-center {
    text-align: center;
}
.table {
    display: table;
}
.table-row {
    display: table-row;
}
.table-column {
    display: table-column;
}
.table-cell {
    display: table-cell;
    padding: 5px 15px;
}
.table&gt;tbody&gt;tr&gt;th,
.table&gt;tbody&gt;tr&gt;th,
.table&gt;tfoot&gt;tr&gt;th,
.table&gt;thead&gt;tr&gt;th {
    text-align: center;
    vertical-align: middle;
}
.table&gt;tbody&gt;tr&gt;td,
.table&gt;tbody&gt;tr&gt;td,
.table&gt;tfoot&gt;tr&gt;td,
.table&gt;thead&gt;tr&gt;td {
    vertical-align: middle;
}
.table-bordered,
.table-bordered&gt;tbody&gt;tr&gt;td,
.table-bordered&gt;tbody&gt;tr&gt;th,
.table-bordered&gt;tfoot&gt;tr&gt;td,
.table-bordered&gt;tfoot&gt;tr&gt;th,
.table-bordered&gt;thead&gt;tr&gt;td,
.table-bordered&gt;thead&gt;tr&gt;th {
    border: 1px solid #9e9282;
    border-collapse: collapse;
}
.table-bordered .table-cell {
    border: 1px solid #9e9282;
}
.table-striped .table-row:nth-of-type(odd) {
    background: #e1d9d2;
}
.table .nowrp {
    white-space: nowrap;
}

#loader {
    position: fixed;
    display: none;
    z-index: 1040;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#loader-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.8;
}
#loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    color: #fff;
    font-size: 6em;
}

.ui-pnotify.stack-bar-top {
    top: 15px;
    right: 0;
}
.ui-pnotify.stack-bar-top .ui-pnotify-container {
    margin: 0 15px;
    padding: 30px 0 20px 0;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.ui-pnotify.stack-bar-top .ui-pnotify-container.alert-success {
    color: #363636;
    background: #f6c739;
    border: solid 1px #eed759;
    -webkit-box-shadow: 0 5px 5px #967f00;
    -moz-box-shadow: 0 5px 5px #967f00;
    box-shadow: 0 5px 5px #967f00;
}
.ui-pnotify.stack-bar-top .ui-pnotify-container.alert-info {
    color: #ffc1a9;
    background: #df5018;
    border: solid 1px #e56a3a;
    -webkit-box-shadow: 0 5px 5px #b3471c;
    -moz-box-shadow: 0 5px 5px #b3471c;
    box-shadow: 0 5px 5px #b3471c;
}
.ui-pnotify.stack-bar-top .ui-pnotify-container .ui-pnotify-title {
    font-size: 0.9em;
    font-weight: normal;
}
.ui-pnotify.stack-bar-top .ui-pnotify-container.alert-success a {
    color: #008629;
    text-decoration: underline;
}
.ui-pnotify.stack-bar-top .ui-pnotify-container.alert-info a {
    color: #fff;
    text-decoration: underline;
}
.ui-pnotify.stack-bar-top .ui-pnotify-container a:hover,
.ui-pnotify.stack-bar-top .ui-pnotify-container a:active {
    text-decoration: none;
}
.ui-pnotify.stack-bar-top .ui-pnotify-closer {
    position: absolute;
    top: 8px;
    right: 30px;
    color: #fff;
    font-size: 1.7em;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.catalog-filters__wrapper {
    width: calc(100% / 3);
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}
.catalog-filters__wrapper--address {
    order: 1;
    width: 100%;
}
.catalog-filters__wrapper--ao {
    order: 2;
    width: 50%;
}
.catalog-filters__wrapper--ifns {
    order: 3;
    width: 50%;
}
.catalog-filters__wrapper--tdogs {
    order: 4;
    width: 50%;
    margin-right: 50%;
}
.catalog-filters__wrapper--main {
    order: 5;
}
.catalog-filters__wrapper--promo {
    order: 7;
}
.catalog-filters__wrapper--other {
    order: 6;
}
.catalog-filters__title {
    margin-top: 15px;
    font-size: 20px;
}
.catalog-filters__field {
    display: block;
}
.catalog-filters__field-label {
    text-transform: none !important;
}
.catalog-filters__field--address,
.catalog-filters__field--ao,
.catalog-filters__field--ifns,
.catalog-filters__field--tdogs {
    width: 100%;
    padding: 5px 10px;
    font-weight: normal !important;
    text-transform: none !important;
    color: #686461 !important;
    border: 1px solid #9f9f9f;
    background-color: rgba(255, 255, 255, 0.7) !important;
}
.catalog-filters__footer {
    order: 8;
    width: 100%;
    margin-top: 30px;
}
.catalog-filters__btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    color: #07842e;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #07842e;
    cursor: pointer;
}
.catalog-filters__btn:hover {
    color: #fff;
    text-decoration: none;
    background: #07842e;
}
.catalog-filters__btn--open {
    font-weight: normal;
    background-color: transparent;
}
#catalogFiltersForm {
    position: relative;
    z-index: -1;
    display: none;
    height: 0;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
#catalogFiltersForm.open {
    display: flex;
    height: auto;
    opacity: 1;
    z-index: 0;
}
#catalogFiltersBtnOpen.hide {
    display: none;
}

.btn-link {
    border: none;
    background: transparent;
    font-size: 20px;
    text-decoration: none;
    color: #14a743;
}

.text-right {
    text-align: right;
}

.promo-slider {
    margin: 20px 0 10px 0;
}


/*
 * Screens
 */
@media all and (max-width: 930px) {

    .catalog-filters {
        display: flex;
        flex-direction: column;
    }
    .catalog-filters__wrapper {
        width: 100%;
    }

}

@media all and (max-width: 650px) {

    #header-menu .logo img {
        top: 10px;
    }

}

@media all and (max-width: 500px) {

    #header-menu.affix .sidebar-toggle img {
        top: 0.5vw;
    }

}

@media all and (max-width: 430px) {

    #header-menu .phone a {
        font-size: 15px;
    }

    .pagination .simple {
        margin-top: 70px;
    }
    .pagination .simple .item {
        display: block;
    }
    .pagination .simple .item.prev {
        float: left;
        margin-left: 12px;
    }
    .pagination .simple .item.next {
        float: right;
        margin-right: 12px;
    }
    .pagination .simple .item.info {
        position: absolute;
        top: -40px;
        width: 100%;
        text-align: center;
    }

}

@media all and (max-width: 360px) {

    #header-menu.affix .sidebar-toggle img {
        top: 2vw;
    }

}

@media all and (max-width: 320px) {

    #header-menu .phone a {
        font-size: 15px;
    }

    #filters-container {
        padding: 25px 15px 25px 15px;
    }
    #filters-container form .control-label {
        float: none;
        padding-left: 0;
    }
    #filters-container form .input-group {
        width: 100%;
    }

}

@media all and (max-width: 250px) {

    #header-container, #footer-container {
        height: 70px;
    }
    .pagination .simple {
        margin: 60px 0 0 0;
    }
    .pagination .simple .item {
        display: block;
    }
    .pagination .simple .item.prev,
    .pagination .simple .item.next {
        float: none;
        padding: 5px 0;
    }
    .pagination .simple .item.prev a,
    .pagination .simple .item.next a {
        margin: 0 auto;
    }
    .pagination .simple .item.info {
        position: absolute;
        top: -40px;
        width: 100%;
        text-align: center;
    }

}
</pre></body></html>