 
.bootstrap-theme{
    color:#fff;    
}

.news-slider {
    position: relative;
}
.news-slider-item--all {
    display: flex;
}

.news-all-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 280px;
    padding: 30px 20px;

    border: 1px solid #ddd;
    background: #ffcb3b;
    color: #222;

    text-align: center;
    text-decoration: none;

    box-sizing: border-box;

    transition:
        background-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.news-all-card:hover,
.news-all-card:focus {
    background: #ffb400;
    color: #222;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .18);
    transform: translateY(-2px);
}

.news-all-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;
    margin-bottom: 18px;

    border: 2px solid #222;
    border-radius: 50%;

    font-size: 20px;
}

.news-all-card__title {
    margin-bottom: 8px;

    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.news-all-card__text {
    max-width: 190px;

    font-size: 14px;
    line-height: 1.5;
}
.news-slider-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;

    width: 100%;
    margin: 0;
    padding: 8px 0;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scroll-snap-type: x proximity;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.news-slider-list::-webkit-scrollbar {
    display: none;
}

.news-slider-item {
    flex: 0 0 calc((100% - 40px) / 3);
    width: calc((100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);

    box-sizing: border-box;
    scroll-snap-align: start;
}

/* Стрелки — как у partnerstrip */
.news-slider__button {
    position: absolute;
    top: 50%;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 48px;
    padding: 0;

    border: 1px solid #ddd;
    background: #fff;
    color: #3a3a3a;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);

    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);

    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        opacity .2s ease;
}

.news-slider__button--prev {
    left: -45px;
}

.news-slider__button--next {
    right: -45px;
}

.news-slider__button:hover,
.news-slider__button:focus {
    border-color: #ffcb3b;
    background: #ffcb3b;
    color: #000;
    outline: none;
}

.news-slider__button:disabled {
    opacity: .3;
    cursor: default;
}

.news-slider__button:disabled:hover {
    border-color: #ddd;
    background: #fff;
    color: #3a3a3a;
}

@media (min-width: 768px) and (max-width: 991px) {
    .news-slider-list {
        gap: 15px;
    }

    .news-slider-item {
        flex-basis: calc((100% - 15px) / 2);
        width: calc((100% - 15px) / 2);
        min-width: calc((100% - 15px) / 2);
    }
}

@media (max-width: 767px) {
    .news-slider-list {
        gap: 15px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .news-slider-item {
        flex: 0 0 75%;
        width: 75%;
        min-width: 75%;
    }

    .news-slider__button {
        display: none;
    }
}

.mt-5{
    margin-top:5px;
}
.partnerstrip-slider {
    position: relative;
    padding: 10px 45px 20px;
}

.partnerstrip-list {
    display: flex;
    flex-wrap: nowrap;

    width: 100%;
    margin: 0;
    padding: 8px 0;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scroll-snap-type: x proximity;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.partnerstrip-list::-webkit-scrollbar {
    display: none;
}

/*
 * Компьютер: видно 4 элемента.
 * 45px — три промежутка по 15px.
 */
.partnerstrip-list > * {
    flex: 0 0 calc((100% - 45px) / 4);
    width: calc((100% - 45px) / 4);
    min-width: calc((100% - 45px) / 4);

    margin: 0 15px 0 0;
    padding: 8px;

    box-sizing: border-box;
    scroll-snap-align: start;
    list-style: none;
}

.partnerstrip-list > *:last-child {
    margin-right: 0;
}

/*
 * Убираем Bootstrap float у col-*.
 */
.partnerstrip-list > [class*="col-"] {
    float: none;
}

/*
 * Картинка партнёра.
 */
.partnerstrip-list img {
    display: block;

    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90px;

    margin: 0 auto;
}

/*
 * Карточка партнёра.
 */
.partnerstrip-list a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 103px;
    padding: 15px;

    border: 1px solid #ddd;
    background: #fff;

    box-sizing: border-box;
    text-align: center;

    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .25);
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, .25);
    box-shadow: 0 0 4px rgba(0, 0, 0, .25);

    -webkit-transition: box-shadow .25s ease;
    -moz-transition: box-shadow .25s ease;
    transition: box-shadow .25s ease;
}

.partnerstrip-list a:hover,
.partnerstrip-list a:focus {
    text-decoration: none;

    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .3);
    box-shadow: 0 0 8px rgba(0, 0, 0, .3);
}

