:root {
    --mm-line-height: 20px;
    --mm-listitem-size: 44px;
    --mm-navbar-size: 44px;
    --mm-offset-top: 0;
    --mm-offset-right: 0;
    --mm-offset-bottom: 0;
    --mm-offset-left: 0;
    --mm-color-border: rgba(0, 0, 0, 0.1);
    --mm-color-button: rgba(0, 0, 0, 0.3);
    --mm-color-text: rgba(0, 0, 0, 0.75);
    --mm-color-text-dimmed: rgba(0, 0, 0, 0.3);
    --mm-color-background: #f3f3f3;
    --mm-color-background-highlight: rgba(0, 0, 0, 0.05);
    --mm-color-background-emphasis: rgba(255, 255, 255, 0.4);
    --mm-shadow: 0 0 10px rgba(0, 0, 0, 0.3)
}

.mm-hidden {
    display: none !important
}

.mm-wrapper {
    overflow-x: hidden;
    position: relative
}

.mm-menu {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #f3f3f3;
    border-color: rgba(0, 0, 0, .1);
    color: rgba(0, 0, 0, .75);
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: var(--mm-offset-top);
    right: var(--mm-offset-right);
    bottom: var(--mm-offset-bottom);
    left: var(--mm-offset-left);
    z-index: 0;
    -ms-scroll-chaining: chained;
    overscroll-behavior: auto;
    background: var(--mm-color-background);
    border-color: var(--mm-color-border);
    color: var(--mm-color-text);
    line-height: var(--mm-line-height);
    -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
    text-decoration: none;
    color: inherit
}

[dir=rtl] .mm-menu {
    direction: rtl
}

.mm-panel {
    background: #f3f3f3;
    border-color: rgba(0, 0, 0, .1);
    color: rgba(0, 0, 0, .75);
    z-index: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    overflow-y: auto;
    color: var(--mm-color-text);
    border-color: var(--mm-color-border);
    background: var(--mm-color-background);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease
}

.mm-panel:after {
    height: 44px
}

.mm-panel:not(.mm-hidden) {
    display: block
}

.mm-panel:after {
    content: '';
    display: block;
    height: var(--mm-listitem-size)
}

.mm-panel_opened {
    z-index: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-panel_opened-parent {
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0)
}

.mm-panel_highest {
    z-index: 2
}

.mm-panel_noanimation {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important
}

.mm-panel_noanimation.mm-panel_opened-parent {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-panels > .mm-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.mm-panel__content {
    padding: 20px 20px 0
}

.mm-panels {
    background: #f3f3f3;
    border-color: rgba(0, 0, 0, .1);
    color: rgba(0, 0, 0, .75);
    position: relative;
    height: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden;
    background: var(--mm-color-background);
    border-color: var(--mm-color-border);
    color: var(--mm-color-text)
}

[dir=rtl] .mm-panel:not(.mm-panel_opened) {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}

[dir=rtl] .mm-panel.mm-panel_opened-parent {
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0)
}

.mm-listitem_vertical > .mm-panel {
    display: none;
    width: 100%;
    padding: 10px 0 10px 10px;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important
}

.mm-listitem_vertical > .mm-panel:after, .mm-listitem_vertical > .mm-panel:before {
    content: none;
    display: none
}

.mm-listitem_opened > .mm-panel {
    display: block
}

.mm-listitem_vertical > .mm-listitem__btn {
    height: 44px;
    height: var(--mm-listitem-size);
    bottom: auto
}

.mm-listitem_vertical .mm-listitem:last-child:after {
    border-color: transparent
}

.mm-listitem_opened > .mm-listitem__btn:after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    right: 19px
}

.mm-btn {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50px;
    padding: 0
}

.mm-btn:after, .mm-btn:before {
    border: 2px solid rgba(0, 0, 0, .3);
    border: 2px solid var(--mm-color-button)
}

.mm-btn_next:after, .mm-btn_prev:before {
    content: '';
    border-bottom: none;
    border-right: none;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0
}

.mm-btn_prev:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 23px;
    right: auto
}

.mm-btn_next:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 23px;
    left: auto
}

.mm-btn_close:after, .mm-btn_close:before {
    content: '';
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    width: 5px;
    height: 5px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.mm-btn_close:before {
    border-right: none;
    border-bottom: none;
    right: 18px
}

.mm-btn_close:after {
    border-left: none;
    border-top: none;
    right: 25px
}

[dir=rtl] .mm-btn_next:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 23px;
    right: auto
}

[dir=rtl] .mm-btn_prev:before {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 23px;
    left: auto
}

[dir=rtl] .mm-btn_close:after, [dir=rtl] .mm-btn_close:before {
    right: auto
}

[dir=rtl] .mm-btn_close:before {
    left: 25px
}

[dir=rtl] .mm-btn_close:after {
    left: 18px
}

.mm-navbar {
    min-height: 44px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    background: #f3f3f3;
    color: rgba(0, 0, 0, .3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: var(--mm-navbar-size);
    border-bottom: 1px solid var(--mm-color-border);
    background: var(--mm-color-background);
    color: var(--mm-color-text-dimmed);
    text-align: center;
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.mm-navbar > * {
    min-height: 44px
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .mm-navbar_sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1
    }
}

.mm-navbar > * {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.mm-navbar__btn {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0
}

.mm-navbar__title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden
}

.mm-navbar__title:not(:last-child) {
    padding-right: 0
}

.mm-navbar__title > span {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.mm-navbar__btn:not(.mm-hidden) + .mm-navbar__title {
    padding-left: 0
}

.mm-navbar__btn:not(.mm-hidden) + .mm-navbar__title:last-child {
    padding-right: 50px
}

[dir=rtl] .mm-navbar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.mm-listview {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0
}

.mm-listitem {
    color: rgba(0, 0, 0, .75);
    border-color: rgba(0, 0, 0, .1);
    color: var(--mm-color-text);
    border-color: var(--mm-color-border);
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.mm-listitem:after {
    content: '';
    border-color: inherit;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: block;
    position: absolute;
    left: 20px;
    right: 0;
    bottom: 0
}

.mm-listitem a, .mm-listitem a:hover {
    text-decoration: none
}

.mm-listitem__btn, .mm-listitem__text {
    padding: 12px;
    display: block;
    padding: calc((var(--mm-listitem-size) - var(--mm-line-height)) / 2);
    padding-left: 0;
    padding-right: 0;
    color: inherit
}

.mm-listitem__text {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%
}

.mm-listitem__btn {
    background: rgba(3, 2, 1, 0);
    border-color: inherit;
    width: auto;
    padding-right: 50px;
    position: relative
}

.mm-listitem__btn:not(.mm-listitem__text) {
    border-left-width: 1px;
    border-left-style: solid
}

.mm-listitem_selected > .mm-listitem__text {
    background: rgba(255, 255, 255, .4);
    background: var(--mm-color-background-emphasis)
}

.mm-listitem_opened > .mm-listitem__btn, .mm-listitem_opened > .mm-panel {
    background: rgba(0, 0, 0, .05);
    background: var(--mm-color-background-highlight)
}

[dir=rtl] .mm-listitem:after {
    left: 0;
    right: 20px
}

[dir=rtl] .mm-listitem__text {
    padding-left: 10px;
    padding-right: 20px
}

[dir=rtl] .mm-listitem__btn {
    padding-left: 50px;
    border-left-width: 0;
    border-left-style: none
}

[dir=rtl] .mm-listitem__btn:not(.mm-listitem__text) {
    padding-right: 0;
    border-right-width: 1px;
    border-right-style: solid
}

.mm-page {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative
}

.mm-slideout {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    z-index: 1
}

.mm-wrapper_opened {
    overflow-x: hidden;
    position: relative
}

.mm-wrapper_opened .mm-page {
    min-height: 100vh
}

.mm-wrapper_background .mm-page {
    background: inherit
}

.mm-menu_offcanvas {
    position: fixed;
    right: auto;
    z-index: 0
}

.mm-menu_offcanvas:not(.mm-menu_opened) {
    display: none
}

.mm-menu_offcanvas {
    width: 80%;
    min-width: 240px;
    max-width: 440px
}

.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(80vw, 0, 0);
    transform: translate3d(80vw, 0, 0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(240px, 0, 0);
        transform: translate3d(240px, 0, 0)
    }
}

@media all and (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(440px, 0, 0);
        transform: translate3d(440px, 0, 0)
    }
}

.mm-wrapper__blocker {
    background: rgba(3, 2, 1, 0);
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2
}

.mm-wrapper_blocking {
    overflow: hidden
}

.mm-wrapper_blocking body {
    overflow: hidden
}

.mm-wrapper_blocking .mm-wrapper__blocker {
    display: block
}

.mm-sronly {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    width: 1px !important;
    min-width: 1px !important;
    height: 1px !important;
    min-height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important
}

.mm-menu_autoheight:not(.mm-menu_offcanvas) {
    position: relative
}

.mm-menu_autoheight.mm-menu_position-bottom, .mm-menu_autoheight.mm-menu_position-top {
    max-height: 80%
}

.mm-menu_autoheight-measuring .mm-panel {
    display: block !important
}

.mm-menu_autoheight-measuring .mm-panels > .mm-panel {
    bottom: auto !important;
    height: auto !important
}

.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
    display: none !important
}

