/* BODY START */
body {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    background-image: url(../img/bg/1440px-bg-Catalog-row.png);
    background-repeat: repeat-y;
    background-position: top center;
}
body.front_page {
    background-image: url(../img/bg/1440px-bg-Catalog-row.png);
    background-repeat: repeat-y;
    background-position: top center;
}

body.single_product_page .catalog_header.wrapper {
    padding-bottom: 0;
}

/* BODY END */

/* HERO_LAYOUT START */
.hero_wrapper {
    background-image: url(../img/bg/hero-1440.png);
    background-position: center center;
    background-repeat: no-repeat;
}

.hero_inner {
    margin: 0 auto;
    height: 960px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 120px);
}

/* HEADER START */
.header {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
}

/* HEADER END */

.hero {
    grid-row: 2 / 10;
    grid-column: 1 / 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
}

/* HERO_LAYOUT END */

/* HEADER_LOGO START */
.header_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    grid-column: 1 / 2;
    grid-row: 1;
}

/* HEADER_LOGO END */

.menu-primary-container {
    grid-column: 2 / 10;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #fff;
}

/* NAVIGATION START */
/* .main-navigation {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: 100%;
  grid-column: 2 / 10;
  grid-row: 1;

} */

/* NAVIGATION END */


/* HEADER_CONTACTS START */
.header_contacts {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    grid-column: 10 / 12;
    grid-row: 1;
    background-color: #fff;
}

/* HEADER_CONTACTS END */

/* HEADER_CART START */
.header_cart {
    grid-column: 12 / 13;
    grid-row: 1;
}

/* HEADER_CART END */

/* BUTTONS START */
.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    border: none;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    gap: 15px;
    text-decoration: none;
}

.btn_cart {
    background: var(--orange-accent);
    color: var(--white);
}


.btn_cart:hover {
    background: var(--black);
    color: var(--white);
}

.btn_cart svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn_cart svg {
    fill: var(--white);
}

.btn_orange {
    background-color: var(--orange-accent);
    color: var(--white);
}
.btn_checkout{
    width: 50%;
}


/* BUTTONS END */

/* NAV_MENU START */
.nav-menu {
    display: flex;
    column-gap: 15px;
}

.nav-menu a {
    padding: 15px;

}

/* MOBILE MENU */
body {
    position: relative;
}

.mobile_menu_button {
    display: flex;
    align-items: center;
}

.mobile_menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - 180px);
    z-index: 1000;


}

.mobile_menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease 0s;
}


.mobile_clouse_wrapper {
    display: flex;
    align-items: center;
    height: 90px;
    border-bottom: 1px solid var(--light-gray);
    justify-content: start;
}

.mobile_clouse_wrapper svg {
    margin-left: 40px;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    margin-left: 40px;
    margin-top: 30px;
    align-self: start;
    gap: 30px;
}

.mobile_contacts_wrapper {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.mobile_contacts_item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 90px;
    padding-left: 40px;
    border-top: 1px solid var(--light-gray);
}

.mobile_contacts_callback {
    border-bottom: 1px solid var(--light-gray);
}


/* NAV_MENU END */


/* PHONE_WRAPPER START */
.phone_wpapper {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.phone_item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    border-left: 1px solid var(--light-gray);
}

.header_callback {
    width: 100%;
    border-top: 1px solid var(--light-gray);
    cursor: pointer;
}

.header_callback:hover {
    border: 1px solid var(--black);
    box-sizing: border-box;
}

/* PHONE_WRAPPER END */

/* CART_ICON START */


.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.cart-icon svg {
    fill: var(--black);
}

.cart-icon:hover {
    background-color: var(--orange-accent);
}

.cart-icon:hover .shopping_cart {
    fill: var(--white);
}

.cart-icon:hover .cart-count-wrapper {
    color: var(--white);
}

.cart-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header_phone {
    font-weight: 700;
}

.header_phone:hover {
    border: 1px solid var(--black);
    color: var(--black);
    box-sizing: border-box;
}

.cart-count-wrapper {
    color: var(--orange-accent);
}

