/* -------- Общее -------- */

a,
a:hover {
    color: #69882c;
}

.hidden {
    display: none !important;
}

.mb-10,
.children-mb-10>*:not(:last-child) {
    margin-bottom: 10px;
}

.mb-15,
.children-mb-15>*:not(:last-child) {
    margin-bottom: 15px;
}

.mb-30,
.children-mb-30>*:not(:last-child) {
    margin-bottom: 30px;
}

.children-mb-10>*:last-child,
.children-mb-15>*:last-child,
.children-mb-30>*:last-child {
    margin-bottom: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.fw-600 {
    font-weight: 600;
}

.cl-red {
    color: #ff0505;
}

.cl-orange {
    color: #ffb905;
}

.section-heading {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes rotate-spinner {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pagination {
    flex-wrap: wrap;
}

    .pagination .page-item {
        margin-bottom: 0.75em;
    }

        .pagination .page-link {
            text-align: center;
        }

@media screen and (max-width: 767px) {
    .pagination .page-item {
        font-size: 20px;
    }

        .pagination .page-link {
            min-width: 50px;
        }
}

/* -------- Формы и кнопки -------- */

.big-input {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 2px solid #777777;
    border-radius: 25px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 46px;
}

.checkbox-label,
.radio-label {
    display: inline;
    margin-bottom: 0;
    padding-left: 7px;
}

.primary-button,
.secondary-button,
.green-button,
.red-outline-button {
    display: inline-block;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition-property: border-color, background, color;
    transition-duration: 0.25s;
    transition-timing-function: ease;
}

.primary-button.disabled,
.secondary-button.disabled,
.green-button.disabled,
.red-outline-button.disabled {
    opacity: 0.5;
    cursor: default;
}

.primary-button:hover,
.secondary-button:hover,
.green-button:hover,
.red-outline-button:hover {
    text-decoration: none;
}

.primary-button {
    border: 0;
    line-height: 20px;
    background: #69882c;
    color: #ffffff;
}
.primary-button:not(.disabled):hover {
    background: #a6c36b;
    color: #ffffff;
}
.primary-button.disabled:hover {
    color: #ffffff;
}

.secondary-button {
    border: 1px solid #0070ae;
    line-height: 18px;
    background: #ffffff;
    color: #0070ae;
}
.secondary-button:not(.disabled):hover {
    border-color: #b2e2fd;
    background: #b2e2fd;
    color: #0070ae;
}
.secondary-button.disabled:hover {
    color: #0070ae;
}

.green-button {
    border: 0;
    line-height: 20px;
    background: #00ae84;
    color: #ffffff;
}
.green-button:not(.disabled):hover {
    background: #7fd6c1;
    color: #ffffff;
}
.green-button.disabled:hover {
    color: #ffffff;
}

.red-outline-button {
    border: 1px solid #ff0505;
    line-height: 18px;
    background: #ffffff;
    color: #ff0505;
}
.red-outline-button:not(.disabled):hover {
    background: #ff0505;
    color: #ffffff;
}
.red-outline-button.disabled:hover {
    color: #ff0505;
}

.my-form-hint {
    margin-top: 5px;
    font-size: 14px;
    color: #666666;
}

.green-button {
    border: 0;
    line-height: 20px;
    background: #00ae84;
    color: #ffffff;
}

.green-button:hover {
    background: #7fd6c1;
    color: #ffffff;
}

.red-outline-button {
    border: 1px solid #ff0505;
    line-height: 18px;
    background: #ffffff;
    color: #ff0505;
}

.red-outline-button:hover {
    background: #ff0505;
    color: #ffffff;
}

.my-form-hint {
    margin-top: 5px;
    font-size: 14px;
    color: #666666;
}

/* -------- Выпадающее меню -------- */

.my-dropdown-menu {
    display: inline-block;
    position: relative;
    z-index: 1;
}

    .my-dropdown-menu>.menu-title {
        display: inline-block;
        position: relative;
        z-index: 1;
        padding-right: 15px;
        font-weight: 600;
        cursor: pointer;
    }

    .my-dropdown-menu>.menu-title::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 50%;
        right: 0;
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-top: 5px solid #333333;
    }

    .my-dropdown-menu>.menu-content {
        position: absolute;
        z-index: 2;
        top: 100%;
        left: 0;
        border: 1px solid #cccccc;
        min-width: 30px;
        min-height: 1px;
        border-radius: 5px;
        background: #ffffff;
        transform: translateY(5px);
    }

    .my-dropdown-menu:not(.open)>.menu-content {
        display: none;
    }

        .my-dropdown-menu .menu-item.has-submenu {
            position: relative;
            z-index: 1;
        }

        .my-dropdown-menu .menu-item .menu-item-title {
            display: block;
            width: 100%;
            padding: 5px 10px;
            color: inherit;
            text-decoration: none;
            cursor: pointer;
        }

        .my-dropdown-menu .menu-item.has-submenu.open>.menu-item-title,
        .my-dropdown-menu .menu-item>.menu-item-title:hover {
            background: #eeeeee;
        }

        .my-dropdown-menu .menu-item.has-submenu>.menu-item-title {
            position: relative;
            z-index: 1;
        }

        .my-dropdown-menu .menu-item.has-submenu>.menu-item-title::after {
            content: '';
            position: absolute;
            z-index: 1;
            top: 50%;
            right: 0;
            width: 0;
            height: 0;
            border: 5px solid transparent;
            border-left: 5px solid #333333;
            transform: translateY(-5px);
        }

        .my-dropdown-menu .menu-item.has-submenu>.submenu {
            position: absolute;
            z-index: 2;
            top: 0;
            left: 100%;
            min-width: 30px;
            min-height: 1px;
            border: 1px solid #cccccc;
            border-radius: 5px;
            background: #ffffff;
        }

        .my-dropdown-menu .menu-item.has-submenu:not(.open)>.submenu {
            display: none;
        }

@media screen and (max-width: 767px) {
    .my-dropdown-menu .menu-item.has-submenu>.submenu {
        position: static;
        margin-left: 10px;
        margin-bottom: 10px;
    }
}

/* -------- Элементы, присутствующие на всех страницах -------- */

*, *:active, *:checked, *:focus, *:hover {
    outline: none !important;
}

html {
    /*height: 100%;*/
    min-height: 100%;
}

body {
    min-height: 100%;
    font-size: 16px;
    line-height: 1.25;
    background: #ffffff;
    color: #333333;
}

/* ---- Header ---- */

#header .top-bar {
    height: 32px;
    background: #93b354;
    background: linear-gradient(90deg, #a6c36b 0%, #81a43e 100%);
    color: #ffffff;
}

#header .header-section {
    border-bottom: 1px solid #e5e5e5;
    padding: 30px 0;
}

#header .section-account-info {
    padding: 15px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #666666;
    background: #def3ff;
}

    #header .section-account-info a {
        color: inherit;
    }

    #header .section-account-info .debt-info a {
        text-decoration: none;
    }

    #header .section-account-info .user-info .user-name {
        font-weight: 900;
    }

