

/* Start:/local/templates/russoft/components/bitrix/menu/header_menu/style.css?17749414342695*/
.header-menu__list {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    width: 100%;
    padding: 20px;
    transition: transform 0.3s ease;
    position: relative;
    list-style: none;
}

.header-menu__toggler {
    display: flex;
    background-color: var(--bg-gray);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

.header-menu__link {
    padding: 15px 0;
    text-decoration: none;
}

.header-menu__toggler-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/local/templates/russoft/components/bitrix/menu/header_menu/./images/burger.svg");
    background-size: 100% 100%;
}

.header-menu__close {
    display: none;
    background: var(--bg-gray);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

.header-menu__close-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/local/templates/russoft/components/bitrix/menu/header_menu/./images/cross.svg");
    background-size: 100% 100%;
}

.header-menu__close-container {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1023px) {
    .header-menu__list {
        margin: 0;
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        overflow-y: auto;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 15px;
    }

    .header-menu__item {
        margin: 0 18px;
    }

    .header-menu__list.active {
        transform: translateX(0);
    }

    .header-menu__list.active .header-menu__close {
        display: flex;
        margin: 13px 16px;
    }
}

@media (min-width: 1024px) {
    .header-menu {
        display: flex;
        align-items: center;
    }

    .header-menu__toggler {
        display: none;
    }

    .header-menu__list {
        flex-direction: row;
        list-style: none;
        margin: 0;
        padding: 0;
        background-color: transparent;
        gap: 8px;
        text-align: center;
        align-items: flex-start;
    }

    .header-menu__link {
        padding: 0;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .header-menu__link:hover {
        color: var(--accent-orange);
    }

    .header-menu__close-container {
        display: none;
    }
}

@media (min-width: 1200px) {
    .header-menu__list {
        gap: 12px;
    }
}

@media (min-width: 1400px) {
    .header-menu__list {
        gap: 16px;
    }
}

@media (min-width: 1700px) {
    .header-menu__list {
        gap: 24px;
    }
}
/* End */


/* Start:/local/components/russoft/language.selector/templates/.default/style.css?1772195746843*/
.language-selector {
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
}

.language-selector__icon {
    position: relative;
}

.language-selector__icon-img {
    display: none;
    width: 20px;
    height: 20px;
}

.language-selector__current-lang {
    margin-left: 10px;
    background-color: var(--bg-gray);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .language-selector {
        justify-content: space-between;
    }

    .language-selector__icon {
        background: none;
    }

    .language-selector__icon-img {
        width: 24px;
        height: 24px;
        display: block;
    }

    .language-selector__current-lang {
        background: none;
    }
}
/* End */


/* Start:/local/templates/russoft/components/bitrix/sale.basket.basket.line/icon_basket/style.css?17751212701350*/
.cart {
    /* Сделать display: flex, когда появится корзина */
    display: none; 
    align-items: center;
    text-decoration: none;
    justify-content: center;
}

.cart__icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--bg-gray);
    border-radius: 50%;
}

.cart__icon {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("/local/templates/russoft/components/bitrix/sale.basket.basket.line/icon_basket/./images/cart.svg");
    background-size: 100% 100%;
}

.cart__counter {
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-red);
    color: var(--bg-white);
    font-weight: 400;
    border-radius: 50%;
    top: -4px;
    right: -2px;
    width: 14px;
    height: 14px;
    font-size: 9px;
}

.cart__label {
    display: none;
    margin-left: 10px;
}

@media (min-width: 1024px) {
    .cart {
        justify-content: space-between;
    }

    .cart__icon-container {
        background: none;
    }

    .cart__icon {
        width: 24px;
        height: 24px;
    }

    .cart__label {
        display: block;
    }

    .cart__counter {
        top: -1px;
        right: -1px;
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}
/* End */


/* Start:/local/templates/russoft/components/bitrix/menu/footer_menu/style.css?1772195746702*/
.footer-menu {
    display: flex;
}

.footer-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.footer-menu__link {
    display: block;
    font-size: 15px;
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s;
}

@media (min-width: 1024px) { 
    .footer-menu {
        padding: 0;
        gap: 10px;
        margin: 0;
    }

    .footer-menu__list {
        gap: 10px;
        flex-direction: row;
    }

    .footer-menu__link {
        font-size: 16px;
        padding: 0;
        padding-left: 15px;
    }

    .footer-menu__link:hover {
        color: var(--accent-orange);
    }
}

/* End */


/* Start:/local/components/russoft/cookie_consent/templates/.default/style.css?17727278512341*/
.cookie-consent__positioner {
    position: fixed;
    bottom: 0;
    z-index: 9999;
}

.cookie-consent {
    background-color: var(--cookie-bg);
    border: 1px solid var(--bg-white);
    border-bottom: none;
    color: var(--primary-text);
    padding: 16px;
    display: none;
    line-height: 1.3;
    flex-direction: row;
    gap: 11px;
    font-size: 12px;
}

.cookie-consent--visible {
    display: flex;
}

.cookie-consent__container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.cookie-consent__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.cookie-consent__text {
    margin: 0;
}

.cookie-consent__link {
    color: var(--accent-blue-active);
    text-decoration: none;
}

.cookie-consent__link:hover {
    color: var(--accent-blue-active);
}

.cookie-consent__button {
    background-color: var(--accent-orange);
    color: var(--bg-white);
    font-weight: 400;
    padding: 10px 23px;
    cursor: pointer;
    font-size: 15px;
    width: 116px;
    height: 40px;
    border-radius: 999px;
    border: none;
    flex-shrink: 0;
}

.cookie-consent__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-blue-50-opacity);
    z-index: 9998;
    display: none;
}