/*
 * Стрелки.
 */
.partnerstrip-slider__button {
    position: absolute;
    top: 50%;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 48px;
    padding: 0;

    border: 1px solid #ddd;
    background: #fff;
    color: #3a3a3a;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);

    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);

    -webkit-transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        opacity .2s ease;
    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        opacity .2s ease;
}

.partnerstrip-slider__button--prev {
    left: 0;
}

.partnerstrip-slider__button--next {
    right: 0;
}

.partnerstrip-slider__button:hover,
.partnerstrip-slider__button:focus {
    border-color: #ffcb3b;
    background: #ffcb3b;
    color: #000;
    outline: none;
}

.partnerstrip-slider__button:disabled {
    opacity: .3;
    cursor: default;
}

.partnerstrip-slider__button:disabled:hover {
    border-color: #ddd;
    background: #fff;
    color: #3a3a3a;
}

/*
 * Планшет: видно 2 элемента.
 */
@media (min-width: 768px) and (max-width: 991px) {
    .partnerstrip-list > * {
        flex-basis: calc((100% - 15px) / 2);
        width: calc((100% - 15px) / 2);
        min-width: calc((100% - 15px) / 2);
    }
}

/*
 * Телефон: карточка занимает 70% ширины,
 * прокрутка пальцем, стрелки скрыты.
 */
@media (max-width: 767px) {
    .partnerstrip-slider {
        padding-right: 0;
        padding-left: 0;
    }

    .partnerstrip-slider__button {
        display: none;
    }

    .partnerstrip-list {
        padding-right: 15px;
        padding-left: 15px;
    }

    .partnerstrip-list > * {
        flex: 0 0 70%;
        width: 70%;
        min-width: 70%;

        margin-right: 15px;
    }

    .partnerstrip-list > *:last-child {
        margin-right: 0;
    }
}
#page404 {
    margin-bottom: 45px;
    color: #3a3a3a;
}



#contact-social {
    margin: 25px 0 0;
    padding: 0;

}
#contact-social svg path {
    fill: #ffb400 !important;
}
#contact-social > li {
    margin: 0;
    padding: 0;
}

#contact-social .social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;
    padding: 0;

    border: none !important;
    box-shadow: none;

    color: #2b2b2b;
    text-decoration: none;

    transition: .2s;
}

#contact-social .social-button:hover {
    background: #2b2b2b;
    border-color: #2b2b2b;
    color: #fff;
}

#contact-social .social-button em {
    margin: 0;
    font-size: 22px;
    line-height: 1;
    color: inherit;
}

#contact-social .social-button svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

#contact-social .social-button::before,
#contact-social .social-button::after {
    display: none;
}


#page404 .page404-hero {
    padding: 25px 20px 35px;
    text-align: center;
}

#page404 .page404-gear {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffb400;
    font-size: 82px;
    line-height: 1;
    animation: page404-spin 10s linear infinite;
}

#page404 .page404-code {
    margin: 0;
    color: #2b2b2b;
    font-size: 76px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 4px;
}

#page404 .page404-heading {
    margin: 10px 0 0;
    color: #3a3a3a;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

#page404 .page404-message {
    margin: 22px 0 8px;
    color: #3a3a3a;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
}

#page404 .page404-description {
    max-width: 650px;
    margin: 0 auto 28px;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}

#page404 .page404-main-button {
    padding: 12px 28px;
    border: 2px solid #ffb400;
    border-radius: 0;
    background: #ffb400;
    color: #2b2b2b;
    font-size: 17px;
    font-weight: 700;
    transition: background-color 0.2s, border-color 0.2s,
                box-shadow 0.2s, transform 0.2s;
}

#page404 .page404-main-button:hover,
#page404 .page404-main-button:focus {
    border-color: #ffcb3b;
    background: #ffcb3b;
    color: #2b2b2b;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 180, 0, 0.25);
}

#page404 .page404-main-button .glyphicon {
    margin-right: 7px;
}

/* Разделы каталога */

#page404 .page404-categories {

    margin: 10px auto 40px;
}

#page404 .page404-category-row {
    display: flex;
    margin: 15px -7px 0;
}

