/* variables */
:root {
    /* font */
    --font-primary: 'Roboto';
    --font-size-xsmall: 1.2rem;
    --font-size-small: 1.4rem;
    --font-size-base: 1.6rem;
    --font-size-medium: 2rem;
    --font-size-large: 4rem;
    --font-size-xlarge: 5rem;

    /* colors */
    --color-primary: #6ea900;
    --color-primary-dark: #e98605;
    --color-secondary: #ce253d;
    --color-third: #39B44A;
    --color-dark: #222;
    --color-light: #222;
    --color-gray-dark: #8f8f8f;
    --color-gray: #eee;

    --color-gray-line: #e4e4e4;
    --color-blue-line: #3b4755;

    --color-back-light: #f2f2f2;
    --color-back-orange: #f2f2f2;
    --color-back-dark: #171d24;

    /* sidebar */
    --sidebar-width: 28rem;

    /* other */
    --border-radius-btn: .5rem;
    --box-shadow: 0 6px 17px 0 rgba(0,0,0,.1);
    --transition: all .4s;
}

/* mobile queries 
--bp-largest: 1200px;
--bp-large: 990px;
--bp-medium: 767px;
--bp-small: 575px;
*/


/* base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-moz-selection {
    color: #fff;
    background: var(--color-primary);
}

::selection {
    color: #fff;
    background: var(--color-primary);
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

@media (max-width: 1400px) {
    html {
        font-size: 55%;
    }
}

body {
    font-weight: 400;
    line-height: 1.2;
    padding: 0;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
}

a:link,
a:visited {
    text-decoration: none;
    font-family: var(--font-primary);
    color: var(--color-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* utilites */

.wrapper {
    max-width: 1400px;
    padding: 0 30px;
    margin: 0 auto;
}

@media (max-width: 460px) {
    .wrapper {
        padding: 0 15px;
    }
}

.relative {
    position: relative;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #0000002b;
    z-index: 8;
    display: none;
}

.mobile-only {
    display: none;
}

.no-padd {
    padding: 0 !important;
}

/* typography */
a {
    color: var(--color-dark);
    font-size: var(--font-size-base);
}

p {
    font-size: var(--font-size-base);
}

h1 {
    font-size: var(--font-size-large);
}

h2 {
    font-size: var(--font-size-medium);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 1rem;
    border-radius: var(--border-radius-btn);
    background-color: var(--color-primary);
    color: var(--color-dark);
    font-size: var(--font-size-base);
    text-align: center;
    transition: var(--transition);
}

.btn.btn-light {
    background-color: var(--color-gray);
}

.btn:hover {
    background-color: #609203;
}

.btn.btn-light:hover {
    background-color: var(--color-primary);
}

/* header */
.header {
    /*    background-color: var(--color-back-light);*/
    /*    background-image: url(../images/header-back.jpg);*/
    background-color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 9;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.header-inner {
    align-items: center;
}

.header-info {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.header-info li {
    padding-right: 1.5rem;
}

.header-info a {
    color: #000000;
    padding-left: 2rem;
    font-size: var(--font-size-small);
}

.header-info li a img {
    width: 1.3rem;
    height: auto;
    margin-right: .5rem;
    transform: translateY(-1px);
    filter: invert(1);
}

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

.header-extra li {
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius-btn);
    padding: .5rem 1rem;
    margin-left: 1.5rem;
    background-color: var(--color-dark);
    ;
}

.header-extra a {
    color: var(--color-primary);
    font-size: var(--font-size-small);
}


/* menu bar */
.menu-bar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: #f2f2f2;
}

.menu-bar .menu-bar-inner {
    /*    background-color: var(--color-back-light);*/
    display: flex;
}

.menu {
    width: var(--sidebar-width);
    background-color: var(--color-primary);
    position: relative;
    color: var(--color-light);
}

.menu .menu-link {
    display: block;
    font-size: var(--font-size-base);
    text-transform: uppercase;
    font-weight: bold;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    height: 100% !important;
    color: #ffffff;
}
@media (min-width: 768px) {
    .menu .menu-link:hover {
        opacity: 0.6;
    }
}

.menu .menu-link::after {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    background-image: url(../images/icons/nav.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 45%;
    right: 2rem;
    transform: translateY(-50%);
    filter: invert(1);
}

.menu .menu-link.active::after {
    background-image: url(../images/_icons/close.svg);
    height: 3rem;
    top: 60%;
}

.menu-section-right {
    display: flex;
    width: calc(100% - var(--sidebar-width));
    align-items: center;
    justify-content: center;
}

/* search form */
.menu-section-right .search-form {
    width: 80%;
    padding: 1rem 2rem;
}

.menu-section-right .search-form .search-line {
    display: flex;
    align-items: center;
}

.menu-section-right .search-form .search-line .select-item {
    flex-basis: 35rem;
    max-width: 35rem;
    padding-right: .5rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.menu-section-right .search-form .search-line .select-item img{
    width: 2rem;
    vertical-align: middle;
    margin-top: -4px;
    margin-right: 5px;
}

.menu-section-right .search-form .search-line .select-item select {
    width: 100%;
    font-size: var(--font-size-small);
    height: 4rem;
    border-radius: var(--border-radius-btn);
    padding: 0.5rem;
    cursor: pointer;
    border: 1px solid var(--color-gray-line);
}

.menu-section-right .search-form .search-line .search-input {
    width: 100%;
    font-size: var(--font-size-base);
    position: relative;
}

.menu-section-right .search-form .search-line .search-input input {
    width: 100%;
    height: 4rem;
    padding: 1rem 2rem;
    border: 1px solid var(--color-gray-line);
    border-radius: var(--border-radius-btn);
}

.menu-section-right .search-form .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    width: 7rem;
    height: 4rem;
    border: none;
    background-color: var(--color-primary);
    border-radius: 0 var(--border-radius-btn) var(--border-radius-btn) 0;
}

.menu-section-right .search-form .search-submit img {
    width: 20px;
}

/* mini cart */
.menu-section-right .mini-cart {
    width: 25%;
}

.mini-cart .mini-cart-link {
    position: relative;
    display: block;
}

.mini-cart .cart-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2rem;
    background-color: var(--color-primary);
    height: 100%;
}

.mini-cart .cart-icon .cart-number{
    background-color: #000000;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    height: 13px;
    width: 13px;
    text-align: center;
    position: absolute;
    margin-left: 15px;
    margin-top: -10px;
}

.mini-cart .cart-icon img{
    width: 20px;
}

.menu-section-right .mini-cart .mini-cart-link {
    padding: 2rem 0;
}

