.container {
    padding-inline-end: calc(30px * 2);
    padding-inline-start: calc(30px * 2);
    margin-inline-end: auto;
    margin-inline-start: auto;
    box-sizing: border-box;
    max-width: 1440px;
    flex: 1;
    width: 100%;
}

html, body {
    font-family: Open Sans, Helvetica, Arial, sans-serif ! Important;
    color: #1f2326;
    margin: 0;
    background: url(../media/page-background.webp);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.5;
}

a {
    color: unset;
}

p {
    min-height: 15px;
}


.svg-sprite{
    position: fixed;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}


:focus-visible {
    outline: none;
}

li::marker {
    color: #df7e12;
}

a:hover {
    color: #df7e12;
}


.gr_1 {
    grid-template-columns: repeat(1, 1fr);
}

.gr_2 {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
}

.gr_3 {
    grid-template-columns: repeat(3, 1fr);
}

.gr_4 {
    grid-template-columns: repeat(4, 1fr);
}




.h_top {
    background: #f5f5f5;
}

.h_top .container {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    align-items: center;
}

.login a {
    text-decoration: unset;
    display: block;
}

.h_top .login {
    display: flex;
    justify-content: flex-end;
    padding: 5px;
    align-items: center;
}

.login .links {
    padding: 0px 10px;
    border-right: 1px solid #0000002b;
}

header.site-header {
        border-bottom: 2px solid #df7e12;
        position: relative;
        background: #fff;

}
.header-items {
    display: flex; 
    justify-content: space-between;
    padding: 10px 0px;
}

.phone svg {
    width: 15px;
    height: 15px;
    color: #676968;
    fill: currentColor;
    margin-right: 5px;
}

.logo {
    min-width: 120px;
    width: 20%;
    display: flex;
    align-items: center;
}

.logo img {
    display: flex;
    width: 100%;
}