#page404 .page404-category {
    display: block;
    flex: 1;
    margin: 0 7px;
    padding: 22px 20px;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    background: #fff;
    color: #3a3a3a;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s,
                transform 0.2s;
}

#page404 .page404-category-wide {
    margin: 0;
}

#page404 .page404-category:hover,
#page404 .page404-category:focus {
    border-color: #ffb400;
    color: #3a3a3a;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

#page404 .page404-category > .glyphicon {
    display: block;
    margin-bottom: 10px;
    color: #ffb400;
    font-size: 30px;
}

#page404 .page404-category strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

#page404 .page404-category small {
    display: block;
    margin-top: 4px;
    color: #888;
    font-size: 13px;
}

/* Поиск */

#page404 .page404-search {

    margin: 0 auto 35px;
    text-align: center;
}

#page404 .page404-search h3 {
    margin: 0 0 18px;
    color: #3a3a3a;
    font-size: 20px;
    font-weight: 600;
}

#page404 .page404-search .input-group {
    display: table;
    width: 100%;
}

#page404 .page404-search .form-control {
    height: 52px;
    border: 2px solid #ffb400;
    border-right: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    color: #3a3a3a;
    font-size: 16px;
}

#page404 .page404-search .form-control:focus {
    border-color: #ffb400;
    box-shadow: inset 0 0 0 1px #ffb400;
}

#page404 .page404-search .form-control::-webkit-input-placeholder {
    color: #999;
}

#page404 .page404-search .form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}

#page404 .page404-search .form-control:-ms-input-placeholder {
    color: #999;
}

#page404 .page404-search .input-group-btn {
    width: 58px;
}

#page404 .page404-search .input-group-btn .btn {
    width: 58px;
    height: 52px;
    padding: 0;
    border: 2px solid #ffb400;
    border-radius: 0;
    background: #ffb400;
    color: #2b2b2b;
    font-size: 20px;
}

#page404 .page404-search .input-group-btn .btn:hover,
#page404 .page404-search .input-group-btn .btn:focus {
    border-color: #ffcb3b;
    background: #ffcb3b;
    color: #2b2b2b;
}

/* Социальные сети */

#page404 .page404-social {

    margin: 0 auto 40px;
    padding: 22px 25px;
    border: 0;
    border-radius: 0;
    background: #ffb400;
    color: #2b2b2b;
    text-align: center;
}

#page404 .page404-social-title {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

#page404 .page404-social-title .glyphicon {
    margin-right: 6px;
}

#page404 .page404-social p {
    max-width: 650px;
    margin: 0 auto 18px;
    font-size: 15px;
    line-height: 1.6;
}

#page404 .page404-social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -5px;
}

#page404 .page404-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 5px;
    padding: 9px 17px;
    border: 2px solid #2b2b2b;
    border-radius: 0;
    background: transparent;
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

#page404 .page404-social-link:hover,
#page404 .page404-social-link:focus {
    background: #2b2b2b;
    color: #fff;
    text-decoration: none;
}

#page404 .page404-social-link i {
    margin-right: 7px;
    font-size: 20px;
}

#page404 .page404-social-link svg {
    width: 20px;
    height: 20px;
    margin-right: 7px;
    fill: currentColor;
}

/* Подсказки */

#page404 .page404-info {
    display: flex;
    margin: 0 -10px;
}

#page404 .page404-info-block {
    flex: 1;
    min-width: 0;
    margin: 0 10px;
    padding: 25px;
    border: 1px solid #e5e5e5;
    border-top: 3px solid #ffb400;
    border-radius: 0;
    background: #fff;
}

#page404 .page404-info-block h3 {
    margin: 0 0 20px;
    color: #3a3a3a;
    font-size: 19px;
    font-weight: 700;
}

#page404 .page404-info-block h3 .glyphicon {
    margin-right: 7px;
    color: #ffb400;
}

#page404 .page404-info-block ol {
    margin: 0;
    padding-left: 22px;
}

#page404 .page404-info-block li {
    margin-bottom: 12px;
    padding-left: 4px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

#page404 .page404-info-block li:last-child {
    margin-bottom: 0;
}

#page404 .page404-info-block a {
    color: #3a3a3a;
    font-weight: 700;
    text-decoration: underline;
}

#page404 .page404-info-block a:hover,
#page404 .page404-info-block a:focus {
    color: #ffb400;
}