.mini-cart .mini-cart-content {
    position: absolute;
    top: 59px;
    right: 0;
    background-color: #f2f2f2;
    text-align: center;
    display: none;
    min-width: 475px;
    padding: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.mini-cart .mini-cart-content:hover {
    display: block;
}

.mini-cart .mini-cart-content-wrap {
    padding: 1rem 2rem 2rem 2rem;
    background-color: #ffffff;
}

.mini-cart .btn-mini-cart {
    width: 100%;
    font-weight: 700;
    color: #ffffff;
}

.mini-cart .mini-cart-text {
    font-size: var(--font-size-small);
}

.mini-cart .mini-cart-item {
    display: flex;
    margin-bottom: 1rem;
    padding-top: 1rem;
    position: relative;
}

.mini-cart .mini-cart-item:not(:first-of-type){
    border-top: 1px solid #d1bca1;
}

.mini-cart .mini-cart-item .mini-cart-item-img {
    max-width: 8rem;
    width: 100%;
}


.mini-cart .mini-cart-item .mini-cart-item-img .product-img{
    max-height: 150px;
}

.mini-cart .mini-cart-item .mini-cart-item-desc {
    max-width: 20rem;
    width: 100%;
    text-align: left;
    padding-left: 1rem;
}

.mini-cart .mini-cart-item .mini-cart-item-desc a {
    font-size: 14px;
}

.mini-cart .mini-cart-item .mini-cart-item-desc .price {
    font-size: var(--font-size-base);
    font-weight: bold;
    margin-top: .5rem;
}

.mini-cart .mini-cart-item .mini-cart-item-q {
    padding-left: 1rem;
}

.mini-cart .mini-cart-item-remove img {
    width: 11px;
}

.mini-cart-item-remove{
    position: absolute;
    right: 4px;
}

/* sidebar nav */
.sidebar-nav.sidebar-nav-sticky {
    display: none;

    position: absolute;
    width: 100%;
    z-index: 9;
}

.sidebar-nav.sidebar-nav-static {
    display: block;
    position: absolute;
    width: 100%;
}

.sidebar-nav ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.sidebar-nav .nav-item .nav-item-link {
    display: block;
    position: relative;
    z-index: 1;
    padding: 1.5rem 1rem;
    width: var(--sidebar-width);
    background-color: var(--color-back-orange);
    border-bottom: 1px solid #d1deba;
    font-size: var(--font-size-small);
}

.sidebar-nav .nav-item .nav-item-link:hover,
.sidebar-nav .nav-item .nav-item-link.active {
    background-color: #fff;
}

.sidebar-nav .nav-item .nav-item-link img {
    width: 2.5rem;
    margin-right: 1rem;
}

.sidebar-nav .nav-item .submenu {
    position: absolute;
    top: 0;
    left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    padding: 3rem;
    height: 100%;
    display: none;
    background-color: #fff;
    overflow: scroll;

}

.sidebar-nav-static.active {
    z-index: 8;
}

.sidebar-nav .nav-item-parent {
    position: relative;
}

.sidebar-nav .nav-item-parent::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.3rem;
    height: 1.3rem;
    background-image: url(../images/icons/arrow-right.svg);
    background-repeat: no-repeat;
}

/* desktop hover nav */
@media (min-width: 768px) {
    .sidebar-nav .nav-item .nav-item-parent:hover + .submenu,
    .sidebar-nav .nav-item .submenu:hover {
        display: block;
    }
}

/* submenu */
.submenu .submenu-items {
    display: flex;
    flex-wrap: wrap;
}