.disc_label img {
    filter: drop-shadow(1px 1px 2px #0000003d);
}

.user_prof svg {
    width: 20px;
    height: 20px;
    color: #676968;
    fill: currentColor;
}

.login_mob svg {
    width: 30px;
    height: 30px;
    color: #676968;
    fill: currentColor;
}

.up_block {
    display: none;
    background: #f5f5f5;
    padding: 15px 5px 5px;
    z-index: 5;
    border-radius: 0px 0px 5px 5px;
    line-height: 2;
    position: absolute;
    top: 10px;
    left: -1px;
    box-sizing: border-box;
    width: calc(100% + 2px);
    border-right: 1px solid #0000002b;
    border-bottom: 1px solid #0000002b;
    border-left: 1px solid #0000002b;
}

.up_block a:hover {
    color:#df7e12;
}

.user_prof {
    position: relative;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0px 10px;
    border-right: 1px solid #0000002b;
    line-height: 1;
}

.user_prof a {
    text-decoration: none;
    color: #676968;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user_prof:hover .up_block {
    position: absolute;
    display: block;
}


.user_prof:hover svg {
    color: #df7e12;
}

.log_cont {
    width: 40%;
    display: flex;
    justify-content: end;
    max-width: 200px;
}

.cart-cont {
    margin: 10px; 
    text-align: right;
    position: relative;
    cursor: pointer;
}

span.cart-badge {
    position: absolute;
    color: #df7e12;
    top: -8px;
    right: 0px;
    font-size: 0.8rem;
    font-weight: 700;
    width: 20px;
    text-align: center;
}

header.site-header:after {
    border-bottom: 1px solid #df7e12;
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    width: 100%;
}

nav.breadcrumbs {
        padding: 20px 5px;
        color: #a8a69f;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.8rem;
}

nav.breadcrumbs a {
    color: #a8a69f;
    text-decoration: none;
}

h1 {
    font-size: 1.6rem; 
    font-weight: 500;
}

.serach-cont {   
    margin: 5px 10px;
    height: 30px;
    width: 70%;
    text-align: right;
    position: relative;

}

.serach-cont input {
    width: 350px;    
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #0000002b;
    height: 36px;
    transition: width  .4s ease-in-out, border .4s ease-in-out;
    padding: 0 15px;
    box-sizing: border-box;

}

.serach-cont input:focus{
    width: 100%;
    border: 1px solid #df7e12;
}

.serach-cont button {
    position: absolute;
    right: 0;
    height: 80%;
    border: none;
    top: 6px;
    background: unset;
    border-left: 1px solid #c1c1c1;
    padding: 5px 10px;
}

.search-suggest.is-open {
    position: absolute;
    background: #fff;
    z-index: 1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    padding: 10px;
    box-shadow: 0 2px 5px #e1e1e1;

}

.hs-prim {
    grid-template-columns: 2fr 1fr ! Important;
}

.banner-cont {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.banner-in {
    transition: all .5s ease;
    position: relative;
}

.banner-sh img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: 1px solid #eaeaea;
     transition: all .5s ease;
}

.banner-sh img:hover {
    box-shadow: 0 2px 5px #e1e1e1;
   
}

.banner-in img {
    width: 660px;
    height: 100%;
    display: block;
    object-fit: cover;
    max-width: 100%;
    aspect-ratio: 1.94 / 1;
}

.hs-sec {
    filter: brightness(0.95);
    transition: all .5s ease;
}

.e-brand-float {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}

.e-brand-float-content {
    width: 100%;
    position: relative;
    transition: all .5s ease;
}

.e-brand-picture img.no-img-opt {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    width: 100%;
    box-sizing: border-box;
}

.e-brand-float-in {
    box-sizing: border-box;
    border: 1px solid #dddddb;
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    height: 90px;
    transition: all .5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.label-promo-brand {
    display: none;
}

.label-promo-text {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    text-align: center;
}

.e-brand-picture {
    width: 75%;
    padding: 5px;
    transition: all .5s ease;
    text-align: center;
    opacity: 1;
}

.e-brand-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-decoration: none;
    z-index: 1;
    background-color: #FFF;
    opacity: 0;
    filter: alpha(opacity=1);
}

.label-promo-brand-active {
    vertical-align: top;
    position: absolute;
    top: -10px;
    right: -5px;
    z-index: 1;
    font-weight: 700;
    color: rgb(216, 79, 25);
    filter: drop-shadow(rgb(211, 211, 211) 1px 2px 3px);
}

.label-promo-text {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    text-align: center;
}

.e-brand-float-content:hover .e-brand-float-in {
    border: 1px solid #dddddb;
    transition: all .5s ease;
}

.e-brand-float-content:hover .e-brand-picture {
    opacity: 1!Important;
    filter: grayscale(0%) ! Important;
    transition: all .5s ease;
}

.e-brand-float:hover .e-brand-picture {
    opacity: 0.3;
    filter: grayscale(0%);
    transition: all .5s ease;
}

.danner-date {
    position: absolute;
    bottom: 5px;
    left: 10px;
    font-size: 8px;
    color: #676968;
    pointer-events: none;
    padding: 1px 10px;
    border-radius: 5px;
    background: #f5f5f5bd;
    font-weight: 700;
}

.date-visib {
    position: absolute;
    bottom: 5px;
    left: 10px;
    font-size: 8px;
    color: #676968;
    pointer-events: none;
    padding: 1px 10px;
    border-radius: 5px;
    background: #f5f5f5bd;
    font-weight: 700;
}

a.search-suggest__item {
    flex: 1;
    text-decoration: none;
    padding: 5px;
    position: relative;
}

span.ss-score {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 0.6rem;
    display: none;
}

a.search-suggest__item:hover {
    box-shadow: 0 2px 5px #e1e1e1;
}

a.search-suggest__item:hover .search-suggest__name {
     color: #df7e12;
}

.search-suggest__name {
        color: #282828;
    font-size: 0.9rem;
    font-size: 0.9rem;
    line-height: 1.2;
    text-decoration: none;
    color: #282828;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

img.search-suggest__img {
    max-width: 100%;
    aspect-ratio: 1 / 1;
}

.ci_delete {
    position: absolute;
    right: -100%;
    height: 100%;
    width: 100%;
    background: #f3f3f3e6;
    display: grid;
    place-items: center;
    transition: right .4s ease-in-out;
}

.ci_delete_x {
    position: absolute;
    right: 0px;
    top: 5px;
    cursor: pointer;
    z-index: 5;
    width: 20px;
    height: 20px;
}

.del_button {
    cursor: pointer;
}

.del_button:hover {
    color: #d84f19;
}

.cart_cont .c_title  {
    border-bottom: unset;
}

.cart_heder {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #0000002b;
}

.cart_items {
    overflow: auto;
    height: calc(100% - 30px);
}


.ci_text {
    display: flex;
}


.c_title {
    display: flex;
    align-items: center;
    padding: 10px;
    font-weight: 700;

}

span.c_price {
    color: #df7e12;
}

.price-regular {
    line-height: 1;
    font-weight: 700;
    color: #df7e12;
}

.price-new {
    line-height: 1; 
    font-weight: 700;
    color: #d84f19;
}

.price-old {
    font-size: 0.9rem; 
    color: #676968; 
    position: relative; 
    width: fit-content;
 }

 .ci_meta .price-old {
    margin-left: auto;
    display: block;
 }

 .price-old:before {
    background: #6769688c;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    width: 85%;
    top: 40%;
    transform: rotate(340deg);
}

.price sup {
    font-size: 75%;
}

span.currency {
    font-size: 75%;
}



a.cat_cont[data-id="158"] {
    color: #d84f19;
    font-weight: 700;
}

.c_close svg {
    cursor: pointer;
    width: 20px;
    height: 20px;
    color: #676968;
    fill: currentColor;
}

.c_close:hover svg {
    color: #d84f19;
}

.del_button svg {
     cursor: pointer;
    width: 35px;
    height: 35px;
    color: #676968;
    fill: currentColor;
}


.del_button:hover svg {
    color: #d84f19;
}

.serach-cont svg {
    cursor: pointer;
    width: 15px;
    height: 15px;
    color: #676968;
    fill: currentColor;
}


.cart_backg{
  opacity: 0;
  visibility: hidden;
  position: fixed;
  inset: 0;
  background: #0000002b;
  z-index: 3;
  transition:opacity .4s ease-in-out,visibility 0s linear .4s;  
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: none;
}

.cart_backg.visible{
  opacity: 1;
  visibility: visible;
  transition:opacity .4s ease-in-out,visibility 0s linear 0s; 
}


.cart_p_cont{
  display: flex;
  width: 80%;
  position: absolute;
  right: -100%;
  top: 0;
  height: 100%;
  transition: right .4s ease-in-out;
  overflow: hidden;
}

.cart_backg.visible .cart_p_cont{
    right: 0;
}

.cart_prod {
    width: 75%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 5px #0000002b;
    min-width: 250px;
    box-sizing: border-box;
    flex: 1 1 auto;
    overflow-y: hidden;
}

span.c_qty {
    position: relative;
}

span.c_qty input.mini-qty {
    text-align: center;
    width: 70px;
    outline: unset;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    height: 30px;

}

input#newsletter-email {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: none;
    background: no-repeat;
    padding: 0 15px;
}

p.newsletter-consent {
    font-size: 0.8rem;
    background: #fff;
    padding: 0px 5px;
    color: #676968;
    margin-top: 2px;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


input[type=number] {
  -moz-appearance: textfield;
}

button.qty-btn {
    position: absolute;
    height: 100%;
    border: none;
    top: 0;
    width: 25px;
    cursor: pointer;
    font-size: 1.4rem;
    background: #f5f5f5;
}

button.qty-btn.qty-minus {
    left: 0;
}

button.qty-btn.qty-plus {
    right: 0;
}

.qty {
    position: relative;
    width: 20%;
    min-width: 90px;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #ebebeb;
    display: flex;
}

.qty input {
    height: 35px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    border: none;
}

.qty input:focus-visible {
    outline: unset;
    border: 1px solid #ebebeb;
}


.qty input[type=number]::-webkit-inner-spin-button,
.qty input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


button.qty-btn:hover {
    background: #df7e12;
    color: #fff;
}

span.c_qty input#qty:focus-visible {
    outline: unset;
    border: 1px solid #ebebeb;
}

span.ex {
    padding-right: 5px;
}

.cart_backg.visible .cart_p_cont{
    right: 0;
}


.reg_f {
    border: 1px solid #0000002b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    height: 40px;
    position: relative;
    max-width: 360px;
}

.reg_f input[type="text"] {
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.reg_f svg {
    cursor: pointer;
    width: 20px;
    height: 20px;
    color: #676968;
    fill: currentColor;
}

.reg_f button {
    position: absolute;
    right: 0;
    height: 80%;
    border: none;
    top: 5px;
    background: unset;
    border-left: 1px solid #c1c1c1;
    padding: 5px 10px;
}

.reg_f button:hover svg{
   color:#df7e12;
}

.reg_f label.text {
    position: absolute;
    left: 9px;
    top: -10px;
    font-size: 0.8rem;
    background: #fff;
    padding: 0px 5px;
    color: #676968;
}

.cart_side {
    background: #f5f5f5;
    padding: 10px 20px;
    width: 25%;
    min-width: 200px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.m_cart_footer {
    height: calc(100% - 50px);
    display: flex;
    align-items: end;
}

.cart_item {
    display: flex;
    border-bottom: 1px solid #0000002b;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.cart_total {
      padding-top: 20px;
}

.cart_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #676968;
}

.cart_row .discount {
    color: #d84f19;
}

.cart_row.total {
    font-size: 1rem;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #0000002b;
}

.cart_row.total strong {
    color: #df7e12;
}

.free_deliv:after {
    position: absolute;
    width: 100%;
    height: 2px;
    content: '';
    background: #d84f19;
    bottom: 0;
    left: 0;
}

.free_deliv:before {
    position: absolute;
    width: var(--progress, 0%);
    height: 5px;
    content: '';
    background: #5b8548;
    bottom: 0;
    left: 0;
    transition: width 1s ease-in-out;
    z-index: 1;
    border-radius: 0px 5px;
}

.ci_meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    width: 40%;
    height: 75px;
    align-items: center;
    min-width: 200px;
    gap: 20px;
    text-align: right;
}


.divider {
  display: flex;
  align-items: center;
  text-align: center;
width: 100%;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ccc;
}

.divider div {
  padding: 0 10px;
  white-space: nowrap;
}

.to_cart {
    width: 100%;
    background: #df7e12;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0px 20px;
    cursor: pointer;
    height: 35px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.to_cart:hover {
    background: #d84f19;
    color:#fff;
}

.to_cart:hover a {
    color:#fff;
}

.free_deliv {
    font-size: 0.8rem;
    border: 1px solid #0000002b;
    padding: 5px 10px;
    background: #f7f7f7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    justify-content: center;
    overflow: hidden;
    position: relative;
    height: 30px;
}

.ci_sum {
    font-size: 1rem;
    font-weight: 700;
    color: #df7e12;
}

.ci_name {
    font-weight: 500;
    font-size: 0.9rem;
}

.ci_opts {
    font-size: 0.8rem;
    padding: 5px;
}

.ci_info {
    align-items: center;
    display: flex;
}

.c_qty.c_qty--gift {
    text-align: center;
    width: 70px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    height: 30px;
    align-content: center;
}

footer.footer_cont {
    background: #fff;
    margin-top: 30px;
    padding-top: 20px;
    overflow: hidden;
}

footer.footer_cont .container {
    gap: 10px;
    display: grid;
}

.footer-copy {
    text-align: right;
    font-size: 0.8rem;
    line-height: 1;
    margin-top: 5px;
}

.farea {
    flex: 1 0 150px;
    position: relative;
}

.flinks li {
    border-bottom: 1px solid #f3f3f3;
    padding-top: 5px;
}


.flinks {
    display: flex;
    gap: 30px;
}

.oa_text {
    color: #df7e12;
    font-weight: 700;
}

.col_2 {
    padding: 15px 0px 0px;
}

.col_3 {
    padding: 15px 0px 10px;
}

.ob_text {
    font-size: 0.9rem;
}

.ftext {
    font-size: 0.9rem;
}


.ial_logo {
    display: flex;
    padding: 5px 5px 0px;
    margin-bottom: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    gap: 10px;
    border: 1px solid #00000017;
    background: #f5f5f5;
}

.ial_logo img {
    width: 80px;
    border-radius: 5px;
}

nav.footer-column.footer-nav {
    line-height: 1.8;
    font-size: 0.9rem;
}

nav.footer-column.footer-nav li {
    list-style: none;
}

nav.footer-column.footer-nav a {
    text-decoration: none;

}

nav.footer-column.footer-nav ul {
    padding: 0;
}

.bfooter_cont {
    border-top: 1px solid #df7e12;
    padding: 5px 0px 10px;
}

.phone a { text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: #df7e12;

}
.wtime {
    font-size: 0.8rem;
    line-height: 1;
}

.cart svg.icon {
   
    width: 30px;
    height: 30px;
    color: #676968;
    fill: currentColor;
}

.cart {
    position: relative;
}

.cc_cont {
    position: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    bottom: 0;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 8px #00000026;
    z-index: 10;
}

.cc_cont[hidden] {
    display: none !important;
}

.cc_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cc_text {
    width: 75%;
    padding: 20px;
}

.cc_buttons {
    gap: 10px;
    display: grid;
    width: 200px;
    margin-top: 20px;
    padding: 20px;
}

.cart-msg {
    font-size: 0.8rem;
    color: #d84f19;
    padding: 5px 25px;
    font-weight: 700;
    position: relative;
}

.cart-msg.is-error {
    color: #d84f19;
}

.cart-msg.is-error:before {
    content:'\2716';
    position: absolute;
    left: 10px;
    width: 20px;
    height: 10px;
}

.cart-msg.is-ok {
    color: #5b8548;
}

.cart-msg.is-ok:before {
    content:'\2714';
    position: absolute;
    left: 10px;
    width: 20px;
    height: 10px;
}

button.cc_btn.cc_accept_all {
    width: 100%;
    background: #df7e12;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0px 20px;
    cursor: pointer;
    height: 35px;
}

button.cc_btn.cc_settings {
    width: 100%;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0px 20px;
    cursor: pointer;
    height: 35px;
    color: #df7e12;
    border: 1px solid #df7e12;
}

button.cc_btn.cc_deny {
    width: 100%;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0px 20px;
    cursor: pointer;
    height: 35px;
    color: #df7e12;
    border: 1px solid #df7e12;
}

.cc_options {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 70%;
    font-weight: 500;
}

.cms-content {
    background: #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    padding: 20px;
    box-shadow: 0 2px 5px #e1e1e1;
    width: -webkit-fill-available;
}

.login_cont {
  display: grid;
   row-gap: 10px;
    background: #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 2px 5px #0000002b;
    width: 100%;
    box-sizing: border-box;

}


svg.quickview {
    width: 25px;
    height: 25px;
    color: #676968;
    fill: currentColor;
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
}

.lg_cont span {
    margin-bottom: 30px!Important;
}

.rg_cont {
    content: '';
    display: block;
    background-image: url(/media/content/login_tablet.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

section.login-benefits {
    background: #ffffffd4;
    padding: 20px;
}

button.m_toggle {
    display: none;
}

h2.cms_title {
    font-weight: 400;
    color: #df7e12;
    border-bottom: 1px solid #0000002b;
}



.lg_cont {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5% 10%;
    row-gap: 20px;
}

.lg_cont .input {
    border: 1px solid #0000002b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    height: 40px;
    position: relative;
}

.lg_cont label.text {
    position: absolute;
    left: 9px;
    top: -10px;
    font-size: 0.8rem;
    background: #fff;
    padding: 0px 5px;
    color: #676968;
}

.lg_cont input[type="text"], .lg_cont input[type="password"], .lg_cont input[type="email"] {
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.lg_cont span {
    font-size: 1.4rem;
    width: 100%;
    display: block;
    color: #df7e12;
    border-bottom: 1px solid #0000002b;
    margin-bottom: 10px;
    grid-column: 1 / -1;
}

.favorite {
    cursor: pointer;
}


.favorite svg {
    width: 25px;
    height: 25px;
    color: #676968;
    fill: currentColor;
}

.favorite:hover svg{
    color: #df7e12;
}

.log_cont .favorite { 
    margin: 12px 5px;
    text-align: right;
    position: relative;
}

.login_mob {
    margin: 10px 0px;
    text-align: right;
    position: relative;
    display: none;
}

.social_login {
    width: 100%;
    display: flex;
    gap: 10px;
}

.login_btn.google {
    background: #DF4732;
}

.login_btn.facebook {
    background: #507CC0;
}

.login_btn.facebook:hover {
    background: #315285;
}

.login_btn.google:hover {
    background: #942d20;
}



.login_logo svg {
    width: 20px;
    height: 20px;
    color: #fff;
    fill: currentColor;
}

.login_text {
    color: #fff;
}

.login_btn {
    display: flex;
    position: relative;
    width: 100%;
    height: 35px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.login_btn a {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}


.cat-cont-nd {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-top: 15px;
    margin-bottom: 30px;
}

.cont-top-nd {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    display: flex;
    position: relative;
    transition: all .5s ease;
    min-height: 50px;
    position: relative;
    overflow: hidden;
}

.cont-img-nd {
    background: url(/media/content/e-only-w.png); 
    background-repeat: no-repeat;
    position: absolute; 
    top: -10px; 
    right: -15px;
    background-size: 100%;
    width: 100px;
    height: 70px;
    opacity: 0.08;
}

.cont-brand-img-nd {
    position: absolute;
    right: 5px;
    top: 5px;
    text-align: right;
    width: 100%;
    height: 60px;
}

.cont-brand-img-nd img{
    opacity: 0.5;
    transition: all .5s ease;
    max-width: 35%;
    max-height: 50%;
    object-fit: contain;
}

.cont-txt-nd {
    padding-left: 10%; 
    color: #282828!important; 
    display: -webkit-box;
    -webkit-line-clamp: 1;
    margin: auto 0px;
    position: relative;
    transition: all .5s ease;
    text-align: left;
}

.cont-top-nd:hover {
    box-shadow: 0 2px 5px #e1e1e1;
    transition: all .5s ease;
}

.cont-top-nd:hover .cont-brand-img-nd img {
    opacity:1;
    transition: all .5s ease;
}

.subc-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-decoration: none;
    z-index: 1;
    background-color: #FFF;
    opacity: 0;
    filter: alpha(opacity=1);
}

.cont-top-nd:before {content: '';width: 0px;height: 2px;background: #df7e12;display: block;position: absolute;left: 0px;bottom: 0px;transition: all .5s ease;}
.cont-top-nd:hover:before {width: 100px;transition: all .5s ease;}
.filter-c:before {content: 'ИЗБРАНИ ФИЛТРИ'; position: absolute; top: 0px; left: 5px; font-size: 10px; color: #676968;}
.cat-c:before {content: 'КАТЕГОРИИ'; position: absolute; top: 0px; left: 5px; font-size: 10px; color: #676968;}
.brand-c:before {content: 'ИЗБРАНИ МАРКИ'; position: absolute; top: 0px; left: 5px; font-size: 10px; color: #676968;}
.series-c:before {content: 'СЕРИИ';position: absolute; top: 0px; left: 5px ;font-size: 10px; color: #676968;}
.s-cat-c:before {content: 'ПОДКАТЕГОРИИ'; position: absolute; top: 0px; left: 5px; font-size: 10px; color: #676968;}

@media only screen and (min-width: 1024px){
   .c_close.products  {
    display: none;
}

.menu_cont {
    display: flex; 
    gap: 30px;    
    justify-content: space-between;
}

.menu_cont a {
    text-decoration: none;
    color: rgb(40, 40, 40);
    width: 100%;
    display: block;
}

.cat_wrap {
    cursor: pointer;

}

.cat_wrap:hover:before {
    width: 100%;
}



.cat_wrap:before {
        position: absolute;
        bottom: -2px;
        left: 0;
        content: '';
        width: 0px;
        height: 1px;
        background: #df7e12;
        z-index: 2;
}

a.cat_cont {
 padding: 0px 5px;
 text-align: center;
}




.cat_wrap:hover a.cat_cont {
    border-bottom: 2px solid #fff;
    z-index: 3;
    position: relative;
    margin-bottom: -2px;
}


.mega {
        position: absolute;
        left: 0;
        z-index: 1;
        background: #ffffff;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        box-shadow: 0px 20px 20px 0px #0000000f;
        width: -webkit-fill-available;
        transition: max-height 0.4s ease;
        height: 0;
        overflow: hidden;
        max-height: 0px;
        display: block;
}


.cat_wrap:hover .mega {
    height: auto;
    max-height: 500px;

}

.mega_grid {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(6, 1fr);
        padding-inline-end: calc(30px * 2);
        padding-inline-start: calc(30px * 2);
        margin-inline-end: auto;
        margin-inline-start: auto;
        box-sizing: border-box;
        max-width: 1440px;
        flex: 1;
        width: 100%;
        margin: 20px auto;
}

.mega_list {
    display: grid;
    line-height: 1.8;
    margin: 10px 0px 0px 5px;
}

.mega_title {
    color: rgb(40, 40, 40);
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: 1px solid #0000002b;
}

.mega_title:hover { color: #df7e12;}
.mega_link:hover { color: #df7e12;}


.close {
    display: none;
}

.menu_icon {
    display: none;
}

.search-suggest__grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 5px;

}

.search-suggest__name {
    text-align: center;
}
button.cat_toggle {
    display: none;
}


.cat_wrap:hover .mega{
 display: block;
}

.cat_wrap:hover .m_panel{
 display: block;
}

.m_menu_title {
    display: none;
}


.ci_text {
    display: flex;
    width: 60%;
}

}





@media only screen and (max-width: 1023px){

    div#menuBtn {
    display: flex;
    align-items: center;
    width: 10%;
}



.menu_icon svg {
    height: 20px;
    width: 20px;
    cursor: pointer;
    color: #676968;
    fill: currentColor;
}



.menu_icon:hover svg {
    color: #d84f19;
}

.m_menu_title {
        display: flex;
        justify-content: space-between;
        font-size: 1.4rem;
        color: #df7e12;
        font-weight: 500;
        padding: 10px;
}

.menu_cont {
    z-index: 2;
    position: fixed;
    top: 0;
    background: #f7f7f7;
    left: -100%;
    width: 100%;
    box-shadow: 0 2px 5px #0000002b;
    height: 100vh;
    padding: 10px;
    transition: left .4s ease-in-out;
    overflow: auto;
    box-sizing: border-box;
}



.menu_cont.is-open {
    left: 0;
}


.menu_cont .cat_wrap{
    position: relative;
    background: #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    width: -webkit-fill-available;
    margin-bottom: 5px;
    overflow: hidden;
  }

  .cat_wrap.has-children.is-open {
    background: #fff;
}

  .menu_cont .cat_wrap > a.cat_cont{
    display:block;
    padding-right:46px;
    
  }

  .menu_cont .cat_toggle{
    position:absolute;
    right:6px;
    top:10px;        
    width:40px;
    height:40px;
    border:0;
    background:transparent;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-left: 1px solid #ebebeb;
  }

  .menu_cont .cat_toggle::before{
    content:"";
    width:10px;
    height:10px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:rotate(-45deg);
    transition:transform .2s ease;
    display:block;
  }

  .menu_cont .cat_wrap.is-open > .cat_toggle::before{
    transform:rotate(45deg);
  }

  .menu_cont .cat_wrap .mega{
    max-height: 0px;
    transition: max-height .2s ease-in-out;
    overflow: hidden;
  }
  .menu_cont .cat_wrap.is-open .mega{
    max-height: 1000px;
  }


  a.cat_cont {
    padding: 20px 10px;
    display: block;
    text-decoration: none;
    color: #282828;
    font-weight: 700;
}

a.mega_title {
    padding: 5px 20px;
    text-decoration: none;
    display: block;
}


.ci_text {
    width: 100%;
}

.ci_meta {
    width: 100%;
    height: 40px;
}


}












@media only screen and (max-width: 768px){

html, body {
    font-size: 12px;
}


.container {
    padding-inline-end: 5px;
    padding-inline-start: 5px;
}

.header-items {
    flex-wrap: wrap;
}

.serach-cont {
    order: 3;
}




.serach-cont input {
    width: 100%;    
}


.search-suggest__name {
    text-align: left;
    margin-top: 10px;
}

.serach-cont {
    width: 100%;
}


img.search-suggest__img {
    max-width: 65px;
}

a.search-suggest__item {
    display: flex;
    border-bottom: 1px solid #0000002b;
}

.cc_buttons {
    width: 100%;
}

.h_top {
    display: none;
}

.cart_prod {
    height: 60%;
    width: 100%;
}

.cart_p_cont {
    display: block;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.cart_side {
    width: 100%;
    box-shadow: 0 2px 5px #e1e1e1;
}

.cart_cont {
    display: none;
}

.cart_total {
    padding-top: 0px;
}

.c_close.products  {
    display: block;
}





.m_cart_footer {
    height: unset;

    align-items: unset;
}



.user_prof {
    display: none;
}


.gr_1 {
    grid-template-columns: repeat(1, 1fr);
}

.gr_2 {
    grid-template-columns: repeat(1, 1fr);
}

.gr_3 {
    grid-template-columns: repeat(1, 1fr);
}

.gr_4 {
    grid-template-columns: repeat(1, 1fr);
}


.banner-cont {
    grid-template-columns: repeat(1, 1fr);
}

.hs-prim {
    grid-template-columns: repeat(1, 1fr) ! Important;
}

.cat-cont-nd {
    display: flex; 
    overflow: hidden; 
    overflow-x: auto;
}

.cont-top-nd {
    width: 200px; 
    min-width: 200px;
}

.login_mob {
    display: block;
}

.cart svg.icon {
    width: 23px;
    height: 23px
}

.favorite svg {
    width: 20px;
    height: 20px;
}

.login_mob svg {
    width: 25px;
    height: 25px;
}

.bfooter_cont {
    text-align: center;
}

.footer-copy {
    text-align: center;
}

.farea {
    padding: 0px 10px;
}

.oa_text {
    margin-top: 20px;
}

}