[class*=mm-menu_columns-] {
    -webkit-transition-property: width;
    -o-transition-property: width;
    transition-property: width
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel {
    right: auto;
    -webkit-transition-property: width, -webkit-transform;
    transition-property: width, -webkit-transform;
    -o-transition-property: width, transform;
    transition-property: width, transform;
    transition-property: width, transform, -webkit-transform
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel_opened, [class*=mm-menu_columns-] .mm-panels > .mm-panel_opened-parent {
    display: block !important
}

[class*=mm-panel_columns-] {
    border-right: 1px solid;
    border-color: inherit
}

.mm-menu_columns-1 .mm-panel_columns-0, .mm-menu_columns-2 .mm-panel_columns-1, .mm-menu_columns-3 .mm-panel_columns-2, .mm-menu_columns-4 .mm-panel_columns-3 {
    border-right: none
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-0 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-menu_columns-0 .mm-panels > .mm-panel {
    z-index: 0
}

.mm-menu_columns-0 .mm-panels > .mm-panel else {
    width: 100%
}

.mm-menu_columns-0 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.mm-menu_columns-0 {
    width: 80%;
    min-width: 240px;
    max-width: 0
}

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(80vw, 0, 0);
    transform: translate3d(80vw, 0, 0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(240px, 0, 0);
        transform: translate3d(240px, 0, 0)
    }
}

@media all and (min-width: 0px) {
    .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-80vw, 0, 0);
    transform: translate3d(-80vw, 0, 0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-240px, 0, 0);
        transform: translate3d(-240px, 0, 0)
    }
}

@media all and (min-width: 0px) {
    .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-1 {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.mm-menu_columns-1 .mm-panels > .mm-panel {
    z-index: 1;
    width: 100%
}

.mm-menu_columns-1 .mm-panels > .mm-panel else {
    width: 100%
}

.mm-menu_columns-1 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    -webkit-transform: translate3d(200%, 0, 0);
    transform: translate3d(200%, 0, 0)
}

.mm-menu_columns-1 {
    width: 80%;
    min-width: 240px;
    max-width: 440px
}

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(80vw, 0, 0);
    transform: translate3d(80vw, 0, 0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(240px, 0, 0);
        transform: translate3d(240px, 0, 0)
    }
}

@media all and (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(440px, 0, 0);
        transform: translate3d(440px, 0, 0)
    }
}

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-80vw, 0, 0);
    transform: translate3d(-80vw, 0, 0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-240px, 0, 0);
        transform: translate3d(-240px, 0, 0)
    }
}

@media all and (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-440px, 0, 0);
        transform: translate3d(-440px, 0, 0)
    }
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-2 {
    -webkit-transform: translate3d(200%, 0, 0);
    transform: translate3d(200%, 0, 0)
}

.mm-menu_columns-2 .mm-panels > .mm-panel {
    z-index: 2;
    width: 50%
}

.mm-menu_columns-2 .mm-panels > .mm-panel else {
    width: 100%
}

.mm-menu_columns-2 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    -webkit-transform: translate3d(300%, 0, 0);
    transform: translate3d(300%, 0, 0)
}

.mm-menu_columns-2 {
    width: 80%;
    min-width: 240px;
    max-width: 880px
}

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(80vw, 0, 0);
    transform: translate3d(80vw, 0, 0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(240px, 0, 0);
        transform: translate3d(240px, 0, 0)
    }
}

@media all and (min-width: 1100px) {
    .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(880px, 0, 0);
        transform: translate3d(880px, 0, 0)
    }
}

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-80vw, 0, 0);
    transform: translate3d(-80vw, 0, 0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-240px, 0, 0);
        transform: translate3d(-240px, 0, 0)
    }
}

@media all and (min-width: 1100px) {
    .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-880px, 0, 0);
        transform: translate3d(-880px, 0, 0)
    }
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-3 {
    -webkit-transform: translate3d(300%, 0, 0);
    transform: translate3d(300%, 0, 0)
}

.mm-menu_columns-3 .mm-panels > .mm-panel {
    z-index: 3;
    width: 33.34%
}

.mm-menu_columns-3 .mm-panels > .mm-panel else {
    width: 100%
}

.mm-menu_columns-3 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    -webkit-transform: translate3d(400%, 0, 0);
    transform: translate3d(400%, 0, 0)
}

.mm-menu_columns-3 {
    width: 80%;
    min-width: 240px;
    max-width: 1320px
}

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(80vw, 0, 0);
    transform: translate3d(80vw, 0, 0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(240px, 0, 0);
        transform: translate3d(240px, 0, 0)
    }
}

@media all and (min-width: 1650px) {
    .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(1320px, 0, 0);
        transform: translate3d(1320px, 0, 0)
    }
}

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-80vw, 0, 0);
    transform: translate3d(-80vw, 0, 0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-240px, 0, 0);
        transform: translate3d(-240px, 0, 0)
    }
}

@media all and (min-width: 1650px) {
    .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-1320px, 0, 0);
        transform: translate3d(-1320px, 0, 0)
    }
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-4 {
    -webkit-transform: translate3d(400%, 0, 0);
    transform: translate3d(400%, 0, 0)
}

.mm-menu_columns-4 .mm-panels > .mm-panel {
    z-index: 4;
    width: 25%
}

.mm-menu_columns-4 .mm-panels > .mm-panel else {
    width: 100%
}

.mm-menu_columns-4 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    -webkit-transform: translate3d(500%, 0, 0);
    transform: translate3d(500%, 0, 0)
}

.mm-menu_columns-4 {
    width: 80%;
    min-width: 240px;
    max-width: 1760px
}

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(80vw, 0, 0);
    transform: translate3d(80vw, 0, 0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(240px, 0, 0);
        transform: translate3d(240px, 0, 0)
    }
}

@media all and (min-width: 2200px) {
    .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(1760px, 0, 0);
        transform: translate3d(1760px, 0, 0)
    }
}

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-80vw, 0, 0);
    transform: translate3d(-80vw, 0, 0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-240px, 0, 0);
        transform: translate3d(-240px, 0, 0)
    }
}

@media all and (min-width: 2200px) {
    .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-1760px, 0, 0);
        transform: translate3d(-1760px, 0, 0)
    }
}

[class*=mm-menu_columns-].mm-menu_position-bottom, [class*=mm-menu_columns-].mm-menu_position-top {
    width: 100%;
    max-width: 100%;
    min-width: 100%
}

.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
    -webkit-transition-property: width, min-width, max-width, -webkit-transform;
    transition-property: width, min-width, max-width, -webkit-transform;
    -o-transition-property: width, min-width, max-width, transform;
    transition-property: width, min-width, max-width, transform;
    transition-property: width, min-width, max-width, transform, -webkit-transform
}

.mm-counter {
    color: rgba(0, 0, 0, .3);
    display: block;
    padding-left: 20px;
    float: right;
    text-align: right;
    color: var(--mm-color-text-dimmed)
}

.mm-listitem_nosubitems > .mm-counter {
    display: none
}

[dir=rtl] .mm-counter {
    text-align: left;
    float: left;
    padding-left: 0;
    padding-right: 20px
}

.mm-divider {
    position: relative;
    min-height: 20px;
    padding: 4.3px;
    background: #f3f3f3;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    min-height: var(--mm-line-height);
    padding: calc(((var(--mm-listitem-size) * .65) - var(--mm-line-height)) * .5);
    padding-right: 10px;
    padding-left: 20px;
    font-size: 75%;
    text-transform: uppercase;
    background: var(--mm-color-background);
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.mm-divider:before {
    background: rgba(0, 0, 0, .05)
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .mm-divider {
        position: -webkit-sticky;
        position: sticky;
        z-index: 2;
        top: 0
    }

    .mm-navbar_sticky:not(.mm-hidden) ~ .mm-listview .mm-divider {
        top: var(--mm-navbar-size)
    }
}

.mm-divider:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--mm-color-background-highlight)
}

.mm-wrapper_dragging .mm-menu, .mm-wrapper_dragging .mm-slideout {
    -webkit-transition-duration: 0s !important;
    -o-transition-duration: 0s !important;
    transition-duration: 0s !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important
}

.mm-wrapper_dragging .mm-menu {
    pointer-events: none !important
}

.mm-wrapper_dragging .mm-wrapper__blocker {
    display: none !important
}

.mm-menu_dropdown {
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    height: 80%
}

.mm-wrapper_dropdown .mm-slideout {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    z-index: 0
}

.mm-wrapper_dropdown .mm-wrapper__blocker {
    -webkit-transition-delay: 0s !important;
    -o-transition-delay: 0s !important;
    transition-delay: 0s !important;
    z-index: 1
}

.mm-wrapper_dropdown .mm-menu_dropdown {
    z-index: 2
}

.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
    display: none
}