.submenu .submenu-items .submenu-item {
    flex-basis: 25%;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.submenu .submenu-items .submenu-item.mega-menu-new-submenu{
    flex-basis: 33%;
}

.submenu .submenu-items .submenu-item h4 {
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.submenu .submenu-items .submenu-item h4 a {
    color: var(--color-primary);
    font-size: var(--font-size-base);
}

.submenu .submenu-items .submenu-item a {
    font-size: var(--font-size-small);
}

.submenu .submenu-items .submenu-item a:hover{
    color: var(--color-primary);
}

.submenu .submenu-items.submenu-items-multi{
    display: block;
    flex-wrap: inherit;
}

.submenu .submenu-items.submenu-items-multi .submenu-item {
    display: inline-grid;
    padding: 0;
    flex-basis: auto;
    width: 16%;
    padding-bottom: 2rem;
}


.active-submenu {
    background-color: var(--color-back-light);
}

.submenu-item-top a {
    display: block;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: bold;
}

/* sidebar */
.main {
    display: flex;
}

.sidebar {
    width: var(--sidebar-width);
}

.content {
    width: calc(100% - var(--sidebar-width));
    padding: 2rem 0 2rem 2rem;
}

/* slick fix */
.slick-slide {
    height: auto;
}

.slider .slick-dots li button:before {
    content: "";
    display: none;
}

.slider .slick-dots li {
    width: 3.5rem;
    height: .5rem;
    background-color: var(--color-gray-line);
    margin: 0 .3rem;
}

.slider .slick-dots li.slick-active {
    background-color: var(--color-primary);
}

.slider .slick-dots {
    bottom: 2rem;
}

.slider .slick-prev:before, .slider .slick-next:before {
    font-size: 4rem;
}

.slider .slick-prev {
    left: 2rem;
    z-index: 1;
}

.slider .slick-next {
    right: 4rem;
    z-index: 1;
}

.product-slider .slick-prev::before,
.product-slider .slick-next::before {
    color: var(--color-gray-dark);
}

.product-slider .slick-prev {
    top: -3rem;
    right: 3.5rem;
    left: auto;
}

.product-slider .slick-next {
    top: -3rem;
    right: 1rem;
    left: auto;
}

/* products */
.products .products-title {
    position: relative;
}

.products .products-title span {
    border-bottom: 4px solid var(--color-primary);
    display: inline-block;
    padding: 1rem 4rem 1rem 0
}

.products .products-title::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: var(--color-gray-line);
    bottom: 0;
    left: 0;
}

.products.products-product-page {
    margin-top: 6rem;
}

/* product slider */
.product-slider {
    margin-left: -1rem;
    margin-right: -1rem;
}

.product-slider .slick-track {
    display: flex;
}

.product-item {
    border: 1px solid var(--color-gray-line);
    padding: 2rem;
    margin: 1rem 1rem 2rem 1rem;
    transition: var(--transition);
}

.product-item:hover {
    box-shadow: var(--box-shadow);
}

.product-item .product-item-name {
    font-size: var(--font-size-base);
    font-weight: bold;
    word-break: break-all;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    word-break: break-word;
}

.product-item .product-item-desc {
    font-size: var(--font-size-xsmall);
    color: var(--color-gray-dark);
    line-height: 1.4;
}

.product-item .product-item-btn {
    width: 100%;
    font-weight: bold;
}

.product-item .product-item-btn:hover{
    color: #ffffff;
}


.product-item .product-item-btn.disabled-button{
    cursor: none;
    cursor: no-drop;
}

.product-item .product-item-btn.disabled-button:hover{
    background-color: var(--color-gray);
    color: var(--color-dark);
}

.product-item .product-item-price {
    font-size: var(--font-size-medium);
    font-weight: bold;
    padding-bottom: 2rem;
}

.product-item .product-item-price .product-price-discount {
    font-weight: normal;
    font-size: 13px;
    margin-top: 10px;
}

.product-item .product-item-price .product-price-discount span{
    text-decoration: line-through;
    display: block;
}

.product-item .product-item-price .product-price-regular {
    color: var(--color-dark);
    font-size: 14px;
}


.product-item .product-item-price .product-price-regular span{
    color: var(--color-secondary);
    display: block;
    font-size: var(--font-size-medium);
    margin-top: 3px;

}

.product-item .product-item-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item .product-item-not-stock{
    text-align: center;
    display: block;
    margin-bottom: 9px;
    font-weight: bold;
    padding-top: 17px;
}


.product-item .product-item-inner .product-img-box{
    position: relative;
    height: 210px;
    width: 100%;
}



.product-item .product-item-inner img{
    width: auto;
    max-width: 100%;
    max-height: 180px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.product-item .product-item-inner img.energy-class{
    transform: unset;
    width: 60px;
    top: -15px;
    left: -15px;
}

/*.product-item .product-item-inner .product-img-box.no-product-img{
    border: 1px solid #eeeeee;
}*/

.product-item .product-item-inner .no-product-img img{
    max-width: 90%;
}


.product-item .product-item-inner .product-img-box ul{
    /*    margin-top: 10px;
        margin-left: 10px;*/
}

.product-item .product-item-inner .product-img-box ul li.delivery {
    font-size: 12px;
    width: max-content;
    padding: 5px 12px;
    border-radius: 5px;
    color: #ce253d;
    border: 1px solid #ce253d;
    background-color: #ffffff;
    font-weight: 700;
    z-index: 2;
    position: relative;
}

.product-item .product-item-bottom {
    margin-top: auto;
    text-align: center;
}

.product-item .product-item-bottom .product-item-compare {
    font-size: var(--font-size-xsmall);
    text-align: center;
    text-decoration: underline;
    margin-top: 1rem;
    display: inline-block;
    color: var(--color-gray-dark);
}

/* footer */
footer {
    background-color: var(--color-back-dark);
}

.footer {
    padding: 5rem 0 5rem;
    margin-top: 10rem;
}

.footer a,
.footer p,
.footer li,
.footer h4 {
    color: #fff;
    font-size: var(--font-size-small);
}

.footer h4 {
    font-weight: bold;
    font-size: var(--font-size-medium);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.footer li {
    padding-bottom: .5rem;
}

.footer li a {
    padding-bottom: 1rem;
    display: block;
    transition: var(--transition);
}

.footer li a:hover {
    color: var(--color-primary);
}

.footer-logos {
    padding: 2rem 0;
}

.footer-logos > div {
    border-top: 1px solid var(--color-blue-line);
    border-bottom: 1px solid var(--color-blue-line);
    padding: 2rem 4rem;
}

.footer-logos .footer-logos-inner {
    max-width: 50rem;
    margin: 0 auto;
}

.footer-copy {
    padding-bottom: 2rem;
}

.footer-copy span {
    color: #fff;
    display: inline-block;
    font-size: var(--font-size-xsmall);
}

/* breadcrumbs */
.breadcrumbs {
    display: flex;
    padding: 2rem 0;
}

.breadcrumbs li {
    position: relative;
    padding-right: 3rem;
    font-size: var(--font-size-small);
}

.breadcrumbs li::after {
    position: absolute;
    right: 1rem;
    top: 0;
    content: ">";
    color: var(--color-gray-dark);
}

.breadcrumbs li:last-of-type::after {
    display: none;
}

.breadcrumbs li a {
    color: var(--color-gray-dark);
    font-size: var(--font-size-small);
}

/* product page */
.product-single .product-title {
    margin-top: 2rem;
    font-size: 30px;
    font-weight: bold;
}

/* product desc */
.product-desc-right {
    padding-left: 5rem;
}

.product-desc .product-desc-short {
    padding: 4rem 0 1rem;
}

.product-desc .product-price {
    font-size: 40px;
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
    margin-top: 22px;
}

.product-desc .product-price .product-price-discount {
    font-size: 14px;
    margin-top: 5px;
}


.product-desc .product-price .product-price-discount span{

    color: var(--color-gray-dark);
    text-decoration: line-through;
}

.product-desc .product-price .product-price-regular {
    font-weight: bold;
    color: var(--color-secondary);
    font-size: 20px;
}

.product-desc .product-price .product-price-regular  span{
    font-size: 25px;
}

.product-desc-right .product-code{
    margin-bottom: 20px;
    font-weight: bold;
}

.product-desc .product-price .extra-text{
    color: #7f7b7b;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

.product-desc .quantity-price-box{
    margin-bottom: 20px;
}

/* product box */
.product-box {
    background-color: var(--color-back-light);
    padding: 1rem 2rem 2rem 2rem;
    margin-bottom: 3rem;
    border-radius: 5px;
}

.product-box .row > div {
    padding-right: 2rem;
}

.product-box span,
.product-box label {
    font-size: var(--font-size-small);
}

.product-box label,
.product-box input {
    cursor: pointer;
}

.product-box input[type="radio"] {
    margin-right: 0.5rem;
    transform: translateY(2px);
}

.product-box .product-box-title {
    font-weight: bold;
    color: var(--color-primary);
    display: inline-block;
    margin: 1rem 0;
}

.product-box .product-box-price {
    color: var(--color-gray-dark);
    font-weight: bold;
    padding-left: 2.5rem;
    display: block;
}


.product-box .product-box-extra-text {
    padding-left: 2.5rem;
    font-size: var(--font-size-xsmall);
}

.product-box a {
    color: var(--color-secondary);
    font-size: var(--font-size-xsmall);
}


.product-box .product-box-acc{

}

.product-box .product-box-left{

}

.product-box .product-box-right{

}

.product-tags {
    margin-top: 4rem;
}

.product-tags a {
    color: var(--color-primary);
}

.product-tags a:hover {
    text-decoration: underline;
}

/* product buy box */
.product-buy-box {
    display: flex;
}

.product-buy-box .product-buy-box-inner {
    width: 100%;
    margin-left: auto;
    text-align: right;
}

.product-buy-box .product-buy-box-inner input {
    width: 100%;
    margin-left: auto;
    margin-bottom: 1rem;
    border: 1px solid var(--color-gray-dark);
    padding: .5rem;
    text-align: center;
    font-size: var(--font-size-base);
}

.product-buy-box .btn-buy {
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    color: #ffffff;
}

.product-buy-box .product-compare {
    text-align: center;
}

.stock_error_text{
    text-align: center;
    color: var(--color-secondary);
    display: none;
}

.product-buy-box .product-compare a {
    font-size: var(--font-size-small);
    text-align: center;
    text-decoration: underline;
    margin-top: 1rem;
    display: inline-block;
    color: var(--color-gray-dark);
}
/*
.product-stock {
    margin-bottom: 3rem;
}*/

.product-stock .product-stock-status {
    font-weight: bold;
    color: var(--color-primary);
    font-size: var(--font-size-base);
    margin-bottom: .5rem;
}

.product-stock .product-stock-status.not-on-stock{
    color: var(--color-secondary);
}


.product-stock .extra-stock{
    font-size: 14px;
}

.product-stock .extra-stock li{
    margin-bottom: 5px;
}


.product-stock .product-delivery-date{
    color: var(--color-secondary);
}

.product-stock .product-stock-num span {
    color: var(--color-primary);
    font-weight: bold;
}

.product-buy-box .quantity.single_product_quantity {
    width: max-content;
    margin-top: 9px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.quantity .pro-qty {
    width: 100%;
    height: 47px;
    padding: 0 13px;
    background: #ffffff;
    border: 1px solid #d8cece;
}

.quantity .pro-qty .qtybtn {
    width: 15px;
    display: block;
    float: left;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    color: #555555;
}

.quantity .pro-qty input {
    width: 26px;
    float: left;
    border: none;
    height: 47px;
    line-height: 47px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.quantity .pro-qty .qtybtn {
    width: 15px;
    display: block;
    float: left;
    line-height: 46px;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    color: #555555;
}

/* tabs */
.product-tabs {
    margin-top: 7rem;
}

.product-tabs .product-tab-nav {
    display: flex;
}

.product-tabs .product-tab-nav li {
    padding: 2rem 4rem;
    cursor: pointer;
}

.product-tabs .product-tab-nav li.active {
    border: 1px solid var(--color-gray-line);
    border-bottom: 1px solid #fff;
    font-weight: bold;
}

.product-tabs .product-tabs-content-item {
    border: 1px solid var(--color-gray-line);
    padding: 5rem 3rem 3rem 3rem;
    margin-top: -1px;
}

.product-tabs .product-tabs-content-item p {
    font-size: var(--font-size-base);
}

.product-tabs-content-item {
    display: none;
}

.product-tabs-content-item.active {
    display: block;
    word-wrap: break-word;
}

.product-tabs .product-tabs-content-item td {
    padding: 1rem 2rem 1rem 1rem;
    border-bottom: 1px solid var(--color-gray-line);
}

.product-tabs .product-tabs-content-item td:first-of-type {
    font-weight: bold;
}


.product-tabs .product-tabs-content-item ul{

}


.product-tabs .product-tabs-content-item td button{
    background: none;
    border: none;
    color: var(--color-primary);
    text-decoration: underline;
}

.product-tabs .product-tabs-content-item ul li{
    padding: 10px 0px;
    ;
    border-bottom: 1px solid var(--color-gray-line);
    margin-bottom: 5px;
    font-size: 14px;
}

/* gallery slider */
.gallery-slider .slick-prev:before,
.gallery-slider .slick-next:before {
    color: var(--color-primary);
    font-size: 2.6rem;
    border-radius: 50%;
}

.gallery-slider .slick-prev {
    left: 1rem;
    z-index: 1;
}

.gallery-slider .slick-next {
    right: 1rem;
    z-index: 1;
}

.product-gallery{
    margin-top: 30px;
}

.product-gallery .main-image img {
    max-width: 100%;
    height: 400px;
    margin: 0 auto;
    display: block;
}


.product-gallery .main-image img.energy-class{
    width: 60px;
    top: 0;
    left: 0;
    position: absolute;
    height: auto;
}

.product-gallery .main-image .no-img{
    height: auto;
    margin-top: 100px;
    width: 80%;
}

.gallery-slider .gallery-item {
    cursor: pointer;
    transition: var(--transition);
    height: 120px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 30px;
}

.gallery-slider .gallery-item:hover {
    opacity: .7;
}

/* checkbox */
.custom-checkbox {
    display: none;
}

.custom-checkbox-label {
    position: relative;
    padding-left: 2.5rem;
    cursor: pointer;
    margin-top: .5rem;
}

.custom-checkbox-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #fff;
    padding: .5rem;
    border: 1px solid var(--color-gray-line);
    margin-top: -2px;
}

.custom-checkbox:checked + .custom-checkbox-label::before {
    background-image: url('../images/icons/checkmark.svg');
    background-size: 1.1rem;
    background-repeat: no-repeat;
    background-position: center center;
}

.login_page{
    background-color: #f9f9f9;
    padding-top: 80px;
    padding-bottom: 120px;
    min-height: 40vh;
}

.login_page .card{
    padding: 40px;
    border: none;
    min-height: 300px;
    display: flex;
    justify-content: center;
}

.login_page .card h3{
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 24px;
}

.login_page .card .text{
    margin-bottom: 30px;
    font-size: 14px;
}

.login_page .card label{
    display: block;
    font-size: 14px;
    margin: 0px;
    margin-bottom: 5px;
    font-weight: 700;
}

.login_page .card input{
    height: 42px;
    border: 1px solid #dfdfdf;
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
}

.login_page .card button{
    display: block;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    color: #333333;
    line-height: 45px;
    padding: 0px 45px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid #333333;
    background: none;
    margin: 0 auto;
    width: 100%;
    margin-top: 25px;
}

.login_page .card button:hover{
    background-color: #333333;
    color: #ffffff;
}

.register_card h3 {

}

.register_card{
    text-align: center;
}


.error_text {
    font-size: 14px;
    text-align: left;
    color: #d72c2c;
    font-weight: 400;
    display: none;
}

.password_text {
    margin-bottom: 10px;
    color: red;
    font-size: 14px;
    text-decoration: underline;
    display: none;
}

.profile{
    background-color: #f9f9f9;
    padding-top: 80px;
    padding-bottom: 120px;
    min-height: 40vh;
}

.profile .profile_card{
    background-color: #ffffff;
    padding: 50px;
    margin-bottom: 20px;
}

.profile h3{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
}

.profile .profile_card .name{
    width: 100px;
    height: 100px;
    background-color: black;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    text-align: center;
    line-height: 100px;
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 30px;
    color: #ffffff;
}

.profile .profile_card h3{
    text-align: center;
    font-weight: 600;
    font-size: 20px;
}

.profile .profile_card h4{
    font-size: 14px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 20px;
}

.profile .profile_card ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.profile .profile_card ul li{
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.profile .profile_card ul li .title{
    font-weight: 600;
}

.profile .profile_card ul li .text{

}

.profile .order_status span{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    background-color: #eaedf7;
    vertical-align: top;
    margin-top: 3px;
}


/* filter */


.sidebar-filter{
    margin-top: 20px;
}

.filter {
    background-color: var(--color-gray);
    border-bottom: 1px solid #b8b7b7;
    padding-bottom: 20px;
}

.filter.category-filter{
    margin-bottom: 20px;
    padding: 20px;
    font-size: 14px;
}

.filter label.title {
    font-weight: 700;
    padding: 0px 20px;
    width: 100%;
    font-size: 14px;
    color: #6ea903;
    padding-top: 15px;
    margin-bottom: 5px;
}

.filter ul.list{
    padding: 15px 20px;
    padding-top: 0;
    padding-bottom: 0px;
    max-height: 136px;
    overflow: scroll;
    overflow-x: hidden;
}

/* width */
.filter ul.list::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.filter ul.list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.filter ul.list::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.filter ul.list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.filter.category-filter h3{
    font-weight: bold;
}

.filter.category-filter ul{
    margin-left: 10px;

}

.filter.category-filter ul li{
    text-decoration: underline;
    margin-bottom: 5px;
}

.filter.category-filter ul a{
    font-size: 14px;
}

.filter.category-filter ul li.subsubcategory-item{
    margin-left: 10px;
    text-decoration: none;
}

.filter.category-filter ul li.active-subcategory{
    font-weight: 700;
}

.filter.category-filter ul li.active-subsubcategory{
    font-weight: 700;
}

.filter .custom-checkbox-label{
    font-size: 14px;
}

.filter .custom-checkbox-label .quantity{
    font-weight: 700;
    margin-left: 5px;
    font-size: 12px;
}

.pagination{
    width: fit-content;
    margin: 0 auto;
    margin-top: 50px;
}

.pagination img{
    width: 11px;
    margin-top: -2px;
}

.pagination img.back{
    transform: rotate(180deg);
}

.pagination li a{
    width: 30px;
    height: 32px;
    border-radius: 4px;
    border: solid 1px #cec7bc;
    margin-right: 5px;
    padding: 0px;
    text-align: center;
    line-height: 32px;
    color: #292828;
    font-size: 12px;
    display: inline-block;
}

.pagination li.active a{
    background-color: #eeeeee;
    border: 1px solid #b8b7b7;
    font-weight: 700;
}



.nav-item:last-of-type .submenu-items.submenu-items-multi {
    display: block;
}

.nav-item:last-of-type .submenu-items.submenu-items-multi .submenu-item {
    float: left;
    width: 20%;
}

.nav-item:last-of-type .submenu-items.submenu-items-multi::after {
    content: "";
    display: table;
    clear: both;
}

.main_search_results{
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 1px 1px 5px #ebe6e6;
    border: 1px solid #f2f2f2;
    max-height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
}


.search-products{

}

.search-products-card{
    border-bottom: 1px solid #f2f2f2;
    padding: 10px 10px;
    display: inline-block;
    font-size: 12px;
    width: 49%;
}

.main_search_results .no_search_results{
    padding: 10px;
}

.search-products-card .bg{
    height: 65px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

}

.search-products-card h4{
    font-weight: bold;
    font-size: 14px;
}

.search-products-card .product-item-price{
    font-size: 12px;
}

.search-products-card .product-item-price .product-price-discount{
    font-weight: normal;


}


.search-products-card .product-item-price .product-price-discount span{
    text-decoration: line-through;
    color: var(--color-gray-dark);
}

.search-products-card .product-item-price .product-price-regular{
    color: var(--color-secondary);
    font-weight: bold;
}

.main_search_results .products_results_cta{
    text-align: center;
    font-weight: 700;
    text-decoration: underline;
    font-size: 14px;
    padding: 20px;
    display: block;
}

.subpage_header{
    text-align: center;
}

.subpage_header h2{
    font-size: 30px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 50px;
}


.subpage_header h1{
    font-size: 30px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 50px;
}


::selection {
    color: #fff;
    background: #17a2b8;
}
.wrapper_price_slider {
    padding: 15px 20px;
    padding-top: 5px;
}

.wrapper_price_slider .price-input {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}
.wrapper_price_slider .price-input .field {
    display: flex;
    width: 100%;
    height: 36px;
    align-items: center;
}
.wrapper_price_slider .field input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 14px;
    text-align: center;
    border: 1px solid var(--color-gray-line);
    -moz-appearance: textfield;
}

.wrapper_price_slider .field span{
    font-size: 14px;
    margin-left: 5px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.wrapper_price_slider .price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}
.wrapper_price_slider .slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}
.wrapper_price_slider .slider .progress {
    height: 100%;
    /*  left: 25%;
      right: 25%;*/
    position: absolute;
    border-radius: 5px;
    background: #6ea903;
}
.wrapper_price_slider .range-input {
    position: relative;
}
.wrapper_price_slider .range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: #6ea903;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #17a2b8;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.mobile_filter{
    display: none;
}


.f-dropdown {
    --max-scroll: 3;
    position: relative;
    z-index: 1;
}
.f-dropdown select {
    display: none;
}
.f-dropdown > span {
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    position: relative;
    border: solid 1px #ddd;
    border-radius: 4px;
    background: #fff;
    transition: color 0.2s ease, border-color 0.2s ease;
    height: 45px;
}
.f-dropdown > span > span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 12px;
    font-size: 14px;
}
.f-dropdown > span img {
    max-width: 90%;
    margin-right: 10px;
    height: 35px;
}
.f-dropdown > span:before, .f-dropdown > span:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 2px;
    border-radius: 1px;
    top: 50%;
    right: 12px;
    background: #000;
    transition: all 0.3s ease;
}
.f-dropdown > span:before {
    margin-right: 4px;
    transform: scale(0.96, 0.8) rotate(50deg);
}
.f-dropdown > span:after {
    transform: scale(0.96, 0.8) rotate(-50deg);
}
.f-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    max-height: calc(var(--max-scroll) * 46px);
    top: 26px;
    left: 0;
    z-index: 1;
    right: 0;
    background: #FFF;
    border: 1px solid #CCC;
    overflow-x: hidden;
    overflow-y: auto;
    transform-origin: 0 0;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transform: translate(0, 5px);
}
.f-dropdown ul li {
    padding: 0;
    margin: 0;
}
.f-dropdown ul li a {
    cursor: pointer;
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    outline: none;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;

}
.f-dropdown ul li a img {
    width: 90%;
    margin-right: 10px;
}
.f-dropdown ul li a:hover {
    color: #5C6BC0;
    opacity: 0.8;
}
.f-dropdown ul li.active a {

}
/*.f-dropdown ul li.active a:before, .f-dropdown ul li.active a:after {
    --scale: 0.6;
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    position: absolute;
    right: 12px;
    top: 50%;
    opacity: 0;
    background: #FFF;
    transition: all 0.2s ease;
}*/
/*.f-dropdown ul li.active a:before {
    transform: rotate(45deg) scale(var(--scale));
}
.f-dropdown ul li.active a:after {
    transform: rotate(-45deg) scale(var(--scale));
}*/
.f-dropdown ul li.active a:hover:before, .f-dropdown ul li.active a:hover:after {
    --scale: 0.9;
    opacity: 1;
}
.f-dropdown ul li:first-child a {
    border-radius: 6px 6px 0 0;
}
.f-dropdown ul li:last-child a {
    border-radius: 0 0 6px 6px;
}
.f-dropdown.disabled {
    opacity: 0.7;
}
.f-dropdown.disabled > span {
    cursor: not-allowed;
}
.f-dropdown.filled > span {
    color: #000;
}
.f-dropdown.open {
    z-index: 15;
}
.f-dropdown.open > span {
    border-color: #AAA;
}
/*.f-dropdown.open > span:before, .f-dropdown.open > span:after {
    background: #000;
}*/
.f-dropdown.open > span:before {
    transform: scale(0.96, 0.8) rotate(-50deg);
}
.f-dropdown.open > span:after {
    transform: scale(0.96, 0.8) rotate(50deg);
}
.f-dropdown.open ul {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}