.cart-count-wrapper {
    position: absolute;
    top: -13px;
    right: -15px;
    color: var(--orange-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* CART_ICON END */

/* HERO_LEFT_CONTENT START */
.hero_item_left {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 120px);
    height: 840px;
}

.row_1 {
    grid-row: 2/4;
    grid-column: 1;
}

.row_2 {
    grid-row: 4/5;
    grid-column: 1;
}

.row_3 {
    grid-row: 5/6;
    grid-column: 1;
}

.row_4 {
    grid-row: 6/7;
    grid-column: 1;
}

.hero_title {
    font-family: Oswald;
    font-size: clamp(2rem, 1.05rem + 4.23vw, 6.13rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: var(--black);
}

/* HERO_LEFT_CONTENT END */

/* HERO_SUBTITLE START */
.hero_subtitle_wrapper {
    display: flex;
    align-items: center;
    justify-content: start;
}

.hero_subtitle {
    display: flex;
    align-items: center;
    justify-content: start;
    font-family: Oswald, sans-serif;
    font-size: clamp(1.38rem, 1.29rem + 0.38vw, 1.75rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 120%;
    color: var(--black);
}

/* HERO_SUBTITLE END */

/* HERO_TEXT START */
.hero_text_wapper {
    display: flex;
    justify-content: start;
    align-items: center;
    /* padding: 20px 40px; */
    background-color: #fff;
    max-width: calc(100% / 6 * 3.9);
    min-height: 120px;
    padding-left: 20px;
}

/* HERO_TEXT END */

/* HERO_BUTTON START */
.hero_button {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 360px;
}

.hero_button svg {
    fill: var(--white);
}

/* HERO_BUTTON END */

/* HERO_RIGHT_CONTENT START */
.hero_item_right {
    display: flex;
}

/* HERO_RIGHT_CONTENT END */

/* HERO_IMAGE START */
.hero_img {
    max-height: 800px;
    margin-left: -220px;
}

/* HERO_IMAGE END */

/* HERO_TITLE_RIGHT START */
.hero_title_right {
    display: flex;
    margin-top: 240px;
    margin-left: -60px;
}

/* HERO_TITLE_RIGHT END */

/* REASONS START */
.reasons_wrapper {
    background-image: url(../img/bg/reasons-1440-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    /* overflow: hidden; */
}

.reasons_inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 1fr);
    height: 960px;
}

.cell_row_1 {
    grid-row: 1/2;
    grid-column: 1/2;
}

.reasons_title {
    grid-row: 2/3;
    grid-column: 1/2;
}

.reasons_items {
    grid-row: 3/8;
    grid-column: 1/2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.cell_row_2 {
    grid-row: 8/9;
    grid-column: 1/2;
}

.reasons_item {
    /* display: grid; */
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    border-right: 1px solid var(--light-gray);
    box-sizing: border-box;
}

.resans_icon_wrapper {
    padding-top: 40px;
}

.reasons_item_img {
    width: 100%;
    height: auto;

}

.reasons_svg_768 {
    display: none;
}

.reasons_item_title {
    font-size: 28px;

}

.reasons_item_text {
}

.reasons_text_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    row-gap: 20px;
}

.reasons_item:last-child {
    border-right: none;
}

.resans_icon,
.reasons_item_title,
.reasons_item_text {
    padding-left: 40px;
    padding-right: 40px;
}

.resans_icon {
    padding-bottom: 40px;
}

.reasons_item_text {
    padding-bottom: 40px;
}


/* ASSORTIMENT */
.assortiment_wrapper {
    background-image: url(../img/bg/assortiment-1440-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    height: 1320px;
    padding-top: 120px;
    padding-bottom: 120px;
}

.assortiment_items {
    display: grid;
    grid-template-rows: repeat(2, 480px);
    grid-template-columns: repeat(2, 720px);
    background-color: var(--light-gray);
}

.assortiment_item {
    padding: 40px;
    position: relative;
    border-bottom: 1px solid var(--grid-gray);
    border-right: 1px solid var(--grid-gray);
}


.assortiment_item:hover {
    color: #fff;
    fill: #fff;
    background-color: var(--orange-accent);
    background-image: url(../img/assortiment/assort_el_1.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
}

.assortiment_img {
    position: absolute;
    bottom: 40px;
    right: 40px;
    height: 50%;
}

.assortiment_item:first-child .assortiment_img {
    height: 90%;
    bottom: 0;
    right: 0;
}

.assortiment_item:hover h3,
.assortiment_svg {
    fill: #fff;
    color: #fff;
}

.assortiment_item:hover .assortiment_arrow {
    fill: #fff;
}

.assortiment_arrow {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 40px;
    height: 40px;
}

.assortiment_item svg {
    fill: var(--black);
}


.assortiment_text {
    max-width: 420px;
    margin-top: 20px;
}

/* TABS */
.tabs-container {
    margin: 0 auto;
    background: var(--white);
    display: flex;
}

/* Боковое меню табов */
.tabs-nav {
    width: 280px;
    margin-right: 40px;
    margin-left: 40px;
    border-right: 1px solid var(--white);
}

.tab-button {
    width: 100%;
    padding: 20px 30px;
    padding-left: 0;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;

    border-bottom: 1px solid var(--grid-gray);
}

.tab-button:hover {
    /* background-color: #f9f9f9; */

}

.tab-icon {
    width: 24px;
    height: 24px;
    font-size: 20px;
}

/* Контент табов */
.tabs-content {
    flex: 1;
    padding: 40px;
    border-left: 1px solid var(--grid-gray);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: flex;
    justify-content: space-between;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tab-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: #222;
    text-transform: uppercase;
    font-weight: bold;
}

.tab-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.tab-text::before {
    content: "";
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M0 0L12 6L0 12L2.72 6L0 0Z' fill='%23FD3D0E'/%3E%3C/svg%3E");
    width: 12px;
    height: 12px;
    color: #ff6b35;
    margin-right: 10px;
    font-size: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;

}

.delivery_wrapper {
    background-image: url(../img/bg/delivery-1440.png);
    background-position: center center;
    background-repeat: no-repeat;
    height: 1200px;
    padding-top: 120px;
}

.delivery_title {
    height: 120px;
}

.tabs-container {
    display: flex;
    height: 480px;
}

.tab_title_wrapper {
    height: 120px;
    display: flex;
    align-items: center;
}

.tab-icon svg {
    fill: var(--black);
}

.tab-button {
    height: 120px;
}

.tab-button.active .tab-icon svg {
    fill: var(--orange-accent);
    color: var(--orange-accent);
}

.tab-button.active {
    color: var(--orange-accent);
}


/* Адаптивность */
@media (max-width: 768px) {
    .tabs-container {
        flex-direction: column;
    }

    .tabs-nav {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .tab-button {
        border-right: none !important;
        border-bottom: 2px solid transparent;
    }

    .tab-button.active {
        border-right: none;
        border-bottom: 2px solid var(--orange-accent);
    }
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee {
    height: 240px;
    display: flex;
    align-items: center;
    width: fit-content;
    animation: scroll 20s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    height: 80px;
}

.logo-item img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Текстовые логотипы (если нет картинок) */
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .logo-item {
        padding: 0 30px;
        height: 60px;
    }

    .logo-item img {
        max-height: 40px;
    }

    .logo-text {
        font-size: 18px;
    }
}

/* ABOUT */

.about_wrapper {
    background-image: url(../img/bg/about-1440.png);
    background-position: center center;
    background-repeat: no-repeat;
    height: 960px;
    color: var(--white);
    padding-top: 120px;
    padding-bottom: 120px;
}

.about_wrapper .container {
    height: 100%;
}

.about_title,
.about_item_title {
    color: inherit;
}

.about_content {
    height: 100%;
    position: relative;
}

.about_item {
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 20px;
}

.about_item:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    height: 210px;
    width: 600px;
}

.about_item:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 240px;
    width: 480px;
    background-color: var(--light-black);
}

.about_item:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 240px;
    width: 480px;
    background-color: var(--light-black);
}

.about_item:nth-child(4) {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 240px;
    width: 480px;
    background-color: var(--light-black);
}

.about_circle {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 530px;
    width: 530px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: 2;
    animation: rotate 10s linear infinite reverse;
}

.about_arrow {
    position: absolute;
    top: calc(50% + 0px);
    left: calc(50% - 0px);
    height: 395px;
    width: 395px;
    transform: translate(-58%, -50%);
    z-index: 10;
    -webkit-transform: translate(-58%, -50%);
    -moz-transform: translate(-58%, -50%);
    -ms-transform: translate(-58%, -50%);
    -o-transform: translate(-58%, -50%);
}


@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.wrapper {
    background-position: top center;
    background-repeat: no-repeat;
    /* background-size: 100%; */
    padding-top: 120px;
    padding-bottom: 120px;
}

.hero_wrapper {
    background-image: url(../img/bg/hero-1440.png);
    padding-top: 0;
    padding-bottom: 0;
}

.reasons_wrapper {
    background-image: url(../img/bg/reasons-1440.png);
    padding-top: 0;
    padding-bottom: 0;
}

.assortiment_wrapper {
    background-image: url(../img/bg/assort-1440.png);
}

.delivery_wrapper {
    background-image: url(../img/bg/delivery-1440.png);
}

.about_wrapper {
    background-image: url(../img/bg/about-1440.png);
}

.reviews_wrapper {
    background-image: url(../img/bg/reviews-1440.png);
    height: 960px;
}

.accordion_wrapper {
    background-image: url(../img/bg/faq-1440.png);
}

.cta_wrapper {
    background-image: url(../img/bg/cta-1440.png);
    position: relative;
}

.footer_wrapper {
    background-image: url(../img/bg/footer-1440.png);
    height: 720px;
}

.title_h2 {
    height: 120px;
}

.faq-title.title_h2 {
    margin-bottom: 0px;
}

.footer_content {
    display: grid;
    grid-template-columns: repeat(4, 360px);
    grid-template-rows: repeat(3, 120px);
}

.footer_item h5 {
    font-family: Roboto;
    font-size: 16px;
}

.footer_item {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
    background-color: var(--bg-black);
    border: 1px solid var(--grid-black);
}

.footer_logo {
    grid-column: 1/2;
    grid-row: 1/4;
    padding: 0;
    gap: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
}

.footer_logo_link {
    grid-row: 1/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grid-black);
    height: 240px;
}

.footer_text {
    grid-row: 3/4;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 40px;
}

.footer_main {
    grid-column: 2/3;
    grid-row: 1/4;
}

.footer_catalog {
    grid-column: 3/4;
    grid-row: 1/4;
}

.footer_contacts {
    grid-column: 4/5;
    grid-row: 1/4;
}

.footer_content {
    color: var(--white);
}

.footer_policy {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_policy_text {
    width: 120px;
}

.footer_content a,
.footer_policy a {
    color: var(--white);
}

.footer_content a:hover,
.footer_policy a:hover {
    color: var(--orange-accent);
}

.footer_policy_text {
    display: flex;
    align-items: center;
    height: 120px;
    width: 480px;
    background-color: var(--bg-black);
    padding-left: 40px;
}

.footer_policy_design {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 120px;
    width: 480px;
    background-color: var(--bg-black);
    padding-right: 40px;
}

/*popup*/
#amts_callback_popup {
    background-color: #fff;
}

#overlay_popup .form-wrapper {
    grid-template-rows: repeat(2, 90px);
}

