@import url(/css/styles.null.css);
@import url(/css/root.css);
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



.wrapper {
    min-height: 100%;
    max-width: 1200px;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-color);
    box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.4);
}


/* POPUPS */
/* contact us popup */
.contact_us_popup-bg {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgb(0, 0, 0, 0.3);
    z-index: 99998;
    display: none;
}
.contact_us_popup-bg.active {
    display: block;
}
.contact_us_popup-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    max-width: 90vw;
    height: 590px;
    box-shadow: 0 2px 7px rgba(1, 1, 1, 0.3);
    background-color: #ffffff;
    z-index: 99999;
    padding: 50px 40px;
}
.contact_us_popup-body input, .contact_us_popup-body label, .contact_us_popup-body button {
    display: block;
}
.contact_us_popup-form {
    display: none;
    position: relative;
}
.contact_us_popup-form .close_popup {
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    font-size: 28px;
    top: -35px;
    right: -35px;
    transform: rotate(45deg);
    cursor: pointer;
}
.contact_us_popup-form.active {
    display: block;
}
.contact_us_popup-title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}
.contact_us_popup-undertitle {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
}
.contact_us_popup-name_label {
    margin: 37px 0 7px 0;
}
.contact_us_popup-name_input {
    width: 100%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 0 6px;
}
.contact_us_popup-email_label {
    margin: 26px 0 7px 0;
}
.contact_us_popup-email_input {
    width: 100%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 0 6px;
}
.contact_us_popup-message_label {
    margin: 26px 0 7px 0;
}
.contact_us_popup-message_input {
    width: 100%;
    max-width: 380px;
    height: 120px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    resize: none;
    padding: 6px;
}
.contact_us_popup-btn {
    margin: 30px auto 0;
    width: 200px;
    height: 40px;
    border-radius: 3px;
    background-color: #3e607d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
.contact_us_popup-message_after {
    margin: 30px auto 0;
    text-align: center;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    display: none;
}
/* login popup */
.login_popup-bg {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgb(0, 0, 0, 0.3);
    z-index: 99998;
    display: none;
}
.login_popup-bg.active {
    display: block;
}
.login_popup-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 474px;
    max-width: 90vw;
    height: 454px;
    box-shadow: 0 2px 7px rgba(1, 1, 1, 0.3);
    background-color: #ffffff;
    z-index: 99999;
    padding: 50px 40px;

}
.login_popup-body input, .login_popup-body label, .login_popup-body button {
    display: block;
}
.login_popup-form {
    display: none;
    position: relative;
}
.login_popup-form .close_popup {
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    font-size: 28px;
    top: -35px;
    right: -35px;
    transform: rotate(45deg);
    cursor: pointer;
}
.login_popup-form.active {
    display: block;
}
.login_popup-title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}
.login_popup-login_label {
    margin: 37px 0 7px 0;
}
.login_popup-login_input {
    width: 100%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 0 6px;
}
.login_popup-password_label {
    margin: 26px 0 7px 0;
}
.login_popup-password_input {
    width: 100%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 0 6px;
}
.login_popup-reset_btn {
    margin-top: 29px;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
    text-decoration: underline;
    color: #3e607d;
    font-size: 16px;
    font-weight: 500;
}
.login_popup-submit_btn {
    margin: 45px auto 0;
    width: 200px;
    height: 40px;
    border-radius: 3px;
    background-color: #3e607d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
/* reset password popup */
.resetpass_popup-bg {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgb(0, 0, 0, 0.3);
    z-index: 99998;
    display: none;
}
.resetpass_popup-bg.active {
    display: block;
}
.resetpass_popup-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    max-width: 90vw;
    height: 300px;
    box-shadow: 0 2px 7px rgba(1, 1, 1, 0.3);
    background-color: #ffffff;
    z-index: 99999;
    padding: 50px 40px;
}
.resetpass_popup-form {
    display: none;
    position: relative;
}
.resetpass_popup-form .close_popup {
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    font-size: 28px;
    top: -35px;
    right: -35px;
    transform: rotate(45deg);
    cursor: pointer;
}
.resetpass_popup-form.active {
    display: block;
}
.resetpass_popup-body input, .resetpass_popup-body label, .resetpass_popup-body button {
    display: block;
}
.resetpass_popup-title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}
.resetpass_popup-label {
    margin: 26px 0 7px 0;
}
.resetpass_popup-input {
    width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 0 6px;
}
.resetpass_popup-reset_btn {
    margin: 45px auto 0;
    width: 200px;
    height: 40px;
    border-radius: 3px;
    background-color: #3e607d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
.resetpass_popup-message_after {
    margin: 30px auto 0;
    text-align: center;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    display: none;
}
/* register popup */
.register_popup-bg {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgb(0, 0, 0, 0.3);
    z-index: 99998;
    display: block; /* none */
}
.register_popup-bg.active {
    display: block;
}
.register_popup-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    max-width: 90vw;
    height: 300px;
    box-shadow: 0 2px 7px rgba(1, 1, 1, 0.3);
    background-color: #ffffff;
    z-index: 99999;
    padding: 50px 40px;
}
.register_popup-form {
    display: none;
    position: relative;
}
.register_popup-form .close_popup {
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    font-size: 28px;
    top: -35px;
    right: -35px;
    transform: rotate(45deg);
    cursor: pointer;
}
.register_popup-form.active {
    display: block;
}
.register_popup-bg {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgb(0, 0, 0, 0.3);
    z-index: 99998;
    display: none;
}
.register_popup-bg.active {
    display: block;
}
.register_popup-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    max-width: 90vw;
    height: 662px;
    box-shadow: 0 2px 7px rgba(1, 1, 1, 0.3);
    background-color: #ffffff;
    z-index: 99999;
    padding: 50px 40px;
}
.register_popup-form {
    display: none;
}
.register_popup-form.active {
    display: block;
}
.register_popup-title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}
.register_popup-body input, .register_popup-body label, .register_popup-body button {
    display: block;
}
.register_popup-firstname_label {
    margin: 26px 0 7px 0;
}
.register_popup-firstname_input {
    width: 100%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 0 6px;
}
.register_popup-secondname_label {
    margin: 26px 0 7px 0;
}
.register_popup-secondname_input {
    width: 100%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 0 6px;
}
.register_popup-contry_flexbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 26px 0 7px 0;
}
.register_popup-country_label {
    margin-right: 10px;
}
.register_popup-country_select {
    width: 100%;
    max-width: 310px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding-left: 10px;
}
.register_popup-nocountry_message {
    color: #ac251f;
    font-size: 16px;
    font-weight: 300;
    margin: 10px 63px 0 121px;
    white-space: nowrap;
    display: none;
}
.register_popup-email_label {
    margin: 26px 0 7px 0;
}
.register_popup-email_input {
    width: 100%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 0 6px;
}
.register_popup-password_label {
    margin: 26px 0 7px 0;
}
.register_popup-password_input {
    width: 100%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 0 6px;
}
.register_popup-passwordconfirm_label {
    margin: 26px 0 7px 0;
}
.register_popup-passwordconfirm_input {
    width: 100%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 0 6px;
}
.register_popup-submit_btn {
    margin: 30px auto 0;
    width: 200px;
    height: 40px;
    border-radius: 3px;
    background-color: #3e607d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
/* add to card popup */
.add_to_cart_popup-body .close_popup {
    display: block;
    position: absolute;
    font-size: 28px;
    top: 8px;
    right: 8px;
    transform: rotate(45deg);
    cursor: pointer;
}
.add_to_cart_popup-relbox {
    position: relative;
    width: 100%;
    height: 100%;
}
.add_to_cart_popup-bg {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgb(0, 0, 0, 0.3);
    z-index: 99998;
    display: none;
}
.add_to_cart_popup-bg.active {
    display: block;
}
.add_to_cart_popup-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    max-width: 90vw;
    height: 250px;
    box-shadow: 0 2px 7px rgba(1, 1, 1, 0.3);
    background-color: #ffffff;
    z-index: 99999;
    display: none;
}
.add_to_cart_popup-body.active {
    display: block;
}
.add_to_cart_popup-title {
    padding-top: 40px;
    text-align: center;
    color: #0d0d0d;
    font-size: 20px;
    font-weight: 500;
}
.add_to_cart_popup-btn {
    display: block;
    margin: 33px auto 0;
    width: 200px;
    height: 40px;
    border-radius: 3px;
    background-color: #3e607d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
.continue_shopping_link {
    text-align: center;
    color: #3e607d;
    font-size: 16px;
    font-weight: 500;
    margin-top: 19px;
    cursor: pointer;
}
.leave_feedback_popup-bg {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgb(0, 0, 0, 0.3);
    z-index: 99998;
    display: none;
}
.leave_feedback_popup-bg.active {
    display: block;
}
.leave_feedback_popup-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    max-width: 90vw;
    height: 430px;
    box-shadow: 0 2px 7px rgba(1, 1, 1, 0.3);
    background-color: #ffffff;
    z-index: 99999;
    padding: 0 40px 50px;
}
.leave_feedback_popup-form {
    display: none;
    position: relative;
}
.leave_feedback_popup-form .close_popup {
    display: block;
    position: absolute;
    font-size: 28px;
    top: 0;
    right: -32px;
    transform: rotate(45deg);
    cursor: pointer;
}
.leave_feedback_popup-form.active {
    display: block;
}
.leave_feedback_popup-title {
    padding-top: 50px;
    color: #0d0d0d;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}
.leave_feedback_popup-radio_flexbox {
    margin: 42px auto 0;
}
.leave_feedback_popup-radio {
    margin-right: 12px;
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.leave_feedback_popup-radio+.leave_feedback_popup-radio_label {
    user-select: none;
    display: inline-flex;
    align-items: center;
}
.leave_feedback_popup-radio+.leave_feedback_popup-radio_label:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #000000;
    background-color: #f1f1f1;
    margin-right: 14px;
    cursor: pointer;
}
.leave_feedback_popup-radio:checked+.leave_feedback_popup-radio_label:before {
    background-color: #000;
    outline: 2px solid #f1f1f1;
    outline-offset: -3px;
}
.leave_feedback_popup-radio_label {
    margin-right: 15%;
}
.leave_feedback_popup-radio_label:last-of-type {
    margin-right: 0;
}
.leave_feedback_popup-text {
    margin-top: 38px;
}
.leave_feedback_popup-message_input {
    margin-top: 21px;
    width: 100%;
    height: 120px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    resize: none;
}
.leave_feedback_popup-btns_block {
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
    margin-top: 21px;
}
.cancel_leave_feedback {
    display: block;
    color: #3e607d;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}
.leave_feedback_popup-btn {
    display: block;
    width: 200px;
    height: 40px;
    border-radius: 3px;
    background-color: #3e607d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
/* END OF POPUPS */
.flexbox {
    display: flex;
}
.container {
    max-width: 944px;
    width: 78.666%;
    margin: auto;
}
/* start of top menu */
.hdr_navi-top {
    height: 30px;
    margin: 0 0 0 auto;
    max-width: 360px;
}
.navi_top-list {
    display: flex;
    justify-content: space-between;
    height: 30px;
    align-items: center;
    font-family: 'Roboto';
}
.navi_top-list-item {
}
.client_office-item {
    display: none;
}
.navi_top-list-item a {
    color: var(--secondary-color);
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    font-family: 'Roboto';
}
.navi_top-list-item img {
    width: 20px;
    height: 19px;
    cursor: pointer;
}
/* end of top menu */
/* start of banner and menu block */
.hdr_banner {
    height: 258px;
    background: url(/img/header_img.png) center right no-repeat;
    background-color: #0d0d0d;
    position: relative;
}
.hdr_menu-block {
    max-width: 426px;
    margin-left: 11%;
    padding-top: 59px;
}
.page_title {
    font-size: 45px;
    font-weight: 400;
    line-height: 1em;
    font-style: italic;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}
.page_title span {
    font-size: 55px;
    font-weight: bold;
    position: relative;
    top: 7px;
}
.page_title_undertext {
    margin-top: 27px;
    padding-left: 38px;
    color: #ffffff;
    height: 18px;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6.6px;
    text-align: center;
    font-style: italic;
    white-space: nowrap;
}
.navi-container {
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 60px;
    background-color: #282828;
}

.hdr_banner-navi {
}
.hdr_banner-list {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    max-width: 675px;
    margin-left: 11%;
}
.hdr_banner-list-item a {
    color: #fff;
    display: block;
    height: 18px;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    font-weight: 100;
}
/* end of banner and menu block */

/* main */
.main {
    margin-top: 75px;
}
.main_container {
    max-width: 944px;
    width: 78.666%;
    margin: auto;
}

.private_office-block {
    margin-top: 73px;
}
.private_office-title {
    color: #0d0d0d;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}
.private_office-navi {
    margin-top: 44px;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: #c8c8c8;
    position: relative;
}
.private_office-navi-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}
.navi_list-item {
    color: #3e607d;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    width: calc(100% / 3);
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.navi-account.acount {
    color: #fff;
}
.navi-orders.orders {
    margin-top: 0;
    color: #fff;
}
.navi-saved-products.saved {
    color: #fff;
}
.progress_bar.acount {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% / 3);
    height: 100%;
    background-color: #3e607d;
    border-radius: 20px;
    transition: all 1s ease 0s;
    z-index: 1;
}
.progress_bar.orders {
    position: absolute;
    top: 0;
    width: calc(100% / 3);
    height: 100%;
    background-color: #3e607d;
    border-radius: 20px;
    left: 33.333%;
    margin-top: 0;
    transition: all 1s ease 0s;
    z-index: 1;
}
.progress_bar.saved {
    position: absolute;
    top: 0;
    width: calc(100% / 3);
    height: 100%;
    background-color: #3e607d;
    border-radius: 20px;
    left: 66.666%;
    margin-top: 0;
    transition: all 1s ease 0s;
    z-index: 1;
}
/* private setting */
.private_setting.active {
    margin-top: 40px;
    width: 100%;
    display: block;
}
.private_setting-form {
    display: grid;
    grid-template-rows: 62px 92px 50px 50px 81px;
    grid-template-columns: 50% 50%;
    column-gap: 6.4%;
    width: 100%;
    margin: auto;
}
.pseudo_bg_img {
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 10px;
    background: url(/img/icons/edit_near_input.svg) no-repeat;
    position: absolute;
    right: 20px;
    top: 27px;
    cursor: pointer;
}
.form_first_name-block {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    position: relative;
}
.form-firstname_label {
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 300;
}
.form-firstname_input {
    margin-top: 10px;
    width: 85%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 4px 6px;
}
.private_setting-form input[readonly], .private_setting-form select[disabled] {
    background-color: rgb(207, 207, 207);
    border: 1px solid #4b4b4b;
}

.form_last_name-block {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    align-self: end;
    position: relative;
}
.form-secondname_label {
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 300;
}
.form-secondname_input {
    margin-top: 10px;
    width: 85%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 4px 6px;
}
.form_email-block {
    grid-row: 3 / 5;
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    align-self: center;
    position: relative;
}
.form-email_label {
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 300;
}
.form-email_input {
    margin-top: 10px;
    width: 85%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 4px 6px;
}
.form_adress-block {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    position: relative;
}
.form-adress_label {
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 300;
}
.form-adress_input {
    margin-top: 10px;
    width: 85%;
    max-width: 380px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 4px 6px;
}
.form-contry_flexbox {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}
.form-country_label {
    margin-right: 13px;
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 300;
}
.form-country_select {
    width: 85%;
    max-width: 310px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #fff;
    padding-left: 18px;
}
.form-nocountry_message {
    position: absolute;
    bottom: 7px;
    left: 35%;
    color: rgb(126, 36, 36);
    display: none;
}
.form_lastpassword-block {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    display: flex;
    align-items: center;
    align-self: start;
}
.form-lastpassword_label {
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 300;
    margin-right: 17px;
}
.form-lastpassword_input {
    width: 100%;
    max-width: 260px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 4px 6px;
}
.form_newpassword-block {
    grid-row: 4 / 5;
    grid-column: 2 / 3;
    display: flex;
    align-items: center;
    align-self: center;
}
.form-newpassword_label {
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 300;
    margin-right: 17px;
}
.form-newpassword_input {
    width: 100%;
    max-width: 260px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    background-color: #ffffff;
    padding: 4px 6px;
}
.save_change_btn {
    grid-row: 5 / 6;
    grid-column: 1 / 3;
    display: block;
    margin: auto;
    width: 120px;
    height: 40px;
    border-radius: 3px;
    background-color: #3e607d;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}
/* end of private setting */
/* orders */
.orders {
    margin-top: 43px;
    display: block;
}
.order {
    display: flex;
    justify-content: space-between;
}
.order_products {
    max-width: 620px;
}
.order_info {
    display: flex;
    color: #3e607d;
    font-size: 18px;
    font-weight: 500;
}
.number_of_order {
    
}
.vertical_line {
    display: block;
    height: 18px;
    width: 2px;
    background-color: #3e607d;
    margin: 0 12px;
}
.date_of_order {
}
.summ_of_order {
}
.order_products_item {
    margin-top: 30px;
    display: flex;
}
.order_products_item-img {
    display: block;
    width: 100%;
    max-width: 60px;
    height: 100%;
    max-height: 60px;
    min-height: 60px;
    border: 1px solid rgba(157, 162, 159, 0.2);
    background-color: #c8c8c8;
    margin-right: 20px;
}
.order_products_item-info {
}
.products_item-title {
    font-size: 18px;
    font-weight: 500;
}
.products_item-item_number {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}
.products_item-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}
.products_item-price {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
.products_item-quantity {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}
.order_status {
}
.when_will_arrive {
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 300;
}
.when_will_arrive span {
    font-weight: 700;
}
.when_delivered {
    color: #5091c9;
    font-size: 16px;
    font-weight: 500;
    margin-left: 34px;
    margin-bottom: 18px;
}
.shipping_in_progress-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 283px;
    height: 50px;
    background-color: #e6e6e6;
    padding: 10px 36px;
}
.invoice_and_when_shipped {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
}
.invoice {
}
.when_shipped {
}
.check_invoice-btn {
    width: 78px;
    height: 30px;
    border-radius: 3px;
    border: 1px solid #260101;
    color: #592b03;
    font-size: 16px;
    font-weight: 500;
}
.delivery_time {
    margin-top: 20px;
}
.delivery_time-title {
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 300;
}
.delivery_time-date {
    margin-top: 5px;
    font-weight: 700;
}
.status_where_now {
    margin-top: 37px;
    margin-left: 34px;
}
.status-title {
    font-weight: 300;
}
.status-place {
    margin-top: 4px;
    color: #3e607d;
    font-size: 16px;
    font-weight: 500;
}
.add_feedback {
    margin-top: 22px;
    margin-left: 34px;
    width: 168px;
    height: 30px;
    border-radius: 3px;
    border: 1px solid #260101;
    color: #592b03;
    font-size: 16px;
    font-weight: 500;
}
.add_feedback.active {
    color: #000;
}
.customer_info {
    margin-top: 40px;
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}
.customer_info-title {
}
.customer_info-name {
}
.customer_info-city_street_house {
}
.customer_info-state_postcode {
}
.customer_info-country {
}
.cancel_order-btn {
    margin-top: 34px;
    width: 139px;
    height: 30px;
    border-radius: 3px;
    border: 1px solid #260101;
    color: #592b03;
    font-size: 16px;
    font-weight: 500;
}
.orders hr {
    margin: 38px 0;
    width: 100%;
    height: 1px;
    background-color: #c8c8c8;
}
.order:first-of-type .shipping_in_progress-block {
    display: none;
}
.order:first-of-type .when_delivered {
    display: none;
}
.order:first-of-type .status_where_now {
    display: none;
}
.order:first-of-type .add_feedback {
    display: none;
}
.order:nth-of-type(2) .when_will_arrive {
    display: none;
}
.order:nth-of-type(2) .delivery_time {
    margin-left: 34px;
}
.order:nth-of-type(2) .add_feedback {
    display: none;
}
.order:nth-of-type(2) .customer_info {
    margin-left: 34px;
}
.order:nth-of-type(2) .cancel_order-btn {
    display: none;
}
.order:nth-of-type(2) .when_delivered {
    display: none;
}
.order:nth-of-type(3) .when_will_arrive {
    display: none;
}
.order:nth-of-type(3) .check_invoice-btn {
    display: none;
}
.order:nth-of-type(3) .status_where_now {
    display: none;
}
.order:nth-of-type(3) .delivery_time {
    display: none;
}
.order:nth-of-type(3) .customer_info {
    margin-left: 34px;
}
.order:nth-of-type(3) .cancel_order-btn {
    display: none;
}
/* start of product pages */
.saved_pages {
    width: 100%;
    margin-top: 60px;
}
.saved_pages-navi {
}
.saved_pages-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 323px;
    height: 20px;
    margin: 0 auto;
}
.product_pages-list_item {
    height: 20px;
    width: 20px;
}
.product_pages-list_item a {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
}
.product_pages-list_item span {
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    font-weight: 400;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.first_page {
    margin-right: -16px;
}
.product_pages-list_item.first_page span {
    display: block;
    width: 7px;
    height: 7px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    position: relative;
}
.first_page span:before {
    content:'';
    display: block;
    width: 7px;
    height: 7px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    position: absolute;
    left: 3px;
    bottom: 3px;
}
.first_page a {
    transform: rotate(45deg);
}
.product_pages-list_item.prev_page span {
    display: block;
    width: 7px;
    height: 7px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    position: relative;
}
.prev_page a {
    transform: rotate(45deg);
}
.product_pages-list_item.next_page span {
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    position: relative;
}
.next_page a {
    transform: rotate(45deg);
}
.product_pages-list_item.last_page span {
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    position: relative;
}
.last_page span:after {
    content:'';
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    position: absolute;
    left: 4px;
    bottom: 4px;
}
.last_page a {
    transform: rotate(45deg);
}
.last_page {
    margin-left: -22px;
}
.active_link_span {
    margin-top: 1px;
    width: 20px;
    font-size: 16px;
    font-weight: bolder;
    color: var(--secondary-color);
}
.active_link_span:hover {
    background-color: #0d0d0d;
    color: #ffffff;
}
/* end of product pages */
/* end of orders */
/* saved products */

.saved_products {
    display: block;
}
.product_card._rows {
    margin: 21px auto 0;
    width: 85%;
    height: 191px;
    position: relative;
    display: grid;
    grid-template-columns: 163px 1fr 138px;
    grid-template-rows: 1fr;
    justify-content: space-between;
    background-color: #fff;
}
.product_card._rows .product_card-img_container {
    grid-row: 1/5;
    grid-column: 1/1;
    width: 100%;
    height: 100%;
    max-width: 163px;
    max-height: 191px;
    background-color: #fff;
    border: 1px solid rgba(157, 162, 159, 0.2);
    position: relative;
}
.product_card._rows img {
    width: 100%;
    max-width: 136px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product_card._rows .sold_out {
    display: block;
    height: 40px;
    width: 161px;
    background-color: rgb(157, 162, 159, 0.5);
    position: absolute;
    top: 77px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    padding-top: 8px;
    letter-spacing: normal;
    text-align: center;
    display: block;
    z-index: 2;
}
.product_card._rows .percent {
    position: absolute;
    top: 0;
    left: 98px;
}
.product_card._rows .product_card-info {
    grid-row: 1/5;
    grid-column: 2/6;
    display: grid;
    grid-template-columns: 77px 49px 92px 193px;
    grid-template-rows: 47px 50px 50px 44px;
    margin-left: 10px;
    color: var(--secondary-color);
    width: 100%;
}
.product_card._rows .product_card-title {
    display: block;
    color: var(--secondary-color);
    grid-row: 1/1;
    grid-column: 1/4;
    margin-top: 26px;
    font-size: 20px;
    font-weight: bolder;
}
.product_card._rows .feedbacks_and_available_flexbox {
    grid-row: 2/3;
    grid-column: 1/5;
    margin-top: 19px;
    display: flex;
    justify-content: space-between;
    width: 323px;
    white-space: nowrap;
}
.product_card._rows .product_card-available_sold {
    display: flex;
}
.product_card._rows .product_card-available {
    margin-right: 40px;
}
.product_card._rows .product_card-feedbacks span {
    font-weight: 400;
}
.product_card._rows .product_card-heart {
    position: absolute;
    bottom: 10px;
    left: 10px;
    fill: #787d32;
    stroke: #787d32;
    cursor: pointer;
}
.product_card-heart path {
    fill: #787d32;
}
.product_card._rows .product_card-available_sold {
    display: flex;
    justify-content:left;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
}
.product_card._rows .product_card-quantity {
    grid-row: 3/4;
    grid-column: 1/4;
    height: 30px;
    display: flex;
}
.quantity_label {
    align-self: start;
    margin-right: 15px;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    align-self: center;
}
.quantity_input {
    width: 80px;
    height: 30px;
    border-radius: 3px;
    border: 1px solid #0d0d0d;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
    padding: 0 5px;
}
.product_card._rows .product_card-price {
    grid-row: 4/5;
    grid-column: 1/4;
    display: flex;
    justify-content: space-between;
    align-items: start;
    max-width: 190px;
    font-size: 16px;
    font-weight: 500;
}
.price_was {
    text-decoration: line-through;
    text-decoration-color: rgb(88, 88, 88);
}
.price_save {
    color: #7d4d4b;
}
.product_card._rows .product_card-shipping_cost {
    grid-row: 4/5;
    grid-column: 4/5;
    position: relative;
    left: -20px;
    top: 2px;
    font-size: 14px;
    font-weight: 400;
}
.product_card._rows .product_card-vat_free {
    grid-row: 3/4;
    grid-column: 4/5;
    margin-top: 8px;
    color: #787d32;
    font-size: 14px;
    font-weight: 500;
}
.product_card._rows .product_card-buttons {
    grid-row: 1/5;
    grid-column: 6/7;
    width: 138px;
    padding: 0 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product_card._rows .product_card-buttons button {
    margin: 6px 0;
}
.product_card._rows .soldout_btn {
    width: 100px;
    height: 30px;
    border-radius: 3px;
    background-color: #9da29f;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    display: none;
}
.product_card._rows .buy_now_btn {
    width: 100px;
    height: 30px;
    border-radius: 3px;
    background-color: #3e607d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
.product_card._rows .add_to_cart_btn {
    width: 100px;
    height: 30px;
    border-radius: 3px;
    border: 1px solid #260101;
    color: #592b03;
    font-size: 16px;
    font-weight: 500;
}
.product_card._rows:first-of-type .buy_now_btn, .product_card._rows:first-of-type .add_to_cart_btn {
    display: none;
}
.product_card._rows:first-of-type .soldout_btn {
    display: block;
}
.product_card._rows:nth-of-type(2) .sold_out {
    display: none;
}
.product_card._rows:nth-of-type(3) .sold_out {
    display: none;
}
.product_card._rows:nth-of-type(3) .percent {
    display: none;
}
.product_card._rows:nth-of-type(3) .price_was, .product_card._rows:nth-of-type(3) .price_save {
    display: none;
}
/* end of saved products */
/* end of main */

/* start of footer */
.ftr {
    margin-top: 54px;
    background-color: var(--secondary-color);
}
.ftr_flexbox {
    display: flex;
    justify-content: space-between;
    padding: 58px 0;
    color: #fff;
}
.ftr_info {
    font-size: 16px;
    font-weight: 300;
}
.ftr_info-title {
    font-size: 18px;
    font-weight: 500;
}
.ftr_info-hours_weekdays {
    margin-top: 13px;
}
.ftr_info-hours_saturday {
    margin-top: 13px;
}
.ftr_info-hours_sunday {
    margin-top: 13px;
}
.ftr_info-payment_cards {
    margin-top: 27px;
}
.ftr_info-payment_cards img:first-of-type {
    margin-right: 23px;
}
.ftr_subscribe {
    margin-right: 31px;
}
.ftr_subscribe-title {
    font-size: 18px;
    font-weight: 500;
}
.ftr_subscribe-input_and_btn {
    margin-top: 13px;
}
.ftr_subscribe-input {
    width: 220px;
    height: 40px;
    border-radius: 3px;
    background-color: #f6f5f5;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 500;
}
.ftr_subscribe-input::placeholder {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
}
.ftr_subscribe-input:focus::placeholder {
    opacity: 0;
}
.ftr_subscribe-btn {
    margin-left: 4px;
    width: 100px;
    height: 40px;
    border-radius: 3px;
    border: none;
    background-color: #5191c9;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.ftr_social_list {
    width: 100%;
    max-width: 180px;
    height: 32px;
    display: flex;
    justify-content: space-between;
    margin-top: 31px;
}
.ftr_social_list-item {
    width: 32px;
    height: 32px;
}
.ftr_social_list-item object {
    width: 32px;
    height: 32px;
    filter:invert(100%);
}
.ftr_social_list-item a {
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer;
}
.social_facebook object:hover {
    filter: invert(39%) sepia(10%) saturate(3010%) hue-rotate(182deg) brightness(95%) contrast(92%);
}
.social_instagram object:hover {
    filter: invert(71%) sepia(41%) saturate(5049%) hue-rotate(343deg) brightness(100%) contrast(93%);
}
.social_linkedin object:hover {
    filter: invert(31%) sepia(89%) saturate(728%) hue-rotate(161deg) brightness(100%) contrast(90%);
}
.social_twitter object:hover {
    filter: invert(46%) sepia(81%) saturate(641%) hue-rotate(154deg) brightness(98%) contrast(111%);
}
/* end of footer */
/* adaptive */
@media (max-width: 1130px) {
    .form-country_select {
        width: 69%;
    }
    .shipping_in_progress-block {
        margin-left: 30px;
    }
    .ftr_subscribe-input {
        width: 190px;
        height: 40px;
        border-radius: 3px;
        background-color: #f6f5f5;
        padding-left: 20px;
        font-size: 16px;
        font-weight: 500;
    }
}
@media (max-width: 1060px) {
    .form-country_select {
        width: 64%;
    }
    .pseudo_bg_img {
        right: 10px;
    }
    .ftr_flexbox {
        display: flex;
        flex-wrap: wrap;
        padding: 49px 0;
        color: #fff;
    }
}
@media (max-width: 940px) {
    .order_status {
        margin-left: 25px;
    }
    .product_card._rows {
        display: flex;
    }
    .product_card._rows .sold_out {
        width: 100%;
        max-width: 163px;
    }
    .product_card._rows .percent {
        left: 10px;
    }
    .product_card._rows .product_card-info {
        display: block;
    }
    .product_card-quantity {
        margin: 8px 0;
    }
    .product_card._rows .product_card-shipping_cost {
        left: 0;
        margin: 10px 0;
    }
}
@media (max-width: 858px) {
    .product_card._rows .sold_out {
        height: 60px;
    }
    .product_card._rows {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 460px;
        width: 400px;
    }
    .product_card._rows .product_card-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .product_card._rows .feedbacks_and_available_flexbox {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hdr_banner-list {
        margin: auto;
    }
    .ftr_subscribe {
        margin-top: 42px;
    }
    .ftr_subscribe-input {
        width: 220px;
        margin-right: 20px;
        height: 40px;
        border-radius: 3px;
        background-color: #f6f5f5;
        padding-left: 20px;
        font-size: 16px;
        font-weight: 500;
    }
    .ftr_social_list {
        margin-top: 42px;
        margin-bottom: 5px;
        align-self: end;
    }
    .product_card-price {
        width: 70%;
    }
}
@media (max-width: 800px) {
    .pseudo_bg_img {
        right: 0;
    }
}
@media (max-width: 767px) {
    .private_setting-form {
        display: block;
        width: 70%;
    }
    .private_setting-form label {
        margin-top: 10px;
    }
    .private_setting-form input {
        margin: 8px auto auto 0;
        width: 85%;
    }
    .form-contry_flexbox {
        margin-top: 30px;
    }
    .form-country_select {
        width: 69%;
        max-width: 69%;
    }
    .pseudo_bg_img {
        top: 36px;
        right: -10px;
    }
    .pseudo_bg_img.for_select {
        top: 2px;
    }
    .form_lastpassword-block {
        margin-top: 20px;
    }
    .form_newpassword-block {
        margin-top: 20px;
    }
    .save_change_btn {
        margin-top: 26px;
    }
    .navi-container {
        position: absolute;
        width: 100vw;
        height: 40px;
        background-color: var(--secondary-color);
        bottom: 0;
        left: 0;
    }
    .hdr_banner {
        background-color: rgb(0, 0, 0, 1);
        background-image: linear-gradient(to top, #150e0e 0%, rgba(0, 0, 0, 0.05) 100%), url(/img/header_img.png);
        background-position: center right;
        background-size: 80%;
    }
    .hdr_banner-navi {
        height: 280px;
    }
    .hdr_banner-list {
        display: flex;
        flex-direction: column;
        margin-top: 50px;
    }
    .hdr_banner-list-item {
        margin-bottom: 20px;
        font-size: 24px;
    }
    .burger_block {
        width: 28px;
        height: 33px;
        position: relative;
        margin: auto 14px 0 auto;
        top: 4px;
        overflow: hidden;
        z-index: 999;
    }
    .burger_block span {
        display: block;
        width: 100%;
        height: 4px;
        background-color: #fff;
        position: relative;
        top: calc(50% - 2px);
        transition: all 0.3s ease 0s;
    }
    .burger_block span:before {
        content: '';
        display: block;
        width: 100%;
        height: 4px;
        background-color: #fff;
        position: absolute;
        top: 10px;
    }
    .burger_block span:after {
        content: '';
        display: block;
        width: 100%;
        height: 4px;
        background-color: #fff;
        position: absolute;
        bottom: 10px;
        transition: all 0.3s ease 0s;
    }
    .hdr_banner-navi {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: 100vw;
        z-index: 998;
        background-color: var(--secondary-color);
    }
    .burger_block._active~.hdr_banner-navi {
        display: block;
    }
    .burger_block._active span {
        transform: rotate(45deg);
        transition: all 0.3s ease 0s;
    }
    .burger_block._active span:before {
        top: 0;
        width: 0;
    }
    .burger_block._active span:after {
        bottom: 0;
        transform: rotate(-90deg);
        transition: all 0.3s ease 0s;
    }
}
@media (max-width: 676px) {
    .order {
        display: block;
    }
    .order_status {
        margin-top: 40px;
        margin-left: 0;
    }
}
@media (max-width: 564px) {
    .form-country_select {
        width: 60%;
        max-width: 60%;
    }
}
@media (max-width: 500px) {
    .leave_feedback_popup-radio_label {
        margin-right: 10px;
    }
    .leave_feedback_popup-body {
        height: max-content;
    }
    .product_card._rows {
        width: 100%;
    }
    .hdr_menu-block {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        margin: auto;
    }
    .page_title {
        font-size: 36px;
        text-align: center;
    }
    .page_title_undertext {
        font-size: 20px;
        padding-left: 0;
        text-align: center;
    }
    .add_to_cart_popup-body {
        height: max-content;
    }
    .add_to_cart_popup-body.active {
        padding: 0 !important;
    }
}
@media (max-width: 481px) {
    .ftr_subscribe-btn {
        margin: 18px 0 0 0;
    }
    .form-country_select {
        width: 55%;
        max-width: 55%;
    }
}
@media (max-width: 400px) {
    .order_info {
        font-size: 14px;
    }
    .form-country_select {
        width: 50%;
        max-width: 50%;
    }
}

@media (max-width: 390px) {
    .leave_feedback_popup-btns_block {
        display: block;

    }
    .leave_feedback_popup-btn {
        margin-top: 15px;
    }
    .check_invoice-btn {
        margin-left: 7px;
    }
    .private_setting-form input {
        margin: 8px auto auto 0;
        width: 80%;
    }
    .form-country_select {
        width: 46%;
        max-width: 46%;
    }
    .shipping_in_progress-block {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }
    .hdr_banner {
        background-size: 100%;
    }
    .page_title {
        font-size: 27px;
        font-weight: 400;
        font-style: italic;
        color: #fff;
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        text-align: center;
    }
    .page_title span {
        font-size: 34px;
        font-weight: bold;
        top: 5px;
    }
    .page_title_undertext {
        margin-top: 17px;
        padding-left: 0;
        color: #ffffff;
        height: 18px;
        font-size: 13px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 6.6px;
        text-align: center;
        font-style: italic;
        white-space: nowrap;
    }
}
@media (max-width: 332px) {
    .order_info {
        font-size: 12px;
    }
}
@media (max-width: 320px) {
    .container {
        width: 296px;
        margin: auto;
    }
    .hdr_navi-top {
        height: 50px;
        margin: auto;
        width: 100%;
    }
    .navi_top-list {
        height: 50px;
        display: flex;
        align-items: center;
    }
    .hdr_banner {
        height: 178px;
        background-color: rgb(0, 0, 0, 1);
        background-image: linear-gradient(to top, #150e0e 0%, rgba(0, 0, 0, 0.1) 100%), url(/img/header_img_320.png);
        background-position: top center;
        background-size: contain;
        position: relative;
    }
    .hdr_menu-block {
        padding-top: 40px;
    }
    .navi-container {
        position: absolute;
        bottom: 0;
    }
    .burger_block {
        width: 20px;
        height: 14px;
        margin: 0 10px 0 auto;
        position: relative;
        top: 13px;
        overflow: hidden;
        z-index: 999;
    }
    .burger_block span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: relative;
        top: calc(50% - 1px);
        transition: all 0.3s ease 0s;
    }
    .burger_block span:before {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        top: 7px;
    }
    .burger_block span:after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        bottom: 7px;
        transition: all 0.3s ease 0s;
    }
    .hdr_banner-navi {
        display: none;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 998;
        background-color: var(--secondary-color);
    }
    .hdr_banner-list._active {
        width: 100%;
        position: relative;
        left: 0;
    }
    .ftr {
        margin-top: 40px;
    }
    .ftr_flexbox {
        display: flex;
        flex-direction: column;
        padding: 49px 0;
        color: #fff;
    }
    .ftr_info {
        font-size: 14px;
        font-weight: 400;
    }
    .ftr_info-title {
        font-size: 14px;
        font-weight: 400;
    }
    .ftr_info-hours_weekdays {
        margin-top: 13px;
    }
    .ftr_info-hours_saturday {
        margin-top: 13px;
    }
    .ftr_info-hours_sunday {
        margin-top: 13px;
    }
    .ftr_info-payment_cards {
        margin-top: 27px;
    }
    .ftr_info-payment_cards img:first-of-type {
        margin-right: 23px;
    }
    .ftr_subscribe {
        margin: 42px auto 0;
    }
    .ftr_subscribe-title {
        font-size: 16px;
        font-weight: 500;
    }
    .ftr_subscribe-input_and_btn {
        margin-top: 13px;
    }
    .ftr_subscribe-input {
        width: 190px;
        height: 40px;
        border-radius: 3px;
        background-color: #f6f5f5;
        padding-left: 20px;
        font-size: 16px;
        font-weight: 500;
    }
    .ftr_subscribe-btn {
        margin-left: 0;
        width: 100px;
        height: 40px;
        border-radius: 3px;
        border: none;
        background-color: #5191c9;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
    }
    .ftr_social_list {
        width: 100%;
        max-width: 180px;
        height: 32px;
        margin:auto;
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
    }
}