h1,h2,h3,h4,h5,h6 {
    margin: unset;
    font-weight: unset;
    font-size:unset;
    line-height: 150%}
p {margin: unset; margin-bottom: 15px;}
.list_clear {list-style: none;margin: 0;padding: 0;}
:root {
    --general_text_color: rgba(0, 0, 0, 1);
    --button_text_color: rgba(217, 211, 204, 0.7);
    --main_bg: rgba(255,255,255,1);
    --accent-color: #ABA5A0;
    --accent-light-color: #f9f3ea;
    --accent-lighter-color: #fdfaf7;
    --font-smaller:12px;
    --font-small:14px;
    --font-big:22px;
    --status-success:#789d5f;
    --status-error:#ac3939;
    --sa_popup_background_color: rgba(0,0,0,0.5);
    --white_bg:rgba(255,255,255,0.95);
}
body {
    font-family: "Gothic A1", serif;
    font-weight: 600;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: var(--main_bg);
    font-size: 16px;
    line-height: 150%;
    color: var(--general_text_color);
    -webkit-text-size-adjust: 100%;
}

a, a:link, a:visited, a:active {
    color: var(--general_text_color);
    text-decoration: none;
}

a:hover {
    color: var(--general_text_color);
    opacity: 0.8;
    text-decoration: none;
}