.mm-menu_tip-bottom:before, .mm-menu_tip-left:before, .mm-menu_tip-right:before, .mm-menu_tip-top:before {
    content: '';
    background: inherit;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    z-index: -1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.mm-menu_tip-left:before {
    left: 22px
}

.mm-menu_tip-right:before {
    right: 22px
}

.mm-menu_tip-top:before {
    top: -8px
}

.mm-menu_tip-bottom:before {
    bottom: -8px
}

:root {
    --mm-iconbar-size: 50px
}

.mm-menu_iconbar-left .mm-navbars_bottom, .mm-menu_iconbar-left .mm-navbars_top, .mm-menu_iconbar-left .mm-panels {
    margin-left: 50px;
    margin-left: var(--mm-iconbar-size)
}

.mm-menu_iconbar-right .mm-navbars_bottom, .mm-menu_iconbar-right .mm-navbars_top, .mm-menu_iconbar-right .mm-panels {
    margin-right: 50px;
    margin-right: var(--mm-iconbar-size)
}

.mm-iconbar {
    width: 50px;
    border-color: rgba(0, 0, 0, .1);
    background: #f3f3f3;
    color: rgba(0, 0, 0, .3);
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: var(--mm-iconbar-size);
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 0 solid;
    border-color: var(--mm-color-border);
    background: var(--mm-color-background);
    color: var(--mm-color-text-dimmed);
    text-align: center
}

.mm-menu_iconbar-left .mm-iconbar, .mm-menu_iconbar-right .mm-iconbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.mm-menu_iconbar-left .mm-iconbar {
    border-right-width: 1px;
    left: 0
}

.mm-menu_iconbar-right .mm-iconbar {
    border-left-width: 1px;
    right: 0
}

.mm-iconbar__bottom, .mm-iconbar__top {
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    overflow-y: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain
}

.mm-iconbar__bottom > *, .mm-iconbar__top > * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    padding: 12.5px 0
}

.mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
    text-decoration: none
}

.mm-iconbar__tab_selected {
    background: rgba(255, 255, 255, .4);
    background: var(--mm-color-background-emphasis)
}

:root {
    --mm-iconpanel-size: 50px
}

.mm-panel_iconpanel-1 {
    width: calc(100% - 50px);
    width: calc(100% - (var(--mm-iconpanel-size) * 1))
}

.mm-panel_iconpanel-2 {
    width: calc(100% - 100px);
    width: calc(100% - (var(--mm-iconpanel-size) * 2))
}

.mm-panel_iconpanel-3 {
    width: calc(100% - 150px);
    width: calc(100% - (var(--mm-iconpanel-size) * 3))
}

.mm-panel_iconpanel-first ~ .mm-panel {
    width: calc(100% - 50px);
    width: calc(100% - var(--mm-iconpanel-size))
}

.mm-menu_iconpanel .mm-panels > .mm-panel {
    left: auto;
    -webkit-transition-property: width, -webkit-transform;
    transition-property: width, -webkit-transform;
    -o-transition-property: transform, width;
    transition-property: transform, width;
    transition-property: transform, width, -webkit-transform
}

.mm-menu_iconpanel .mm-panels > .mm-panel_opened, .mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
    display: block !important
}

.mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
    overflow-y: hidden;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset
}

.mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
    border-left-width: 1px;
    border-left-style: solid
}

.mm-menu_hidedivider .mm-panel_opened-parent .mm-divider, .mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
    opacity: 0
}

.mm-panel__blocker {
    background: inherit;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.mm-panel_opened-parent .mm-panel__blocker {
    opacity: .6;
    bottom: -100000px
}

[dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel {
    left: 0;
    right: auto;
    -webkit-transition-property: width, -webkit-transform;
    transition-property: width, -webkit-transform;
    -o-transition-property: transform, width;
    transition-property: transform, width;
    transition-property: transform, width, -webkit-transform
}

[dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
    border-left: none;
    border-right: 1px solid;
    border-color: inherit
}

.mm-menu_keyboardfocus a:focus, .mm-menu_keyboardfocus.mm-menu_opened ~ .mm-wrapper__blocker a:focus {
    background: rgba(255, 255, 255, .4);
    background: var(--mm-color-background-emphasis);
    outline: 0
}

.mm-wrapper__blocker .mm-tabstart {
    cursor: default;
    display: block;
    width: 100%;
    height: 100%
}

.mm-wrapper__blocker .mm-tabend {
    opacity: 0;
    position: absolute;
    bottom: 0
}

.mm-navbars_top {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.mm-navbars_top .mm-navbar:not(:last-child) {
    border-bottom: none
}

.mm-navbars_bottom {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.mm-navbars_bottom .mm-navbar {
    border-bottom: none
}

.mm-navbars_bottom .mm-navbar:first-child {
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-top: 1px solid var(--mm-color-border)
}

.mm-btn:not(.mm-hidden) + .mm-navbar__searchfield .mm-searchfield__input {
    padding-left: 0
}

.mm-navbar__searchfield:not(:last-child) .mm-searchfield__input {
    padding-right: 0
}

.mm-navbar__breadcrumbs {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.mm-navbar__breadcrumbs > * {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 6px
}

.mm-navbar__breadcrumbs > a {
    text-decoration: underline
}

.mm-navbar__breadcrumbs:not(:last-child) {
    padding-right: 0
}

.mm-btn:not(.mm-hidden) + .mm-navbar__breadcrumbs {
    padding-left: 0
}

.mm-navbar_tabs > * {
    padding: 0 10px;
    border: 1px solid transparent
}

.mm-navbar__tab_selected {
    background: #f3f3f3;
    color: rgba(0, 0, 0, .75);
    background: var(--mm-color-background);
    color: var(--mm-color-text)
}

.mm-navbar__tab_selected:not(:first-child) {
    border-left-color: rgba(0, 0, 0, .1)
}

.mm-navbar__tab_selected:not(:last-child) {
    border-right-color: rgba(0, 0, 0, .1)
}

.mm-navbar__tab_selected:not(:first-child) {
    border-left-color: var(--mm-color-border)
}

.mm-navbar__tab_selected:not(:last-child) {
    border-right-color: var(--mm-color-border)
}

.mm-navbars_top .mm-navbar_tabs {
    border-bottom: none
}

.mm-navbars_top .mm-navbar_tabs > * {
    border-bottom-color: rgba(0, 0, 0, .1);
    border-bottom-color: var(--mm-color-border)
}

.mm-navbars_top .mm-navbar__tab_selected {
    border-top-color: rgba(0, 0, 0, .1);
    border-top-color: var(--mm-color-border);
    border-bottom-color: transparent
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar {
    background: rgba(255, 255, 255, .4);
    background: var(--mm-color-background-emphasis)
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
    background: #f3f3f3;
    background: var(--mm-color-background)
}

.mm-navbars_bottom .mm-navbar_tabs:first-child {
    border-top: none
}

.mm-navbars_bottom .mm-navbar_tabs > * {
    border-top-color: rgba(0, 0, 0, .1);
    border-top-color: var(--mm-color-border)
}

.mm-navbars_bottom .mm-navbar__tab_selected {
    border-bottom-color: rgba(0, 0, 0, .1);
    border-bottom-color: var(--mm-color-border);
    border-top-color: transparent
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar {
    background: #f3f3f3;
    background: var(--mm-color-background)
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs, .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
    background: rgba(255, 255, 255, .4);
    background: var(--mm-color-background-emphasis)
}

.mm-searchfield {
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: var(--mm-navbar-size);
    padding: 0;
    overflow: hidden
}

.mm-searchfield input {
    height: 30.8px;
    line-height: 30.8px
}

.mm-searchfield input, .mm-searchfield input:focus, .mm-searchfield input:hover {
    background: rgba(0, 0, 0, .05);
    color: rgba(0, 0, 0, .75)
}

.mm-searchfield input {
    display: block;
    width: 100%;
    max-width: 100%;
    height: calc(var(--mm-navbar-size) * .7);
    min-height: unset;
    max-height: unset;
    margin: 0;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none !important;
    border-radius: 4px;
    line-height: calc(var(--mm-navbar-size) * .7);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: 0 !important;
    font: inherit;
    font-size: inherit
}

.mm-searchfield input, .mm-searchfield input:focus, .mm-searchfield input:hover {
    background: var(--mm-color-background-highlight);
    color: var(--mm-color-text)
}

.mm-searchfield input::-ms-clear {
    display: none
}

.mm-searchfield__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.mm-panel__noresultsmsg {
    color: rgba(0, 0, 0, .3);
    padding: 50px 0;
    color: var(--mm-color-text-dimmed);
    text-align: center;
    font-size: 150%
}

.mm-searchfield__btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0
}

.mm-panel_search {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-left: none !important
}

.mm-searchfield__cancel {
    line-height: 44px;
    display: block;
    padding-right: 10px;
    margin-right: -100px;
    line-height: var(--mm-navbar-size);
    text-decoration: none;
    -webkit-transition: margin .4s ease;
    -o-transition: margin .4s ease;
    transition: margin .4s ease
}

.mm-searchfield__cancel-active {
    margin-right: 0
}

.mm-listitem_nosubitems > .mm-listitem__btn {
    display: none
}

.mm-listitem_nosubitems > .mm-listitem__text {
    padding-right: 10px
}

.mm-listitem_onlysubitems > .mm-listitem__text:not(.mm-listitem__btn) {
    z-index: -1;
    pointer-events: none
}

.mm-sectionindexer {
    background: inherit;
    text-align: center;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
    z-index: 5;
    -webkit-transition: right .4s ease;
    -o-transition: right .4s ease;
    transition: right .4s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.mm-sectionindexer a {
    color: rgba(0, 0, 0, .3);
    color: var(--mm-color-text-dimmed);
    line-height: 1;
    text-decoration: none;
    display: block
}

.mm-sectionindexer ~ .mm-panel {
    padding-right: 0
}

.mm-sectionindexer_active {
    right: 0
}

.mm-sectionindexer_active ~ .mm-panel {
    padding-right: 20px
}

.mm-menu_selected-hover .mm-listitem__btn, .mm-menu_selected-hover .mm-listitem__text, .mm-menu_selected-parent .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem__text {
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease
}

.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected:not(:hover) > .mm-listitem__text {
    background: 0 0
}

.mm-menu_selected-hover .mm-listitem__btn:hover, .mm-menu_selected-hover .mm-listitem__text:hover {
    background: rgba(255, 255, 255, .4);
    background: var(--mm-color-background-emphasis)
}

.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > .mm-listitem__text {
    background: 0 0
}

.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__text {
    background: rgba(255, 255, 255, .4);
    background: var(--mm-color-background-emphasis)
}

:root {
    --mm-sidebar-collapsed-size: 50px;
    --mm-sidebar-expanded-size: 440px
}

.mm-wrapper_sidebar-collapsed body, .mm-wrapper_sidebar-expanded body {
    position: relative
}

.mm-wrapper_sidebar-collapsed .mm-slideout, .mm-wrapper_sidebar-expanded .mm-slideout {
    -webkit-transition-property: width, -webkit-transform;
    transition-property: width, -webkit-transform;
    -o-transition-property: width, transform;
    transition-property: width, transform;
    transition-property: width, transform, -webkit-transform
}

.mm-wrapper_sidebar-collapsed .mm-page, .mm-wrapper_sidebar-expanded .mm-page {
    background: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 100vh
}

.mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed, .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    top: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important
}

.mm-wrapper_sidebar-collapsed .mm-slideout {
    width: calc(100% - 50px);
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
    width: calc(100% - var(--mm-sidebar-collapsed-size));
    -webkit-transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
    transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0)
}

.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-divider, .mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
    opacity: 0
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
    width: 440px;
    width: var(--mm-sidebar-expanded-size);
    min-width: 0 !important;
    max-width: 100000px !important;
    border-right-width: 1px;
    border-right-style: solid
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
    content: none;
    display: none
}

.mm-wrapper_sidebar-expanded.mm-wrapper_blocking, .mm-wrapper_sidebar-expanded.mm-wrapper_blocking body {
    overflow: visible
}

.mm-wrapper_sidebar-expanded .mm-wrapper__blocker {
    display: none !important
}

.mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
    width: calc(100% - 440px);
    -webkit-transform: translate3d(440px, 0, 0);
    transform: translate3d(440px, 0, 0);
    width: calc(100% - var(--mm-sidebar-expanded-size));
    -webkit-transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
    transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0)
}

.mm-menu__blocker {
    background: rgba(3, 2, 1, 0);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3
}

.mm-menu_opened .mm-menu__blocker {
    display: none
}

[dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

[dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

[dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

input.mm-toggle {
    margin-top: 5px;
    background: rgba(0, 0, 0, .1);
    display: inline-block;
    min-width: 58px;
    width: 58px;
    height: 34px;
    margin: 0 10px;
    margin-top: calc((var(--mm-listitem-size) - 34px) / 2);
    border: none !important;
    background: var(--mm-color-border);
    border-radius: 34px;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    cursor: pointer;
    -webkit-transition: background-color .2s ease;
    -o-transition: background-color .2s ease;
    transition: background-color .2s ease
}

input.mm-toggle:before {
    background: #f3f3f3
}

input.mm-toggle:before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    margin: 1px;
    border-radius: 34px;
    background: var(--mm-color-background);
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    -o-transition: transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease
}

input.mm-toggle:checked {
    background: #4bd963
}

input.mm-toggle:checked:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px)
}

input.mm-check {
    margin-top: 2px;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border: none !important;
    background: 0 0 !important;
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    margin-top: calc((var(--mm-listitem-size) - 40px) / 2)
}

input.mm-check:before {
    content: '';
    display: block;
    width: 40%;
    height: 20%;
    margin: 25% 0 0 20%;
    border-left: 3px solid;
    border-bottom: 3px solid;
    border-color: var(--mm-color-text);
    opacity: .3;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease
}

input.mm-check:checked:before {
    opacity: 1
}

[dir=rtl] input.mm-toggle:checked ~ label.mm-toggle:before {
    float: left
}

.mm-menu_border-none .mm-listitem:after {
    content: none
}

.mm-menu_border-full .mm-listitem:after {
    left: 0 !important
}

.mm-menu_fx-menu-slide {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease
}

.mm-wrapper_opened .mm-menu_fx-menu-slide {
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0)
}

.mm-wrapper_opening .mm-menu_fx-menu-slide {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0)
}