#page404 .page404-info-block a .glyphicon {
    margin-right: 3px;
}

/* Анимация шестерёнки */

@keyframes page404-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Планшеты и телефоны */

@media (max-width: 767px) {
    #page404 .page404-hero {
        padding: 20px 5px 30px;
    }

    #page404 .page404-gear {
        font-size: 62px;
    }

    #page404 .page404-code {
        font-size: 58px;
    }

    #page404 .page404-heading {
        font-size: 24px;
    }

    #page404 .page404-message {
        font-size: 19px;
    }

    #page404 .page404-description {
        font-size: 15px;
    }

    #page404 .page404-categories {
        margin-bottom: 30px;
    }

    #page404 .page404-category-row {
        margin-left: -5px;
        margin-right: -5px;
    }

    #page404 .page404-category {
        margin-left: 5px;
        margin-right: 5px;
        padding: 18px 10px;
    }

    #page404 .page404-category-wide {
        margin-left: 0;
        margin-right: 0;
    }

    #page404 .page404-search h3 {
        font-size: 18px;
    }

    #page404 .page404-search .form-control {
        height: 48px;
        padding-left: 12px;
        font-size: 14px;
    }

    #page404 .page404-search .input-group-btn,
    #page404 .page404-search .input-group-btn .btn {
        width: 52px;
        height: 48px;
    }

    #page404 .page404-social {
        padding: 20px 15px;
    }

    #page404 .page404-social-title {
        font-size: 18px;
    }

    #page404 .page404-info {
        display: block;
        margin: 0;
    }

    #page404 .page404-info-block {
        margin: 0 0 20px;
        padding: 20px 18px;
    }
}

@media (max-width: 480px) {
    #page404 .page404-category-row {
        display: block;
        margin: 12px 0 0;
    }

    #page404 .page404-category-row .page404-category {
        margin: 0 0 12px;
    }

    #page404 .page404-category-row .page404-category:last-child {
        margin-bottom: 0;
    }

    #page404 .page404-social-links {
        display: block;
        margin: 0;
    }

    #page404 .page404-social-link {
        display: flex;
        width: 100%;
        margin: 0 0 9px;
    }

    #page404 .page404-social-link:last-child {
        margin-bottom: 0;
    }
}
.pwd-wrap {
    position: relative;
}
.mb-5 {
    margin-bottom: 15px;
}
h3 {
    font-size: 25px!important;
}
.copyright {
    background: #1c1c1c!important; 
}
#product-specifications .content {
    padding: 0;
}

#product-specifications table {
    width: 100% !important;
    margin: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

#product-specifications tr {
    border-bottom: 1px solid #ececec;
}

#product-specifications tr:nth-child(even) {
    background: #fafafa;
}

#product-specifications tr:last-child {
    border-bottom: none;
}

#product-specifications td {
    padding-top: 12px;
    padding-bottom: 12px;
    vertical-align: top;
    line-height: 1.5;
}

#product-specifications td:first-child {
    width: 260px;
    padding-left: 20px;
    padding-right: 30px;
    color: #666;
    white-space: nowrap;
}

#product-specifications td:first-child b {
    font-weight: 600;
    color: #444;
}

#product-specifications td:last-child {
    padding-right: 20px;
    color: #222;
    word-break: break-word;
}

#product-specifications span[itemprop="value"] {
    word-break: break-word;
}

@media (max-width: 767px) {
    #product-specifications td {
        display: block;
        width: 100% !important;
    }

    #product-specifications td:first-child {
        padding: 10px 15px 2px;
        white-space: normal;
    }

    #product-specifications td:last-child {
        padding: 0 15px 10px;
    }
}
#cart #visualcart_content td,
#cart #visualcart_content td a,
#cart #visualcart_content p,
#cart #visualcart_content .btn-block1 a {
    color: #fff !important;
}
#cart #visualcart_content > li:last-child .btn-block1 > a {
    color: #ffb400 !important;
}

#cart #visualcart_content > li:last-child .btn-block1 > a:hover,
#cart #visualcart_content > li:last-child .btn-block1 > a:focus {
    color: #fff !important;
    text-decoration: none;
}

.new-product-list, .template-product-list{
    padding-left: 0px!important;
}
.pwd-wrap .form-control {
    padding-right: 42px;
}