#amts_callback_popup .submit-btn {
    height: 90px;
}

#amts_callback_popup .contact_form_amts {
    margin: 0;
    padding: 0;
}

#overlay_popup .amts_form_title {
    font-family: Oswald;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 30px;
}

#overlay_popup .form-group {
    padding: 30px;
}

#overlay_popup .amts_title_wrapper {
    display: flex;
}

#overlay_popup .btn_close {
    padding-top: 30px;
    padding-right: 30px;
}

#overlay_popup .btn_close {
    background-image: url(../img/close.png);
    background-position: center center;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    margin-top: 20px;
}

#overlay_popup .btn_close svg {
    height: 100%;
    width: 100%;
}

.overlay {
    top: 0;
}

.policy_popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    margin-left: -180px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    height: 180px;
    max-width: 360px;
    padding: 20px;
    color: var(--black);
    border-radius: 0;
    background-color: var(--light-gray);
    row-gap: 10px;
    border: 1px solid var(--grid-gray);
}

.btn_policy {
    background-color: var(--orange-accent);
    color: var(--white);
    height: 40px;
    padding: 0;
}

.label_checkbox_amts {
    display: flex;
}

.label_checkbox_amts div {
    margin-left: 20px;
    font-size: 16px;
}

.label_checkbox_amts input {
    width: 40px;
    height: 40px;
    background-color: var(--white);
}