.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-menu_fx-panels-none .mm-panel, .mm-panel_fx-none {
    -webkit-transition-property: none;
    -o-transition-property: none;
    transition-property: none
}

.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent, .mm-panel_fx-none.mm-panel_opened-parent {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}

.mm-menu_fullscreen {
    width: 100%;
    min-width: 140px;
    max-width: 10000px
}

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(100vw, 0, 0);
    transform: translate3d(100vw, 0, 0)
}

@media all and (max-width: 140px) {
    .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(140px, 0, 0);
        transform: translate3d(140px, 0, 0)
    }
}

@media all and (min-width: 10000px) {
    .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(10000px, 0, 0);
        transform: translate3d(10000px, 0, 0)
    }
}

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-100vw, 0, 0);
    transform: translate3d(-100vw, 0, 0)
}

@media all and (max-width: 140px) {
    .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-140px, 0, 0);
        transform: translate3d(-140px, 0, 0)
    }
}

@media all and (min-width: 10000px) {
    .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-10000px, 0, 0);
        transform: translate3d(-10000px, 0, 0)
    }
}

.mm-menu_fullscreen.mm-menu_position-top {
    height: 100vh;
    min-height: 140px;
    max-height: 10000px
}

.mm-menu_fullscreen.mm-menu_position-bottom {
    height: 100vh;
    min-height: 140px;
    max-height: 10000px
}

.mm-menu_listview-justify .mm-panels > .mm-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mm-menu_listview-justify .mm-panels > .mm-panel:after {
    content: none;
    display: none
}

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listview {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    margin-top: 0;
    margin-bottom: 0
}

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    min-height: 50px
}

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem__text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.mm-listview_inset {
    list-style: inside disc;
    width: 100%;
    padding: 0 30px 15px 30px;
    margin: 0
}

.mm-listview_inset .mm-listitem {
    padding: 5px 0
}

.mm-menu_multiline .mm-listitem__text {
    -o-text-overflow: clip;
    text-overflow: clip;
    white-space: normal
}

[class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
    opacity: 0
}

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
    opacity: .3;
    -webkit-transition: opacity .4s ease .4s;
    -o-transition: opacity .4s ease .4s;
    transition: opacity .4s ease .4s
}

.mm-menu_opened.mm-menu_pagedim ~ .mm-wrapper__blocker {
    background: inherit
}

.mm-menu_opened.mm-menu_pagedim-black ~ .mm-wrapper__blocker {
    background: #000
}

.mm-menu_opened.mm-menu_pagedim-white ~ .mm-wrapper__blocker {
    background: #fff
}

.mm-menu_popup {
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    opacity: 0;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    height: 80%;
    min-height: 140px;
    max-height: 880px;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    z-index: 2;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
}

.mm-menu_popup.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    z-index: 0
}

.mm-menu_popup.mm-menu_opened ~ .mm-wrapper__blocker {
    -webkit-transition-delay: 0s !important;
    -o-transition-delay: 0s !important;
    transition-delay: 0s !important;
    z-index: 1
}

.mm-wrapper_opening .mm-menu_popup {
    opacity: 1
}

.mm-menu_position-right {
    left: auto;
    right: 0
}

.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-80vw, 0, 0);
    transform: translate3d(-80vw, 0, 0)
}

@media all and (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-240px, 0, 0);
        transform: translate3d(-240px, 0, 0)
    }
}

@media all and (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        -webkit-transform: translate3d(-440px, 0, 0);
        transform: translate3d(-440px, 0, 0)
    }
}

.mm-menu_position-bottom, .mm-menu_position-front, .mm-menu_position-top {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease
}