.pwd-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    z-index: 10;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

.pwd-toggle svg {
    display: block;
    width: 20px;
    height: 20px;
}
.brands-slider {
    position: relative;
    margin: 0 -15px;
    padding: 8px 45px 15px;
}

#brandsList {
    display: flex;
    flex-wrap: nowrap;

    width: 100%;
    margin: 0;
    padding: 8px 0;

    overflow-x: auto;
    overflow-y: hidden;

    list-style: none;

    scroll-behavior: smooth;
    scroll-snap-type: x proximity;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

#brandsList::-webkit-scrollbar {
    display: none;
}

#brandsList > li {
    flex: 0 0 180px;
    width: 180px;

    margin: 0 15px 0 0;
    padding: 8px;

    list-style: none;
    scroll-snap-align: start;
}

#brandsList > li:last-child {
    margin-right: 0;
}

#brandsList ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#brandsList .nav-header {
    margin: 0;
    padding: 15px;

    border: 1px solid #ddd;
    background: #fff;
    text-align: center;

    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .25);
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, .25);
    box-shadow: 0 0 4px rgba(0, 0, 0, .25);

    -webkit-transition: box-shadow .25s ease;
    -moz-transition: box-shadow .25s ease;
    transition: box-shadow .25s ease;
}

#brandsList > li:hover .nav-header {
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .3);
    box-shadow: 0 0 8px rgba(0, 0, 0, .3);
}

#brandsList .nav-header a {
    display: block;
}

#brandsList img {
    display: block;

    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70px;

    margin: 0 auto;
}

.brands-slider__button {
    position: absolute;
    top: 50%;
    z-index: 10;

    width: 38px;
    height: 48px;
    padding: 0;

    border: 1px solid #ddd;
    background: #fff;
    color: #3a3a3a;

    font-size: 22px;
    line-height: 46px;
    text-align: center;

    cursor: pointer;

    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);

    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);

    -webkit-transition:
        background-color .2s ease,
        color .2s ease,
        opacity .2s ease;
    transition:
        background-color .2s ease,
        color .2s ease,
        opacity .2s ease;
}

.brands-slider__button--prev {
    left: 8px;
}

.brands-slider__button--next {
    right: 8px;
}

.brands-slider__button:hover,
.brands-slider__button:focus {
    border-color: #ffcb3b;
    background: #ffcb3b;
    color: #000;
    outline: none;
}

.brands-slider__button:disabled {
    opacity: .3;
    cursor: default;
}

.brands-slider__button:disabled:hover {
    border-color: #ddd;
    background: #fff;
    color: #3a3a3a;
}

@media (max-width: 767px) {
    .brands-slider {
        padding-right: 0;
        padding-left: 0;
    }

    .brands-slider__button {
        display: none;
    }

    #brandsList {
        padding-right: 15px;
        padding-left: 15px;
    }

    #brandsList > li {
        flex: 0 0 70%;
        width: 70%;
    }
}





.cmain{
        color:#ffb400!important;
}

.p-0{
    padding: 0px !important;;
}
h4, .cmain{
    font-weight: bold;
}
.main-header {
    padding: 0px 0 0px!important;
}
.social-menu > li> a em:before {
    color:#ffb400!important;
}
#logo{
    line-height:70px;
    text-align:left;
}

@media (max-width:767px){
    #logo{
        text-align:center;
    }
    .main-header {
        padding: 0px 0 0px!important;
    }
}
.partnerstrip-list {
    margin-left: -8px;
    margin-right: -8px;
    text-align: center;
}

.partnerstrip-list > .partnerstrip-col {
    float: none;
    display: inline-block;
    vertical-align: top;

    padding-left: 8px;
    padding-right: 8px;

}

@media (max-width: 767px) {

    .partnerstrip-list {
        display: flex;
        flex-wrap: nowrap;
        text-align: left;

        overflow-x: auto;
        overflow-y: hidden;

        margin: 0;
        padding: 0;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .partnerstrip-list::-webkit-scrollbar {
        display: none;
    }

    .partnerstrip-list > .partnerstrip-col {
        display: block;
        float: none;

        flex: 0 0 75%;
        width: 75%;

        padding: 0;
        margin: 0 15px 0 0;
    }

    .partnerstrip-list > .partnerstrip-col:last-child {
        margin-right: 0;
    }
}
#search_form .input-group{
    background:#fff;
    border:2px solid #ffb400;
    padding:0 10px;
}