.header {
    background-color: var(--accent-color);
    margin-bottom: 30px;
}
.wrap {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.header .wrap {
    min-height: 100px;
}
.flex {
    display: flex;
}

.flex_wrap {
    flex-wrap: wrap;
}

.vertical_middle {
    align-items: center;
}

.flex_column {
    flex-direction: column;
}

.logo {
    background-color: var(--general_text_color);
    margin-right: 15px;
    width: 100px;
    height: 20px;
    -webkit-mask-image: url('../img/logo_text.svg');
    mask-image: url('../img/logo_text.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    display: block;
}

.logo_footer {
    background-color: var(--main_bg);
    width: 100px;
    height: 100px;
    -webkit-mask-image: url('../img/logo_image.svg');
    mask-image: url('../img/logo_image.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    display: block;
    margin-top: 50px;
}

.home .header {
    height: 900px;
}

.home .header .bg_image {
    content: '';
    width: 100%;
    height: 800px;
    display: block;
    background-image: url('../img/header_image-min.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    z-index: 1;
}

.home .header .wrap {
    z-index: 2;
    position: relative;
}

.footer {
    background-color: var(--accent-color);
    padding: 30px 0;
}

.wpml-ls {
    margin-top: 50px;
}

.wpml-ls ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--font-small);
}

.wpml-ls ul li a {
    padding: 0 20px;
}

.wpml-ls ul li + li {
    border-left: solid black 1px;
}

.font_smaller {
    font-size: var(--font-smaller);
}

.font_small {
    font-size: var(--font-small);
}
.font_big {
    font-size: var(--font-big);
}

.li_padding {
    padding: 0 15px;
}

.text_uppercase {
    text-transform: uppercase;
}

.nav_opener {
    background-color: var(--general_text_color);
    display: block;
    width: 24px;
    height: 16px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    cursor: pointer;
    mask-position: center;
    -webkit-mask-position: center;
    margin-left: 25px;
}

.nav_opener.inactive {
    mask-image: url('../img/menu.svg');
    -webkit-mask-image: url('../img/menu.svg');
}

.nav_opener.active {
    mask-image: url('../img/close.svg');
    -webkit-mask-image: url('../img/close.svg');
}

.main_container {
    position: relative;
}

.currency_container {
    margin-left: auto;
    position: relative;
    height: 24px;
    z-index: 2;
}


.currency_list {
    background-color: rgba(255,255,255,0.9);
    padding: 0 10px;
}

.currency_list li.inactive {
    display: none;
}

.currency_container .currency_list.active li.inactive {
    display: block;
}

.currency_list li {
    cursor: pointer;
}

.currency_list li .label {
    margin-left: 5px;
}

.currency_list li.current_currency .label {
    display: none;
}

.currency_list.active li.current_currency .label {
    display: unset;
}

.currency_list li.inactive:hover {
    opacity: 0.8;
}

.cart {
    margin-left: 20px;
}


.cart_icon {
    width: 24px;
    height: 24px;
    background-color: var(--general_text_color);
    display: block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    mask-image: url('../img/cart-shopping.svg');
    -webkit-mask-image: url('../img/cart-shopping.svg');
}

.cart_text {
    display: none;
}

.cart_content .cart_text {
    margin-left: 5px;
    display: block;
}

.cart_number {
    margin-left: 5px;
}

.top_navigation {
    position: absolute;
    width: 100%;
    background-color: var(--accent-color);
    left: 0;
    top: 100px;
    z-index: 2;
    display: none;
}

.top_navigation.active {
    display: block;
}

.top_navigation li {
    margin-bottom: 10px;
}

.top_navigation li a, .top_navigation li span {
    display: block;
    text-align: center;
}

.product {
    flex-direction: column;
    margin-top: 30px;
    padding-bottom: 50px;
}

.product_left {
    min-height: 500px;
    background-color: #EEEEEE;
    margin-bottom: 30px;
    height: 500px;
    position: relative;
}

.product_sizes li {
    margin-right: 20px;
    border-bottom: 1px solid transparent;
    cursor: pointer;
}

.product_sizes li.active {
    border-bottom: 1px solid var(--general_text_color);
    font-size: 20px;
    cursor: unset;
}

.color_name {
    margin-top: 10px;
}

.m_b_20 {
    margin-bottom: 20px;
}
.m_b_30 {
    margin-bottom: 30px;
}

.letter_spacing {
    letter-spacing: 1px;
}

.size_not_found_text {
    padding-bottom: 20px;
    border-bottom: 2px solid var(--general_text_color);
}

.product_button {
    margin-bottom: 50px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    border: 2px solid #000;
    height: 54px;
    line-height: 54px;
    cursor: pointer;
    position: relative;
}

.product_cart_status {
    margin-top: 50px;
    margin-bottom: 10px;
}

.product_button:hover {
    opacity: 0.8;
}

.product_colors {
    align-items: center;
    height: 30px;
}

.product_colors li {
    margin-right: 20px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.product_colors li.active {
    cursor: unset;
    height: 30px;
    width: 30px;
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
    box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
}

.product_info_item_title {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.product_info_item_title:after {
    content: '';
    background-color: var(--general_text_color);
    display: block;
    width: 33px;
    height: 20px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    mask-image: url('../img/icon_arrow.svg');
    -webkit-mask-image: url('../img/icon_arrow.svg');
    transform: rotate(90deg);
}

.active .product_info_item_title:after {
    transform: rotate(-90deg);
}

.product_info_item {
    border-bottom: 2px solid var(--general_text_color);
}

.product_info_item_text {
    padding-top: 10px;
    padding-bottom: 20px;
    display: none;
}

.active .product_info_item_text {
    display: block;
}

.product_images {
    height: 100%;
    width: 100%;
    position: relative;
}

.product_image_slider {
    width: 10px;
    height: 30px;
    background-color: black;
    display: block;
    position: absolute;
    top: calc(50% - 15px);
    background-color: var(--general_text_color);
    display: block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    mask-image: url('../img/icon_arrow.svg');
    -webkit-mask-image: url('../img/icon_arrow.svg');
    cursor: pointer;
}

.image_slider_left {
    left: 15px;
    transform: rotate(180deg);
}

.image_slider_right {
    right: 15px;
}

.product_image_slider:hover {
    opacity: 0.8;
}

.product_image.active_image {
    display: block;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.product_image.active_image video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product_list_item_image {
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.product_list_items {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.product_list_item_content {
    justify-content: space-between;
    margin-top: 10px;
}

.pointer {
    cursor: pointer;
}

.product_list_item_title {
    flex: 0 0 calc(100% - 115px);
}

.product_list_item_price {
    width: 100px;
    text-align:right;
}

.product_images_icons {
    position: absolute;
    bottom: -20px;
    left: 0;
    align-items: center;
}

.product_images_icons li {
    width: 6px;
    height: 6px;
    margin-right: 10px;
    margin-top: 10px;
    border: 1px solid var(--general_text_color);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.product_images_icons li.active {
    background-color: var(--general_text_color);
}

.product_images_icons li.inactive {
    cursor: pointer;
}

.product_images_icons li.inactive:hover {

}

.spinner_bg {
    background-color: var(--general_text_color);
    mask-image: url('../img/icon_load_new.svg');
    -webkit-mask-image: url('../img/icon_load_new.svg');
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    width: 20px;
    height: 20px;
    display: none;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.product_button .spinner_bg {
    position: absolute;
    right: 15px;
    top: 16px;
}

.cart_items .spinner_bg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    width: 30px;
    height: 30px;
}

.order_status_container .spinner_bg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 30px;
}
.cart_button .spinner_bg {
    display: block;
    position: absolute;
    right: 15px;
    top: calc(50% - 10px);
}

#popup_modals .spinner_bg {
    background-color: var(--white_bg);
    width: 30px;
    height: 30px;
}

.status_text ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.status_success {
    color: var(--status-success);
}
.status_error {
    color: var(--status-error);
}

.cart_content {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(255,255,255,1);
    display: none;
    z-index: 30;
    top: 0;
    right: 0;
    flex-direction: column;
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.2);
}

.cart_content span {
    margin-top: auto;
}

.cart_content_top {
    padding: 30px;
    justify-content: space-between;
    align-items: center;
}

.cart_content_close {
    width: 16px;
    height: 16px;
    background-color: var(--general_text_color);
    display: block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    mask-image: url('../img/close.svg');
    -webkit-mask-image: url('../img/close.svg');
    cursor: pointer;
}

.cart_content_close:hover {
    opacity: 0.8;
}

.cart_items {
    height: calc(100% - 280px);
    overflow-y: scroll;
    padding: 0 30px;
}

.cart_product_item {
    border: 1px solid var(--accent-color);
    margin-bottom: 10px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.cart_product_item_image {
    width: 90px;
    height: 90px;
    margin-right: 10px;
}

.cart_product_item_content {
    width: calc(100% - 130px);
}

.cart_product_item_title {
    line-height: 140%;
}

.cart_product_item_meta {
    color: var(--accent-color);
}

.cart_product_item_number_price {
    color: var(--accent-color);
}

.cart_product_item_delete {
    width: 14px;
    height: 14px;
    background-color: var(--general_text_color);
    display: block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    mask-image: url('../img/close.svg');
    -webkit-mask-image: url('../img/close.svg');
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: calc(50% - 7px);
}

.cart_result_container {
    border: 1px solid var(--accent-color);
    margin-left: 30px;
    margin-right: 30px;
    padding: 15px;
}

.cart_total_top {
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart_button {
    text-align: center;
    text-transform: uppercase;
    border: 2px solid var(--general_text_color);
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    position: relative;
}

.cart_button.cart_button_view_more {
    margin-bottom: 15px;
}

.cart_item_number {
    border:1px solid var(--general_text_color);
    width: 16px;
    line-height: 16px;
    display: block;
    text-align: center;
    height: 16px;
    cursor: pointer;
}

.cart_item_number_plus {
    margin-right: 5px;
}

.cart_item_number.disabled {
    opacity: 0.4;
    cursor: unset;
}

.cart_order_page_container {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.cart_order_page_container .cart_items {
    height: unset;
    overflow-y: unset;
    padding: 0;
    order: 2;
}
.cart_order_page_container .cart_result {
    order: 1;
    margin-bottom: 30px;
    margin-left: 0;
}

.cart_order_page_container .cart_result_container {
    margin-right: 0;
    margin-left: 0;
}

.order_status_container {
    order: 3;
    margin-top: 15px;
    width: 100%;
}

.order_statuses {
    width: 100%;
    flex-direction: column;
    counter-reset: item;
    position: relative;
}
.order_statuses:before {
    content: '';
    height: 100%;
    width: 1px;
    background-color: var(--accent-color);
    display: block;
    position: absolute;
    left: calc(50% - 1px);
    z-index: 1;
}

.order_statuses li {
    padding: 5px 10px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    margin-bottom: 15px;
    z-index: 2;
    background-color: var(--accent-lighter-color);
}
.order_statuses li:before {
    display: inline-block;
    content: counter(item) ". ";
    counter-increment: item;
}

.order_statuses li.last {
    margin-bottom: 0;
}
.order_statuses li.active {
    color: var(--status-success);
    border-color: var(--status-success);
}
.order_submit_form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 20px;
}
.input_container {
    margin-bottom: 10px;
    border: 1px solid var(--accent-color);
}
.input_container input {
    border: 0;
    padding: 10px 15px;
    font-size: 16px;
    width: calc(100% - 30px);
    font-family: "Gothic A1", serif;
}
.order_creation_status {
    margin-top: 10px;
}
.single_order_table {
    width: 100%;
    border-left: 1px solid var(--general_text_color);
    border-top: 1px solid var(--general_text_color);
}
.single_order_table td, .single_order_table th {
    border-right: 1px solid var(--general_text_color);
    border-bottom: 1px solid var(--general_text_color);
    padding: 10px;
    text-align: left;
}

.single_order_table_client_info {
    width: fit-content;
    border-left: 1px solid var(--general_text_color);
    border-top: 1px solid var(--general_text_color);
    width: 100%;
}
.single_order_table_client_info td, .single_order_table_client_info th {
    border-right: 1px solid var(--general_text_color);
    border-bottom: 1px solid var(--general_text_color);
    padding: 10px;
    text-align: left;
}

.single_order_table_client_info tr {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.single_order_table_client_info td {
    background-color: var(--accent-light-color);
}

.text_align_right {
    text-align: right !important;
}

.copy_icon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.copy_icon:after {
    content: '';
    background-color: var(--status-success);
    width: 14px;
    height: 14px;
    -webkit-mask-image: url('../img/check.svg');
    mask-image: url('../img/check.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    margin-left: 10px;
    margin-left: auto;
}
.copy_icon.inactive:after {
    -webkit-mask-image: url('../img/icon_copy.svg');
    mask-image: url('../img/icon_copy.svg');
    background-color: var(--accent-color);
}

.order_status_message {
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 30px;
}
.text_center {
    text-align: center;
}
.m_b_10 {
    margin-bottom: 10px;
}

.m_t_15 {
    margin-top: 15px;
}

.select_container {
    border: 1px solid var(--accent-color);
    position: relative;
    width: 100%;
    cursor: pointer;
    margin-bottom: 10px;
    background-color: var(--main_bg);
}

.select_container_text {
    width: calc(100% - 44px);
    padding: 0 15px;
    height: 37px;
    line-height: 38px;
    padding-bottom: 1px;
    text-align: left;
}

.select_container:after {
    margin-left: auto;
    position: absolute;
    right: 15px;
    top: 10px;
    content: '';
    background-color: var(--accent-color);
    display: block;
    width: 20px;
    height: 20px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    mask-image: url('../img/icon_arrow.svg');
    -webkit-mask-image: url('../img/icon_arrow.svg');
    transform: rotate(90deg);
}

.active.select_container:after {
    transform: rotate(-90deg);
}

.select_container_list {
    position: absolute;
    top: 38px;
    left: -1px;
    margin: 0;
    padding: 0;
    background-color: var(--main_bg);
    max-height: 250px;
    width: calc(100% + 2px);
    z-index: 60;
    overflow-y: scroll;
    display: none;
    border: 1px solid var(--accent-color);
    font-size: var(--font-small);
}


.active .select_container_list {
    display: block;
}

ul.select_container_list li {
    text-align: left;
    padding: 4px 15px;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.order_password_button {
    text-align: center;
    text-transform: uppercase;
    border: 2px solid var(--general_text_color);
    height: 40px;
    cursor: pointer;
    position: relative;
    width: 100%;
    background: none;
    font-family: "Gothic A1", serif;
    font-weight: 600;
    font-style: normal;
    font-size: var(--font-small);
    color: var(--general_text_color) !important;
}

.single_order_page_admin {
    background-color: var(--accent-lighter-color);
    padding: 15px;
    border: 1px solid var(--accent-color);
}

.submit_container {
    border: 2px solid var(--general_text_color);
    height: 40px;
    line-height: 40px;
    display: flex;
    flex-wrap: wrap;
    background-color: var(--main_bg);
    position: relative;
}

.submit_container .input_submit {
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    background: none;
    font-family: "Gothic A1", serif;
    font-weight: 600;
    font-style: normal;
    font-size: var(--font-small);
    cursor: pointer;
    border: none;
}

.submit_container .spinner_bg {
    position: absolute;
    right: 15px;
    top: 10px;
}

input[type="text"], input[type="password"], textarea, select, button {
    outline: none !important;
    -webkit-appearance: none !important;
    -webkit-border-radius: 0 !important;
}
.front_row {
    display: flex;
    flex-direction: column;
}
.front_row_image {
    order: 2;
    display: flex;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 20px;
    flex-direction: column;
}
.front_row_image a {
    display: block;
    text-align: center;
    margin: auto;
    width: fit-content;
    text-transform: uppercase;
    height: 54px;
    line-height: 54px;
    padding: 0 25px;
    background-color: rgba(255,255,255,0.3);
}
.front_row_products {
    order: 1;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.front_row_product {
    margin-bottom: 20px;
}

.m_t_50 {
    margin-top: 50px;
}
.m_b_50 {
    margin-bottom: 50px;
}

.landing_text_button {
    text-align: center;
    text-transform: uppercase;
    border: 2px solid var(--general_text_color);
    height: 40px;
    line-height: 40px;
    display: block;
    width: fit-content;
    padding: 0 20px;
}
.page-template-template-info article {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.page-template-template-info h2 {
    margin-bottom: 20px;
    text-transform: uppercase;
    margin-top: 30px;
    font-size: 18px;
}

.page-template-template-info .wp-block-image {
    margin-bottom: 40px;
}

.page-template-template-info .wp-block-quote {
    font-size: 30px;
    line-height: 150%;
    margin-left: 0;
    margin-right: 0;
}

.product_video_icons {
    position: absolute;
    top: 10px;
    left: 10px;
    align-items: center;
}
.product_video_icons li {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    background-color: var(--button_text_color);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.product_video_icons li:before {
    content: '';
    background-color: #FFFFFF;
    display: block;
    width:40px;
    height:40px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    mask-image: url('../img/circle-play.svg');
    -webkit-mask-image: url('../img/circle-play.svg');
}

.popup_container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    background-color: var(--sa_popup_background_color);
    visibility:hidden;
}

.popup_container.show {
    visibility: visible;
    z-index: 500000;
}
.popup_window .popup_close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--general_text_color);
    display: block;
    width: 16px;
    height: 16px;
    mask-image: url('../img/close.svg');
    -webkit-mask-image: url('../img/close.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    cursor: pointer;
    z-index: 2;
}

.popup_block {
    background-color: var(--white_bg);
}
.padding_big {
    padding: 30px;
}
.pos_relative {
    position: relative;
}

.product_info_item table {
    width: 100%;
    border-left: 1px solid var(--general_text_color);
    border-top: 1px solid var(--general_text_color);
}

.product_info_item table th, .product_info_item table td {
    border-right: 1px solid var(--general_text_color);
    border-bottom: 1px solid var(--general_text_color);
    padding: 5px 10px;
}

.product_right {
    margin-top: 15px;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg);
    }
    to {
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform:rotate(0deg);
        transform:rotate(0deg);
    }
    to {
        -moz-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@-o-keyframes spin {
    from {
        -o-transform:rotate(0deg);
        transform:rotate(0deg);
    }
    to {
        -o-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);
    }
    to {
        -webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@media screen and (min-width: 500px) {
    .product_left {
        min-height: 700px;
    }
    .logo {
        width: 128px;
        height: 26px;
    }
    .cart_text {
        margin-left: 5px;
        display: block;
    }
    .currency_list li.current_currency .label {
        display: unset;
    }
    .cart_content {
        width: 400px;
    }
    .order_submit_form {
        flex-direction: row;
        justify-content: space-between;
    }

    .order_submit_form .input_container, .order_submit_form .select_container {
        flex: 0 0 calc(50% - 10px);
    }
}

@media screen and (min-width: 768px) {

    .front_row_products {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: auto;
        padding-left: 30px;
        padding-right: 30px;
    }
    .front_row_product {
        margin-bottom: 20px;
        width: calc(50% - 10px);
    }

    .order_submit_form .input_container, .order_submit_form .select_container {
        flex: 0 0 calc(25% - 10px);
    }

    .cart_order_page_container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .cart_order_page_container .cart_items {
        padding: 0;
        width: calc(100% - 400px);
        order: 1;
    }
    .cart_order_page_container .cart_result {
        width: 400px;
        order: 2;
        margin-bottom: unset;
    }
    .cart_order_page_container .cart_result_container {
        margin-left: 30px;
    }
    .product_list_items {
        flex-direction: row;
        justify-content: space-between;
    }

    .product_list_item {
        flex: 0 0 calc(50% - 15px);
    }

    .top_navigation li a, .top_navigation li span {
        text-align: unset;
    }

    .header .wrap {
        position: relative;
    }
    .home .nav_opener {
        display: none;
    }

    .wrap {
        padding-left: 30px;
        padding-right: 30px;
    }

    .home .header {
        height: 1060px;
    }

    .home .header .bg_image {
        background-image: url('../img/header_image-min.jpg');
        top: 0;
        height: 1060px;
    }
    .top_navigation {
        position: absolute;
        right: 0;
        top: 100px;
        padding: 15px;
        padding-top: 0;
        padding-bottom: 5px;
        -webkit-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.2);
        -moz-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.2);
        box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.2);
        left: unset;
        height: unset;
        width: unset;
        background-color: var(--main_bg);
    }
    .home .top_navigation {
        top: 100px;
        display: block;
        left: 30px;
        right: unset;
        background-color: unset;
        padding:unset;
        padding-top:unset;
        padding-bottom: unset;
        -webkit-box-shadow: unset;
        -moz-box-shadow: unset;
        box-shadow: unset;
    }
    .product {
        flex-direction: row;
        justify-content: space-between;
    }
    .product_left {
        width: calc(60% - 10px);
        margin-bottom: 0;
        height: 700px;
    }
    .product_right {
        width: calc(40% - 10px);
        margin-top: unset;
    }
    .header {
        background-color: unset;
        margin-bottom: unset;
    }
    .single-products .nav_opener, .page-template-template-catalog .nav_opener {
        display: none;
    }
    .single-products .top_navigation, .page-template-template-catalog .top_navigation {
        position: relative;
        top: unset;
        display: block;
        left: unset;
        right: unset;
        background-color: unset;
        padding: unset;
        padding-top: unset;
        padding-bottom: unset;
        padding-top: unset;
        padding-bottom: unset;
        -webkit-box-shadow: unset;
        -moz-box-shadow: unset;
        box-shadow: unset;
        width: 100%;
        margin-top: 30px;
    }

    .single-products .top_navigation ul, .page-template-template-catalog .top_navigation ul {
        flex-direction: row;
    }

    .single-products .top_navigation ul li, .page-template-template-catalog .top_navigation ul li {
        margin-bottom: 0;
        margin-right: 30px;
    }

}
@media  screen and (min-width: 900px) {
    .order_statuses {
        width: 100%;
        flex-direction: row;
    }
    .order_statuses li {
        flex-grow: 1;
        flex-basis: 0;
        margin-right: 15px;
        margin-bottom: 0;
    }
    .order_statuses:before {
        width: 100%;
        height: 1px;
        top: calc(50% - 1px);
        left: unset;
    }
    .order_statuses li.last {
        margin-right: 0;
    }
}

@media screen and (min-width: 1000px) {
    .front_row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .front_row_image {
        height: unset;
        width: calc(50%);
        margin-bottom: 0;
    }
    .front_row_products {
        width: calc(50% - 110px);
        padding: 40px 50px;
        justify-content: space-between;
        margin-bottom: unset;
    }
    .front_row_product {
        width: calc(50% - 20px);
    }

    .row_image_left .front_row_image {
        order: 1;
    }
    .row_image_left .front_row_products {
        order: 2;
    }
    .row_image_right .front_row_image {
        order: 2;
    }
    .row_image_right .front_row_products {
        order: 1;
    }

    .order_statuses li {
        margin-right: 30px;
    }
    .single-products .top_navigation ul, .page-template-template-catalog .top_navigation ul {
        flex-direction: column;
    }

    .single-products .top_navigation ul li, .page-template-template-catalog .top_navigation ul li {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .single-products .top_navigation, .page-template-template-catalog .top_navigation {
        position: absolute;
        top: 100px;
        display: block;
        left: 30px;
        right: unset;
        background-color: unset;
        padding: unset;
        padding-top: unset;
        padding-bottom: unset;
        padding-top: unset;
        padding-bottom: unset;
        -webkit-box-shadow: unset;
        -moz-box-shadow: unset;
        box-shadow: unset;
        margin-top: unset;
        width: unset;
    }
    .product {
        margin-left: 250px;
        margin-top: 0;
    }
    .page-template-template-catalog .site-main article {
        margin-left: 250px;
        margin-top: 0;
    }
    .home .header {
        height: 810px;
    }

    .home .header .bg_image {
        background-image: url('../img/header_big-min.jpg');
        top: 0;
        height: 810px;
    }
    .front_row_product .product_list_item_image {
        height: 300px;
    }
    .front_row_product .product_list_item_title {
        text-align: right;
        margin-bottom: 10px;
        width: 100%;
        flex: unset;
    }
    .front_row_product .product_list_item_price {
        width: 100%;
    }
    .front_row_product .product_list_item_content {
        flex-direction: column;
        justify-content: unset;
        flex-wrap: unset;
    }
}

@media screen and (min-width: 1290px) {
    .product_list_item_image {
        height: 500px;
    }
    .front_row_product .product_list_item_image {
        height: 300px;
    }
    .single-products .top_navigation, .page-template-template-catalog .top_navigation {
        left: 0;
    }
    .wrap {
        max-width: 1260px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }
    .front_row_products {
        max-width: 580px;
        margin-left: auto;
    }
    .row_image_left .front_row_products {
        margin-left: unset;
        margin-right: auto;
        padding-right: 0;
    }
    .row_image_right .front_row_products {
        padding-left: 0;
    }

    .home .top_navigation {
        left: 0;
    }
}