@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
/*
font-family: 'Open Sans', sans-serif;
*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap');

/*
font-family: 'Roboto', sans-serif;
*/

@font-face {
    font-family: 'Proxima Nova Bold';
    src: url('../fonts/ProximaNova-Bold.eot');
    src: url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ProximaNova-Bold.woff2') format('woff2'),
    url('../fonts/ProximaNova-Bold.woff') format('woff'),
    url('../fonts/ProximaNova-Bold.ttf') format('truetype'),
    url('../fonts/ProximaNova-Bold.svg#ProximaNova-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

img {
    max-width: 100%;
}

* {
    outline: none !important;
}

a, button {
    cursor: pointer;
}

body {
    padding-bottom: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #000;

}

/*хэдэр*/

.header-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.toggle-menu {
    background: transparent;
    border: 0;
    margin-left: -46px;
    margin-right: 14px;
}

.toggle-menu span {
    width: 20px;
    height: 3px;
    display: block;
    background: #FF7A00;
    margin: 6px 0;
}

.header-l {
    display: flex;
    align-items: center;
}

.header-l p {
    font-size: 10px;
    line-height: 15px;
    margin: 0 55px 0 22px;
}

.orange-border-button {
    background: #FFF;
    border: 2px solid #FF7A00;
    border-radius: 10px;
    padding: 8px 18px;
    font-family: 'Proxima Nova Bold';
    font-size: 14px;
    line-height: 24px;
    color: #000 !important;
    text-decoration: none !important;
    transition: 0.7s;
}

.orange-border-button:hover {
    transition: 0.7s;
    background: #ff800c;
    color: #fff !important;
}

.orange-border-button img {
    margin-right: 15px;
}

.header-wrapper .orange-border-button {
    display: inline-flex;
    align-items: center;
}

.count {
    font-family: 'Proxima Nova Bold';
    font-size: 8px;
    line-height: 10px;
    width: 16px;
    height: 16px;
    color: #FFFFFF;
    border-radius: 50%;
    background: #FF7A00;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
}

.user-icon, .cart-icon {
    margin-right: 10px;
    position: relative;
}

.cart {
    margin: 0 70px;
    text-decoration: none !important;
    display: flex;
    align-items: flex-end;
}

.user-name, .amount {
    font-family: 'Proxima Nova Bold';
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    color: #000;
    text-decoration: none !important;
}

.header-r {
    display: flex;
    align-items: center;
}

.user {
    text-decoration: none !important;
    display: flex;
    align-items: flex-end;
}

.user button {
    background: transparent;
    border: 0;
}


header {
    position: relative;
    padding: 20px 0 16px 0;
}

.user button.dropdown-toggle {
    background: transparent;
    border: 0;
    display: flex;
    align-items: flex-end;
}

.user button.dropdown-toggle:after {
    display: none;
}

.user .dropdown-menu {
    left: auto !important;
    right: 0;
    max-width: 330px;
    width: 330px;
    transform: none !important;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgb(0 0 0 / 8%);
    border-radius: 10px;
    border: 0;
    padding: 30px;
    top: calc(100% + 5px) !important;
}

/*меню*/
.menu-content {
    display: none;
    background: #F4F4F4;
    padding: 20px 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.menu-content ul {
    list-style: none;
    padding-left: 0;
}

.li-title {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    color: #000;
    padding-bottom: 12px;
    border-bottom: 1px solid #CDCDCD;
}

.block-menu > ul > li > a {
    padding: 0;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 30px;
    color: #000;
    text-decoration: none;
}

.submenu > li > a {
    font-size: 11px;
    line-height: 25px;
    color: #000;
    padding-left: 10px;
    text-decoration: none !important;
}

.submenu-toggle > a {
    position: relative;
}

.submenu-toggle > a:after {
    position: absolute;
    background: url(../images/arrow-menu.svg);
    width: 7px;
    height: 10px;
    content: "";
    display: block;
    top: 9px;
    left: -16px;
}

.block-menu {
    margin-bottom: 30px;
}

.submenu-toggle > a.active:after {
    transform: rotate(-90deg);
}

.submenu {
    display: none;
}

li.block-menu > ul > li:not(.li-title) {
    padding-left: 17px;
}

/*топ секция*/
.top-section {
    background: #F4F4F4;
    padding-bottom: 7px;
}

.search-input input {
    padding: 9px 15px 9px 50px;
    background: #FFF;
    box-shadow: 0 10px 30px rgb(0 0 0 / 8%);
    border-radius: 10px 0 0 10px;
    font-family: 'Proxima Nova Bold';
    font-size: 14px;
    line-height: 24px;
    border: 0;
    width: 100%;
}

.search-form {
    background: #FFF;
    box-shadow: 0 10px 30px rgb(0 0 0 / 8%);
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    align-items: center;
}

.search-input {
    flex-grow: 1;
    position: relative;
}

.search-input:after {
    position: absolute;
    background: url(../images/search.svg);
    width: 25px;
    height: 25px;
    content: "";
    display: block;
    top: 9px;
    left: 17px;
}

.select-tm {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/arrow-select.svg) no-repeat calc(100% - 19px) 19px, #fff;
    border: 0;
    font-family: 'Proxima Nova Bold';
    border-left: 1px solid #F1F1F1;
    font-size: 12px;
    line-height: 15px;
    padding: 14px 50px 13px 18px;
    min-width: 175px;
}

.search-input input::placeholder {
    color: #CDCDCD;
}

.search-input input::-webkit-input-placeholder {
    color: #CDCDCD;
}

.search-input input::-moz-placeholder {
    color: #CDCDCD;
}

.search-input input:-moz-placeholder {
    color: #CDCDCD;
}

.search-input input:-ms-input-placeholder {
    color: #CDCDCD;
}

.orange-button {
    font-family: 'Proxima Nova Bold';
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #FFF !important;
    background: linear-gradient(180deg, #FF8A1E 0%, #FF7A00 100%);
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    border: 0;
    transition: 0.5s;
    padding: 9px 25px;
    text-decoration: none !important;
}
.orange-button:disabled, .orange-button[disabled] {
    background: #d8d7d7;
    cursor: no-drop;
}

.orange-button:hover {
    opacity: 0.8;
    transition: 0.5s;
}

.row {
    margin: 0 -8px;
}

.row > * {
    padding: 0 8px;

}

form.search-wrapper {
    padding: 25px 0;
}

.banner-caption {
    position: absolute;
    top: 70px;
    left: 40px;
    right: 100px;
}

.banner-caption h3 {
    font-family: 'Proxima Nova Bold';
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.02em;
    color: #FFF;
    margin-bottom: 10px;
}

.banner-block {
    position: relative;
}

.banner-caption p {
    font-size: 10px;
    line-height: 15px;
    color: #FFF;
    margin-bottom: 0;
}

.owl-theme .owl-dots .owl-dot span {
    display: none;
}

.owl-theme .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    background: #CDCDCD;
    border-radius: 50%;
    margin: 0 6px;
}

.owl-theme .owl-dots .owl-dot.active {
    background: #FF7A00;
}

.owl-carousel .owl-nav .owl-prev span, .owl-carousel .owl-nav .owl-next span {
    display: none;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
    width: 17px;
    height: 54px;
    background: url("../images/arrow-slider.svg") !important;
    position: absolute;
    top: calc(50% - 26px);
    margin: 0 !important;
}

.owl-carousel .owl-nav .owl-prev {
    transform: rotate(180deg);
    left: -41px;
}

.owl-carousel .owl-nav .owl-next {
    right: -41px;
}

.owl-theme .owl-nav {
    margin-top: 0;
}

.owl-theme .owl-dots {
    margin-top: 5px;
}

/*контент*/

.h2-tm {
    font-family: 'Proxima Nova Bold';
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.02em;
}

.h-wrapper {
    display: flex;
    align-items: center;
}

.h-wrapper > * {
    margin-bottom: 0;
}

.h-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.h-wrapper > a {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00 !important;

}

.card-tm h3 {

    font-size: 12px;
    line-height: 15px;
    margin-bottom: 4px;
}

.card-tm h3 a {
    font-size: 12px;
    line-height: 15px;
    color: #000 !important;
}

.card-price p {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    color: #000;
    margin-bottom: 0;
}

.card-price p span {
    font-size: 8px;
    line-height: 12px;
    text-decoration: line-through;
    color: #7C7C7C;
    display: block;
}

.card-price a {
    background: linear-gradient(
            180deg, #FF8A1E 0%, #FF7A00 100%);
    border-radius: 10px;
    padding: 3px 14px;
}

.card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.city {
    font-size: 10px;
    line-height: 15px;
    margin-bottom: 5px;
}

.time {
    font-size: 10px;
    line-height: 15px;
    color: #A4A5A6;
    margin-right: 5px;
}

.star {
    width: 6px;
    height: 6px;
    display: block;
    background: url("../images/star.svg");
}

.star-active {
    background: url("../images/star-active.svg");
}

.stars {
    display: flex;
    margin-top: 3px;
}

.rating {
    display: flex;
    align-items: center;
}

.card-tm {
    padding-bottom: 10px;
}

.content-section {
    padding-top: 40px;
    padding-bottom: 35px;
}

.card-tm img {
    margin-bottom: 4px;
    border-radius: 10px;
}

.h3-tm {
    font-family: 'Proxima Nova Bold';
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: #000;
    margin-bottom: 0;
}

.cards-block {
    margin-bottom: 20px;
}

.cards-block-border {
    border-bottom: 1px solid #F1F1F1;
    padding-bottom: 20px;
}

.mb-tm {
    margin-bottom: 30px;
}

.bottom-section {
    background: #F1F1F1;
    padding: 33px 0 25px 0;
}

.content-r {
    max-width: 310px;
    margin-left: auto;
}

.banner-sidebar-block {
    margin-bottom: 59px;
}

/*футер*/

footer {
    color: #fff;
}

.footer-top {
    background: #373737;
    padding: 35px 0;
}

.footer-bottom {
    background: #1E1E1E;
    padding: 25px 0 14px 0;
}

.statistics-footer h3 {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 14px;
}

.statistics-footer-block p {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 8px;
    line-height: 10px;
    margin-bottom: 0;
}

.statistics-footer-block p span {
    font-weight: normal;
    display: block;
}

.statistics-footer-block {
    display: flex;
    align-items: center;
}

.statistics-footer-block img {
    margin-right: 5px;
}

.statistics-footer-info {
    display: flex;
}

.statistics-footer-block:not(:nth-last-child(1)) {
    margin-right: 35px;
}

.footer-top-l {
    display: flex;
}

.statistics-footer:nth-child(1) {
    padding-right: 35px;
    border-right: 1px solid rgb(255 255 255 / 10%);
    margin-right: 35px;
}

.footer-top-wrapper {
    display: flex;
    justify-content: space-between;
}

.footer-top-r p {
    font-size: 10px;
    line-height: 15px;
    margin-bottom: 4px;
    text-align: right;
}

.social-network-footer {
    display: flex;
    align-items: center;
}

.social-network-footer a {
    margin: 0 8px;
}

.social-network-footer a:hover {
    opacity: 0.8;
}

.social-network-footer a:nth-last-child(1) {
    margin-right: 0;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
}

.menu-footer {
    list-style: none;
    padding-left: 0;
    display: flex;
}

.menu-footer li:not(:nth-last-child(1)) {
    margin-right: 25px;
}

.menu-footer li a {
    font-size: 10px;
    line-height: 15px;
    color: #FFF !important;
}

.footer-bottom-r a {
    font-size: 10px;
    line-height: 15px;
    color: #fff;
    margin-right: 30px;
}

.footer-bottom-r .dropdown-toggle {
    font-size: 12px;
    line-height: 15px;
    font-family: 'Proxima Nova Bold';
    color: #fff;
    background: transparent;
    border: 0 !important;
    display: flex;
    align-items: center;
}

.footer-bottom-r .dropdown-menu {
    background: #000;
    padding: 0 10px 3px 10px;
    width: fit-content;
    min-width: 0;
}

.footer-bottom-r .dropdown-menu a {
    display: table;
    margin: 0;
}

.footer-bottom-r .dropdown-toggle::after {
    background: url(../images/arrow-lang.svg);
    width: 7px;
    height: 5px;
    border: 0;
}

.footer-bottom-r .dropdown-toggle > img {
    margin-right: 7px;
}

/*добавить объявление*/

.breadcrumb-item, .breadcrumb-item a, .breadcrumb-item.active {
    font-size: 10px;
    line-height: 15px;
    color: #7C7C7C;
}

.breadcrumb {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
}

.breadcrumb-section {
    background: #F4F4F4;
    padding: 24px 0 13px 0;
}

.ad-title-l input {
    font-family: 'Proxima Nova Bold';
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.02em;
    border: 0;
    border-bottom: 1px solid #7C7C7C;
    background: transparent;
    width: 100%;
}

.ad-title-l input::placeholder {
    color: #7C7C7C;
}

.ad-title-l input::-webkit-input-placeholder {
    color: #7C7C7C;
}

.ad-title-l input::-moz-placeholder {
    color: #7C7C7C;
}

.ad-title-l input:-moz-placeholder {
    color: #7C7C7C;
}

.ad-title-l input:-ms-input-placeholder {
    color: #7C7C7C;
}

.ad-title-l {
    flex-grow: 1;

}

.ad-title-r {
    width: 310px;
    margin-left: auto;
}

.progress {
    background: #FFF;
    box-shadow: 0 6px 22px rgb(0 0 0 / 12%);
    border-radius: 10px;
    height: 12px;
    padding: 2px;
}

.progress-bar {
    background: linear-gradient(270deg, rgba(255, 248, 81, 0.219) -19.64%, rgba(255, 153, 0, 0.219) 41.42%, rgba(255, 0, 0, 0.207) 100%), linear-gradient(0deg, #E38800 -50%, #FFFDCF 95.83%);
    border-radius: 10px;
    height: 8px;
}

.ad-title-r p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 1px;
    display: flex;
    justify-content: space-between;
}

.ad-title-r p span {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
}

.content-section-add {
    padding-top: 15px;
}

.category-ad-l p {
    font-size: 10px;
    line-height: 15px;
    margin-bottom: 0;
}

p.selected-category {
    font-size: 12px;
    line-height: 18px;
}

.category-ad {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.main-photo p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 15px;
    color: #fff;
}

.main-photo {
    position: relative;
    margin-bottom: 6px;
}

.add-photo {
    position: relative;
    margin-bottom: 6px;
    cursor: pointer;
    min-height: auto;
    padding: 0;
    border: 0;
}
.dropzone {
    padding: 0;
    border: 1px solid rgb(241, 241, 241);
}
.dropzone .dz-message {
    margin: 0;
}
.dropzone .dz-preview {
    margin: 5px;
}

a.delete {
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2000;
    cursor: pointer !important;
}
a.delete img {
    cursor: pointer !important;
}

.add-photo-last p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 5px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 8px;
    line-height: 9px;
    color: #B9B9B9;
    margin-bottom: 0;
    padding: 0 8px;
}

.add-img .row {
    margin: 0 -3px;
}

.add-img .row > * {
    padding: 0 3px;
}

.add-img {
    margin-bottom: 25px;
}

.add-info h3, .add-video h3 {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 13px;
}

.select-tm-2, .input-tm {
    background: #F1F1F1;
    border-radius: 10px;
    font-size: 12px;
    line-height: 15px;
    color: #000;
    padding: 13px 30px 12px 14px;
    width: 100%;
    border: 0;
}

.video-input {
    position: relative;
    margin-bottom: 13px;
}

.video-input label {
    color: #7C7C7C;
    left: 16px;
}

.video-input label {
    position: absolute;
    font-size: 12px;
    line-height: 15px;
    color: #7C7C7C;
    left: 16px;
    top: 13px;
}

.video-input  label:nth-child(1), .video-input  textarea:nth-child(1) {
    font-size: 7px;
    line-height: 10px;
    top: 7px;
}

.video-input label.active, .video-input input:focus~ label, .video-input textarea:focus~ label {
    font-size: 7px;
    line-height: 10px;
    top: 7px;

}

.video-input label ~ textarea, .video-input label ~ select, .video-input label ~ input {
    padding: 14px 30px 9px 14px;

}

.delete-video {
    position: absolute;
    right: 11px;
    top: 6px;
    cursor: pointer;
}

.video-input-red label {
    color: #FF0000;
}

.video-input-red input {
    background: #FFF2F2;
    box-shadow: inset 0 -1px 0 #FF0000;
    border: 0;
}

.add-video {
    margin-bottom: 30px;
    max-width: 275px;
}

.w-tm {
    max-width: 275px;

}

.select-tm-2 {
    background: url(../images/arrow-select.svg) no-repeat calc(100% - 12px) 16px, #F1F1F1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ad-price {
    padding: 20px 25px;
    background: #FFF;
    box-shadow: 0 10px 30px rgb(0 0 0 / 8%);
    border-radius: 10px;
    margin-bottom: 30px;
}

.radio-tm, .checkbox-tm {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 13px;
}

.radio-tm input, .checkbox-tm input {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.radio-tm label, .checkbox-tm label {
    font-size: 12px;
    line-height: 15px;
    font-family: 'Proxima Nova Bold';
    margin-bottom: 0;
}

.radio-tm > span, .checkbox-tm > span {
    margin-right: 8px;
    background: url("../images/checkbox.svg");
    width: 18px;
    height: 18px;
    display: block;
}

.checkbox-tm input:checked ~ span {
    background: url("../images/checkbox-active.svg");
}

textarea.input-tm {
    padding-top: 25px;
}

.single-choice h3, .multiple-choice h3 {
    font-size: 10px;
    line-height: 15px;
    color: #7C7C7C;
    margin-bottom: 7px;
}

.radio-tm span {
    background: url("../images/radio.svg");
}

.radio-tm input:checked ~ span {
    background: url("../images/radio-active.svg");
}

.add-delivery {
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgb(0 0 0 / 8%);
    border-radius: 10px;
    padding: 20px 25px;
    margin-top: 30px;
    margin-bottom: 43px;
}
.add-delivery label {
    left: 1em;
    font-size: 10px;
}

.p-tick {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 26px;
}

.p-tick:after {
    content: "";
    display: block;
    background: url("../images/tick.svg");
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;

}

.p-tick-orange:after {
    background: url("../images/tick-active.svg");

}

.progress-add {
    margin: 30px auto 0 auto;
    max-width: 244px;
}

.favorites {
    background: url("../images/heart.svg");
    Width: 16px;
    Height: 14px;
    display: block;
    position: absolute;
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
    top: 12px;
    right: 11px;
    cursor: pointer;
}

.favorites.active {
    background: url("../images/heart-active.png");
}

.card-img {
    position: relative;
}

/*объявление*/

.h1-title {
    font-family: 'Proxima Nova Bold';
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
}

.address img {
    margin-right: 7px;
}

.address {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    margin-bottom: 0;
    line-height: 12px;
    color: #FF7A00;
    display: flex;
    align-items: center;
}

.date-ad {
    font-size: 10px;
    line-height: 15px;
    color: #7C7C7C;
    margin-bottom: 0;
}

.ad-address {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.ad-prise p {
    font-family: 'Proxima Nova Bold';
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.ad-prise-old {
    font-size: 12px;
    line-height: 15px;
    color: #7C7C7C;
    margin-left: 12px;
    text-decoration: line-through;
}

.like {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
}

.like img {
    margin-right: 4px;
}

.ad-prise {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    margin-top: 28px;
}

.number {
    width: 50%;
    border: 2px solid #FF961F;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 2px 15px;
}

.number {
    width: 50%;
    border: 2px solid #FF961F;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 2px 15px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    background: #fff;
}

.plus, .minus {
    display: flex;
    align-items: center;

    cursor: pointer;
}

.number input {
    flex-grow: 1;
    margin: 0 10px;
    text-align: center;
    border: 0;
    font-family: 'Proxima Nova Bold';
    padding: 10px 3px;
    font-size: 14px;
    line-height: 15px;
}

.count-ad .orange-button {
    display: flex;
    align-items: center;
    width: calc(50% + 8px);
    justify-content: center;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -8px;
}

.count-ad .orange-button img {
    width: 16px;
    margin-right: 14px;
}

.count-ad {
    display: flex;
    margin-bottom: 30px;
}

.specifications-ad p {
    font-size: 12px;
    line-height: 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #CDCDCD;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.description-ad {
    margin-top: 16px;
}

.description-ad p {
    font-size: 12px;
    line-height: 18px;
}

.complaint {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00 !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
}

.complaint img {
    margin-right: 10px;
}

.seller-block {
    background: #F1F1F1;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.seller-top {
    display: flex;
}

.seller-top-l {
    width: 50px;
    margin-right: 12px;
}

.seller-top-r {
    width: calc(100% - 62px);
}

.seller-top-r h3 {
    font-family: 'Proxima Nova Bold';
    font-size: 16px;
    line-height: 19px;
}

.seller-top-r h3 span {
    font-size: 12px;
    line-height: 15px;
    display: block;
}

.seller-top-r p {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.seller-top-r p a {
    color: #FF7A00 !important;

}

.seller-top-l img {
    border-radius: 50%;
}

.seller-bottom .row {
    margin: 0 -3px;
}

.seller-bottom .row > * {
    padding: 0 3px;
}

.seller-bottom .orange-button {
    padding: 9px 20px;
    width: 100%;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.seller-bottom .orange-button:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, transparent 0%, #FF8A1E 50%, #FF7A00 100%);
    display: block;
    width: 60%;
    border-radius: 0 10px 10px 0;
}

.calculation-shipping {
    background: #FFF;
    box-shadow: 0 10px 30px rgb(0 0 0 / 8%);
    border-radius: 10px;
    padding: 15px 30px;
    height: 100%;
}

.calculation-shipping h3 {
    font-family: 'Proxima Nova Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 15px;
}

.calculation-shipping h3 span {
    color: #FF7A00;
}

.company-delivery-block {
    display: flex;
    margin-bottom: 10px;
}

.company-delivery-block-l {
    width: 35px;
    margin-right: 4px;
}

.company-delivery-block-r {
    width: calc(100% - 39px);
}

.company-delivery-block-r p {
    font-size: 10px;
    line-height: 11px;
    margin-bottom: 0;

}

.company-delivery-block-r p span {
    font-weight: bold;

}

.seller {
    border-top: 1px solid #F1F1F1;
    border-bottom: 1px solid #F1F1F1;
    padding: 30px 0;
}

.reviews-ad {
    padding: 30px 0 10px 0;
    border-bottom: 1px solid #F1F1F1;
    margin-bottom: 30px;
}

.reviews-ad-title-top h3 {
    font-family: 'Proxima Nova Bold';
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    display: flex;
    justify-content: space-between;
}

.reviews-ad-title-top h3 span {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 18px;
}

.star-ad .stars {
    margin-right: 5px;
}

.star-ad .star {
    width: 8px;
    height: 8px;
    background-size: cover;
    margin-right: 1px;
}

.star-ad {
    display: flex;
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
}

.reviews-ad-title-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reviews-ad-title-bottom a {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00;
}

.avatar {
    width: 50px;
    height: 50px;
    font-family: 'Roboto', sans-serif;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 30px;
    line-height: 35px;
}

.avatar-color-1 {
    background: #FF7A00;
}

.avatar-color-2 {
    background: #FFA800;
}

.avatar-color-3 {
    background: #000000;
}

.avatar-color-4 {
    background: #FFEC3E;
}

.name-review {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
}

.reviews-ad-block-text h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.name-review .stars {
    margin-left: 5px;
    margin-top: 0;
}

.date-review {
    font-size: 10px;
    line-height: 15px;
    color: #7C7C7C;
}

.reviews-ad-block-img {
    width: 50px;
    margin-right: 12px;
}

.reviews-ad-block-text {
    width: calc(100% - 62px);
}

.reviews-ad-block-text p {
    font-size: 12px;
    line-height: 18px;
}

.reviews-ad-block {
    display: flex;
    margin-bottom: 15px;
}

.reviews-ad-title-top {
    margin-bottom: 12px;
}

.content-r-ad {
    padding-top: 125px;
}

/*результаты поиска*/

.search-result-title h2 {
    font-family: 'Proxima Nova Bold';
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.count-filter span {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 8px;
    line-height: 11px;
    color: #FFF;
    background: #FF7A00;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1px;
    right: -5px;
}

.count-filter {
    position: relative;
    cursor: pointer;
}

.filter-search {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.navbar-collapse.collapsing {
    margin: 8px -15px;
}
.filter-search a {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00;
    margin-left: 12px;
    display: block;
}

.search-result-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-tm-horizontal .card-img {
    width: 150px;
    flex-shrink: 0;
    margin-right: 14px;
}

.card-tm-horizontal .card-text {
    width: 50%;

}

.card-tm-horizontal .card-r {
    width: 28%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.card-tm-horizontal {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #F1F1F1;
    margin-bottom: 10px;

}

.category-card, .category-card a {
    font-size: 10px;
    line-height: 15px;
    color: #A4A5A6;
    margin-bottom: 9px;
}

.card-tm-horizontal .card-text {
    padding: 11px 0;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.card-tm-horizontal .card-price p {
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    letter-spacing: -0.02em;
    margin-bottom: 7px;
}

.card-tm-horizontal .card-price {
    flex-flow: column;
    align-items: flex-end;
}

.card-tm-horizontal .card-price p span {
    font-size: 12px;
    line-height: 15px;
    color: #7C7C7C;
}

.card-tm-horizontal .card-price a {
    padding: 9px 25px;
}

.card-tm-horizontal .card-price a img {
    margin-right: 15px;
    border-radius: 0;
}

.card-tm-horizontal .card-img img {
    margin-bottom: 1px;
}

.page-link-rotate img {
    transform: rotate(180deg);
}

li.page-item {
    width: 8.333333%;
}

.page-link {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #000 !important;
    padding: 7px 7px 5px 7px;
    border: 0;
    border-bottom: 2px solid transparent !important;
    display: flex;
    align-items: center;
    height: 100%;
    background: transparent !important;
    justify-content: center;
}

.page-link:hover, .page-item.active .page-link {
    border: 0;
    border-bottom: 2px solid #FF9900 !important;
}

.pagination:after {
    background: #E5E5E5;
    height: 2px;
    width: 100%;
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}

.pagination {
    position: relative;
}

.pangination-tm {
    margin-top: 30px;
    margin-bottom: 25px;
}

.pangination-tm .orange-border-button {
    margin-bottom: 10px;
}

/*регистрация*/

.registration-l .add-photo {
    width: 177px;
    height: 177px;
    background: #CDCDCD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    overflow: hidden;
}

.registration-l .add-photo input {
    border-radius: 50%;
    width: 177px;
    height: 177px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.registration-l .add-photo p {
    margin-bottom: 0;
    font-family: 'Proxima Nova Bold';
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}

.registration-l {
    width: 250px;
}

.registration-r {
    width: calc(100% - 250px);
}

.registration-wrapper {
    display: flex;
    padding: 30px 98px 43px 40px;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgb(0 0 0 / 8%);
    border-radius: 10px;
}

.registration-block h3 {
    font-family: 'Proxima Nova Bold';
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    margin-bottom: 13px;
}

.add-ad-wrapper {
    margin-top: 25px;
    margin-bottom: 25px;
}

.add-ad-wrapper .progress-add {
    margin-top: 0;
}

.registration-block {
    margin-bottom: 25px;
}

/*восстановление пароля*/

.password-recovery-wrapper {
    padding: 45px 90px 77px 97px;
    flex-flow: column;
}

.p-top {
    font-size: 10px;
    line-height: 15px;
    margin-bottom: 13px;
    max-width: 270px;
}

.code .row {
    margin: 0 -4px;
}

.code .row > * {
    padding: 0 4px;
}

.resubmit {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 49px;
}

.no-account p {
    font-family: 'Proxima Nova Bold';
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.no-account a {
    width: calc(50% - 4px);
    display: block;
    text-align: center;
    margin-bottom: 13px;
}

.social-network-recovery p {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 13px;
}

.social-network-tm {
    display: flex;
}

.social-network-tm a {
    background: #FFF;
    border: 2px solid #FF7A00;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 10px;
    width: 88px;
    display: flex;
    align-items: center;
    height: 42px;
    justify-content: center;
}

.social-network-tm a:not(:nth-last-child(1)) {
    margin-right: 8px;
}

/*личный кабинет - объявления*/

.personal-account-title-l {
    width: 71px;
    margin-right: 23px;
    flex-shrink: 0;
}

.personal-account-title-r {
    width: calc(100% - 23px);
}

.personal-account-title {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.personal-account-title-r p {
    font-family: 'Proxima Nova Bold';
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.personal-account-title-r h3 {
    font-size: 12px;
    line-height: 15px;
}

.statistics-pa-block p {
    font-family: 'Proxima Nova Bold';
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.statistics-pa-block p img {
    margin-left: 4px;
}

.statistics-pa-block span {
    font-size: 12px;
    line-height: 15px;
    display: block;
    margin-bottom: 15px;
}

.new-messages a {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.new-messages a img {
    margin-right: 12px;
}

.menu-profile {
    list-style: none;
    padding-left: 0;
}

.menu-profile li {
    margin-bottom: 15px;
}

.menu-profile li a {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    color: #000 !important;
}

.menu-profile li a span {
    font-size: 8px;
    line-height: 10px;
    background: #000;
    margin-left: 3px;
    width: 13px;
    height: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tab-tm {
    border-bottom: 2px solid #CDCDCD;
}

.tab-tm .nav-item .nav-link span {
    font-family: 'Proxima Nova Bold';
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.02em;
    color: #FF7A00;
    margin-right: 10px;
}

.tab-tm .nav-item .nav-link {
    border: 0;
    border-bottom: 2px solid #CDCDCD;
    display: flex;
    align-items: center;
    padding: 3px 40px;
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    height: 34px;
    color: #000 !important;
}

.tab-tm .nav-item .nav-link:hover, .tab-tm .nav-item.show .nav-link, .tab-tm .nav-link.active {
    border-bottom: 2px solid #FF7A00;
}

.tab-tm .nav-item {
    margin-bottom: -2px;
}

span.old-tab {
    color: #000 !important;
}

.tab-title {
    font-family: 'Proxima Nova Bold';
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.02em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tab-title a {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    color: #000 !important;
}

.tab-title a img {
    margin-right: 9px;
}

.p-tab-title {
    font-size: 10px;
    line-height: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.p-tab-title span.checkbox-tm label {
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00;
}

.tab-content-tm {
    padding-top: 23px;
}

.checkbox-card {
    position: absolute;
    left: 9px;
    top: 9px;
}

.checkbox-card span {
    background: url("../images/tick-2.svg");
}

.personal-account-wrapper {
    padding-top: 25px;
}

/*изменить профиль*/

.edit-avatar-img {
    width: 155px;
    margin-right: 10px;
}

.edit-avatar-text {
    width: calc(100% - 165px);
}

.edit-avatar {
    display: flex;
    align-items: center;
}

.edit-avatar button {
    width: 100%;
    display: flex;
    align-items: center;
}

.edit-avatar button:not(:nth-last-child(1)) {
    margin-bottom: 10px;
}

.edit-avatar-text p {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 20px;
}

.social-networks-profil h3 {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 16px;
}

span.name-social-network {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 10px;
    line-height: 25px;
    display: flex;
    align-items: center;
}

.custom-switch .custom-control-label::before {
    border-radius: 50%;
    background: #CDCDCD;
    left: 2px;
    top: 6px;
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
    background: #FF7A00;
    right: 2px;
    z-index: 1;
    left: auto;
}

.custom-switch {
    position: relative;
    width: 30px;
}

.custom-switch .custom-control-label::after {
    border: 1px solid #CDCDCD;
    border-radius: 20px;
    left: 0;
    width: 30px;
    height: 20px;
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background: #FFF4EA;
}

.social-network-profil p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.name-social-network span {
    width: 16px;
    margin-right: 8px;
    display: flex;
}

.edit-profile-top {
    margin-bottom: 35px;
    border-bottom: 1px solid #F1F1F1;
    padding-bottom: 40px;
}

.edit-profile-bottom-block h3 {
    font-family: 'Proxima Nova Bold';
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.infi-edit-block h4 {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 13px;
}

.infi-edit-block {
    margin-bottom: 22px;
}

.edit-profile .row {
    margin: 0 -22px;
}

.edit-profile .row > * {
    padding: 0 22px;
}

span.left-position {
    position: absolute;
    left: 9px;
    top: 8px;
}

.input-tm-pl {
    padding-left: 31px;
}

.tel-block p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tel-block p span img {
    margin-right: 5px;
}

.tel-block p span {
    color: #FF7A00;
    cursor: pointer;
}

/*корзина*/

span.basket-title-span {
    display: flex;
}

span.basket-title-span > span:nth-child(1) {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    margin-right: 60px;
    cursor: pointer;
}

span.basket-title-span > span:nth-child(1) img {
    margin-right: 6px;
}

.basket-block-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.basket-block-title .checkbox-tm {
    margin-bottom: 0;
}

.basket-block-title a {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00;
}

.card-tm-basket .card-price .number {
    width: auto;
}

.card-tm-basket .card-r {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 0;
}

.basket-block {
    margin-bottom: 25px;
}

.basket-bottom p {
    font-family: 'Proxima Nova Bold';
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    text-align: right;
}

.basket-bottom .orange-button {
    width: 272px;
    margin-left: auto;
    display: table;
}

.card-tm-basket .checkbox-tm > span {
    background: url(../images/checkbox.svg);
}

/*сообщения*/
.dialog-block {
    display: flex;
}

.dialog-block-img {
    width: 50px;
    margin-right: 14px;
    flex-shrink: 0;
}

.dialog-block-c {
    width: calc(100% - 194px);
}

.dialog-block-r {
    width: 120px;
    margin-left: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

p.name {
    font-weight: normal;
    font-size: 10px;
    line-height: 15px;
    color: #7C7C7C;
    margin-bottom: 3px;
}

.text-message p {
    font-size: 12px;
    line-height: 15px;
}

p.topic {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 5px;
}

p.topic img {
    margin-right: 5px;
}

.dialog-block-r p {
    font-size: 10px;
    line-height: 15px;
    color: #7C7C7C;
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.dialog-block-wrapper {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.text-message p span {
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    color: #FF7A00;
}

.dialog-block + .dialog-block {
    margin-top: 15px;
}

/*переписка*/

.message-title {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
}

.message-title img {
    margin-right: 14px;
}

.message-block {
    display: flex;
    margin-bottom: 15px;
}

.message-block-l {
    width: 20px;
    margin-right: 11px;
    padding-top: 5px;
    flex-shrink: 0;
}

.message-block-r {
    background: #F1F1F1;
    border-radius: 10px;
    padding: 8px 18px 6px 18px;
    display: table;
    max-width: calc(100% - 31px);
    width: auto;
    position: relative;
}

.date-message {
    font-size: 10px;
    line-height: 15px;
    color: #A4A5A6;
    margin-bottom: 0;
}

.message-block-r.message-block-text p:not(.date-message) {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 7px;
}

.message-block-r:after {
    border: 5px solid transparent;
    border-right: 9px solid #F1F1F1;
    display: block;
    content: "";
    position: absolute;
    top: 13px;
    left: -14px;
}

.message-block-left .message-block-r:after {
    border: 5px solid transparent;
    border-left: 9px solid #FFF4EA;
    left: auto;
    right: -14px;

}

.message-block.message-block-left .message-block-r {
    background: #FFF4EA;
    margin-left: auto;
}

.message-wrapper-input textarea {
    font-size: 12px;
    line-height: 18px;
    color: #A4A5A6;
    padding: 10px 17px 10px 17px;
    background: #F1F1F1;
    border-radius: 10px;
    border: 0;
    flex-grow: 1;
}

.message-wrapper-input {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.message-wrapper-input button {
    background: linear-gradient(
            180deg, #FF8A1E 0%, #FF7A00 100%);
    border-radius: 10px;
    border: 0;
    padding: 7px 11px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.message-wrapper-input button:after {
    top: 0;
    left: -5px;
    background: #F1F1F1;
    width: 10px;
    display: block;
    content: "";
}

.message-content {
    padding-bottom: 0;
    margin-bottom: 18px;
    border-bottom: 1px solid #F1F1F1;
}

.img-message h3 {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.img-message h3 a {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00 !important;
}

.img-message h3 a img {
    margin-right: 6px;
}

.img-message-block {
    width: 88px;
    position: relative;
}

.img-message-block:not(:nth-last-child(1)) {
    margin-right: 8px;
}

.img-message-block-wrapper {
    display: flex;
}

.img-message-block-wrapper a.delete {
    top: 2px;
}

.img-message-block span {
    position: absolute;
    bottom: 12px;
    left: 0;
    font-size: 7px;
    line-height: 10px;
    color: #B9B9B9;
    text-align: center;
    width: 100%;
}

.new-message {
    margin-bottom: 40px;
}

/*личный кабинет - продавец*/

.seller-title h3 {
    font-family: 'Proxima Nova Bold';
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.02em;
    margin-bottom: 13px;
}

.seller-name {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.seller-name-img {
    width: 50px;
    margin-right: 12px;
}

.seller-name-text {
    width: calc(100% - 62px);
}

.seller-name-text h4 {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 5px;
}

.seller-name-text p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}

.review-span {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00;
    margin-right: 6px;
    display: block;
}

.count-review {
    font-size: 12px;
    font-family: 'Proxima Nova Bold';
    line-height: 12px;
    margin-left: 4px;
}

.seller-name-text .stars {
    margin-top: 0;
}

.seller-name-text .star {
    width: 10px;
    height: 10px;
    background-size: cover;
}

.seller-info {
    padding: 12px 20px 9px 20px;
    background: #FFF4EA;
    border-radius: 10px;
}

.seller-info p {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 7px;
}

.seller-info p span {
    font-size: 10px;
    line-height: 15px;
    color: #7C7C7C;
}

.seller-info p:nth-last-child(1) {
    margin-bottom: 0;
}

.social-networks-seller {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.social-networks-seller > * {
    width: 50%;
    flex-shrink: 0;
}

.social-networks-seller p {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.social-networks-seller p:after {
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    content: "";
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 50%, #fff 100%);
    width: 50%;
}

.social-network-seller {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.personal-account-l .new-messages a {
    margin-bottom: 10px;
}

.count-filter-seller span {
    top: -4px;
    right: 4px;
}

.list-files p {
    display: flex;
    font-size: 12px;
    line-height: 18px;
    align-items: baseline;
}

.list-files p img {
    margin-right: 6px;
}

.list-files p > span {
    width: calc(100% - 13px);
}

.list-files p span span {
    font-size: 7px;
    line-height: 10px;
    color: #7C7C7C;
    display: block;
}

.statistics-block {
    width: calc(11.11111111% - 9px);
    padding: 18px 18px 13px 18px;
}

.statistics-block:hover {
    background: #FFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.statistics-block:not(:nth-last-child(1)) {
    margin-right: 10px;
}

.statistics-bottom {
    display: flex;
}

.statistics-block-top span {
    font-size: 7px;
    line-height: 10px;
    border-radius: 20px;
    color: #FFF;
    display: block;
    position: absolute;
    padding: 2px 5px;
    white-space: nowrap;
    top: -2px;
    right: -14px;
}

.statistics-block-top {
    display: table;
    position: relative;
    margin-bottom: 5px;
}

.color-1 {
    background: #FF0000;
}

.color-2 {
    background: #27AE60;
}

.color-3 {
    background: #56CCF2;
}

.color-4 {
    background: #000;
}

.color-5 {
    background: #9B51E0;
}

.color-6 {
    background: #2F80ED;
}

.color-7 {
    background: #828282;
}

.color-8 {
    background: #F2C94C;
}

.color-9 {
    background: #FF7A00;
}

.statistics-block-bottom p {
    font-size: 8px;
    font-weight: bold;
    line-height: 10px;
    margin-bottom: 0;
}

.statistics-block-bottom p span {
    font-weight: normal;
}

/*мои заказы - я покупатель*/

.order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.order .checkbox-tm {
    margin-bottom: 0;
}

.order a {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00;
}

p.buyer-name {
    font-size: 12px;
    line-height: 18px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

p.label-tm {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    border-radius: 10px;
    font-size: 8px;
    line-height: 12px;
    color: #FFFFFF;
    padding: 2px 5px;
    display: table;
    margin-bottom: 10px;
}

.label-green {
    background: #8BCE36;
}

.label-gray {
    background: #7C7C7C;
}

.order-block .orange-border-button {
    width: 175px;
}

.order-bottom p {
    font-size: 10px;
    font-family: 'Roboto', sans-serif;
    line-height: 12px;
    color: #FF7A00;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-bottom p img {
    margin-right: 8px;
}

.order-bottom p span {
    cursor: pointer;
}

.order-block {
    margin-bottom: 26px;
}

span.checkbox-tm label span {
    font-size: 7px;
    line-height: 10px;
    color: #7C7C7C;
    display: flex;
    align-items: center;
}

.price-lists .checkbox-tm {
    align-items: flex-start;
    margin-bottom: 16px;
}

.price-lists {
    margin-top: -7px;
    margin-bottom: 25px;
}

.buttin-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttin-wrapper > * {
    width: 280px;
    text-align: center;
}

/*текстовая страница*/

.content-tm h2 {
    font-family: 'Proxima Nova Bold';
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
}

.content-tm h3 {
    font-family: 'Proxima Nova Bold';
    margin-bottom: 25px;
    font-size: 12px;
    line-height: 15px;
}

.content-tm p {
    font-size: 12px;
    margin-bottom: 25px;
    line-height: 18px;
}

.orange-ul {
    list-style: none;
    font-size: 10px;
    line-height: 15px;
    padding-left: 0;
    margin-bottom: 25px;
}

.orange-ul li {
    position: relative;
    padding-left: 13px;
    margin-bottom: 10px;
}

.orange-ul li:after {
    background: #FF7A00;
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content: "";
    top: 4px;
    left: 0;
}

.img-wrapper p {
    font-size: 10px;
    line-height: 15px;
    margin-bottom: 15px;
}

p.signature {
    font-size: 8px;
    color: #999;
    line-height: 10px;
}

.img-block img {
    margin-bottom: 5px;
}

p.line-p {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #CDCDCD;
    display: flex;
    justify-content: space-between;
}

.img-wrapper {
    margin-bottom: 10px;
}

p.p-tab-title .checkbox-tm {
    margin-bottom: 0;
}



.modal-tm .modal-dialog {
    max-width: 400px;

}


.modal-tm .modal-content {
    background: #FFF;
    box-shadow: 0 10px 30px rgb(0 0 0 / 8%);
    border-radius: 10px;
    padding: 50px 60px;
    border: 0;
}

.modal-tm h3 {
    font-family: 'Proxima Nova Bold';
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.modal-tm h3 a {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00;
}

.form-modal button {
    width: 100%;
    margin-bottom: 30px;
}


button.close {
    position: absolute;
    top: 15px;
    right: 20px;
    display: table;
    width: auto!important;
}



.registration-mobil-r {
    display: none;
}




.hidden {
    opacity: 0;
}


.message-block-text .checkbox-tm {
    display: none;
}

.content-section-mobil {
    padding-top: 26px;
}
.h1-title-tm {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.h1-title-tm a {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00;
}

.content-mobil-internal-section-top {
    padding-top: 23px;
}

.return-a a {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    color: #FFF;
    padding: 5px 0 8px 0;
}

.return-a a img {
    margin-right: 11px;
}

.orange-a {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    color: #FF7A00;
    display: block;
}

.content-mobil-internal-section-wrapper {
    height: calc(100vh - 44px);
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    padding-bottom: 21px;
    position: relative;

}

.content-mobil-internal-section .orange-border-button, .content-mobil-internal-section .orange-button {
    width: 100%;
}

.content-mobil-internal-section .orange-border-button {
    padding: 5px;
}

.button-map {
    position: absolute;
    bottom: 120px;
    margin: 0 17px;
    width: calc(100% - 34px)!important;
}

.search-input-mobil button img {
    width: 15px;
}

.search-input-mobil button {
    padding: 0;
    background: transparent;
    margin: 0;
    border: 0;
    position: absolute;
    left: 8px;
    top: 5px;
}

.search-input-mobil {
    position: relative;
    flex-grow: 1;
}


.search-input-mobil input {
    font-size: 12px;
    line-height: 18px;
    padding: 6px 34px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 0;
    width: 100%;
}

.personal-account-mobil-bottom {
    background: #F1F1F1;
    padding: 24px 0 25px 0;
    margin-bottom: -21px;
    margin-top: 24px;
}

.filter-order-block h3 {
    font-size: 10px;
    line-height: 15px;
    color: #7C7C7C;
    background: #F1F1F1;
    padding: 4px 20px;
    margin-bottom: 0;
}

.filter-input-block {
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 40px;
    justify-content: space-between;
}

.filter-input-block:not(:nth-last-child(1)) {
     border-bottom: 1px solid #F1F1F1;
 }

.filter-input-block * {
    margin-top: 0;
    margin-bottom: 0;
}


.filter-input-block-2 {
    height: 50px;
}


.filter-button .orange-border-button {
    width: 88px;
    margin-right: 8px;
}

.filter-button {
    display: flex;
    padding: 0 20px;
}
.filter-button .orange-button {
    width: calc(100% - 96px);
}


a.filter-arrow {
    font-size: 12px;
    line-height: 18px;
    color: #000;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.view-filter a, .view-filter span {
    font-size: 12px;
    line-height: 18px;
    color: #000!important;
    text-decoration: none!important;
    display: flex;
    align-items: center;
    margin-right: 29px;
    cursor: pointer;
}
.view-filter img {
    margin-right: 5px;
}
.view-filter {
    display: flex;
}
.view-filter .view-filter-list {
    padding-left: 18px;
    background: url(/images/mobil/view-filter-1.svg) left no-repeat;
}
.view-filter .view-filter-list.active {
    background: url(/images/mobil/view-filter-1-active.svg) left no-repeat;
}
.view-filter .view-filter-card {
    padding-left: 18px;
    background: url(/images/mobil/view-filter-2.svg) left no-repeat;
}
.view-filter .view-filter-card.active {
    background: url(/images/mobil/view-filter-2-active.svg) left no-repeat;
}


.color-tm-1 {
    background: #FFE927;
}

.color-tm-2 {
    background: #66F423;
}

.color-tm-3 {
    background: #A4A5A6;
}

.color-tm-4 {
    background: #FF0000;
}

.filter-input-block-r p {
    margin-bottom: 0;
    font-size: 7px;
    line-height: 10px;
    border-radius: 10px;
    width: 59px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}





.filter-input-block-no-border {
    border-bottom: 0!important;
    height: 45px;
}

.search-input-mobil-r input {
    background: #F1F1F1;
    border-radius: 10px;
    padding: 10px 20px 10px 15px;
}

.search-input-mobil-r  {
    margin-top: 10px;
}

.search-input-mobil.search-input-mobil-r button {
    padding: 0;
    background: transparent;
    margin: 0;
    border: 0;
    position: absolute;
    left: auto;
    top: 5px;
    right: 8px;
}



.modal-small .modal-dialog {
    max-width: 270px;
}


.modal-small .modal-content {
    background: #FFFFFF;
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px 24px;
}

.modal-small-content h3 {
    font-family: 'Proxima Nova Bold';
    font-size: 12px;
    line-height: 15px;
    display: flex;
    position: relative;
}




.modal-small-content a.orange-border-button,  .modal-small-content a.orange-button {
    display: flex;
    justify-content: flex-start;
    padding-left: 40px;
}
.modal-small-content a:not(:nth-last-child(1)) {
    margin-bottom: 10px;

}

div.orange-border-button:not(:nth-last-child(1)), .modal-small-content select {
    margin-bottom: 10px;

}

.select-tm-3 {
    background: url("../images/mobil/arrow-menu.svg") no-repeat calc(100% - 12px) 16px, #F1F1F1;
}

.modal-small button.close {
    width: 10px!important;
    top: 2px;
    right: 11px;
}

.lang-tm  {
    width: 100%;
    margin-bottom: 10px;
}
.lang-tm .dropdown-toggle {
    background: url("../images/mobil/arrow-menu.svg") no-repeat calc(100% - 12px) 16px, #F1F1F1;
    border-radius: 10px;
    font-size: 12px;
    line-height: 15px;
    color: #000;
    padding: 13px 30px 12px 14px;
    width: 100%;
    border: 0;
    text-align: left;
}
.lang-tm .dropdown-toggle:after {
    display: none;
}
.lang-tm .dropdown-toggle img {
    margin-right: 8px;
}

.lang-tm ul.dropdown-menu {
    padding: 10px;
}

.lang-tm ul.dropdown-menu a {
    font-size: 12px;
    line-height: 15px;
    color: #000;
    padding: 5px 0;
 }


p.p-tm-mobil {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 13px;
}



.error-wrapper {
    padding-left: 25px;
}


.error {
    left: -25px;
    top: -3px;
    position: absolute;
}

.statistics-modal p {
    width: 33%;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
}

.statistics-modal p span {
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-size: 10px;
    line-height: 15px;
    display: block;
 }



.statistics-modal p img {
    margin-right: 3px;
}

.statistics-modal {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    width: calc(100% + 30px);
}

.search-tm-wrapper {
    position: absolute;
    top: 0;
    background: #ff7a00;
    width: 100%;
    z-index: 100;
    left: 0;
    display: flex;
    align-items: center;
    padding: 9px 20px;

}

.search-tm-wrapper>a {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.search-tm-input {
    width: calc(100% - 30px);
    position: relative;
}
.search-tm-input span {
position: absolute;
    top: 1px;
    left: 10px;
}
.search-tm-input button {
    position: absolute;
    right: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    top: 2px;
    width: 17px;
}


.search-tm-input input {
    background: #FFF;
    border-radius: 10px;
    width: 100%;
    font-size: 12px;
    line-height: 18px;
    padding: 5px 33px;
    border: 0;
}



.search-tm-wrapper {
    display: none;
}

.search-tm-wrapper.active {
    display: flex;
}

.modal-tm-2 .modal-content {
    padding: 30px 30px;
}


.modal-tm-2 .registration-wrapper {
    padding: 0;
    box-shadow: none;
}


.modal-320 .modal-dialog {
    max-width: 320px;
}




.modal-content-tm {
    padding: 50px 20px 30px 20px;
}

.modal-320  .content-mobil-internal-section-wrapper {
    justify-content: flex-start;
    height: auto;
}

.modal-320 .content-mobil-internal-section-bottom {
    margin-top: 20px;
}

.modal-large .modal-dialog {
    max-width: calc(100% - 50px);
}

.modal-large .button-map {
    left: 0;
    bottom: 50px;
}

.filter-body {
    position: absolute;
    /*top: 100%;*/
    top: 0;
    z-index: 2000;
    background: #fff;
    left: -320px;
    width: 320px;
    transition: 0.7s;
    padding-bottom: 20px;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}

.filter-body.active {
    transition: 0.7s;
    left: 0;
    box-shadow: 0 0 6px 2px #00000057;
}

a.filter-toggler-2 {
    background: #ff7a00;
    display: flex;
    padding: 8px 20px;
    color: #fff!important;
    font-weight: bold;
    font-size: 15px;
}

a.filter-toggler-2 img {
    margin-right: 10px;
}

.filter-input-block .video-input {
    width: 100%;
}




.search-tm-wrapper-int {
    display: flex;
    align-items: center;
    padding: 17px 0;
}

.search-tm-wrapper-int a {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

















@media screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media screen and (max-width: 1250px) {
    .owl-carousel .owl-nav .owl-next {
        right: -20px;
    }

    .owl-carousel .owl-nav .owl-prev {
        left: -20px;
    }

    .toggle-menu {
        margin-left: -23px;
    }
}

@media screen and (max-width: 1199px) {
    .header-l p {
        margin: 0 25px 0 20px;
    }

    .cart {
        margin: 0 35px;
    }

    .calculation-shipping {
        padding: 15px;
    }

    .registration-wrapper {
        padding: 30px;
    }

    .edit-avatar {
        align-items: flex-start;
        flex-flow: column;
    }

    .edit-avatar > * {
        width: 100%;
    }

    .edit-avatar button {
        justify-content: center;
    }

    .statistics-block {
        width: auto;
    }

    .statistics-bottom {
        flex-flow: wrap;
        justify-content: center;
    }

}

@media screen and (max-width: 991px) {
    .header-l p {
        display: none;
    }

    .logo {
        margin-right: 22px;
    }

    .select-tm {
        min-width: 132px;
    }

    .banner-caption h3 {
        font-size: 16px;
        line-height: 18px;
    }

    .banner-caption {
        top: 38px;
        left: 17px;
        right: 60px;
    }

    .footer-top-wrapper {
        flex-flow: column;
    }

    .footer-top-wrapper > * {
        width: 100%;
    }

    .footer-top-r p {
        text-align: left;
    }

    .footer-top-l {
        margin-bottom: 30px;
    }

    .add-ad-wrapper .progress-add {
        margin-top: 30px;
    }

    .ad-title-r {
        margin-left: 0;
        margin-top: 20px;
    }

    .registration-wrapper > * {
        width: 100%;
    }

    .registration-wrapper {
        flex-flow: column;
    }

    .add-photo {
        margin: auto;
        margin-bottom: 20px;
    }

    .edit-profile .row {
        margin: 0 -15px;
    }

    .edit-profile .row > * {
        padding: 0 15px;
    }

    .new-messages .orange-border-button {
        padding: 8px 15px;
    }

    .tab-tm .nav-item .nav-link {
        padding: 3px 20px;
    }

    .order-block .orange-border-button {
        width: 80px;
    }

    .buttin-wrapper > * {
        width: 220px;
        padding-left: 15px;
        padding-right: 15px;
    }

}

@media screen and (max-width: 767px) {
    .navbar-toggler span {
        width: 12px;
        height: 2px;
        margin: 3px 0;
        background: #fff;
        display: block;
    }

    header {
        background: #FF7A00;
    }

    .navbar-toggler {
        padding: 0;
        border: 0;
    }

    .add-ad-button {
        font-family: 'Proxima Nova Bold';
        font-size: 12px;
        line-height: 15px;
        color: #FFF;
        padding: 6px;
        background: #FF7A00;
        border: 1px solid #FFF;
        border-radius: 5px;
        display: flex;
        align-items: center;
    }

    .add-ad-button img {
        margin-right: 4px;
    }

    .icon-header-mobil a {
        position: relative;
    }

    .icon-header-mobil a span {
        font-family: 'Proxima Nova Bold';
        font-size: 8px;
        line-height: 10px;
        color: #fff;
        background: #000000;
        width: 13px;
        height: 13px;
        display: flex;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -1px;
        right: -5px;
    }

    .navbar-brand {
        margin-right: 0;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .navbar {
        padding: 0;
    }

    .icon-header-mobil a:not(:nth-last-child(1)) {
        margin-right: 10px;
    }

    .container {
        /*padding-right: 10px;
        padding-left: 10px;*/
        max-width: 100%;
    }

    header {
        padding: 8px 0;
    }

    .navbar-nav a {
        font-size: 12px;
        line-height: 36px;
        padding: 0 20px !important;
        background: #fff;
        color: #000 !important;
        display: block;
    }

    .navbar-nav a:not(:nth-last-child(1)) {
        font-size: 12px;
        line-height: 36px;
        padding: 0 20px !important;
        background: #fff;
        border-bottom: 1px solid #F1F1F1;
        color: #000 !important;
        display: block;
    }

    .navbar-collapse.collapse {
        width: 100vw;
        margin-left: -15px;
        margin-right: -15px;
        padding-top: 8px;
    }

    .navbar-nav .dropdown-menu {
        margin: 0;
        border: 0;
        padding: 0;
    }

    .navbar-nav .dropdown-toggle {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-nav .dropdown-toggle:after {
        border: 0;
        background: url(../images/mobil/arrow-menu.svg);
        width: 10px;
        transform: rotate(-90deg);
        height: 7px;
    }

    .navbar-nav li.nav-item.dropdown.show .dropdown-toggle:after {
        transform: rotate(0);
    }

    .navbar-nav li.nav-item.dropdown a.dropdown-item {
        background: #F1F1F1;
        padding-left: 40px !important;
    }

    .navbar-nav li.nav-item.dropdown a.dropdown-item:not(:nth-last-child(1)) {
        background: #F1F1F1;
        padding-left: 40px !important;
        border-bottom: 1px solid #E5E5E5;
    }

    form.search-wrapper {
        display: none;
    }

    .top-section {
        background: transparent;
        padding: 10px 0 0 0;
    }

    .banner-caption h3 {
        font-size: 21px;
        line-height: 26px;
        margin-bottom: 5px;
    }

    .banner-caption p {
        font-size: 10px;
        line-height: 25px;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
    }

    .banner-caption {
        top: 20px;
        left: 18px;
        right: 18px;
        bottom: 20px;
        display: flex;
        justify-content: center;
        flex-flow: column;
    }

    .slider-top .owl-stage {
        padding-left: 0 !important;
    }

    .slider-wrapper {
        margin-right: -15px;
    }

    .content-section {
        padding-top: 26px;
        padding-bottom: 10px;
    }

    .cards-wrapper > .row > * {
        width: 136px;
        flex-shrink: 0;
    }

    .cards-wrapper > .row {
        flex-flow: row;
        max-width: none;
        width: fit-content;
    }

    .cards-wrapper {
        overflow: scroll;
    }

    .Yandex-block {
        background: #FFF;
        box-shadow: 0 10px 30px rgb(0 0 0 / 8%);
        border-radius: 10px;
        padding: 25px;
        text-align: center;
        margin-bottom: 30px;
    }

    .cards-block-border {
        border-bottom: 0;
        margin-bottom: 0;
    }

    .mb-tm {
        margin-bottom: 15px;
    }

    .cards-block:not(:nth-last-child(1)) {
        margin-bottom: 20px;
        border-bottom: 1px solid #F1F1F1;
        padding-bottom: 10px;
    }

    .cards-block {
        margin-right: -15px;
    }

    .cards-wrapper-mobil p.city, .cards-wrapper-mobil .rating, section.bottom-section p.city, section.bottom-section .rating {
        display: none;
    }

    .cards-block .h-wrapper {
        padding-right: 15px;
    }

    .statistics-footer-block {
        display: flex;
        align-items: flex-start;
        flex-flow: column;
        width: 40px;
    }

    .statistics-footer-block img {
        margin-bottom: 5px;
    }

    .statistics-footer-block:not(:nth-last-child(1)) {
        margin-right: 8px;
    }

    .statistics-footer:nth-child(1) {
        padding-right: 6px;
        margin-right: 15px;
    }

    .menu-footer {
        flex-flow: column;
    }

    .footer-bottom-r a {
        margin: 0;
    }

    .footer-bottom-r a:not(:nth-last-child(1)) {
        margin-right: 14px;
    }

    .social-network-footer {
        max-width: 96px;
    }

    .footer-top-r p {
        text-align: right;
    }

    .footer-bottom-r {
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        padding-bottom: 18px;
    }

    .footer-top-l {
        overflow: scroll;
    }

    .footer-top-wrapper {
        margin-right: -15px;
    }

    .footer-bottom {
        padding: 15px 0 10px 0;
        border-radius: 10px 10px 0 0;
        margin-top: -8px;
    }

    .footer-top {
        background: #373737;
        padding: 20px 0 0 0;
        border-radius: 10px 10px 0 0;
    }

    .cards-block .cards-block-small {
        margin-right: 0;
    }

    .breadcrumb-section {
        padding: 11px 0 0 0;
        background: transparent;
    }

    .category-ad {
        display: block;
    }

    .content-section {
        padding-top: 0;
    }

    .add-ad-wrapper {
        margin-bottom: 23px;
        margin-top: 20px;
    }

    .category-ad-l {
        margin-bottom: 20px;
    }

    .category-ad {
        margin-bottom: 20px;
    }

    .category-ad-r .orange-border-button {
        width: 100%;
    }

    .add-photo img {
        width: 100%;
    }

    .add-photo {
        margin-bottom: 10px;
    }

    .add-img {
        margin-bottom: 10px;
    }

    .add-delivery, .ad-price {
        padding: 20px 15px;
    }

    .w-tm {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .add-delivery {
        margin-bottom: 20px;
    }

    .add-video {
        max-width: 100%;
    }

    .add-ad-wrapper {
        margin-top: 5px;
        margin-bottom: 0;
    }

    .add-img-mobil .row > * {
        flex-shrink: 0;
        width: 290px;
    }

    .add-img-mobil .row {
        flex-flow: row;
    }

    .add-img-mobil {
        overflow: scroll;
        margin-right: -15px;
    }

    .ad-prise {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .ad-prise p {
        font-size: 16px;
        line-height: 19px;
    }

    .count-ad {
        margin-bottom: 28px;
    }

    .seller > .row {
        flex-flow: column-reverse;
    }

    .seller-block {
        border-radius: 0;
        padding: 20px;
        height: auto;
        width: 100vw;
        margin-left: -15px;
        margin-top: -45px;
        padding-top: 75px;
    }

    .company-delivery-block-l {
        width: 30px;
        text-align: center;
    }

    .seller {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .reviews-ad {
        padding: 40px 0 0 0;
        border: 0;
    }

    .cards-wrapper-mobil {
        margin-bottom: -10px;
    }

    .bottom-section {
        padding-bottom: 1px;
    }

    .mobil-p-search-results {
        font-family: Proxima Nova;
        font-style: normal;
        font-weight: bold;
        font-size: 21px;
        line-height: 26px;
        letter-spacing: -0.02em;
        display: flex;
        padding-right: 15px;
    }

    .mobil-p-search-results > span {
        width: calc(100% - 27px);
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .mobil-p-search-results .count-filter-seller span {
        right: -4px;
        top: 2px;
    }

    /*p.mobil-p-search-results a {*/
    .mobil-p-search-results .filter-toggler {
        display: block;
        width: 25px;
        margin-left: 11px;
    }

    .border-mobil {
        border-bottom: 1px solid #F1F1F1;
        margin-bottom: 20px;

    }

    .border-mobil .cards-block {
        margin-right: -15px;
    }

    .border-mobil .h2-tm {
        font-size: 16px;
        line-height: 19px;
    }

    .search-result-title h2 {
        font-size: 12px;
        line-height: 15px;
    }

    .search-result-title {
        margin-bottom: 15px;
    }

    .card-tm-horizontal .category-card {
        margin-bottom: 5px;
        font-size: 7px;
        line-height: 10px;
    }

    .card-tm-horizontal .card-text {
        padding: 0;
        justify-content: flex-start;
    }


    .card-tm-horizontal .card-price p {
        font-size: 12px;
        line-height: 15px;
        text-align: left;
        margin-bottom: 7px;
    }

    .card-tm-horizontal .card-price p span {
        font-size: 8px;
        line-height: 12px;
    }

    .card-tm-horizontal .card-price .orange-button {
        padding: 0 12px 7px 12px;
        height: 26px;
        display: inline-block;
    }

    .card-tm-horizontal .card-price .orange-button img {
        margin: 0;
        width: 14px;
    }

    .card-tm-horizontal .card-price {
        flex-flow: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .card-tm-horizontal .card-img {
        width: 136px;
        margin-right: 9px;
    }

    .card-tm-horizontal .card-text {
        width: calc(100% - 145px);
    }

    .card-tm-horizontal .card-price p {
        margin-bottom: 0;
        margin-right: 20px;
    }

    .card-tm-horizontal {
        border-bottom: 0;
    }

    .pangination-tm {
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .pangination-tm .orange-border-button {
        margin-bottom: 5px;
    }

    .registration-r .ad-title-r {
        width: 100%;
        margin-bottom: 20px;
    }

    .registration-wrapper {
        padding: 0;
        box-shadow: none;
    }

    .registration-mobil-l {
        width: calc(100% - 83px);
    }

    .registration-mobil-r {
        width: 70px;
        margin: 0 13px;
        position: relative;
    }

    .registration-mobil-r a {
        position: absolute;
        top: -6px;
        right: -9px;
    }

    .registration-mobil {
        display: flex;
    }

    .code {
        margin-bottom: 13px;
    }

    p.resubmit {
        color: #FF7A00;
        margin-bottom: 13px;
    }

    a.return {
        font-family: 'Proxima Nova Bold';
        font-size: 12px;
        line-height: 15px;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    a.return img {
        margin-right: 8px;
    }

    .no-account a {
        width: auto;
    }

    .social-network-recovery {
        margin-bottom: 10px;
    }

    .mt-mobil {
        padding-top: 0;
    }

    .tab-content-tm {
        padding-top: 0;
    }

    .card-tm-horizontal .card-r {
        width: 100%;
        justify-content: flex-start;
    }

    .card-tm-archive {
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
        -o-filter: grayscale(100%);
        filter: grayscale(100%);
        filter: gray;
        padding-top: 20px;
        border-top: 1px solid #F1F1F1;


    }

    .card-tm-archive h3 {
        font-family: 'Proxima Nova Bold';
        font-size: 16px;
        line-height: 19px;
        letter-spacing: -0.02em;
        margin-bottom: 11px;
    }

    .registration-mobil-r {
        display: block;
    }

    .edit-profile-top {
        display: none;
    }



    .mobil-edit-profile {
        padding-top: 10px;
    }
   .social-networks-profil {
        padding: 15px 20px 5px 20px!important;
        background: #FFF;
        box-shadow: 0 4px 21px rgb(0 0 0 / 10%);
        border-radius: 10px;
        margin: 0 15px;
        width: 100%;
        margin-bottom: 20px;
    }


    .infi-edit-block-mobil, .tel-block {
        padding: 18px 15px 0 15px;
        background: #FFFFFF;
        box-shadow: 0 10px 30px rgb(0 0 0 / 8%);
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .infi-edit-block-mobil {
        padding-bottom: 20px;
    }

    .progress-profile {
        width: 100%;
        margin-bottom: 15px;
    }


    .basket-title-span>span:nth-child(1) {
        display: none;
    }

    .ad-title .h1-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    .number input {
        margin: 0 0;
        padding: 5px 3px;
        font-size: 12px;
        line-height: 15px;
        width: 28px;
    }

    .number {
        padding: 2px 7px;
    }



    .card-text-bottom-mobil {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }


    .card-block-mobil {
        padding: 0!important;
    }


    .basket-block {
        border-bottom: 1px solid #F1F1F1;
    }



    .basket-bottom p {
        font-family: 'Proxima Nova Bold';
        font-size: 16px;
        line-height: 19px;
        letter-spacing: -0.02em;
        text-align: left;
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 3px;
    }

    .basket-bottom .orange-button {
        width: 100%;
        margin-bottom: 10px;
     }
    .dialog-block-c {
        width: calc(100% - 64px);
    }


    p.name {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    p.name> span {
        align-items: center;
    }
    p.name .checkbox-tm {
        margin-bottom: 0;
        margin-left: 5px;
    }
    p.name> span img {
        margin-right: 5px;
    }


    .dialog-block + .dialog-block {
        margin-top: 0;
    }

    .mb-mobil {
        padding-top: 0;
    }

    .p-tab-title {
        margin-bottom: 20px;
    }


    .message-block-r {
        padding: 8px 35px 6px 18px;
        width: 100%;
    }


    .message-block-text .checkbox-tm span {
        background: #FFFFFF;
        border-radius: 3px;
        margin-right: 0;
    }
    .message-block-text .checkbox-tm {
        position: absolute;
        top:10px;
        right: 10px;
        display: block;
    }


    .message-block-text {
        position: relative;
    }


    .tab-tm .nav-item .nav-link {
        color: #7C7C7C!important;
        padding: 0 10px;
    }

    .tab-tm .nav-item .nav-link span {
        font-size: 12px;
        line-height: 15px;
        color: #FF7A00;
        margin-right: 3px;
    }


.personal-account-wrapper-seller {
    padding-top: 0;
}

    .seller-title h3 {
        display: flex;
        justify-content: space-between;
    }


    .seller-title h3 .count-filter span {
        top: 1px;
        right: -5px;
    }

    .seller-bottom.seller-bottom-2 {
        margin-bottom: 20px;
    }

    .tab-tm {
        margin-bottom: 20px;
    }


    .tab-tm .nav-item .nav-link:hover, .tab-tm .nav-item.show .nav-link, .tab-tm .nav-link.active {
        color: #000!important;
    }

    .card-img >img {
        width: 100%;
    }

    .all-mobil {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-size: 10px;
        margin-bottom: 20px;
        line-height: 12px;
        color: #FF7A00!important;
    }

    .statistics-top {
        display: none;
    }

    .statistics-block-top span {
        display: none;
    }



    .statistics-bottom {
        justify-content: space-between;
    }
    .statistics-block {
        display: flex;
        padding: 5px 15px;
        align-items: center;
        width: 33%;
        margin: 0!important;
    }

    .statistics-block-top {
        width: 20px;
        margin-right: 6px;
        flex-shrink: 0;
    }


    p.p-tab-title a {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-size: 10px;
        line-height: 12px;
        color: #FF7A00;
    }

    .order-block {
        border-top: 1px solid #F1F1F1;
        padding-top: 20px;
    }


    .order-block .orange-border-button {
        width: 65px;
        padding: 3px 5px;
    }

    .order-bottom {
        display: none;
    }
    .buttin-wrapper {
        flex-flow: column;
    }

    .buttin-wrapper a {
        width: 100%;
        margin-bottom: 20px;
     }
    .h1-title-mobil {

    }
    h1.h1-title-mobil {
        margin-bottom: 25px;
    }

}

header.fixed-top {
    background: #fff;
}
main {
    margin-top: 80px;
}
@media screen and (max-width: 767px) {
    main {
        margin-top: 0;
    }
}



li.nav-item {
    font-size: 12px;
    line-height: 36px;
    background: #fff;
    border-bottom: 1px solid #F1F1F1;
    color: #000 !important;
}
li.nav-item span {
    padding-left: 10px;
    font-weight: 600;
}

.large-menu {
    column-count: 4;
}
.large-menu>ul {
    break-inside: avoid-column;
}

.form-modal .orange-border-button {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.form-error {
    color: #ff665a;
}

.eye {
    background-image: url(http://bzr1.test/images/eye-2.svg);
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 11px;
    top: 12px;
    cursor: pointer;
}
.eye.closed {
    background-image: url(http://bzr1.test/images/eye-1.svg);
}

.modal-body {
    padding: 0;
}

.filter-options {
    max-height: 12em;
    overflow-y: auto;
}

.leftlist .filter-toggler-2 {
    padding: 4px 20px;
}
.leftlist header {
    padding: 8px 0;
    background: #FF7A00;
}

.leftlist .navbar-nav {
    width: 100%;
}
.leftlist .navbar-nav a {
    font-size: 12px;
    line-height: 36px;
    padding: 0 20px !important;
    background: #fff;
    color: #000 !important;
    display: block;
}
.leftlist .navbar-nav a:not(:nth-last-child(1)) {
    font-size: 12px;
    line-height: 36px;
    padding: 0 20px !important;
    background: #fff;
    border-bottom: 1px solid #F1F1F1;
    color: #000 !important;
    display: block;
}
.leftlist .navbar-collapse.collapse {
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 8px;
}
.leftlist .navbar-nav .dropdown-menu {
    margin: 0;
    border: 0;
    padding: 0;
}
.leftlist .navbar-nav .dropdown-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}
.leftlist .navbar-nav .dropdown-toggle:after {
    border: 0;
    background: url(../images/mobil/arrow-menu.svg);
    width: 10px;
    transform: rotate(-90deg);
    height: 7px;
}
.leftlist .navbar-nav li.nav-item.dropdown.show .dropdown-toggle:after {
    transform: rotate(0);
}
.leftlist .navbar-nav li.nav-item.dropdown a.dropdown-item {
    background: #F1F1F1;
    padding-left: 40px !important;
}
.leftlist .navbar-nav li.nav-item.dropdown a.dropdown-item:not(:nth-last-child(1)) {
    background: #F1F1F1;
    padding-left: 40px !important;
    border-bottom: 1px solid #E5E5E5;
}

.mesto-and-phone label {
    font-size: 10px;
    line-height: 15px;
    color: #7C7C7C;
    margin-bottom: 7px;
}