@charset "UTF-8";
/*  Мобильная панель снизу */
.c-mobile-panel {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: #5a6063;
}

.c-mobile-panel:before {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    top: -4px;
    height: 4px;
    width: 100%;
    background-image: url("../img/icons/mobile-panel/border.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100%;
    background-color: #fab22c;
}

.c-mobile-panel > .mp-inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.c-mobile-panel > .mp-inner > .mp-link {
    width: 25%;
    height: 100%;
    box-sizing: border-box;
}

.c-mobile-panel > .mp-inner > .mp-link > span {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.c-mobile-panel > .mp-inner > .mp-link > span > img {
    display: block;
    height: 100%;
    max-height: 20px;
    width: auto;
    height: auto;
    margin-bottom: 6px;
}

.c-mobile-panel > .mp-inner > .mp-link > span > .mp-text {
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 500;
    color: #fff;
}

@media (max-width: 575px) {
    html {
        padding-bottom: 64px;
    }

    .c-mobile-panel {
        display: block;
    }
}

/* Поиск */
.c-mobile-search {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    border-bottom: 1px solid #cacaca;
    background-color: #ffd552;
}

.c-mobile-search > .ms-inner {
    padding: 16px 12px 12px 12px;
}

.c-mobile-search > .ms-inner .ms-field-group {
    position: relative;
}

.c-mobile-search > .ms-inner .ms-field-group > input {
    display: block;
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    padding-left: 72px;
    padding-right: 102px;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    background-image: url("../img/icons/mobile-search/search.svg");
    background-repeat: no-repeat;
    background-position: left 42px center;
    background-size: 20px;
    background-color: #fff;
    font-size: 2rem;
}

.c-mobile-search > .ms-inner .ms-field-group > input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.32);
}

.c-mobile-search > .ms-inner .ms-field-group > input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.32);
}

.c-mobile-search > .ms-inner .ms-field-group > input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.32);
}

.c-mobile-search > .ms-inner .ms-field-group > input::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.32);
}

.c-mobile-search > .ms-inner .ms-field-group > input::placeholder {
    color: rgba(0, 0, 0, 0.32);
}

.c-mobile-search > .ms-inner .ms-field-group > button {
    position: absolute;
    display: block;
    top: 4px;
    width: auto;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    color: #000;
    background-color: transparent;
}

.c-mobile-search > .ms-inner .ms-field-group > button.ms-search-button {
    right: 4px;
    height: 32px;
    border-radius: 6px;
    padding: 0 24px;
    background-color: #ffd552;
    font-size: 1.8rem;
}

.c-mobile-search > .ms-inner .ms-field-group > button.ms-menu-button {
    left: 4px;
}

.c-mobile-search > .ms-inner .ms-field-group > button.ms-menu-button > img {
    display: block;
    width: 32px;
    height: auto;
}

@media (max-width: 575px) {
    html {
        padding-top: 69px;
    }

    .c-mobile-search {
        display: block;
    }
}

/* Мобильное меню */
body.mobile-sidebar-menu-active {
    overflow: hidden;
}

.c-mobile-sidebar-menu {
    position: fixed;
    z-index: 1003;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 260px;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    padding-top: 48px;
    padding-bottom: 48px;
    background-color: #fff;
    -webkit-transform: translateX(-260px);
    transform: translateX(-260px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.c-mobile-sidebar-menu.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.c-mobile-sidebar-menu > .msm-inner > .msm-list > .msm-dashboard-button {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.c-mobile-sidebar-menu > .msm-inner > .msm-list > .msm-link {
    box-sizing: border-box;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding-left: 32px;
    padding-right: 32px;
}

.c-mobile-sidebar-menu > .msm-inner > .msm-list > .msm-link:hover {
    background-color: rgba(255, 213, 82, 0.24);
}

.c-mobile-sidebar-menu > .msm-inner > .msm-list > .msm-link > span {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
}

.c-mobile-sidebar-menu > .msm-inner > .msm-list > .msm-link > span > .msm-icon {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.c-mobile-sidebar-menu > .msm-inner > .msm-list > .msm-link > span > .msm-icon > img {
    width: 100%;
    max-width: 18px;
    height: 100%;
    max-height: 18px;
}

.c-mobile-sidebar-menu > .msm-inner > .msm-list > .msm-link > span > .msm-text {
    padding-left: 12px;
    white-space: nowrap;
    font-weight: 700;
    font-size: 2.1rem;
}

.c-mobile-sidebar-menu > .msm-inner > .msm-list > hr {
    margin: 0;
    margin-top: 16px;
    margin-bottom: 16px;
    padding: 0;
    width: 100%;
    height: 1px;
    background-color: #f1f1f1;
    border: 0;
    border-top: 1px solid #eee;
}

/* остальное */
#open-cab-btn {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    width: auto;
    height: auto;
    line-height: 1;
    border-radius: 8px;
    padding: 8px 12px;
    border: 2px solid #f9b100;
    background-color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    line-height: 1;
    font-weight: 700;
    font-size: 1.9rem;
}

#open-cab-btn img {
    width: 16px;
    margin-right: 6px;
}

.mobile-sidebar-menu-overlay {
    position: fixed;
    z-index: 1002;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.24);
}
.landing-metrics {
    display: none !important;
}