/* --------------------------- */
.f-group {
    margin: 0 auto;
    text-align: left;
    width: 22%;
    position: absolute;
    right: 0;
    margin-top: -50px;
}
.f-group select {
    width: 100%;
}

.f-control {
    font-size: 14px;
    line-height: normal;
    color: #000;
    display: inline-block;
    background-color: #ffffff;
    border: #ccc 1px solid;
    border-radius: 6px;
    padding: 8px 12px;
    outline: none;
    max-width: 250px;
}

.f-dropdown ul li.active{
    background: #fafafa;
}


.products_extra_data{
    margin-top: 30px;
    margin-bottom: 20px;
}


.products_extra_data .description{
    margin-bottom: 20px;
}

.products_extra_data .description h1{
    font-weight: bold;
    font-size: 30px;
}




.products_extra_data .description div{
    font-size: 16px;
}

.products_extra_data .description div p{
    margin: 0;
}

.products_extra_data .description .description-cta{
    border: none;
    background: none;
    border: 1px solid #ced4da;
    padding: 5px 10px;
}

.products_extra_data .description .description-cta img{
    width: 15px;
    vertical-align: top;
    margin-top: 2px;
    margin-right: 6px;
}


.products_extra_data .description .description-cta.description-cta-less{
    margin-top: 5px;
}