#amts_callback_popup .checkbox-group-wrapper {
    padding-left: 30px;
    padding-right: 30px;
}

.custom-checkbox {
    background-color: var(--white);
    position: relative;
    display: inline-block;
    width: 40px; /* Ширина квадратика */
    height: 40px; /* Высота квадратика */
    cursor: pointer;
    flex-shrink: 0; /* Чтобы квадратик не сжимался */
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.custom-checkbox:after {
    content: '✓';
    color: var(--orange-accent);
    position: absolute;
    display: none;
    left: 10px;
    top: 4px;
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
    border: solid white;
    border-width: 0 2px 2px 0;
    overflow: hidden;
}

.custom-checkbox:has(input:checked):after {
    display: block;
}

.err_message {
    position: static;
    top: 0;
    left: 50%;
    transform: none;
    padding: 0;
    background-color: transparent;
    border: none;
    text-align: left;
    box-shadow: none;
    opacity: 0;
    z-index: -1;
    display: block;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    visibility: hidden;
}

#overlay_popup .checkbox-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

#overlay_popup .checkbox-label {

}

#amts_succes {
    background-color: #fff;
    width: 360px;

}

#overlay_popup .form_wrapper {
    background-color: #fff;
    max-width: 360px;
}

#amts_succes .amts_title_wrapper {
    display: flex;
    flex-direction: column;
}

