@font-face {
    font-family: Mardoto;
    src: url(../fonts/Mardoto-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    font-family: Mardoto;
    box-sizing: border-box;
    transition: 0.3s;
}
body {
    background: #f4f4f4;
}
a {
    text-decoration: none;
    color: #000;
}
ul, li {
    list-style-type: none;
}
button {
    cursor: pointer;
}
.header {
    position: sticky;
    top: 0;
    background: #FFFFFF;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
    z-index: 11;
}
.header_main_section, .main_header > div {
    max-width:1336px;
    width: 100%;
    margin: 0 auto;
}
.main_header {
    background: #FFFFFF;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}
.select-wrapper {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.dropholder {
    width: 100%;
    height: 100%;
    color: #000;
    position: relative;
    box-sizing: border-box;
}
.dropdown {
    float: left;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    z-index: 20;
}
.dropdown.active + .dropdownOption {
     display: block;
 }
.dropdownOption {
    padding: 10px 0 0 0;
    position: absolute;
    left: 0;
    top: 50px;
    right: 0;
    margin: 0;
    cursor: pointer;
    display: none;
    border-radius: 0 0 10px 10px;
    z-index: 5;
    overflow: hidden;
}
.dropdownOption li {
    padding: 10px 15px;
    color: #000;
    list-style: none;
}
.dropdownOption:hover:not(.current) {
     color: grey;
 }
.current {
    /*background-color: red;*/
}
.header_top_1 {
    padding: 8px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header_top_1 .fa-phone, .header_top_1 .fa-map-marker-alt {
    color: #00A59C;
    font-size: 15px;
    margin-right: 10px;
}
.header_top_1 .fa-angle-down {
    margin-left: 12px;
}
.header_top_1 .select_city {
    margin-right: 29px;
}
.holder_city {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.01em;
}
.phone_number {
    font-size: 12px;
    font-weight: bold;
}
.select_city {
    position: relative;
}
.city_dropdown_option {
    position: absolute;
    width: 170px;
    background: #FFFFFF;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 16px 0;
    top: 24px;
    left: -15px;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
    z-index: 999;
}
.open {
    visibility: visible !important;
    opacity: 1 !important;
}
.city_dropdown_option > p {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 27px;
    text-align: center;
}
.city_dropdown_option form {
    text-align: center;
    font-size: 14px;
}
.city_dropdown_option form > div{
    text-align: left;
    padding: 0 22px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.city_dropdown_option form > div input {
    width: 20px;
    height: 20px;
    position: relative;
    margin-right: 8px;
    cursor: pointer;
}
.city_dropdown_option form > div label {
    cursor: pointer;
}
.city_dropdown_option form > div input:checked:after {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background-color: #fff;
    border: 7px solid #00A59C;
    border-radius: 50px;
    top: -2px;
    left: -2px;
    position: absolute;
}
.city_dropdown_option form > div:nth-child(1){
    margin-bottom: 25px;
}
.city_dropdown_option button {
    background: #00A59C;
    border-radius: 100px;
    border: 1px solid #00A59C;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 30px;
    margin-top: 28px;
}
.city_dropdown_option button:hover {
    background: #00948C;
}
.choose_language .dropdown img, .choose_currency .dropdown img{
    margin-right: 12px;
}
.choose_language{
    width: 55px;
    position: relative;
}
.choose_currency{
    width: 65px;
    position: relative;
}
.choose_currency i{
    left: 6px;
}
.language_dropdown_option, .currency_dropdown_option, .search_filter_dropdown_option {
    background: #FFFFFF;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
    border-radius: 9px;
    position: absolute;
    top: 24px;
    left: -15px;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}
.language_dropdown_option > div, .currency_dropdown_option > div, .search_filter_dropdown_option > div{
    padding: 8px 17px;
    cursor: pointer;
}
.language_dropdown_option > div:nth-child(1), .currency_dropdown_option > div:nth-child(1){
    border-top-right-radius: 9px;
    border-top-left-radius: 9px;
}
.language_dropdown_option > div:nth-child(2), .currency_dropdown_option > div:nth-child(2){
    border-bottom-right-radius: 9px;
    border-bottom-left-radius: 9px;
}
.language_dropdown_option > div:hover, .currency_dropdown_option > div:hover{
    background: #E0F4FF;
}
.header_top_section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.choose_language i, .choose_currency i {
    font-size: 14px;
    position: relative;
    top: -2px;
}
.header_top_2, .header_registration {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header_top_2 > div:nth-child(1) {
    margin-right: 20px;
}
.main_header > div, .header_icons  {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.catalog_main {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #F7861B;
}
.catalog_main img {
    position: relative;
    top: 6px;
}
.header_search {
    position: relative;
    transition: 0s;
}
.header_search *{
    transition: 0s;
}
.header_search input {
    transition: 0s !important;
}
.header_search input {
   width: 805px;
    background: #F2F2F2;
    border-radius: 16px;
    border: 1px solid #F2F2F2;
    padding: 20px 130px 18px 48px;
    z-index: 1;
    position: relative;
}
input, button, select {
    outline: none;
}
.header_search > button {
    background: transparent;
    border: none;
    color: #828282;
    font-size: 21px;
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 111;
}
.search_filter_main {
    position: absolute;
    top: 7px;
    right: 19px;
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
    border-radius: 10px;
    background: #fff;
    padding: 12px 16px;
    font-size: 14px;
    width: 122px;
    z-index: 1;
}
#search_filter {
    position: relative;
}
#search_filter i {
    position: absolute;
    right: 0;
    top: 2px;
}
.search_filter_dropdown_option {
    top: 34px;
    left: -1px;
    border: 1px solid #E0E0E0;
    border-top: 0;
    box-shadow: none;
    width: 122px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.search_filter_dropdown_option > div:hover {
    background: #E0F4FF;
}
.search_filter_dropdown_option > div:last-child {
    border-bottom-right-radius: 9px;
    border-bottom-left-radius: 9px;
}
.header_icons > div:nth-child(2) {
    margin: 5px 40px 0;
}
.header_icons > div, .catalog_main {
    cursor: pointer;
}
.header_registration svg {
    margin-right: 10px;
}
.category_types ul li {
    list-style: none;
    padding: 16px 24px;
    border-bottom: 1px solid #E0E0E0;
}
.category_types ul li a {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.01em;
    color: #00A59C;
}
.catalog_menu {
    width: 385px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -390px;
    background: #fff;
    z-index: 999;
}
.catalog_menu .menu_header {
    padding: 16px 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #E0E0E0;
}
.catalog_menu .menu_header > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.catalog_menu .menu_header > div img {
    max-width: 48px;
    margin-right: 16px;
}
.catalog_menu .menu_header button, .basket_header button {
    border: 1px solid #BDBDBD;
    border-radius: 8px;
    background: #fff;
    padding: 3px 8px;
    font-size: 21px;
    color: #BDBDBD;
}
.catalog_menu .menu_header span {
    font-size: 20px;
}
.main_menu ul {
    padding: 16px 0;
}
.main_menu li {
    padding: 8px 24px;
    cursor: pointer;
}
.main_menu li i, .main_menu_items ul a {
   color: #828282;
}
.main_menu li:hover i, .main_menu_items ul a:hover {
   color: #000;
}
.catalog_menu > div {
    position: relative;
    height: 100%;
}
.main_menu_items ul {
    position: absolute;
    top: 0;
    left: 385px;
    background: #F5F5F5;
    padding: 96px 0 24px;
    height: 100vh;
    width: 450px;
    display: none;
    overflow: auto;
}
.main_menu_items > li > div {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.main_menu_items > li:hover ul {
    display: block;
}
.open_catalog {
    left: 0;
}
.layer, .basket_layer, .filter_layer {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    visibility: hidden;
    opacity: 0;
}
.basket {
    width: 650px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -725px;
    background: #fff;
    z-index: 999;
}
.basket_header {
    padding: 32px 24px;
    border-bottom: 1px solid #E0E0E0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.basket_header p {
    font-size: 24px;
    letter-spacing: 0.01em;
    color: #333333;
}
.basket_items {
    padding: 40px 24px 0;
    max-height: calc(100vh - 190px);
    margin-bottom: 20px;
    overflow-y: auto;
}
.main_menu {
    direction:rtl;
}
.main_menu_items {
    direction:ltr
}
.basket_items::-webkit-scrollbar, .main_menu::-webkit-scrollbar, .main_menu_items ul::-webkit-scrollbar {
    width: 7px;
}
.basket_items::-webkit-scrollbar-track, .main_menu::-webkit-scrollbar-track, .main_menu_items ul::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.basket_items::-webkit-scrollbar-thumb, .main_menu::-webkit-scrollbar-thumb, .main_menu_items ul::-webkit-scrollbar-thumb {
    background: #00A59C;
}
.basket_items::-webkit-scrollbar-thumb:hover, .main_menu::-webkit-scrollbar-thumb:hover, .main_menu_items ul::-webkit-scrollbar-thumb:hover {
    background: #00948C;
}
.basket_item{
    margin-bottom: 24px;
}
.basket_item, .basket_item > div{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.basket_item_info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.basket_item_info img {
    max-width: 96px;
    margin-right: 21px;
    object-fit: contain;
}
.basket_item_info a {
    font-size: 14px;
    letter-spacing: 0.01em;
    display: block;
    margin-bottom: 7px;
}
.basket_item_info span {
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #6E6E6E;
}
.basket_item_price {
    position: relative;
}
.basket_item_price button {
    border: none;
    background: transparent;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #00A59C;
    opacity: 0;
    visibility: hidden;
    padding: 6px 0;
}
.basket_item_price p {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.01em;
    color: #000000;
    white-space: nowrap;
    padding: 5px;
}
.basket_item_price:hover button {
    opacity: 1;
    visibility: visible;
}
.basket_item_price:hover p {
    opacity: 0;
    visibility: hidden;
}
.basket_counter button {
    border: 1px solid #BDBDBD;
    border-radius: 100px;
    background: transparent;
    color: #BDBDBD;
    width: 24px;
    height: 24px;
}
.basket_counter button:hover {
    border-color: #000000;
}
.basket_counter button:hover i{
    color: #000000;
}
.basket_counter span {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.01em;
    color: #333333;
    height: 40px;
    line-height: 2;
}
.basket_counter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 5px 24px 0 0;
}
.basket_make_order {
    text-align: center;
    position: relative;
    padding: 16px 0;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    background: #00A59C;
    border-radius: 16px;
    display: block;
    width: 93%;
    margin: 0 auto;
    border: 1px solid #00A59C;
}
.basket_make_order:hover {
    background: #00948C;
}
.basket_make_order .total_price{
    position: absolute;
    right: 16px;
    top: 17px;
}
.open_basket {
    right: 0;
}
.main_menu {
    height: calc(100vh - 206px);
    overflow: auto;
}

.product_item {
    width: 206px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    position: relative;
    border: 1px solid #fff;
    margin-bottom: 24px;
}
.product_item_img img {
    width: 174px;
    height: 176px;
    object-fit: contain;
}
.product_item_img {
   text-align: center;
}
.product_item_name a {
    display: -webkit-box;
    word-break: break-word;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    margin: 11px 0 16px;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #828282;
    height: 33px;
}
.product_price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.product_price .product_sale {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #828282;
    text-decoration: line-through;
    margin-bottom: 4px;
}
.product_price .product_main_price {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.01em;
    color: #000000;
}
.pcs {
    padding: 7px 12px;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #828282;
    border: 1px solid #828282;
    border-radius: 100px;
}
.pcs_active {
    background: #F7861B;
    border: 1px solid #F7861B;
    color: #fff;
}
.favorite_product {
    position: absolute;
    top: 10px;
    right: 14px;
    cursor: pointer;
}
.favorite_product svg:hover path  {
   stroke: #EB5757;
}
.fill_red {
    stroke: #EB5757;
    fill: #EB5757;
}
.open_counter {
    width: 32px;
    height: 32px;
    background: #00A59C;
    border-radius: 100px;
    color: #fff;
    border: 1px solid #00A59C;
    font-size: 17px;
    z-index: 9;
    text-align: center;
    padding-top: 5px;
    cursor: pointer;
}
.open_counter:hover {
    background: #00948C;
    border: 1px solid #00948C;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.product_counter button, .product_counter span  {
    border: none;
    background: transparent;
    font-size: 17px;
    color: #fff;
    z-index: 10;
    cursor: pointer;
}
.product_counter input {
    width: 100%;
    border: none;
    background: #00A59C;
    padding: 0 5px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 19px;
}
.product_counter  {
    background: #00A59C;
    border-radius: 100px;
    width: 0;
    overflow: hidden;
}
.product_counter > div {
    padding: 4px 9px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.counter_opened {
    width: 100%;
}
.product_counter_content {
    position: relative;
    margin-top: 11px;
}
.open_counter {
    position: absolute;
    top: 0;
    right: 0;
}
.product_price > div {
    height: 41px;
    display: flex;
    flex-direction: column;justify-content: flex-end;
    align-items: flex-start;
}
.product_item:hover {
    border: 1px solid #E0E0E0;
}
.other_price {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #00A59C;
    padding-top: 23px;
}
.product_item .sale {
    background: #EB5757;
    border-radius: 100px;
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 10px;
    left: 0;
    padding: 5px 10px;
}

footer {
    background: #59568F;
    padding: 30px 0 20px;
}
footer > div {
    max-width: 1336px;
    width: 100%;
    margin: 0 auto;
}
footer > div:nth-child(1) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer_logo p {
    max-width: 151px;
    font-size: 12px;
    letter-spacing: 0.01em;
    color: #F5F5F5;
    line-height: 20px;
    margin-top: 11px;
}
.footer_menu > p {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    margin-bottom: 16px;
}
.footer_menu ul a {
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}
.footer_menu ul li {
    margin-bottom: 16px;
}
.footer_menu img {
    margin: 0 16px 16px 0;
}
.footer_menu_cards {
    max-width: 336px;
}
.footer_bottom {
    font-size: 12px;
    letter-spacing: 0.01em;
    color: #F5F5F5;
    padding-top: 23px;
    border-top: 1px solid #828282;
    margin-top: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer_bottom > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer_bottom > div a{
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    display: block;
    margin-left: 20px;
    width: 32px;
    height: 32px;
    text-align: center;
    padding-top: 5px;
}
.footer_bottom > a {
    color: #fff;
}
a.fb {
    background: #1877F2;
}
a.twitter {
    background: #1DA1F2;
}
a.linkedin {
    background: #2867B2;
}
a.youtube {
    background: #FF0000;
}
a.pinterest {
    background: #E60023;
}
a.telegram {
    background: #0088CC;
}
.footer_menu_mob {
    position: relative;
}
.footer_menu_mob i {
    position: absolute;
    right: 8px;
    top: 10px;
    color: #8583B4;
    font-size: 14px;
    display: none;
}
.footer_bottom > div > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.open_footer_menu{
    height: auto !important;
}
.rotate180 {
    transform: rotate(180deg);
}
.mob_search_filter {
    right: 10px;
    left: unset !important;
    top: 12px !important;
    display: none;
}
.mobile_fixed_menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px;
    z-index: 999;
    display: none;
}
.mobile_fixed_menu > div{
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.mobile_fixed_menu button {
    border: none;
    background: transparent;
}
.mobile_fixed_menu svg {
    margin-bottom: 5px;
}
.mobile_fixed_menu svg path, .mobile_fixed_menu svg rect {
    fill: #828282 !important;
    stroke: #828282 !important;
}
.mobile_fixed_menu button, .mobile_fixed_menu a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 10px;
    color: #828282;
}
.all_top a img {
    margin-left: 16px;
}
.all_top {
    margin-top: 40px;
    text-align: right;
    padding-right: 11px;
}
.all_top a {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.01em;
    color: #F7861B;
}
.breadcrumbs {
    max-width: 1336px;
    width: 100%;
    margin: 24px auto 32px;
}
.breadcrumbs a {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #000000;
}
.breadcrumbs ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-y: auto;
}
.breadcrumbs ul::-webkit-scrollbar {
    display: none;
}
.breadcrumbs .active a {
    color: #828282;
}
.breadcrumbs .active a i {
    display: none;
}
.breadcrumbs a i {
    font-size: 11px;
    color: #5B5B5B;
    margin: 0 11px;
}
.show_more button {
    border: 1px solid #00A59C;
    border-radius: 100px;
    background: none;
    color: #00A59C;
    font-size: 14px;
    padding: 12px 24px;
}
.show_more button:hover {
    background: #00A59C;
    color: #fff;
}
.show_more button:hover svg path {
    stroke: #fff;
}
.show_more {
    text-align: center;
    margin-top: 20px;
}
.show_more button svg {
    margin-left: 6px;
    position: relative;
    top: 3px;
}
.breadcrumbs li a {
    white-space: nowrap;
}
.iti{
    width: 100%;
}
/*.address_btns .change_address {*/
/*    background: #00A59C;*/
/*    color: #fff;*/
/*    padding: 16px 32px !important;*/
/*}*/
.address_btns .change_address:hover {
    background: #00948C;
}
.address_btns .remove_address:hover i {
    color: #EB5757;
}
/*.address_btns .change_address span {*/
/*    top: 0;*/
/*}*/
.address_btns .change_address i {
    transition: 0s;
    margin-right: 5px;
}
.change_address {
    padding: 11px 32px;
    border: 1px solid #00A59C;
    border-radius: 100px;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #00A59C;
    margin-right: 20px;
    background: transparent;
}
.change_address svg {
    margin-right: 5px;
}
.change_address span {
    transition: 0s;
    position: relative;
    top: -5px;
}
.change_address:hover {
    background: #00A59C;
    color: #fff;
}
.change_address:hover path {
    stroke: #fff;
    fill: #fff;
}
.remove_address {
    width: 56px;
    min-width: 56px;
    height: 56px;
    border: 1px solid #BDBDBD;
    text-align: center;
    border-radius: 100px;
    color:  #BDBDBD;
    font-size: 20px;
    background: transparent;
    padding-top: 4px;
}
.remove_address path {
    transition: 0s;
}
.remove_address:hover path {
    stroke:  #EB5757;
}
.address_btns{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 16px;
    margin-bottom: 24px;
}
#map {
    height: 600px;
    width: 100%;
}
#map, .map, .ymaps-map {
    border-radius: 0 16px 16px 0;
}
.popup_content > div {
    width: 100%;
}
.popup_content .change_address span {
    top: 0 !important;
}
.select_address_popup {
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.35);
    width: 100%;
    height: 100%;
    z-index: 9;
    padding-top: 165px;
    display: none;
}
.select_address_popup_open {
    display: block;
}
.select_address_popup > div {
    max-width: 1110px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 16px;
    margin:  0 auto;
}
.select_address_popup .city_dropdown_option {
    position: static;
}
.select_address_popup .popup_content {
    display: flex;
}
.select_address_popup .popup_content {
  max-height: 600px;
}
.select_address_popup .basket_header, .select_address_popup form {
  padding: 24px;
}
.delivery_city {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px;
}
.del_city_heading {
    font-size: 14px;
    margin-bottom: 20px;
}
.delivery_city input {
    width: 20px;
    height: 20px;
    position: relative;
    margin-right: 8px;
    cursor: pointer;
}
.delivery_city label {
    color: #828282;
    position: relative;
    top: -4px;
}
.delivery_city input:checked:after {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background-color: #fff;
    border: 7px solid #00A59C;
    border-radius: 50px;
    top: -2px;
    left: -2px;
    position: absolute;
}
.mb24{
    margin-bottom: 24px;
}
.buy_method {
    width: 240px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 16px;
    background: #F2F2F2;
}
.buy_method p {
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    border: 1px solid #F2F2F2;
    width: 100%;
    cursor: pointer;
}
.buy_method p:nth-child(1) {
  border-radius: 16px 0 0 16px;
}
.buy_method p:nth-child(2) {
  border-radius: 0 16px 16px 0;
}
.buy_method p.active {
    background: #DFF3F2;
    border: 1px solid #00A59C;
}
.write_address {
    position: relative;
    margin-bottom: 16px;
}
.write_address input {
    background: #F2F2F2;
    border-radius: 16px;
    padding: 16px 16px 16px 36px !important;
    width: 100% !important;
    border: 1px solid #F2F2F2;
}
.write_address i {
    position: absolute;
    top: 16px;
    color: #828282;
    left: 16px;
}
.popup_inputs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.popup_inputs label, .popup_input_additional label {
    display: block;
    color: #828282;
    font-size: 14px;
    margin-bottom: 8px;
}
.popup_inputslabel span {
    color: red;
}
.popup_inputs input, .popup_inputs select {
    background: #FFFFFF;
    padding: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
}
.popup_inputs input {
   width: 100%;
}
.popup_inputs select {
   width: 144px;
}
.popup_input_additional input{
    background: #FFFFFF;
    padding: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    width: 100%;
}
.popup_input_additional {
    margin-top: 16px;
}
.popup_content > div:nth-child(1) {
    overflow-y: auto;
}
.popup_content > div:nth-child(1)::-webkit-scrollbar {
    width: 5px;
}
.popup_content > div:nth-child(1)::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.popup_content > div:nth-child(1)::-webkit-scrollbar-thumb {
    background: #888;
}
.popup_content > div:nth-child(1)::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.popup_content > div > form {
    padding-bottom: 0;
}
.open_mob_catalog {
    bottom: -100px !important;
}
.active_mob_catalog {
    color: #00A59C !important;
}
.mobile_fixed_menu .active_mob_catalog rect {
    fill: #00A59C !important;
    stroke: #00A59C !important;
}
.show_display {
    display: block !important;
}
.active_mob_menu {
    background: #E0F4FF;
}
.active_mob_menu i {
    transform: rotate(90deg);
}
.settings {
    max-width: 1336px;
    width: 100%;
    margin: 0 auto;
    height: calc(100vh - 512px);
}
.settings h2 {
    font-size: 28px;
    margin-bottom: 16px;
}
.settings .header_top_2 .choose_language p, .settings .header_top_2 .choose_currency p{
    color: #828282;
    font-size: 14px;
    margin-bottom: 8px;
}
.settings .header_top_2 > div {
   width: 50%;
}
.settings .header_top_2 > div .dropdown {
   padding: 16px;
    background: #fff;
}
.settings .choose_language i, .settings .choose_currency i {
    font-size: 14px;
    position: absolute;
    top: 18px;
    right: 16px;
    left: unset;
}
.settings .language_dropdown_option, .settings .currency_dropdown_option {
    top: 70px;
    left: 0;
    width: 100%;
    border-radius: 0 0 16px 16px;
}
.settings .language_dropdown_option > div:nth-child(1), .settings .currency_dropdown_option > div:nth-child(1) {
    border-radius: 0 0 16px 16px;
}
.search_dropdown {
    position: absolute;
    top: 46px;
    left: 0;
    background: #FAFAFA;
    box-shadow: 0 1px 10px rgb(0 0 0 / 6%);
    border-radius: 0 0 16px 16px;
    width: 100%;
    padding: 26px 16px 16px;
    z-index: 0;
    overflow: auto;
    max-height: calc(100vh - 89px);
    display: none;
}
.search_product_type a {
    display: block;
    position: relative;
    padding: 10px;
    border-top: 1px solid #E0E0E0;
}
.search_product_type a:hover {
    background: #fff;
}
.search_product_type a strong {
    font-size: 16px;
    display: block;
    margin-bottom: 3px;
}
.search_product_type a span {
    font-size: 14px;
    color: #828282;
}
.search_product_type a span span {
    font-size: 14px;
}
.search_product_type a span i {
    font-size: 8px;
    margin: 0 3px 0;
    position: relative;
    top: -2px;
}
.search_product_type a > i {
    position: absolute;
    right: 10px;
    top: 21px;
}
.search_product_brand {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid #E0E0E0;
    width: 100%;
}
.search_product_brand a img {
    border-radius: 8px;
    width: 72px;
    height: 56px;
    margin-right: 8px;
    object-fit: contain;
}
.search_product_brand a span {
    font-size: 14px;
}
.search_product_brand a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 24px;
    padding: 16px 0;
}
.search_product_items {
    padding: 16px 7px 0 0;
    border-top: 1px solid #E0E0E0;
    height: 283px;
    overflow: auto;
}
.search_dropdown::-webkit-scrollbar {
    width: 4px;
}
.search_dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.search_dropdown::-webkit-scrollbar-thumb {
    background: #c1c1c1;
}
.search_dropdown::-webkit-scrollbar-thumb:hover {
    background:#c1c1c1;
}

.search_dropdown ::-webkit-scrollbar {
    width: 4px;
}
.search_dropdown ::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.search_dropdown ::-webkit-scrollbar-thumb {
    background: #c1c1c1;
}
.search_dropdown ::-webkit-scrollbar-thumb:hover {
    background:#c1c1c1;
}
.search_product_items .sp_item, .search_product_items .sp_item > div, .search_product_items .sp_item > div > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}
.search_product_items .sp_item img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-right: 16px;
}
.search_product_items .sp_item .sp_name {
    display: block;
    width: 212px;
    font-size: 14px;
    margin-right: 54px;
}
.search_product_items .sp_item .sp_brand {
    color: #00A59C;
    font-size: 14px;
    margin-right: 54px;
}
.search_product_items .sp_price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.search_product_items .sp_price del {
    color: #828282;
    font-weight: bold;
    font-size: 12px;
}
.search_product_items .sp_price p {
    font-weight: bold;
    font-size: 14px;
    margin-top: 5px;
}
.search_product_items .sp_price p {
    font-weight: bold;
    font-size: 14px;
    margin-top: 5px;
}
.search_product_items .sp_item button.add {
    background: #00A59C;
    border-radius: 100px;
    border: 1px solid #00A59C;
    font-weight: bold;
    font-size: 12px;
    color: #FFFFFF;
    padding: 8px 40px;
}
.search_product_items .sp_item button.add:hover {
    background: #00948C;
}
.search_product_items .sp_item {
    margin-bottom: 16px;
}
.search_product_items .product_counter input {
   font-size: 14px;
}
.maybe_you_search {
    padding: 16px 0;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}
.maybe_you_search p{
    font-size: 14px;
    color: #828282;
    margin-bottom: 18px;
}
.maybe_you_search a {
    background: #E0F4FF;
    border: 1px solid #00A59C;
    border-radius: 100px;
    font-size: 14px;
    color: #828282;
    padding: 8px 16px;
    display: block;
    margin-right: 16px;
}
.maybe_you_search > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}
.search_result_btn {
    text-align: center;
    padding-top: 16px;
}
.search_result_btn button {
    border: 1px solid #00A59C;
    border-radius: 100px;
    padding: 14px 16px;
    color: #00A59C;
    font-size: 14px;
    background: transparent;
}
.search_result_btn button:hover {
    color: #fff;
    background: #00A59C;
}
.sp_btn_price img {
    width: 16px !important;
    height: 16px !important;
    margin-right: 0 !important;
    display: none;
}
.mobile_search {
    position: fixed;
    top: 0;
    background: #fff;
    width: 100% !important;
    left: 0;
    z-index: 999;
    padding: 10px 16px 10px 57px;
}
.header_search .back {
    position: absolute;
    display: none;
}
.mobile_search_content {
    background: #FFFFFF;
    border-radius: 16px 16px 0 0;
    position: fixed;
    height: 400px;
    bottom: -100vh;
    width: 100%;
    padding: 0 32px;
    z-index: 999;
}
.mobile_search_content_open {
    bottom: -100px;
}
.mobile_search_content input {
    width: 20px;
    height: 20px;
    position: relative;
    margin-right: 8px;
}
.mobile_search_content input:checked:after {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background-color: #fff;
    border: 7px solid #00A59C;
    border-radius: 50px;
    top: -2px;
    left: -2px;
    position: absolute;
}
.mobile_search_content input:checked + label {
    color: #000;
}
.filter_decor {
    width: 100%;
    height: 50px;
    padding-top:8px;
}
.filter_decor span {
    background: #E0E0E0;
    border-radius: 100px;
    width: 88px;
    height: 4px;
    margin: 0 auto 1px;
    display: block;
}
.mobile_search_content form > div {
    margin-bottom: 14px;
}
.mobile_search_content form label {
    color: #828282;
    font-size: 14px;
    position: relative;
    top: -4px;
}
.popup_inputs > div {
    margin-left: 10px;
}
.swiper-button-lock {
    display: flex !important;
}
.product_counter p {
    width: 100%;
    text-align: center;
}
input:focus, input:active {
    border: 1px solid #00A59C !important;
}
.product_counter input:focus, .product_counter input:active{
    border: none !important;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance:none;
}
.toggle_fixed_menu {
    opacity: 0;
    visibility: hidden;
}
.body_scroll {
    overflow: hidden;
}
.mobile_menu_catalog  .catalog_menu {
    position: static;
    width: 100%;
}
.mobile_menu_catalog {
    padding: 0 16px;
    background: #fff;
}