.products_extra_data .description .description-cta:hover{

}

.products_extra_data .description .description-short{
    display: none;
}

.product-stock .product-stock-status{
    margin-top: 20px;
    display: inline-block;
}

.product-stock .product-stock-status.not-on-stock{
    margin-top: 10px;
}


.basic-product-data-box{
    border-top: 1px solid var(--color-gray-line);
    padding: 17px 0px;
    border-bottom: 1px solid var(--color-gray-line);
    margin-bottom: 20px;
}

.basic-product-data-list{
    border-right: 1px solid var(--color-gray-line);
}

.basic-product-data-list li{
    font-size: 14px;
    margin-bottom: 5px;
}

.basic-product-data-list li span{
    width: 110px;
    display: inline-block;
    font-weight: 600;
}

.basic-product-data-list li .more-info{
    font-size: 12px;
    text-decoration: underline;
    color: #6ea903;
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
}


.product-item{
    margin-bottom: 30px;
}

.products_page{
    position: relative;
    min-height: 200px;
}

.products_page .product-item {
    margin: 0px;
    margin-bottom: 30px;
}



.products_page .product-item .product-item-inner{
    display: block;
    height: auto;
}

.products_page .product-item .product-item-inner .product-img-box {
    display: block;
}


.special_offer_text{
    color: var(--color-secondary);
    font-size: 14px;
    margin-bottom: 5px;
}

.special_offer_text img{
    width: 18px;
    vertical-align: top;
    margin-top: -2px;
    margin-right: 6px;
}


.product-stock .product-stock-status.not-on-stock-long-time{
    margin-top: 0px;
    color: var(--color-secondary);
}

.product-item .product-item-price .special_offer_text{
    font-weight: normal;
    margin-top: 10px;
}


.product-item .product-item-price .special_offer_text img{
    width: 20px;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: inline-block;
    filter: invert(22%) sepia(57%) saturate(3418%) hue-rotate(334deg) brightness(89%) contrast(95%);
    margin: 0px;
    margin-top: -4px;
}

.product-item .product-item-price .special_offer_text .countdown{
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
}

.error_page .box{
    text-align: center;
    margin-top: 10%;
    background-color: var(--color-gray);
    padding: 50px;
}

.error_page .box h3{
    font-weight: 700;
    font-size: 30px;
}

.error_page .box h4{
    font-size: 20px;
}

.error_page .box a{
    background-color: #fff;
    display: inline-block;
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    font-weight: 700;
    border: 1px solid transparent;
    margin-top: 20px;
    transition: .3s;
}


.error_page .box a:hover{
    opacity: 0.8;
    color: #6ea903;
}


.define_products_view{
    width: 40%;
    margin-left: auto;
    margin-top: -49px;
}


.define_products_view .input-group-prepend{
    height: 40px;

}

.define_products_view .input-group-text{
    background-color: var(--color-back-light);
    font-weight: 700;
    font-size: 14px;
}

.define_products_view select{
    height: 40px;
    font-size: 14px;
}


.subpage_text iframe{
    border: none;
    max-width: 100%;
    height: 300px;
}


.subpage_text a{
    color: #6ea903;
    text-decoration: underline;
}


a.lost_pass_cta{
    text-decoration: underline;
}


/* SPINNER */


.content_spinner svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    animation: rotation 1455ms infinite linear;
}

.content_spinner circle {
    stroke: currentColor;
    stroke-dasharray: 44px;
    stroke-dashoffset: 11px;
    transform-origin: center;
    transform: rotatey(180deg) rotate(90deg);
    animation: spinner 3850ms infinite ease;
}