#amts_succes .btn_close {
    display: block;
    background-image: url(../img/close.png);
    background-position: center center;
    position: static;
    margin-left: auto;
    margin-right: 20px;
    width: 40px;
    height: 40px;

    margin-top: 20px;
}

.succes_wrapper {
    padding: 30px;
}

#amts_succes .amts_form_title {
    font-family: Oswald;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 30px;
}

.check_circle {
    margin-left: 30px;
}

#amts_succes .amts_form_title {
    padding: 0;
}

#amts_succes .succes_text {
    margin-top: 20px;
}

.form_wrapper.succes {
    height: 471px;
}

#amts_callback_success {
    display: none;
}

#amts_callback_success .success-clouse {
    background-image: url(../img/close.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.amts-callback-form .error {
    border: 1px solid red;
}

.amts-callback-form .error_ {
    border-bottom: 1px solid red;
}

.amts-callback-form .checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-left: 30px;
    padding-right: 30px;
}

.amts-callback-form .checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;

}

nav.breadcrumb a:hover {
    color: var(--orange-accent);
}

.sidebar_wrapper {
    border-bottom: 1px solid var(--grid-gray);
}

.product_title_catalog {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.amts_accordion_link_0 {
    font-weight: 700;
    font-size: 18px;
}



.amts_accordion{
    border-bottom: 1px solid var(--grid-gray);
}

.woocommerce-notices-wrapper{
    border: none;
}
.woocommerce-notices-wrapper:focus{
    outline: none !important;
}
.woocommerce-message:focus {
    outline: none !important;
}
.woocommerce-message{
    border: none;
    color: var(--orange-accent);
}

.cart_page .woocommerce-notices-wrapper{
    margin-bottom: 20px;
}