.mm-menu_position-bottom.mm-menu_opened, .mm-menu_position-front.mm-menu_opened, .mm-menu_position-top.mm-menu_opened {
    z-index: 2
}

.mm-menu_position-bottom.mm-menu_opened ~ .mm-slideout, .mm-menu_position-front.mm-menu_opened ~ .mm-slideout, .mm-menu_position-top.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    z-index: 0
}

.mm-menu_position-bottom.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-front.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-top.mm-menu_opened ~ .mm-wrapper__blocker {
    z-index: 1
}

.mm-menu_position-front {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}

.mm-menu_position-front.mm-menu_position-right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.mm-menu_position-bottom, .mm-menu_position-top {
    width: 100%;
    min-width: 100%;
    max-width: 100%
}

.mm-menu_position-top {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
}

.mm-menu_position-top {
    height: 80vh;
    min-height: 140px;
    max-height: 880px
}

.mm-menu_position-bottom {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    top: auto
}

.mm-menu_position-bottom {
    height: 80vh;
    min-height: 140px;
    max-height: 880px
}

.mm-wrapper_opening .mm-menu_position-bottom, .mm-wrapper_opening .mm-menu_position-front, .mm-wrapper_opening .mm-menu_position-top {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-menu_shadow-page:after {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    content: '';
    display: block;
    width: 20px;
    height: 120%;
    position: absolute;
    left: 100%;
    top: -10%;
    z-index: 100;
    -webkit-clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
    clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
    -webkit-box-shadow: var(--mm-shadow);
    box-shadow: var(--mm-shadow)
}

.mm-menu_shadow-page.mm-menu_position-right:after {
    left: auto;
    right: 100%;
    -webkit-clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
    clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%)
}

.mm-menu_shadow-page.mm-menu_position-front:after {
    content: none;
    display: none
}

.mm-menu_shadow-menu {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    -webkit-box-shadow: var(--mm-shadow);
    box-shadow: var(--mm-shadow)
}

.mm-menu_shadow-panels .mm-panels > .mm-panel {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    -webkit-box-shadow: var(--mm-shadow);
    box-shadow: var(--mm-shadow)
}

.mm-menu_theme-white {
    --mm-color-border: rgba(0, 0, 0, 0.1);
    --mm-color-button: rgba(0, 0, 0, 0.3);
    --mm-color-text: rgba(0, 0, 0, 0.7);
    --mm-color-text-dimmed: rgba(0, 0, 0, 0.3);
    --mm-color-background: #fff;
    --mm-color-background-highlight: rgba(0, 0, 0, 0.06);
    --mm-color-background-emphasis: rgba(0, 0, 0, 0.03);
    --mm-shadow: 0 0 10px rgba(0, 0, 0, 0.2)
}

.mm-menu_theme-dark {
    --mm-color-border: rgba(0, 0, 0, 0.3);
    --mm-color-button: rgba(255, 255, 255, 0.4);
    --mm-color-text: rgba(255, 255, 255, 0.85);
    --mm-color-text-dimmed: rgba(255, 255, 255, 0.4);
    --mm-color-background: #333;
    --mm-color-background-highlight: rgba(255, 255, 255, 0.08);
    --mm-color-background-emphasis: rgba(0, 0, 0, 0.1);
    --mm-shadow: 0 0 20px rgba(0, 0, 0, 0.5)
}

.mm-menu_theme-black {
    --mm-color-border: rgba(255, 255, 255, 0.25);
    --mm-color-button: rgba(255, 255, 255, 0.4);
    --mm-color-text: rgba(255, 255, 255, 0.75);
    --mm-color-text-dimmed: rgba(255, 255, 255, 0.4);
    --mm-color-background: #000;
    --mm-color-background-highlight: rgba(255, 255, 255, 0.2);
    --mm-color-background-emphasis: rgba(255, 255, 255, 0.15);
    --mm-shadow: none
}

body.modal-open .mm-slideout {
    z-index: unset
}

.mobile-panel {
    display: none;
}

.filters-btn {
    display: none;
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
    font-family: "RobotoMedium";
    position: relative;
}

.filters-btn.active:after {
    display: block;
    content: "Скрыть фильтры";
    font-family: "RobotoMedium";
    font-size: 16px;
    color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #33AFA0;
    padding: 17px 30px;
    border-radius: 10px;
}

@media only screen and (max-width: 1250px) {
    body {
        font-size: 14px;
    }

    .top-line, .header, .content, .footer-top, .footer-bottom {
        padding: 0 15px;
    }

    .rooms, .inputs {
        width: auto;
    }

    .rooms {
        min-width: 380px;
    }

    .filter-block.select {
        width: 130px;
    }

    .filter-block .select-selected {
        text-overflow: ellipsis;
        overflow-x: hidden;
    }

    .cart-info__thumb {
        width: 60px;
        height: 60px;
        margin: auto;
    }

    .main-slider .owl-nav {
        right: 30px;
    }

    .bnr-slider.content {
        padding: 0;
    }

    .objects.owl-carousel .object,
    .slider-goods__item {
        height: 420px;
    }

    .news__item {
        max-height: 430px;
    }

    .bnr-slider.content {
        max-width: calc(100% - 30px);
    }

    .new-cart-info__thumb {
        max-width: 100%;
    }

    .cart-info__photo, .new-cart-info__photo {
        max-height: 250px;
    }

    .object__title {
        min-height: 36px;
    }

    .content.posts {
        padding: 0;
    }

}