@keyframes spinner {
    0% {
        stroke-dashoffset: 33px;
        transform: rotatey(0deg) rotate(0deg);
    }
    25% {
        stroke-dashoffset: 11px;
        transform: rotatey(0deg) rotate(0deg);
    }
    25.0001% {
        stroke-dashoffset: 11px;
        transform: rotatey(180deg) rotate(270deg);
    }
    50% {
        stroke-dashoffset: 33px;
        transform: rotatey(180deg) rotate(270deg);
    }
    50.0001% {
        stroke-dashoffset: 33px;
        transform: rotatey(0deg) rotate(180deg);
    }
    75% {
        stroke-dashoffset: 11px;
        transform: rotatey(0deg) rotate(180deg);
    }
    75.0001% {
        stroke-dashoffset: 11px;
        transform: rotatey(180deg) rotate(90deg);
    }
    100% {
        stroke-dashoffset: 33px;
        transform: rotatey(180deg) rotate(90deg);
    }
}

@keyframes rotation {
    100% {
        transform: rotate(360deg);
    }
}

.content_spinner {
    width: 80px;
    color: #6ea903;
    position: absolute;
    left: 50%;
    top: 100px;
    z-index: 100;
    transform: translate(-50%, 0%);
}



.close_filter{
    display: none;
}


.filter_mobile_footer{
    display: none;
}

.mobile-category-title{
    display: none;
}

.category-title{

}

.mobile-header-info{
    display: none;
}


.error-img{
    max-width: 100px;
    margin-bottom: 20px;
}


.profile_cta{
    display: block;
    text-align: center;
    font-size: 14px;
    text-decoration: underline !important;
    margin-bottom: 5px;
}


.profile_card input{
    height: 42px;
    border: 1px solid #dfdfdf;
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
    margin-top: 5px;
}

.profile_card select {
    width: 100%;
    height: 46px;
    padding: 0 20px;
    border: 1px solid #e5e4e4;
    margin-top: 5px;
}


.profile .profile_card.profile_card_edit ul li{
    border: none;
}


.profile .profile_card.profile_card_edit button{
    display: block;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    color: #ffffff;
    line-height: 45px;
    padding: 0px 45px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid #333333;
    background-color: #333333;
    margin: 0 auto;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 15px;
}

.profile .profile_card.profile_card_edit button:hover {
    background-color: #ffffff;
    color: #333333;
}

.profile .profile_card .success_text{
    color: #6ea903;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 30px;
    display: none;
}


.modal_product .btn-close{
    width: 25px;
    height: 25px;
    background: none;
    border: none;
}

.modal_product .btn-close img{
    width: 14px;
}


.search_string_filter ul{
    margin: 0 20px;
    margin-top: 10px;
}

.search_string_filter ul li{
    border: 1px solid #b8b7b7;
    width: fit-content;
    padding: 2px 13px;
    font-size: 14px;
    border-radius: 5px;
    background: #ffffff;
}


.search_string_filter ul button{
    background: none;
    border: none;
    text-align: center;
    margin-top: -5px;
    margin-left: 4px;
    vertical-align: middle;
}


.search_string_filter ul button img{
    width: 8px;
}



footer .social{
    margin-top: 10px;
}

footer .social li{
    display: inline-block;
}

footer .social li a{
    border-radius: 50%;
    border: 1px solid #3b4655;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 38px;
}

footer .social li a img{
    width: 20px;
}

footer .social li a:hover{
    border: 1px solid var(--color-primary);
}


footer .payments{
    width: max-content;
}

footer .payments li{
    display: inline-block;
    border: 1px solid #3b4655;
    padding: 5px 10px;
}

footer .payments li img{
    width: auto;
    max-height: 20px;
}

.input_group {
    margin-bottom: 20px;
}

.input_group input {
    width: 100%;
    height: 46px;
    padding: 0 20px;
    border: 1px solid #e5e4e4;
}

.input_group input.requiredInput{
    border: 1px solid red;
}

.subpage_form{
    width: 100%;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}


.success_text_box{
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    display: none;
}



.success_text_box .img{
    display: inline-block;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #e4e4e4;
    text-align: center;
    line-height: 40px;
}

.success_text_box img{
    width: 28px;
}

.success_text_box .text{
    display: inline-block;
}

.feedback_box{
    margin-top: 10px;
}



/* COOKIES */

.cc-window .cc-window-message{
    padding:  0px !important;
}

.cc-window .cc-window-message p{
    font-size: 12px ! Important;
    font-family: 'Montserrat', sans-serif;
}



.cc-modal-window .cc-window-settings-buttons, .cc-window .cc-window-buttons{
    padding: 0px !important;
    margin-top: 0px;
}

.cc-modal-window .cc-modal-content h2{
    font-size: 14px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.cc-modal-window *, .cc-window *{
    font-family: 'Montserrat', sans-serif;
}

.cc-window .cc-window-buttons button.cc-btn-info{
    margin-top: 0px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.cc-window .cc-window-buttons button.cc-btn-accept{
    margin-top: 0px !important;
    font-family: 'Montserrat', sans-serif;
}


.cc-window .cc-window-buttons button.cc-btn-accept{
    background-color: #6ea903;
    color: #ffffff;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 900 !important;
    font-family: var(--font-primary);
}


.cc-window .cc-window-buttons button.cc-btn-accept:hover{
    background-color: #6ea903;
    opacity: 0.7;
}


#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-desc p{
    font-size: 12px;
    line-height: 14px;
}

#cc-btn-dismiss.cc-pos-bottom-left, .cc-window.cc-pos-bottom-left {
    left: var(--windowMarginLeft, 10px) !Important;
}

#cc-window-settings .cc-window-settings-header{
    margin-bottom: 0px !Important;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-title-dropdown{
    margin-top: 6px !Important;
    font-weight: 500;
}

#cc-window-settings .cc-window-settings-cookie{
    padding: 8px 0;
}

.cc-window .cc-window-message p{
    display: inline !Important;
    font-family: var(--font-primary);
}


.cc-window .cc-window-message a, .cc-window .cc-window-message a:hover, .cc-window .cc-window-message a:visited{
    font-size: 11px !Important;
    color: var(--pine) !Important;
}


.cc-window.cc-animation-in.cc-pos-bottom, .cc-window.cc-animation-in.cc-pos-bottom-center, .cc-window.cc-animation-in.cc-pos-bottom-left, .cc-window.cc-animation-in.cc-pos-bottom-right{
    text-align: left;
    width: var(--windowWidth, 400px);
    box-shadow: 0px 4px 20px 0px #00000040;
    padding: 20px;
    background-image: url(../images/cookies.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto;
    background-blend-mode: color;
    background-color: #ffffffe8;
}

.cc-window .cc-window-title{
    font-weight: 700;
    margin: 0px;
    padding: 0px;
    font-size: 16px !important;
    margin-bottom: 3px !important;
    padding-top: 0px !important;
    text-align: left;
}

.cc-window-settings-buttons button.cc-btn-settings-accept{
    background-color: #6ea903 !Important;
}

.cc-window-settings-buttons button.cc-btn-settings-accept:hover{
    opacity: 0.8;
}


.cc-modal-content{
    margin-top: 0px !important;
}


.cc-window-settings-buttons button.cc-btn-settings-accept{
    color: #ffffff;
    border-radius: 6px !Important;
    text-transform: uppercase;
    padding: 10px 20px !Important;
    font-weight: 800;
    font-size: 13px !Important;
}


.cc-window-settings-buttons button.cc-btn-settings-select{
    font-weight: 500;
}

/* END OF COOKIES */


/* SIDEBAR*/


/* SHOP */

#cd-cart {
    position: fixed;
    top: 0;
    height: 100%;
    width: 450px;
    /* header height */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 3;
}



#cd-cart {
    right: -100%;
    background: #ffffff;
    -webkit-transition: right 0.3s;
    -moz-transition: right 0.3s;
    transition: right 0.3s;
    z-index: 1060;
}