#search_form .form-control{
    background:#fff;
    border:none !important;
    box-shadow:none;
    color:#222;
    padding:6px 10px;
}

#search_form .btn{
    background:#fff;
    border:none !important;
    box-shadow:none;
    color:#ffb400;
    padding:6px 10px;
}

#search_form .form-control:focus{
    box-shadow:none;
}

#search::placeholder{
    color:#555;
    opacity:1;
}

#search::-webkit-input-placeholder{
    color:#555;
}

#search::-moz-placeholder{
    color:#555;
}

#search:-ms-input-placeholder{
    color:#555;
}
#search_form{
    margin-bottom:20px;
}
/* #header-area,#footer-area{
-webkit-filter:hue-rotate(215deg);
-ms-filter:hue-rotate(215deg);
filter:hue-rotate(215deg);
-o-filter:hue-rotate(215deg);
-moz-filter:hue-rotate(215deg);
-editor-filter:215;
} */
/* #header-area{
background:url(../images/header-bg.jpg) no-repeat center;
background-size:cover;
} */
.carousel-inner > .item > a > img,
.carousel-inner > .item > img{
    width:100%;
    display:block;
}
/* #header-area{ background: linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px), linear-gradient(90deg,#ffffff,#f4f4f4); background-size: 40px 40px, 40px 40px, 100% 100%; } */
#header-area{
    background:
        linear-gradient(rgba(255,255,255,.35), rgba(255,255,255,.35)),
        url("../images/bgturbomir.png") no-repeat center;
    background-size: cover;
}
#footer-area{
    background: #242424;
}
.header-color,.header-color a,.header-color .btn,.header-links a{
color:#666 !important;
}
.side-heading,.panel-default > .panel-heading,.panel-success > .panel-heading,.product-col .btn-cart:hover,.product-info .product-details .btn-cart:hover,.product-info-box .heading,.btn-primary, .pagination > .active > a{
background:#ffcb3b !important;
}

.product-filter .display label.active,
.product-col .price span.price-new,
.product-col h4 a:hover,
.product-col h4 a:focus,
.product-info .product-details .manufacturer,
.product-info .product-details .price-new,
.breadcrumb li.active,
.dl-horizontal.total {
    color: #000 !important;
}