@media screen and (min-width: 768px) {
    #header .section-account-info .debt-info {
        float: right;
    }
}

#header .for-logo {
    float: left;
    width: 250px;
}

    #header .for-logo a {
        display: inline-block;
        width: 100%;
        vertical-align: top;
    }

    #header .for-logo a img {
        width: 100%;
        vertical-align: top;
    }

#header .for-login {
    float: right;
    width: 140px;
    font-size: 12px;
}

    #header .for-login .login-link {
        display: inline-block;
        width: 70px;
        vertical-align: top;
        color: #555555;
        text-align: center;
    }

        #header .for-login .login-link .for-icon {
            margin-bottom: 5px;
            font-size: 24px;
            line-height: 30px;
            color: #69882c;
        }

    #header .for-login .login-link.cart {
        position: relative; z-index: 1;
    }

        #header .for-login .login-link.cart .products-count {
            position: absolute;
            z-index: 2;
            top: 0;
            right: 0;
            line-height: 14px;
            border: 1px solid #999999;
            border-radius: 10px;
            padding: 0 5px;
            font-weight: 600;
            background: #ffffff;
            color: #666666;
        }

#header .for-search {
    margin: 0 170px 0 280px;
}

#header-search {
    position: relative;
}

    #header-search--input {
        padding-right: 60px;
    }

    #header-search--button {
        position: absolute;
        z-index: 1;
        right: 20px;
        top: 10px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border: 0;
        padding: 0;
        font-size: 24px;
        background: transparent;
        color: #999999;
        text-align: center;
    }

    #header-search--result {
        position: absolute;
        z-index: 9999;
        top: 50px;
        left: 20px;
        right: 20px;
        max-height: 310px;
        overflow: auto;
        background: #ffffff;
        box-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
    }

        #header-search--result .search-result-item {
            display: inline-block;
            width: 100%;
            padding: 5px 10px;
            text-decoration: none;
            transition: background 0.25s ease;
        }

        #header-search--result .search-result-item:not(:last-child) {
            border-bottom: 1px solid #cccccc;
        }

        #header-search--result .search-result-item.warning-not-found {
            font-weight: 600;
        }

        #header-search-result .search-result-item:not(.warning-not-found):hover {
            background: #b2e2fd;
        }

#header .menu-catalog {
    z-index: 999;
}

    #header .menu-catalog>.menu-title {
        text-transform: uppercase;
    }

@media screen and (min-width: 1200px) {
    #header .menu-catalog>.menu-content,
    #header .menu-catalog .menu-item.has-submenu>.submenu {
        width: 370px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #header .menu-catalog>.menu-content,
    #header .menu-catalog .menu-item.has-submenu>.submenu {
        width: 310px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    #header .menu-catalog>.menu-content,
    #header .menu-catalog .menu-item.has-submenu>.submenu {
        width: 230px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    #header .menu-catalog>.menu-content,
    #header .menu-catalog .menu-item.has-submenu>.submenu {
        width: 490px;
    }
}

@media screen and (max-width: 575px) {
    #header .menu-catalog>.menu-content,
    #header .menu-catalog .menu-item.has-submenu>.submenu {
        width: 270px;
    }
}

/* ---- */

@media screen and (max-width: 767px) {
    #header .for-logo-and-login {
        overflow: hidden;
        margin-bottom: 30px;
    }

    #header .for-search {
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    #header .for-logo {
        float: none;
        margin: 0 auto 30px;
    }

    #header .for-login {
        float: none;
        margin: 0 auto;
    }
}

/* ---- */

#page-content-wrapper {
    overflow: hidden; /* Чтобы не было горизонтальной прокрутки. */
    padding: 30px 0;
}

.top-breadcrumbs {
    line-height: 1.75;
    font-weight: 600;
}

.small-info-bar,
.big-info-bar {
    font-weight: 600;
    background: #93b354;
    background: linear-gradient(90deg, #a6c36b 0%, #81a43e 100%);
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

.small-info-bar {
    border-radius: 20px;
    padding: 16px;
    font-size: 16px;
}

.big-info-bar {
    border-radius: 32px;
    padding: 24px;
    font-size: 24px;
}

    .small-info-bar a,
    .big-info-bar a {
        color: inherit;
    }