#cd-cart.speed-in {
    right: 0;
}

#cd-shadow-layer {
    position: fixed;
    min-height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(67, 87, 121, 0.6);
    cursor: pointer;
    z-index: 20;
    display: none;
}
#cd-shadow-layer.is-visible {
    display: block;
    -webkit-animation: cd-fade-in 0.3s;
    -moz-animation: cd-fade-in 0.3s;
    animation: cd-fade-in 0.3s;
}

/* -------------------------------- 

xkeyframes 

-------------------------------- */
@-webkit-keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.add_in_cart_wrapper .header {
    height: auto;
    padding: 20px 20px;
    padding-right: 10px;
    background-color: #f2f2f2;
}

.add_in_cart_wrapper .header h2 {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 700;
}

.add_in_cart_wrapper .header h2 img {
    width: 20px;
    vertical-align: top;
    margin-right: 10px;
    filter: invert(1);
}

.add_in_cart_wrapper .header h2 img.close {
    margin-right: 6px;
    vertical-align: top;
    cursor: pointer;
    opacity: 1;
    width: 12px;
    float: right;
    margin-top: 1px;
    filter: none;
}



.skillbar {
    width: 100%;
    position:relative;
    display: inline-block;
    float: right;
    margin-top: 12px;
    background:#eee;
    height: 9px;
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    -webkit-transition:0.4s linear;
    -moz-transition:0.4s linear;
    -ms-transition:0.4s linear;
    -o-transition:0.4s linear;
    transition:0.4s linear;
    -webkit-transition-property:width, background-color;
    -moz-transition-property:width, background-color;
    -ms-transition-property:width, background-color;
    -o-transition-property:width, background-color;
    transition-property:width, background-color;
}

.skillbar-bar {
    height: 9px;
    width:0px;
    background:#292828;
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
}

.skillbar-bar {
    background: #6ea900 !Important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.items_free_delivery_box {
    padding: 10px 20px;
    border-bottom: 1px solid #e7e7e7;
}

.add_in_cart_wrapper .products {
    overflow: hidden;
    padding: 15px 0px;
}

.add_in_cart_wrapper .products .product_card {
    margin-bottom: 10px;
    text-align: left;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 10px;
    padding-top: 10px;
    position: relative;
}

.add_in_cart_wrapper .products .product_card .img_box {
    height: 85px;
    width: 25%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70px;
    display: inline-block;
    position: relative;
}

.add_in_cart_wrapper .products .product_card .content {
    width: 72%;
    display: inline-block;
    vertical-align: top;
    margin-top: 0px;
    padding: 0;
    position: relative;
}

.add_in_cart_wrapper .total_box {
    padding: 0px 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
}
.add_in_cart_wrapper .items_in_cart_text {
    font-size: 12px;
    padding: 10px;
    text-align: center;
}

.add_in_cart_wrapper a.cta {
    display: block;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    line-height: 45px;
    text-transform: uppercase;
    transition: 0.3s;
    width: auto;
    background-color: var(--color-primary);
    font-weight: 700;
    margin: 0 15px;
    height: 45px;
    border-radius: 6px;
}

.add_in_cart_wrapper a.cta:hover{
    opacity: 0.8;
}

.add_in_cart_wrapper .products .product_card .remove_item {
    width: 15px;
    position: absolute;
    right: 23px;
    cursor: pointer;
    height: auto;
    bottom: 30px;
}

.add_in_cart_wrapper .products .product_card .quantity_text {
    font-size: 13px;
    height: 20px;
    width: 20px;
    background-color: var(--color-primary);
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    color: var(--white);
    bottom: 6px;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    font-weight: 700;
}

.add_in_cart_wrapper .products .product_card h3 {
    font-size: 13px;
    margin-bottom: 0;
    margin-top: 8px;
    padding-right: 20px;
    font-weight: bold;
    width: 90%;
}

.add_in_cart_wrapper .products .product_card .price {
    font-weight: bold;
    font-size: 15px;
    margin-top: 8px;
    display: inline-block;
    color: var(--color-secondary);
    margin-top: 10px;
    font-weight: bold;
}

.items_free_delivery_box .text {
    font-size: 13px;
    margin-top: 27px;
    display: block;
}

.items_free_delivery_box .text img{
    width: 20px;
    display: inline-block;
}


.payments_cart{
    text-align: center;
    margin-top: 12px;
    padding-bottom: 50px;
}

.payments_cart li {
    display: inline-block;
    padding: 5px;
}

.payments_cart li img {
    width: auto;
    max-height: 20px;
}

.cart_no_results {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    width: 100%;
    text-align: center;
}


.cart_no_results img{
    width: 50px;
    margin: 0 auto;
    margin-bottom: 20px;
    display: block;
}


.add_in_cart_wrapper .header h2 .close_box{
    position: absolute;
    right: 10px;
    top: 25px;
    font-size: 12px;
    font-weight: normal;
    cursor: pointer;
}

.add_in_cart_wrapper .header h2 .close_box:hover{
    opacity: 0.7;
}

.add_in_cart_wrapper .header h2 .close_box img{
    filter: none;
    margin: 0px;
    width: 13px;
}

.inline_discount {
    color: #6ea903;
    font-size: 12px;
    font-weight: 700;
    margin-top: 0px;
    display: inline-block;
    vertical-align: middle;
    /* margin-left: 10px; */
}

.add_in_cart_wrapper .products .product_card .content .old_price{
    text-decoration: line-through;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: -10px;
}

.add_in_cart_wrapper .tax_text {
    color: #757575;
    font-size: 12px;
    padding: 5px 15px;
    margin-bottom: 10px;
}

.add_in_cart_wrapper .product_card .product_accessories_card .content{
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    flex-basis: auto;
    padding: 0px;
    margin-left: 90px;
}


.add_in_cart_wrapper .product_card .product_accessories_card h3{
    font-weight: normal;
    font-size: 12px;
    margin: 0;
    width: 64%;
}


.add_in_cart_wrapper .product_card .product_accessories_card .content .price{
    font-size: 12px;
    margin: 0;
    width: 20%;
    text-align: right;
}

.add_in_cart_wrapper .accessories_box{
    margin-top: 0px;
}

.add_in_cart_wrapper .product_card .product_accessories_card{
    margin-bottom: 5px;
}


.add_in_cart_wrapper .product_card .product_accessories_card .remove_item{
    bottom: 2px;
    width: 12px;
}

.header-inner .back{
    display: none;
}

.single_product_quantity{
    display: inline-block;
}

.single_product_quantity label{
    font-weight: bold;
    font-size: 14px;
}

textarea{
    width: 100%;
    padding: 20px;
    border: 1px solid #e5e5e5;
    resize: none;
    min-height: 100px;
    margin-bottom: 20px;
}


.best_last_price{
    font-size: 10px;
    margin-top: -10px;
}


.subpage_body button{
    color: #ffffff;
    margin-top: 20px;
    font-weight: 700;
}

.subpage_body .cart_header{
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #6ea903;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.submit_cart_error{
    color: red;
    text-align: center;
    margin-top: 20px;
    display: none;
}

/* -- */


.instructions h3{
    font-weight: 700;
    margin-bottom: 5px;
}

.instructions h2{
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
    border-bottom: 2px solid #6ea903;
    padding-bottom: 5px;
}

.instructions ul{
    margin-bottom: 30px;
}

.instructions ul li{
    margin-bottom: 5px;
}

.instructions ul li a{
    color: #212529;
    text-decoration: none;
    transition: .3s;
}

.instructions ul li a:hover{
    color: var(--color-primary);
}

.instructions ul li a img{
    width: 18px;
    vertical-align: top;
}

.instructions .extra{
    margin-bottom: 20px;
    font-size: 14px;
}




.register_form .select2{
    width: 100%;
}


.register_form .select2-container--default .register_form .select2-selection--single{
    border: 1px solid #dfdfdf !Important;
}