.product-filter .display label.active:hover,
.product-filter .display label.active:focus,
.product-col .price span.price-new:hover,
.product-col .price span.price-new:focus,
.product-info .product-details .manufacturer:hover,
.product-info .product-details .manufacturer:focus,
.product-info .product-details .price-new:hover,
.product-info .product-details .price-new:focus,
.breadcrumb li.active:hover,
.breadcrumb li.active:focus,
.dl-horizontal.total:hover,
.dl-horizontal.total:focus {
    color: #ffb400 !important;
}
.product-col:hover .price span.price-new {
    color: #ffb400 !important;
}
.footer-links a,.header-links a{
color:#666 !important;
}
.btn-main, .btn-primary, .pagination > .active > a{
background:#ffcb3b !important;
border-color:transparent !important;
}
#main-menu .navbar-nav > li > a:hover, .dropdown-menu.mega-menu, #main-menu .navbar-nav > li.open a,.main-navbar-list-catalog-wrapper, .user-dropdown > .dropdown-menu,.nav-catalog-dropdown-link.open, .sidebar-nav ul.active, .sidebar-nav ul.active li a, #main-menu .navbar-nav > li.active a{
background:#ffcb3b !important;
}
.main-navbar-top-catalog:hover .main-navbar-list-catalog-wrapper li a:hover, .main-navbar-list-catalog-hidden.active,.user-dropdown > .dropdown-menu li a:hover,.main-navbar-top-catalog:hover .main-navbar-list-catalog-wrapper li a.active, .sidebar-nav > li > ul.active > li.active > a, .sidebar-nav ul.active li:hover a, .btn-main:hover{
background: !important;
}
.product-col .btn-cart,.product-info .product-details .btn-cart{
background:#1c1c1c !important;
}
.header-valuta-disp-wrapper .btn-default,#cart .dropdown-menu{
background:#1c1c1c !important;
}
span.promo-icon{
background-color:#ffb400 !important;
float:left;
color:#000000;
font-weight:lighter;
padding:3px 7px 4px;
font-size:12px;
display:inline;
border-radius:0px;
margin-right:4px;
}
span.sale-icon{
background-color:#ffb400 !important;
float:left;
color:#000000;
font-weight:lighter;
padding:3px 7px 4px;
font-size:12px;
display:inline;
border-radius:0px;
margin-right:4px;
}
span.newtip-icon{
background-color:#ffcd57 !important;
float:left;
color:#000000;
font-weight:lighter;
padding:3px 7px 4px;
font-size:12px;
display:inline;
border-radius:0px;
margin-right:4px;
}
span.hit-icon{
background-color:#ffde90 !important;
float:left;
color:#000000;
font-weight:lighter;
padding:3px 7px 4px;
font-size:12px;
display:inline;
border-radius:0px;
margin-right:4px;
}
span.sale-icon-content{
position:absolute;
z-index:5;
padding:10px 0px 0px 5px;
}
.side-heading{
padding:12px 15px;
font-size:18px;
color:#000000;
background:#3bc6e4;
}
.product-info-box .heading{
padding-bottom:20px;
padding:12px 20px;
font-size:18px;
color:#000000;
background:#3bc6e4;
}
.additional-nav-menu .dropdown-menu, .submenu .dropdown-menu{
background-color:#ffb400  !important;
}
.additional-nav-menu .dropdown-menu > li:hover, .submenu .dropdown-menu > li:hover{
background:#ffb400 !important;
}
.additional-nav-menu:hover{
background-color:#ffb400 !important;
}
#main-menu .dropdown-menu{
background-color:#ffb400  !important;
}
.additional-nav-menu:hover > a{
color:#fff;
}
.side-heading a:hover{
color:black;
}
#visualcart{
-webkit-filter:hue-rotate(-215deg);
-ms-filter:hue-rotate(-215deg);
filter:hue-rotate(-215deg);
-o-filter:hue-rotate(-215deg);
-moz-filter:hue-rotate(-215deg);
-editor-filter:-215;
}
.theme-color{
color:#ffb400;
}
#body{
--color:#ffb400;
}

#brand-grid .manufacturer-list{
    width:100% !important;
    float:none !important;
    clear:both;
    margin:0 0 35px;
}

#brand-grid .manufacturer-heading{
    margin:0 0 12px;
    font-size:26px;
    font-weight:700;
    color:#333;
}

#brand-grid .manufacturer-content>ul{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin:0;
    padding:0;
    list-style:none;
}

#brand-grid .manufacturer-content>ul>li{
    flex:0 0 calc(25% - 14px);
    margin:0;
    padding:0;
    list-style:none;
}

#brand-grid .manufacturer-content a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    border:1px solid #ddd;
    background:#fff;
    box-sizing:border-box;
    text-decoration:none;
    box-shadow:0 2px 7px rgba(0,0,0,.12);
    transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}

#brand-grid .manufacturer-content a:hover,
#brand-grid .manufacturer-content a:focus{
    border-color:#ffcb3b;
    box-shadow:0 5px 14px rgba(0,0,0,.18);
    transform:translateY(-2px);
    text-decoration:none;
}

#brand-grid .manufacturer-content img{
    display:block;
    width:auto;
    height:auto;
    max-width:190px;
    max-height:75px;
    margin:0 auto;
    object-fit:contain;
}

#brand-grid .manufacturer-content span{
    color:#333;
    font-size:18px;
    font-weight:600;
    text-align:center;
}

@media(max-width:991px){
    #brand-grid .manufacturer-content>ul>li{
        flex-basis:calc(33.333% - 12px);
    }
}

@media(max-width:767px){
    #brand-grid .manufacturer-list{
        margin-bottom:28px;
    }

    #brand-grid .manufacturer-heading{
        font-size:23px;
    }

    #brand-grid .manufacturer-content>ul{
        gap:12px;
    }

    #brand-grid .manufacturer-content>ul>li{
        flex-basis:calc(50% - 6px);
    }



    #brand-grid .manufacturer-content img{
        max-width:150px;
        max-height:65px;
    }
}

@media(max-width:420px){
    #brand-grid .manufacturer-content>ul>li{
        flex-basis:100%;
    }
}