.cookie-consent__overlay--visible {
    display: block;
}

.no-scroll {
    overflow: hidden;
}

@media (min-width: 768px) {
    .cookie-consent__positioner {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: min(90vw, 1136px);
    }

    .cookie-consent {
        background-color: var(--bg-white);
        padding: 30px;
        padding-right: 36px;
        border-radius: 16px;
        gap: 30px;
        border: none;
        font-size: 18px;
        align-items: center;
    }

    .cookie-consent__container {
        flex-direction: row;
        flex: 1;
        gap: 25px;
        align-items: center;
    }

    .cookie-consent__icon {
        width: 60px;
        height: 60px;
    }

    .cookie-consent__link {
        text-decoration: underline;
    }

    .cookie-consent__button {
        font-weight: 600;
        padding: 13px 30px;
        font-size: 16px;
        width: 136px;
        height: 48px;
        margin: 0;
    }

    .cookie-consent__text {
        max-width: none;
    }
}

/* End */


/* Start:/local/templates/russoft/template_styles.css?17749414342460*/
:root {
  --primary-text: #292d32;
  --secondary-text: #6c757d;
  --secondary-medium: #757575;
  --accent-orange: #fc7c14;
  --accent-red: #f5455c;
  --accent-orange-hover: #ff8d30;
  --accent-blue-active: #05274d;
  --bg-gray: #f6f6f6;
  --bg-gray-hover: #f4f6f8;
  --bg-cart: #f5f4f8;
  --bg-white: #ffffff;
  --border-gray: #e0e3e6;
  --gray-medium: #b6b6b6;
  --border-radius: 12px;
  --shadow-grey: #00000014;
  --bg-asphalt: #8293a6;
  --shadow-grey-hover: #0000001a;
  --dots-color: #d9d9d9;
  --dark-blue-50-opacity: #313d5880;
  --white-30-opacity: #ffffffb2;
  --cookie-bg: #dfe1e5;
  --disabled-grey: #bdbebf;
}

* {
  box-sizing: border-box;
}

*, ::before, ::after {
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  margin: 0 auto;
  height: 100%;
  padding: 0;
}

a {
  color: var(--primary-text);
  text-decoration: none;
}

p {
  margin: 0;
}

.main-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

html, body {
  font-family: 'Inter', sans-serif;
  margin: 0 auto;
  height: 100%;
  padding: 0;
}

a {
  color: var(--primary-text);
  text-decoration: none;
}

p {
  margin: 0;
}

.main-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.error-404-container {
  background-color: var(--bg-gray);
  color: var(--primary-text);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  text-align: center;
  flex-grow: 1;
}

.error-404-container__image {
  width: 254px;
  height: 180px;
  margin: 30px 0;
}

.error-404-container__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}

.error-404-container__subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 30px;
}

.error-404-container__button {
  background-color: var(--accent-orange);
  border: none;
  border-radius: 999px;
  padding: 13px 47px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--bg-white);
  font-size: 16px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .error-404-container {
    justify-content: center;
  }

  .error-404-container__image {
    margin-bottom: 51px;
  }

  .error-404-container__title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .error-404-container__subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 50px;
  }

  .error-404-container__button {
    padding: 13px 30px;
  }
}
/* End */
/* /local/templates/russoft/components/bitrix/menu/header_menu/style.css?17749414342695 */
/* /local/components/russoft/language.selector/templates/.default/style.css?1772195746843 */
/* /local/templates/russoft/components/bitrix/sale.basket.basket.line/icon_basket/style.css?17751212701350 */
/* /local/templates/russoft/components/bitrix/menu/footer_menu/style.css?1772195746702 */
/* /local/components/russoft/cookie_consent/templates/.default/style.css?17727278512341 */
/* /local/templates/russoft/template_styles.css?17749414342460 */