@media only screen and (max-width: 1130px) {
    h1, h2 {
        font-size: 28px;
    }

    .menu__item {
        margin: 0 12px;
    }

    .main-slider__content {
        top: 290px;
        left: 30px;
        right: 30px;
    }

    .main-filter {
        top: 170px;
        left: 30px;
        right: 30px;
    }
    .main-filter_mini {
        top: 84px;
    }

    .tabs__nav {
        top: 100px;
    }

    .main-content > h1 {
        top: 30px;
    }

    .tabs__btn, .select-filter, .btn, .news__link {
        font-size: 16px;
    }

    .btn {
        padding: 22px 60px;
    }

    .go-map {
        padding: 13px 20px;
        font-size: 14px;
        max-width: 100px;
        float: right;
    }

    .slider-goods__content, .sidebar-list__content {
        padding: 0 15px 0 15px;
    }

    .slider-goods__phone {
        padding: 0 15px;
    }

    .phone-number {
        font-size: 14px;
    }

    .on-map {
        width: 49%;
        margin-left: 2%;
    }

    .options {
        width: 49%;
        padding: 15px;
    }

    .options__label {
        margin-right: 15px;
    }

    .bnr__content {
        top: 15px;
    }

    .bnr__title {
        font-size: 28px;
    }

    .bnr__text p {
        font-size: 16px;
    }

    .bnr__link {
        max-width: 280px;
    }

    .articles__item {
        margin-right: 15px;
        width: calc(25% - 12px);
    }

    .bnr, .articles {
        margin-bottom: 0;
    }

    .bnr.content {
        margin-bottom: 30px;
    }

    .news__item {
        width: 49%;
        margin-right: 2%;
        max-height: 360px;
    }

    .news__title h3 {
        font-size: 28px;
    }

    .news__text p {
        font-size: 18px;
    }

    .inputs.floor {
        max-width: 190px;
    }

    .filter-block {
        margin: 0 7.5px;
    }

    .filter-block .submit {
        padding: 13px 20px;
    }

    .filter-block.select {
        width: 120px;
    }

    .content-header__actions {
        display: block;
    }

    .sorting-block {
        margin-bottom: 15px;
    }

    .object {
        margin-right: 15px;
        margin-bottom: 15px;
        width: calc(25% - 12px);
    }

    .object__title {
        min-height: 36px;
    }

    .object__content {
        padding: 0 15px 0 15px;
    }

    .object__phone, .object__actions {
        padding: 0 15px;
    }

    .bnr-slider {
        margin-bottom: 15px;
    }

    .bnr-slider ~ .object:nth-child(4n+4) {
        margin-right: 15px;
    }

    .cart-sidebar, .cart-info__infos {
        max-width: 235px;
        margin-left: 15px;
    }

    .cart-content, .cart-info__photos {
        width: calc(100% - 250px);
    }

    .sidebar-list__item {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .cart-info__info {
        padding: 15px;
    }

    .cart-data__metro {
        font-size: 16px;
    }

    .cart-info__photo {
        max-height: 250px;
    }

    .object-info-all {
        margin-bottom: 0;
    }

    .similar .objects.owl-carousel,
    .similar .slider-goods {
        margin-bottom: 30px;
    }

    .slider-goods__wrap-img {
        min-height: 160px;
    }

    .search-actions {
        padding: 40px 30px;
    }

    .search-item__data {
        margin-right: 30px;
    }

    .search-item__link {
        margin-left: 30px;
    }

    .plans__plan {
        margin-right: 15px;
        margin-bottom: 15px;
        max-height: 140px;
    }
    .wrap-plans__title,
    .wrap-plans h2 {
        padding-left: 0;
        margin-bottom: 30px;
    }

    .calc-input__title {
        min-height: 38px;
    }

    .calc-input__input {
        padding-right: 40px;
    }

    .calc-input__perc {
        right: 30px;
    }

    .object-video {
        margin-top: 30px;
    }

    .posts .articles__item {
        margin-bottom: 15px;
    }

    .wrap-question {
        padding: 40px 30px;
    }

    .question__call {
        max-width: 100%;
    }

    .new-cart .wrap-object-info {
        max-width: 100%;
    }
}

@media only screen and (max-width: 1000px) {
    .filters-btn {
        display: block;
    }
    .mobile-panel {
        display: block;
        height: 60px;
        border-bottom: 1px solid #E0E0E0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        z-index: 9;
    }

    .mobile-panel:after {
        content: "";
        display: block;
        clear: both;
    }

    .mobile-btn {
        display: block;
        width: 40px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        float: left;
    }

    .mobile-btn .line {
        display: inline-block;
        vertical-align: middle;
        background: #333;
        position: relative;
        width: 16px;
        height: 2px;
        left: 0;
        margin-top: -3px;
        border: 0px;
    }

    .mobile-btn .line:before {
        content: '';
        width: 100%;
        position: absolute;
        top: -5px;
        left: 0;
        height: 2px;
        background: #333;
    }

    .mobile-btn .line:after {
        content: '';
        width: 100%;
        position: absolute;
        bottom: -5px;
        left: 0;
        height: 2px;
        background: #333;
    }

    .mobile-btn .menu-text {
        display: none;
    }

    .m-logo {
        float: left;
        width: calc(100% - 80px);
        height: 60px;
        line-height: 60px;
        text-align: center;
    }

    .m-logo .logo {
        display: inline-block;
        vertical-align: middle;
        margin: 0;
    }

    .m-sign-reg-btn {
        display: block;
        float: right;
        width: 40px;
        height: 60px;
        line-height: 60px;
        background: none;
        position: relative;
    }

    .m-sign-reg-btn > svg {
        stroke: #333;
        width: 16px;
        max-height: 16px;
    }

    .m-sign-reg-btn.active:before, .m-sign-reg-btn.active:after {
        position: absolute;
        top: 18px;
        left: 18px;
        content: "";
        height: 20px;
        width: 2px;
        background: #333;
    }

    .m-sign-reg-btn.active:before {
        transform: rotate(45deg);
    }

    .m-sign-reg-btn.active:after {
        transform: rotate(-45deg);
    }

    .m-sign-reg-btn.active > svg {
        display: none;
    }

    .top-line .select-city, .top-line__actions .fav, .wrap-header, .top-line__actions .sign-reg > svg, .top-line__actions .sign-reg .sep {
        display: none;
    }

    .top-line__actions {
        background: white;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 15px;
        text-align: center;
        z-index: 9;
        box-shadow: 0 2px 21px rgba(7, 19, 33, .12);
        display: none;
    }

    .top-line__actions .sign-reg {
        display: block;
        width: 100%;
    }

    .top-line__actions .sign-reg a {
        display: block;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .close-m {
        width: 40px;
        height: 59px;
        position: fixed;
        top: -60px;
        left: 0;
        text-indent: -9999px;
        z-index: 9;
        background: white;
    }

    .close-m:before, .close-m:after {
        position: absolute;
        top: 18px;
        left: 18px;
        content: "";
        height: 20px;
        width: 2px;
        background-color: #333;
    }

    .close-m:before {
        transform: rotate(45deg);
    }

    .close-m:after {
        transform: rotate(-45deg);
    }

    .mm-menu {
        top: 60px;
    }

    .mm-menu_offcanvas {
        width: 100%;
        max-width: 100%;
    }

    .mm-panels > .mm-panel {
        background: white;
        padding: 20px 10px;
    }

    .mm-wrapper__blocker {
        top: 60px;
        z-index: -1;
    }

    .select-city {
        width: 100%;
        background: white;
        border: 1px solid #E0E0E0;
        border-radius: 8px;
        padding: 17px 20px;
        margin-bottom: 20px;
    }

    .select-city > svg {
        display: none;
    }

    .select-city .select-selected {
        width: 100%;
        font-size: 16px;
        padding: 0;
        position: relative;
        padding-right: 30px;
    }

    .select-city .select-selected:hover {
        text-decoration: none;
    }

    .select-city .select-selected:before {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -5.5px;
        right: 3px;
        width: 0;
        height: 0;
        border: solid #727272;
        border-width: 0 2px 2px 0;
        padding: 3px;
        transform: rotate(45deg);
        transition: all .2s;
    }

    .select-city .select-selected.select-arrow-active:before {
        transform: rotate(-135deg);
        margin-top: -2px;
    }

    .select-city .select-items {
        top: 50px;
    }

    .select-city .select-items div {
        font-size: 16px;
    }

    .menu__item {
        margin: 0 0 10px;
    }

    .mm-listitem__text {
        padding: 0;
        font-size: 16px;
        color: #333;
    }

    .mm-listitem:after {
        display: none;
    }

    .mm-listitem a:hover {
        color: #33AFA0;
        text-decoration: underline;
    }

    .menu .add.mm-listitem__text {
        margin-top: 20px;
        font-family: "RobotoMedium";
        color: #33AFA0;
        position: relative;
    }

    .menu .add.mm-listitem__text:before {
        content: "+";
        margin-right: 2px;
    }

    .menu .fav.mm-listitem__text {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: #828282;
        margin-top: 20px;
    }

    .menu .fav.mm-listitem__text > svg {
        fill: #828282;
        width: 18px;
        max-height: 18px;
        margin-right: 12px;
    }

    .wrap-top-line {
        padding-top: 60px;
    }

    .top-line {
        height: auto;
    }

    .tabs {
        margin-top: 20px;
    }

    .top-line, .header, .content, .footer-top, .footer-bottom {
        padding: 0 20px;
    }

    .main-filter {
        left: 20px;
        right: 20px;
    }

    .select-filter {
        height: 50px;
    }

    .btn {
        padding: 17px 30px;
    }

    .select-filter .select-items div, .select-filter .select-selected {
        padding: 13px 20px;
    }

    .wrap-values {
        padding: 0 20px;
    }

    .wrap-values {
        height: 50px;
        line-height: 50px;
    }

    .wrap-inputs {
        padding: 20px;
    }

    .filter-btn {
        min-width: auto;
    }

    .main-slider .owl-nav {
        bottom: 20px;
    }

    .content.flex {
        display: block;
    }

    .options {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .on-map {
        margin-left: 0;
        width: 100%;
        max-width: 470px;
        margin: 0 auto;
    }

    .bnr__content {
        left: 40px;
        right: 40px;
        top: 10px;
        padding: 0 15px;
    }

    .bnr__text p br {
        display: none;
    }

    .bnr__title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .bnr__text {
        margin-bottom: 10px;
    }

    .articles__item {
        width: calc(33.3333% - 10px);
    }

    .articles__text {
        padding: 15px;
    }

    .news__item {
        max-height: 290px;
    }

    .footer-bottom__copy {
        margin-right: 150px;
    }

    .filter-btn {
        display: block;
    }

    .wrap-filter {
        display: none;
        max-width: 400px;
        margin: 0 auto;
        position: relative;
    }

    .top-filter, .middle-filter {
        display: block;
        margin-bottom: 0;
    }

    .filter-block {
        margin: 0 0 15px;
        height: auto;
    }

    .filter-block:last-child {
        margin: 0;
    }

    .inputs.floor {
        max-width: 100%;
    }

    .filter-block.select {
        width: 100%;
    }

    .filter-block .submit {
        width: 100%;
        margin-top: 60px;
    }

    .bottom-filter {
        display: block;
        margin-top: 15px;
    }

    .filter-block_submit-reset {
        display: flex;
        flex-direction: column-reverse;
    }

    .more-param {
        position: absolute;
        bottom: 125px;
        left: 0;
        width: 100%;
    }

    .go-map {
        margin: 0;
        white-space: nowrap;
        max-width: inherit;
    }

    .object {
        width: calc(33.3333% - 10px);
    }

    .object:nth-child(4n+4) {
        margin-right: 15px;
    }

    .object:nth-child(3n+3) {
        margin-right: 0;
    }

    .bnr-slider ~ .object:nth-child(3n+3), .bnr-slider ~ .object:nth-child(4n+5) {
        margin-right: 15px;
    }

    .bnr-slider ~ .object:nth-child(3n+4) {
        margin-right: 0;
    }

    .bnr__loc {
        margin-bottom: 0;
    }

    .bnr__price {
        margin-bottom: 15px;
    }

    .bnr__content {
        left: 20px;
        right: 20px;
    }

    .bnr__hide {
        top: 10px;
        right: 20px;
    }

    .bnr-slider .owl-nav {
        bottom: 20px;
        right: 20px;
    }

    .wrap-cart-content {
        display: block;
    }

    .cart-content {
        width: 100%;
        margin-bottom: 30px;
    }

    .cart-sidebar {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }

    .sidebar-list {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .sidebar-list__item {
        width: 270px;
        margin-right: 15px;
    }

    .sidebar-list__item:last-child {
        margin-right: 0;
    }

    .search-actions {
        padding: 22px 20px;
    }

    .select-filter .select-selected:after {
        right: 15px;
    }

    .wrap-values:after {
        right: 15px;
    }

    .search-item__number {
        padding: 0 15px;
    }

    .agency .search-item__img, .search-item__data, .cart-agency__img, .search-item__img, .search-item__info {
        margin-right: 15px;
    }

    .search-item__link {
        margin-left: 0;
    }

    .goods {
        margin: 15px 0;
    }

    .goods__item {
        margin-right: 15px;
    }

    .back-block__link {
        font-size: 14px;
    }

    .cart-person {
        padding: 15px;
    }

    .cart-person__data {
        min-width: auto;
        margin-right: 15px;
    }

    .new-cart-info__infos {
        max-width: 235px;
        padding: 15px;
        margin-left: 15px;
    }

    .new-cart-info__photos {
        width: calc(100% - 250px);
    }

    .new-cart-info__photo {
        max-height: 220px;
    }

    .new-cart-info__table tr th, .new-cart-info__table tr td {
        padding: 5px;
    }

    .new-cart-info__table tr th {
        padding-left: 0;
    }

    .new-cart-info__table tr td {
        padding-right: 0;
    }

    .new-cart-info__phone .phone-number {
        font-size: 14px;
    }

    .object-prices {
        padding: 15px;
    }

    .object-company__doc-link {
        margin-bottom: 10px;
    }

    .plans__plan {
        max-height: 120px;
    }

    .wrap.bt {
        padding: 0;
        border: 0;
    }

    .wrap-post-content {
        display: block;
    }

    .post-content {
        width: 100%;
        margin-bottom: 30px;
    }

    .post p {
        margin-bottom: 15px;
    }

    .posts .articles__item:nth-child(4n) {
        margin-right: 15px;
    }

    .posts .articles__item:nth-child(3n) {
        margin-right: 0;
    }

    .wrap-question {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .question {
        justify-content: space-between;
    }

    .question__header {
        margin-right: 90px;
    }

    .search-text {
        padding: 0;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 767px) {
    ._hide-mobile {
        display: none;
    }
    h1, h2 {
        font-size: 24px;
    }

    .main-content > h1 {
        position: static;
        color: #333;
        margin-bottom: 20px;
    }

    .tabs__nav {
        position: static;
        margin-bottom: 20px;
    }

    .tabs__btn {
        border: 1px solid #33AFA0;
        color: #33AFA0;
        font-size: 14px;
    }

    .tabs__btn_active {
        background: #33AFA0;
        color: white;
    }

    .main-filter {
        position: static;
        margin-bottom: 30px;
        display: block;
    }

    .select-filter {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .select-filter .select-selected, .wrap-values, .select-filter:nth-child(3) .select-selected {
        border: 0;
        border: 1px solid #E0E0E0;
        border-radius: 10px;
    }

    .select-items, .wrap-inputs {
        box-shadow: 0 2px 21px rgba(7, 19, 33, .12);
    }

    .wrap-values:after {
        right: 30px;
    }

    .filter-btn {
        max-width: 100%;
        width: 100%;
    }

    .main-slider__content {
        top: inherit;
        bottom: 50px;
        left: 20px;
    }

    .main-slider__content > p:first-child {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .main-slider__content > p:nth-child(2) {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .main-slider .owl-nav {
        bottom: 10px;
        right: 10px;
    }

    .content__title_slider {
        min-height: 30px;
    }

    .content__title_slider h2 {
        font-size: 18px;
        line-height: 120%;
        margin-bottom: 20px;
    }

    .bnr, .bnr .bnr__img {
        height: 260px;
    }

    .bnr__img img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
    }
    .bnr_img {
        height: auto;
    }
    .bnr_img .bnr__img {
        height: auto;
    }

    .bnr_img  .bnr__img img {
        position: relative;
        max-width: 100%;
    }

    .bnr__content {
        left: 40px;
        right: 40px;
        top: 20px;
    }

    .bnr__title {
        text-align: center;
    }

    .bnr__text {
        margin-bottom: 20px;
    }

    .bnr__link {
        max-width: 230px;
        margin: 0 auto;
    }

    .articles {
        flex-wrap: wrap;
    }

    .articles__item {
        width: calc(50% - 10px);
        margin-bottom: 10px;
    }

    .news {
        display: block;
    }

    .news__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    .news__item .news__text {
        display: none;
    }

    .news__link {
        margin: 0 auto;
    }

    .footer-top {
        display: block;
        position: relative;
    }

    .footer-wrap-menu {
        margin-right: 0;
        flex: auto;
        display: block;
        position: relative;
    }

    .footer-wrap-menu:after {
        content: "";
        display: block;
        clear: both;
    }

    .footer-actions {
        flex: auto;
    }

    .footer-menu {
        width: 50%;
    }

    .footer-menu__item:last-child {
        margin-bottom: 10px;
    }

    .footer-menu:last-child {
        position: absolute;
        top: 0;
        right: 0;
    }

    .footer-actions {
        position: absolute;
        bottom: -5px;
        right: 3%;
        width: 47%;
    }

    .footer-actions__share {
        margin-top: 15px;
    }

    .footer-bottom {
        display: block;
        text-align: center;
    }

    .footer-bottom__copy {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .content-meta {
        display: none;
    }

    .content-header {
        display: block;
    }

    .content-header__title {
        text-align: center;
        margin: 20px 0;
    }

    .sorting-block {
        width: 100%;
        margin-bottom: 0;
    }

    .go-map {
        display: none;
    }

    .objects {
        display: block;
    }

    .object, .object:nth-child(3n+3), .object:nth-child(4n+4), .bnr-slider ~ .object:nth-child(3n+3), .bnr-slider ~ .object:nth-child(4n+5), .bnr-slider ~ .object:nth-child(3n+4), .bnr-slider ~ .object:nth-child(4n+4) {
        width: 100%;
        max-width: 280px;
        margin-right: 0;
        margin: 0 auto 15px;
    }

    .object__wrap-img {
        height: 190px;
    }

    .object__img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: inherit;
    }

    .bnr-slider.content {
        max-height: 190px;
    }

    .bnr-slider.content .bnr__img {
        max-height: 190px;
    }

    .bnr-slider.content .bnr__title {
        text-align: left;
    }

    .owl-carousel .owl-item img {
        width: auto;
        min-width: 100%;
    }

    .bnr__hide-bnr {
        font-size: 0;
        padding: 7px 13px;
    }

    .bnr__hide-bnr > svg {
        margin-left: 0;
    }

    .bnr-slider .owl-nav {
        bottom: 10px;
        right: 10px;
    }

    .content-header__views {
        display: none;
    }

    .cart-info {
        display: block;
    }

    .cart-info__photos {
        width: 100%;
        margin-bottom: 15px;
    }

    .cart-info__infos {
        margin: 0 auto;
    }

    .object-info {
        padding: 15px;
    }

    .object-info {
        overflow: auto;
        -ms-overflow-style: none;
        overflow: -moz-scrollbars-none;
        -webkit-overflow-scrolling: touch;
    }

    .object-info__table tr th, .object-info__table tr td {
        width: auto;
        padding: 7px 10px;
        white-space: nowrap;
    }

    .object-info-all {
        padding: 15px;
    }

    .slider-goods__img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: inherit;
    }

    .objects.owl-carousel .object,
    .slider-goods__item {
        height: auto;
    }

    .wrap-values:after {
        right: 15px;
    }

    .search-bg {
        display: none;
    }

    .search-actions {
        position: static;
        padding: 20px 0;
    }

    .search-title {
        margin-bottom: 20px;
        color: #333333;
    }

    .search-filter {
        display: block;
    }

    .search-filter .select-filter:first-child {
        max-width: 100%;
    }

    .search-filter .select-filter:nth-last-child(2) .select-selected {
        border: 1px solid #E0E0E0;
    }

    .search-item {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .search-item:before {
        font-size: 16px;
        padding: 0;
        margin-right: 15px;
    }

    .wrap-search-item {
        padding: 20px 0;
    }

    .agency .search-item__img, .search-item__img, .search-item__info {
        display: none;
    }

    .search-item__agency-name {
        font-size: 16px;
    }

    .search-item__data {
        margin-right: 0;
        width: calc(100% - 50px);
        margin-bottom: 20px;
    }

    .search-item__actions {
        margin-left: 50px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .search-item__link {
        margin-bottom: 0;
        margin-right: 30px;
        font-size: 12px;
        padding: 8px 15px;
    }

    .goods {
        display: block;
    }

    .goods__item {
        max-width: 270px;
        margin: 0 auto 20px;
    }

    .goods__item:nth-child(4n) {
        margin-right: auto;
    }

    .wrap-cart-agency {
        padding: 20px 0;
    }

    .cart-agency {
        display: block;
    }

    .cart-agency__img {
        margin: 0 auto 20px;
    }

    .cart-agency__title, .cart-agency__address, .cart-agency__phone, .cart-agency__link, .search-item__name, .cart-person__name, .cart-person__mail, .cart-person__title, .object-company__doc-name, .calc-list__btn, .object-info-all__btn {
        font-size: 16px;
    }

    .cart-agency__info {
        margin-top: 20px;
    }

    .search-item__link {
        margin-left: 50px;
    }

    .agency .search-item__link {
        margin-left: 0;
    }

    .cart-person {
        padding: 20px;
        display: block;
    }

    .cart-person__img {
        width: 260px;
        height: 260px;
        margin: 0 auto 20px;
        display: block;
    }

    .cart-person__pro {
        padding: 10px 34px;
    }

    .cart-person__bottom {
        margin-top: 20px;
    }

    .cart-person__info {
        margin-top: 20px;
    }

    .person-objs-title, .cart-person {
        margin-bottom: 15px;
    }

    .content.new-cart {
        margin-top: 20px;
    }

    .cart-data__address {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cart-data__actions {
        display: block;
    }

    .cart-data__metro {
        margin-bottom: 20px;
    }

    .new-cart-info {
        display: block;
    }
    .new-cart-info .new-cart-info__infos {
        display: block;
    }

    .new-cart-info__photos {
        width: 100%;
        margin-bottom: 30px;
    }

    .new-cart-info__thumb {
        max-height: 90px;
    }

    .new-cart-info__infos {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    .cart-content > .new-cart-info__infos {
        display: none;
    }

    .object-prices__title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
    }

    .prices-table tr th, .prices-table tr td {
        font-size: 12px;
    }

    .prices-table tr th:nth-child(3), .prices-table tr td:nth-child(3) {
        display: none;
    }

    .object-company__title {
        font-size: 18px;
    }

    .object-company__bottom-bar {
        display: block;
    }

    .object-company__link {
        display: block;
        margin-bottom: 10px;
    }

    .object-company__link:last-child {
        margin-bottom: 0;
    }

    .object-company__params .object-company__title, .object-company__docs .object-company__title {
        text-align: center;
    }

    .object-company {
        padding: 20px;
    }
    .wrap-plans__title,
    .wrap-plans h2 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
    }

    .plans {
        display: block;
    }

    .plans__plan {
        width: 280px;
        height: 280px;
        max-height: 280px;
        margin: 0 auto 20px;
    }

    .plans__plan:nth-child(4n) {
        margin-right: auto;
    }

    .wrap-calc {
        padding: 20px;
    }

    .calc-title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
    }

    .calc-inputs {
        display: block;
        margin-bottom: 20px;
    }

    .calc-input {
        margin-right: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .calc-input__title {
        min-height: inherit;
        margin-bottom: 10px;
        text-align: center;
    }

    .calc-input__input {
        width: 100%;
    }

    .calc-list-title {
        text-align: center;
    }

    .calc-list__table tr:first-child {
        display: none;
    }

    .calc-list__table, .calc-list__table tbody, .calc-list__table tr, .calc-list__table td {
        display: block;
    }

    .calc-list__table tr {
        border-bottom: 1px solid #E0E0E0;
    }

    .calc-list__table tr td {
        padding: 10px;
        border: 0;
        font-size: 16px;
        padding-left: 50%;
        position: relative;
    }

    .calc-list__table tr td:before {
        content: "";
        font-size: 14px;
        line-height: 150%;
        color: #828282;
        position: absolute;
        top: 10px;
        left: 0;
        display: block;
    }

    .calc-list__table tr td:nth-child(2):before {
        content: "Ставка";
    }

    .calc-list__table tr td:nth-child(3):before {
        content: "Срок кредита";
    }

    .calc-list__table tr td:nth-child(4):before {
        content: "Перв. взнос";
    }

    .calc-list__table tr td:nth-child(5):before {
        content: "Платеж в месяц";
    }

    .wrap-calc-list {
        max-height: 650px;
    }

    .object-info-all__title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
    }

    .object-video__link {
        max-height: 250px;
    }

    .cart-info__photo {
        max-height: 225px;
    }

    .posts-header {
        padding: 0;
    }

    .posts .articles__item:nth-child(3n) {
        margin-right: 15px;
    }

    .articles__item:nth-child(2n), .posts .articles__item:nth-child(4n), .posts .articles__item:nth-child(2n) {
        margin-right: 0;
    }

    .post h4 {
        font-size: 18px;
    }

    .doc-links__name {
        font-size: 16px;
    }

    .question {
        display: block;
    }

    .question__header {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .question__title {
        font-size: 18px;
    }

    .question__text p {
        font-size: 16px;
    }

    .question__phone {
        text-align: left;
    }

    .question__call {
        width: 100%;
        max-width: 230px;
    }

    .call-form__inlines {
        display: block;
    }

    .call-form__inline {
        margin-right: 0;
        width: 100%;
    }

    .call-form__checkbox-span:before {
        top: 10px;
    }

    .search-input {
        margin-bottom: 20px;
        padding: 0;
    }

    .search-input__input {
        border: 1px solid #E0E0E0;
        height: 50px;
        line-height: 50px;
        padding: 0 20px;
        border-radius: 10px;
    }

    .search-input__input {
        font-size: 16px;
    }

    .search-input__input::-webkit-input-placeholder {
        font-size: 16px;
    }

    .search-input__input::-moz-placeholder {
        font-size: 16px;
    }

    .search-input__input:-moz-placeholder {
        font-size: 16px;
    }

    .search-input__input:-ms-input-placeholder {
        font-size: 16px;
    }

    .search-text {
        text-align: left;
    }

    .search-item__numbs {
        display: none;
    }

    .post p {
        word-break: break-word;
    }

    .articles__item {
        margin-right: 0;
        width: 100%;
    }

    .content.posts {
        max-width: 270px;
        margin: 0 auto;
    }

    .posts .articles__item:nth-child(3n) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 479px) {
    .tabs__btn {
        min-width: 50%;
    }

    .tabs__btn {
        padding: 10px;
    }

    .main-slider__content {
        bottom: 15px;
    }

    .content__title_slider h2 {
        max-width: calc(100% - 100px);
    }

    .options__label {
        white-space: nowrap;
        flex: 2;
    }

    .options__list {
        flex: 4;
    }

    .options__block:last-child {
        display: block;
    }

    .options__block:last-child .options__label {
        margin-bottom: 15px;
        display: block;
    }

    .options__title h3 {
        font-size: 18px;
        text-align: center;
    }

    .on-map {
        height: 190px;
    }

    .bnr__content {
        top: 10px;
    }

    .bnr__title {
        line-height: 28px;
    }

    .bnr__text p {
        font-size: 14px;
    }

    .articles {
        display: block;
    }

    .articles__item {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 15px;
    }

    .articles__img {
        height: 190px;
        position: relative;
    }

    .articles__img img {
        transition: transform .3s ease;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        margin: auto;
        height: 100%;
        object-fit: contain;
    }

    .news__item {
        max-height: 212px;
    }

    .news__content {
        padding: 35px 20px;
    }

    .news__title {
        margin-bottom: 10px;
    }

    .news__title h3 {
        font-size: 24px;
        line-height: 120%;
    }

    .news__text {
        margin-bottom: 20px;
    }

    .news__text p {
        font-size: 14px;
    }

    .news__link {
        padding: 15px 25px;
    }

    .footer-bottom {
        padding: 0 10px;
    }

    .rooms__text > span {
        display: none;
    }

    .rooms {
        min-width: inherit;
    }

    .filter-block {
        justify-content: space-between;
    }
    .rooms__text {
        font-size: 13px;
        padding: 4px 4px;
        white-space: normal;
        text-align: center;
    }
    .rooms__text:after {
        right: 0px;
    }

    .what {
        display: block;
    }

    .what__filter {
        display: block;
        margin-bottom: 15px;
    }

    .what__filter:last-child {
        margin-bottom: 0;
    }

    .bnr__content {
        left: 20px;
        right: 20px;
        top: 10px;
    }

    .bnr__loc {
        font-size: 12px;
    }

    .bnr__title {
        font-size: 18px;
    }

    .bnr__price {
        font-size: 14px;
    }

    .bnr__call-link {
        font-size: 0;
        display: inline-block;
    }

    .bnr__call-link > span {
        margin-right: 0;
    }

    .pagination__link, .pagination__dots, .pagination__current {
        font-size: 14px;
        width: 30px;
        height: 30px;
        line-height: 28px;
    }

    .sidebar-list {
        display: block;
    }

    .sidebar-list__item, .sidebar-list__item:last-child {
        margin: 0 auto 15px;
    }

    .articles__item:nth-child(2n) {
        margin-right: auto;
    }

    .search-filter .select-filter .select-selected {
        padding-right: 30px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .search-item__actions {
        max-width: calc(100% - 50px);
    }

    .cart-person__img {
        max-width: 100%;
        max-height: 240px;
    }

    .cart-person__data {
        margin-right: 0;
    }

    .new-cart-info__thumb {
        max-height: 60px;
    }

    .new-cart-info__photo, .cart-info__photo {
        max-height: 140px;
    }
}