.select2-container .select2-selection--single{
    height: 42px !Important;
    border: 1px solid #dfdfdf !Important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 42px !Important;
    font-size: 14px !Important;
    color: #7f7f7f !Important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 42px !Important;
}


.register_form .form-group{
    margin-bottom: 15px;
}

.register_form .divider{
    border-top: 1px solid rgba(0,0,0,.1);
    margin-top: 5px;
    padding-top: 20px;
}


.sidebar_banners{
    padding-top: 20px;
}

.sidebar_banners a{
    margin-bottom: 10px;
    display: block;
}

.sidebar_banners a img{
    width: 100%;
}


.pagination-list li {
    display: inline-block;
    vertical-align: middle;
}

.pagination-list li a,
.pagination-list li span {
    display: block;
    /* padding: 8px 12px; */
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    color: #000;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    height: 36px;
    width: 36px;
    line-height: 36px;
}

.pagination-link:hover {
    background-color: #f0f0f0;
}

.pagination-link.active {
    background-color: #6ea903;
    font-weight: bold;
    pointer-events: none;
    color: #ffffff;
}

.pagination-disabled {
    color: #999;
    background-color: #f9f9f9;
    border-color: #eee;
    pointer-events: none;
    cursor: default;
}

.pagination-ellipsis {
    /* padding: 8px 12px; */
    color: #888;
    padding-bottom: 17px;
}

#LoadMoreBtn {
    display: block;
    margin: 20px auto;
    padding: 10px 30px;
    background-color: var(--color-back-dark);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#LoadMoreBtn:hover {
    background-color: #555;
}



.tweets,
.tweets-skeleton {
    /* display: flex; */
    /* width: 100%; */
    /* justify-content: center; */
}

.tweets-skeleton {
}

.tweet,
.tweet-skeleton {
    width: 30rem;
}

.tweet-skeleton {
    border: 1px solid var(--color-gray-line);
    height: 400px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    width: 100%;
}

.tweet-skeleton .img {
    height: 150px;
    width: 100%;
    background-color: #d1d1d1;
    animation: tweet-skeleton 1s linear infinite alternate;
}

.tweet-skeleton .content-1,
.tweet-skeleton .content-2 {
    height: 25%;
    margin-top: 1rem;
}

.tweet-skeleton .line {
    height: 15%;
    margin: 0.5rem 0;
    width: 100%;
    border-radius: 0.3rem;
    background-color: #d1d1d1;
    animation: tweet-skeleton 1s linear infinite alternate;
}

.tweet-skeleton .line:last-child {
    width: 75%;
}

@keyframes tweet-skeleton {
    0% {
        background-color: #d1d1d1;
    }
    100% {
        background-color: #f3f3f3;
    }
}


.quality-box {
    margin-top: 40px;
}

.quality-box h3 {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Vsak par posebej */
.quality-box .quality-item {
    display: flex;
    border: 1px solid var(--color-gray-line);
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.quality-box .quality-item .field {
    flex: 0 0 250px;
    max-width: 250px;
    padding: 20px;
    font-weight: 700;
}

.quality-box .quality-item .field-description {
    flex: 1;
    padding: 20px;
    border-left: 1px solid var(--color-gray-line);
}

/* leanpay-button */

.leanpay-widget {
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.leanpay-header {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
}

.leanpay-header .leanpay-title{
    border: 1px solid #F58466;
    height: 33px;
    display: inline-block;
    line-height: 33px;
    padding: 0 12px;
}


.leanpay-header .leanpay-price{
    background-color: #F58466;
    height: 33px;
    display: inline-block;
    line-height: 33px;
    padding: 0 12px;
    color: #ffffff;
    border: 1px solid #F58466;
}

.leanpay-header .leanpay-price span{
    font-weight: 700;
}



.leanpay-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    background: none;
}

.leanpay-toggle img{
    width: 100px;
}

.leanpay-popup {
    display: none;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 15px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    max-width: 320px;
    position: absolute;
    z-index: 1;
}

.leanpay-popup-inner {
    text-align: left;
}

.leanpay-logo {
    height: 20px;
    margin-bottom: 10px;
}

.leanpay-installments {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.leanpay-installments li {
    margin: 5px 0;
    font-size: 15px;
}

.leanpay-info {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.leanpay-links a {
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    color: #0075cc;
}



.leanpay-widget .top{
    border-top: 1px solid var(--color-gray-line);
    padding-top: 17px;
    font-size: 14px;
    margin-bottom: 10px;
}

/* FAQ */

.bottom-section{
    margin-top: 70px;
}


.faq-section{
    margin-bottom: 50px;
}

.faq-section h3{
    text-align: center;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #6ea903;
}

.faq-container {
    /*    margin-top: 40px;*/
}

.faq-item {
    /* border-bottom: 1px solid #ddd; */
    margin-bottom: 10px;
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    background-color: var(--color-gray);
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.4s;
    border-radius: var(--border-radius-btn);
}

.faq-question:hover {
    background-color: #eee;
}

.faq-answer {
    padding: 15px 20px;
    display: none;
    background-color: #fff;
}

.faq-item.active .faq-answer {
    display: block;
}

.arrow {
    transition: transform 0.6s ease;
}

.arrow img{
    width: 20px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}


.news-section{

}

.news-section h3{
    text-align: center;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #6ea903;
}


.news-section a{
    transition: .3s;
}

.news-section a .img-box{
    height: 200px;
}

.news-section a .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.news-section a h4{
    text-align: center;
    font-weight: 700;
    margin-top: 15px;
    transition: .3s;
}

.news-section a:hover h4{
    color: var(--color-primary);
}



.news_body h1{
    font-size: 45px;
    font-weight: 600;
}

.news_body{
    padding-top: 30px;
    padding-bottom: 80px;
}

.news_body .news_content{
    background-color: #ffffff;
    padding-bottom: 50px;
}

.news_body .news_content .additional{
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-top: 10px;
}

.news_body .news_content .additional li{
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    font-weight: 400;
}

.news_body .news_content .additional li img{
    width: 17px;
    vertical-align: top;
    margin-top: -1px;
    margin-right: 5px;
}

.news_body .news_content .text{
    font-size: 16px;
}

.news_body .img_box{
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: color;
    background-color: #ffffff99;
    width: auto;
    max-width: 100%;
}

.news_body .news_content video{
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.news_body .img_box img{
    margin: 0 auto;
    max-width: 100%;
}



.sidebar_news .title{
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.news_body .author{
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.news_body .author .title{
    margin-top: 0px;
    margin-bottom: 20px;
}

.news_body .author .bg{
    height: 130px;
    width: 130px;
    background-position: center;
    background-size: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    background-repeat: no-repeat;
    position: relative;
    margin: 0 auto;
}



.news_body .author .content{
    font-size: 14px;
    padding: 20px;
    text-align: left;
    padding-top: 0px;
}

.news_body .author a{
    text-decoration: underline;
    font-weight: 400;
    display: block;
}

.news_body .other_news{
    padding: 20px;
    margin-top: 15px;
    background-color: var(--color-gray);
    border-bottom: 1px solid #b8b7b7;
}

.news_body .other_news .other_news_single{
    margin-bottom: 15px;
    display: block;
    color: #000000;
}

.news_body .other_news .other_news_single .bg{
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.news_body .other_news .other_news_single .title{
    text-transform: none;
    font-size: 14px;
}

.news_body .other_news .other_news_single .date{
    font-size: 12px;
}

.sidebar_news iframe{
    width: 100%;
    height: 300px;
}

.mega-menu-new-submenu li{
    font-weight: 700;
    margin-bottom: 5px;
}

.mega-menu-new-submenu li img{
    height: 65px;
    width: auto;
    max-width: 100%;
    margin-right: 10px;
}

.news-container{
    padding-top: 80px;
    padding-bottom: 50px;
}

.news-container h1{
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 60px;
}

.news-container a .img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.news-container a h2 {
    text-align: center;
    font-weight: 700;
    margin-top: 15px;
    transition: .3s;
}

.news-container a .img-box {
    height: 250px;
}