/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Base
	- Base
	- Reset
    - Variables
# Components
    - Breadcrumb
    - Button
    - Component
    - Menu Mobile
    - Pagination
# General
    - General
# Layout
	- Footer
    - Forms
    - Header
    - Sidebar
# Mixin
    - Common
      + Breakpoint
      + Prefix
      + Truncate
    - Mixin  
# Pages
    - Home
      + Home
      + ...
      + ...    

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


/* Mixin
--------------------------------------------- */


/* Breakpoint
--------------------------------------------- */


/* Truncate
--------------------------------------------- */


/* Prefix
--------------------------------------------- */


/* SCSS */


/* CSS */


/* Base
--------------------------------------------- */


/* Variables
--------------------------------------------- */


/** =============== Font ================= **/

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Bold.ttf);
    font-weight: 700;
}


/** =============== Color ================= **/

:root {
    --primary-color: #ffad02;
    --secondary-color: #fff;
    --grey-cc: #cccccc;
    --grey-777: #777777;
}


/* Reset
--------------------------------------------- */


/** Reset CSS **/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    font-size: 1.4rem;
    font-family: "Segoe UI", "Arial", arial-black;
    background-color: #000;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
    outline: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

input:focus {
    box-shadow: none;
}

select {
    cursor: pointer;
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media only screen and (min-width: 1400px) {
    .container-xl {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 15px;
    }
}


/* General
--------------------------------------------- */


/** General **/

.custom-sticky {
    position: sticky;
    z-index: 99;
}

.section__title {
    font-size: 3.5rem;
    font-weight: 700;
}

.section__title-hasline {
    display: flex;
    align-items: center;
}

.section__title-hasline:before,
.section__title-hasline:after {
    content: "";
    display: block;
    height: 1px;
    flex: 1;
    background-color: #fd0000;
}

.section__title-hasline:before {
    margin-right: 30px;
}

.section__title-hasline:after {
    margin-left: 30px;
}

.mg--15 {
    margin: 0 -15px;
}


/** Custom prev next btn flickity **/

.custom-prev-next-btn .flickity-button {
    width: 37px;
    height: 37px;
}

.custom-prev-next-btn .flickity-button .flickity-button-icon {
    display: none;
}

.custom-prev-next-btn .flickity-button svg {
    display: none;
}

.custom-prev-next-btn .flickity-button.previous {
    background: url(../images/btn_left.png);
    object-fit: contain;
    background-repeat: no-repeat;
    left: -15px;
}

@media only screen and (max-width: 767px) {
    .custom-prev-next-btn .flickity-button.previous {
        left: 10px;
    }
}

.custom-prev-next-btn .flickity-button.next {
    background: url(../images/btn_right.png);
    object-fit: contain;
    background-repeat: no-repeat;
    right: -15px;
}

@media only screen and (max-width: 767px) {
    .custom-prev-next-btn .flickity-button.next {
        right: 10px;
    }
}


/** Gutter 5 **/

.gutter-7 [class*="col-"] {
    padding-right: 7px;
    padding-left: 7px;
}

.gutter-5 {
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
}

.gutter-5>[class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

@media only screen and (max-width: 424px) {
    .gutter-sm-5 {
        margin: 0 -5px!important;
    }
    .gutter-sm-5 [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
}


/** Banner **/

@media only screen and (max-width: 767px) {
    .banner {
        padding: 30px 0;
    }
}


/** Page Desc **/

.page__desc {
    color: #fff;
    font-size: 1.6rem;
    background-color: #000;
    padding: 50px 30px;
}

.bg-black {
    background-color: #000000;
}


/** Page titlte **/

.page__title {
    font-size: 3rem;
}

@media only screen and (max-width: 1023px) {
    .page__title {
        font-size: 2.5rem;
    }
}

.page__title-not-desc {
    padding: 100px 0;
}

@media only screen and (max-width: 1023px) {
    .page__title-not-desc {
        padding: 40px 0;
        margin-bottom: 0!important;
    }
}


/** Product filter **/

.product-filter {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.product-filter span {
    width: max-content;
    flex-shrink: 0;
}

.product-filter select {
    margin-left: 10px;
    outline: none;
    color: var(--primary-color);
    padding: 3px 10px;
}

@media only screen and (max-width: 424px) {
    .product-filter select {
        max-width: 185px;
    }
}


/** About **/

.about {
    padding: 15px 0 40px 0;
}


/** Font **/

.font-bold {
    font-weight: 700;
}

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

.font-medium {
    font-weight: 500;
}


/** Text **/

.text-primary {
    color: var(--primary-color) !important;
}

.text-hover-primary {
    color: var(--primary-color);
}

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


/** Background **/

.bg-center {
    background-position: center;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-cover {
    background-size: cover;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}


/** Back to top **/

.backToTop {
    position: fixed;
    z-index: 99;
    bottom: 50px;
    right: -120%;
    background-color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    transition: 0.5s;
    color: #fff;
    cursor: pointer;
}

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

.backToTop.show__backToTop {
    right: 10px;
}


/** Style for post **/

.ws-sgct blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #eb2b2d;
}

.ws-sgct blockquote p {
    margin: 0 !important;
}

.ws-sgct code {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    font-size: 0.85rem;
    color: #e83e8c;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.ws-sgct p,
.ws-sgct table {
    margin: 0 0 15px;
    line-height: 1.5;
}

.ws-sgct table {
    border: 1px solid #ddd;
    margin-bottom: 30px;
}

.ws-sgct table>tbody>tr>td,
.ws-sgct table>tbody>tr>th,
.ws-sgct table>tfoot>tr>td,
.ws-sgct table>tfoot>tr>th,
.ws-sgct table>thead>tr>td,
.ws-sgct table>thead>tr>th {
    border: 1px solid #ddd;
    padding: 7px 10px;
}

.ws-sgct h6 {
    font-size: 18px;
}

.ws-sgct h5 {
    font-size: 21px;
}

.ws-sgct h4 {
    font-size: 24px;
}

.ws-sgct h3 {
    font-size: 27px;
}

.ws-sgct h2 {
    font-size: 30px;
}

.ws-sgct ul,
.ws-sgct ol {
    margin: 0 0 20px;
    padding-left: 20px;
    list-style: disc;
}

.ws-sgct ul li,
.ws-sgct ol li {
    line-height: 1.5;
}

.ws-sgct ol {
    list-style: decimal;
}

.ws-sgct iframe {
    margin: auto;
    width: 100%;
}

.ws-sgct .syntaxhighlighter {
    padding: 10px 0;
}

.ws-sgct h2,
.ws-sgct h3,
.ws-sgct h4,
.ws-sgct h5,
.ws-sgct h6 {
    margin: 0 0 30px;
}


/* Components
--------------------------------------------- */


/* Button
--------------------------------------------- */


/** Button **/

.button-small {
    padding: 10px 15px;
}

.button--red {
    background-color: #ef0000;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.button--red:hover {
    background-color: var(--primary-color);
}


/* Breadcrumb
--------------------------------------------- */


/** Breadcrumb **/

.rank-math-breadcrumb {
    padding-bottom: 10px;
    position: relative;
}

.rank-math-breadcrumb span {
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .rank-math-breadcrumb {
        width: 100%;
    }
}

.rank-math-breadcrumb:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--grey-777);
    bottom: -5px;
}

.rank-math-breadcrumb p {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.rank-math-breadcrumb p a,
.rank-math-breadcrumb .breadcrumb_last {
    color: var(--primary-color);
}

.rank-math-breadcrumb p a:hover {
    text-decoration: underline;
}

.rank-math-breadcrumb p .separator {
    margin: 0 3px;
    color: #fff;
}

.rank-math-breadcrumb p .last {
    font-weight: 500;
}


/* Menu mobile
--------------------------------------------- */


/** Menu Mobile **/

.menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    max-width: 320px;
    background-color: #000;
    z-index: 1999;
    transform: translateX(-100%);
    transition: 0.5s;
    overflow-y: scroll;
    padding-bottom: 50px;
}

.menu-mobile ul {
    margin-top: 50px;
    padding: 0 10px;
    list-style: none;
}

.menu-mobile ul li {
    position: relative;
    border-bottom: 1px solid #4d4d4d26;
}

.menu-mobile ul li a {
    color: #fff;
    font-size: 1.6rem;
    text-transform: uppercase;
    display: block;
    padding: 15px 10px;
    font-weight: 500;
}

@media only screen and (max-width: 374px) {
    .menu-mobile ul li a {
        font-size: 1.3rem;
        padding: 10px;
    }
}

.menu-mobile ul li a img {
    display: none;
}

.menu-mobile ul li .li-plus {
    position: absolute;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: block;
    top: 0;
    right: 0;
    color: #fff;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.menu-mobile ul li .li-plus:before,
.menu-mobile ul li .li-plus:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    background-color: #fff;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    -moz-transform: translate(-50%, -50%) rotate(-90deg);
    -ms-transform: translate(-50%, -50%) rotate(-90deg);
    -o-transform: translate(-50%, -50%) rotate(-90deg);
}

.menu-mobile ul li .li-plus:before {
    width: 11px;
    height: 1px;
}

.menu-mobile ul li .li-plus:after {
    width: 1px;
    height: 11px;
}

.menu-mobile ul li .clicked {
    transform: rotate(180deg);
}

.menu-mobile ul li .clicked.li-plus:before {
    display: none;
}

.menu-mobile ul li>ul {
    margin-top: 0;
    display: none;
}

.menu-mobile ul li>ul li {
    border: none;
}

.menu-mobile ul li>ul li a {
    padding-left: 25px;
}

.menu-mobile ul .current-menu-item a {
    color: var(--primary-color);
}

.menu-mobile ul .current-menu-item ul a {
    color: #fff;
}

.menu-mobile ul .current-menu-parent ul {
    display: block;
}

.menu-mobile .menu-mobile-close {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    top: 0;
    right: 10px;
}

.menu-mobile .menu-mobile-close svg {
    color: #fff;
}

.menu-mobile .menu-mobile-close svg path {
    fill: #fff;
    stroke: #fff;
}

.menu-mobile.menu-mobile-active {
    transform: translate(0);
}

.overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1998;
    background: #56545480;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.overlay.overlay-active {
    opacity: 1;
    visibility: visible;
}


/* Pagination
--------------------------------------------- */


/** Pagination **/

.hazo-pagination ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.hazo-pagination ul li a {
    background: transparent;
    color: #ccc;
    margin: 0 3px;
    padding: 5px 10px;
    font-size: 12px;
    border: 1px solid #ddd;
    font-size: 1.5rem;
}

.hazo-pagination ul li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.hazo-pagination ul li a svg {
    color: #fff;
    margin-top: -3px;
}

.hazo-pagination ul li a svg path {
    stroke: #fff;
}

.hazo-pagination ul li.active a {
    background-color: #fff;
    color: #337ab7;
}


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


/** Header **/

.header {
    background-color: #fff;
}

@media only screen and (max-width: 1439px) {
    .header {
        padding: 10px 0;
    }
}

.header ul {
    list-style: none;
}

.header .header__logo {
    max-width: 150px;
}

@media only screen and (max-width: 1439px) {
    .header .header__logo {
        margin-right: auto;
    }
}

@media only screen and (max-width: 767px) {
    .header .header__logo {
        max-width: 100px;
    }
}

.header .header__menu ul {
    display: flex;
    align-items: center;
}

.header .header__menu ul li {
    margin: 0 20px;
    position: relative;
}

@media only screen and (max-width: 1439px) {
    .header .header__menu ul li {
        margin: 0 13px;
    }
}

.header .header__menu ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    padding: 21px 0;
}

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

.header .header__menu ul li a img {
    height: 25px;
    width: 25px;
    margin-bottom: 5px;
}

.header .header__menu ul li.current-menu-item>a {
    color: var(--primary-color);
}

.header .header__menu ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 250px;
    background-color: #fff;
    flex-direction: column;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
}

.header .header__menu ul li ul li {
    width: 100%;
    position: relative;
    border-top: 1px solid #e2dede;
}

.header .header__menu ul li ul li a {
    align-items: flex-start;
    padding: 10px 15px;
}

.header .header__menu ul li ul li ul {
    position: absolute;
    left: 100%;
    top: -1px;
    border-left: 1px solid #e2dede;
}

.header .header__menu ul li:hover>ul {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    opacity: 1;
    visibility: visible;
}

.header .header__language {
    align-self: start;
    padding-top: 20px;
}

@media only screen and (max-width: 767px) {
    .header .header__language {
        padding-top: 0;
        align-self: center;
    }
}

.header .header__language li:first-child {
    margin-right: 20px;
}

.header__info {
    font-weight: 500;
}

.header__info .header__info-item {
    display: flex;
    align-items: center;
}

.header__info .header__info-item:first-child {
    margin-bottom: 5px;
}

.header__info .header__info-item a {
    color: #fd0000;
}

.header__info .header__info-item:before {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background: url("../images/icon.png");
    background-repeat: no-repeat;
    margin-right: 10px;
    background-size: contain;
}

.menu-mobile .header__info {
    margin-top: 20px;
    color: #fff;
    padding: 0 20px;
    font-size: 1.6rem;
}

.menu-mobile .header__info .header__info-item:before {
    display: none;
}

.menu-mobile .header__info .header__info-item p {
    margin-bottom: 10px;
}

@media only screen and (max-width: 374px) {
    .menu-mobile .header__info .header__info-item {
        font-size: 1.3rem;
    }
}

.menu-mobile .header__info .header__info-item a {
    color: var(--primary-color);
}


/* Home
--------------------------------------------- */


/** Home **/


/** Home  Banner **/

.home-banner .banner__img {
    width: 100%;
}

.home-banner .banner__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-banner .flickity-button {
    background-color: transparent;
    height: 60px;
}

.home-banner .flickity-button .flickity-button-icon {
    fill: #fff;
    width: 90%;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .home-banner .flickity-button .flickity-button-icon {
        width: 70%;
    }
}

.home-banner .flickity-button.previous {
    left: 50px;
}

@media only screen and (max-width: 767px) {
    .home-banner .flickity-button.previous {
        left: 10px;
    }
}

.home-banner .flickity-button.next {
    right: 50px;
}

@media only screen and (max-width: 767px) {
    .home-banner .flickity-button.next {
        right: 10px;
    }
}

.home-banner .flickity-page-dots {
    bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .home-banner .flickity-page-dots {
        bottom: 10px;
    }
}

.home-banner .flickity-page-dots .dot {
    width: 12px;
    height: 12px;
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .home-banner .flickity-page-dots .dot {
        width: 10px;
        height: 10px;
    }
}

.home-banner .flickity-page-dots .dot.is-selected {
    background-color: var(--primary-color);
}


/** Home category **/

.home-category {
    background-color: #000000;
    padding: 58px 45px;
}

@media only screen and (max-width: 1023px) {
    .home-category {
        padding: 60px 0;
    }
}

.home-category__item {
    margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
    .home-category__item {
        margin-bottom: 30px;
    }
}

.home-category__item .item__image {
    position: relative;
}

.home-category__item .item__image:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    z-index: 9;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    transform: scale(0, 1);
}

.home-category__item .item__image:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    z-index: 9;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
}

.home-category__item .item__image:hover:before,
.home-category__item .item__image:hover:after {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.home-category__item .item__image img {
    width: 100%;
}

.home-category__item .item__image:hover img {
    opacity: 0.7;
}

.home-category__item .item__image span {
    display: inline-block;
    padding: 7px 15px;
    border: 2px solid #fff;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.home-category__item .item__image:hover span {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

@media (hover:none) {
    .home-category__item .item__image:hover span {
        display: none;
    }
}

.home-category__item .item__name {
    margin: 20px 0 0 0;
}

@media only screen and (max-width: 767px) {
    .home-category__item .item__name {
        margin-top: 5px;
    }
}

.home-category__item .item__name a {
    color: var(--primary-color);
    font-size: 2.4rem;
}

@media only screen and (max-width: 767px) {
    .home-category__item .item__name a {
        font-size: 1.8rem;
    }
}

.home-category__item:hover .item__name a {
    color: #ffa800;
}


/** Home news **/

.home-news {
    padding: 50px 0;
    background-color: #121212;
}

.home-news-block {
    margin-top: 40px;
}

.home-news-block .block__title {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.home-news-block .block__title a {
    color: #fff;
}

.home-news-block .block__title a:hover {
    text-decoration: underline;
}

.home-news-block .block__title:before {
    content: "";
    background: url(../images/cat-news-heading.png);
    width: 21px;
    height: 21px;
    display: inline-block;
    margin-right: 15px;
}

.home-news-block .block-left {
    border-right: 1px dotted #414041;
}

@media only screen and (max-width: 767px) {
    .home-news-block .block-left {
        margin-bottom: 30px;
        border-right: none;
        border-bottom: 1px dotted #414041;
        padding-bottom: 10px;
    }
}

.home-news-block .block-left .block-left__image {
    display: block;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .home-news-block .block-left .block-left__image {
        margin-bottom: 20px;
    }
}

.home-news-block .block-left .block-left__image img {
    width: 100%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.home-news-block .block-left .block-left__image img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.home-news-block .block-left__title {
    font-size: 1.8rem;
}

.home-news-block .block-left__title a {
    color: var(--grey-cc);
}

.home-news-block .block-left__title a:hover {
    text-decoration: underline;
}

.home-news-block .block-left__desc {
    margin-top: 10px;
    color: var(--grey-cc);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-news-block .block-left__time {
    color: var(--grey-777);
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.home-news-block .block-left__time:before {
    content: "";
    background-image: url(../images/date.png);
    display: inline-block;
    width: 13px;
    height: 14px;
    margin-right: 5px;
}

.home-news-block .block-right li {
    margin-bottom: 15px;
    display: flex;
}

.home-news-block .block-right li:before {
    content: "";
    background: url(../images/li-news.png);
    width: 6px;
    height: 9px;
    display: inline-block;
    flex: none;
    margin-top: 4px;
    margin-right: 10px;
}

.home-news-block .block-right li a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--grey-cc);
    line-height: 17px;
}

.home-news-block .block-right li a:hover {
    text-decoration: underline;
}

.product-category {
    padding: 50px 0;
}

.product-category .rank-math-breadcrumb {
    margin-bottom: 0;
}

@media screen and (max-width:767px) {
    .product-category .rank-math-breadcrumb {
        margin-bottom: 30px;
    }
}

.category-product__list {
    padding: 50px 0;
}

.product__item {
    border: 1px solid #2c2c2c;
    padding: 15px 10px;
    height: 100%;
    min-height: 194px;
    display: flex;
    flex-wrap: wrap;
}

.product__item .product__item-image {
    display: block;
    overflow: hidden;
    height: 165px;
    max-width: 165px;
    flex-basis: 165px;
    margin-right: 10px;
}

@media screen and (max-width:1199px) {
    .product__item .product__item-image {
        max-width: 110px;
        flex-basis: 110px;
        height: 110px;
    }
}

.product__item .product__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

@media screen and (max-width:767px) {
    .product__item .product__item-image {
        max-width: 100%;
        flex-basis: 100%;
        height: auto;
        max-height: 200px;
        margin-bottom: 15px;
    }
}

.product__item .product__item-image img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.product__item .product__item-content {
    max-width: calc(100% - 175px);
    flex-basis: calc(100% - 175px);
}

@media screen and (max-width:1199px) {
    .product__item .product__item-content {
        max-width: calc(100% - 122px);
        flex-basis: calc(100% - 122px);
    }
}

@media screen and (max-width:767px) {
    .product__item .product__item-content {
        max-width: 100%;
        flex-basis: 100%;
    }
}

.product__item .product__item-content .product__item-name {
    font-size: 1.6rem;
}

@media screen and (max-width:424px) {
    .product__item .product__item-content .product__item-name {
        font-size: 1.4rem;
    }
}

.product__item .product__item-content .product__item-name a {
    color: #fff;
    font-weight: 700;
}

.product__item .product__item-content .product__item-name a:hover {
    text-decoration: underline;
}

.product__item .product__item-content .product__item-desc {
    color: #c6a55f;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.4rem;
    line-height: 1.5;
}

@media screen and (max-width:424px) {
    .product__item .product__item-content .product__item-desc {
        font-size: 1.25rem;
    }
}

.price {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 10px 0;
    display: block;
}

@media screen and (max-width:767px) {
    .price {
        margin: 10px 0;
    }
}

.price del {
    font-size: 1.4rem;
    margin-right: 7px;
}

.price ins {
    text-decoration: none;
}

@media screen and (max-width:767px) {
    .price {
        font-size: 1.3rem;
    }
    .price del {
        margin-right: 4px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width:424px) {
    .price {
        font-size: 1.2rem;
    }
    .price del {
        font-size: 1.1rem;
    }
}

.product-detail {
    padding: 40px 0;
}

.product-detail__image-gallery .product__carousel-main {
    margin-bottom: 10px;
    border: 1px solid #353535;
}

.product-detail__image-gallery .product__carousel-main .carousel-cell {
    width: 100%;
    max-height: 493px;
}

.product-detail__image-gallery .product__carousel-main .flickity-button {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    background-color: #3d3d3d;
    width: 45px;
    height: 45px;
    border: 3px solid rgba(255, 255, 255, 0.618);
}

.product-detail__image-gallery .product__carousel-main .flickity-button.previous {
    left: 30px;
}

.product-detail__image-gallery .product__carousel-main .flickity-button.next {
    right: 30px;
}

.product-detail__image-gallery .product__carousel-main:hover .flickity-button {
    opacity: 1;
    visibility: visible;
}

.product-detail__image-gallery .product__carousel-main .flickity-button-icon {
    width: 45%;
    height: 45%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    color: #fff;
}

.product-detail__image-gallery .product__carousel-nav .carousel-cell {
    opacity: 0.5;
    border: 1px solid #353535;
    cursor: pointer;
}

.product-detail__image-gallery .product__carousel-nav .is-nav-selected .carousel-cell {
    opacity: 1;
}

.product-detail__content .product__title {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.product-detail__content .product__status {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.product-detail__content .product-detail__short-desc {
    margin-top: 30px;
}

.product-detail__content .product-detail__short-desc h1,
.product-detail__content .product-detail__short-desc h2,
.product-detail__content .product-detail__short-desc h3,
.product-detail__content .product-detail__short-desc h4,
.product-detail__content .product-detail__short-desc h5,
.product-detail__content .product-detail__short-desc h6 {
    margin-bottom: 20px;
}

.product-detail__content .product-detail__short-desc h3 {
    font-size: 2rem;
    font-weight: 500;
}

.product-detail__content .product-detail__short-desc ul li,
.product-detail__content .product-detail__short-desc p {
    font-size: 1.5rem;
    line-height: 21px;
    margin-bottom: 5px;
}

.product-services {
    background: #181717;
}

@media only screen and (max-width: 1023px) {
    .product-services {
        margin-top: 30px;
    }
}

.product-services .product-services__head {
    background: #2c2721;
    margin-top: 0;
    font-size: 16px;
    padding-left: 14px;
    margin-bottom: 0;
    line-height: 42px;
    width: 100%;
    font-weight: 700;
}

.product-services .product-services__item {
    padding: 15px 10px;
}

.product-services .product-services__item .item__image {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    -o-transition: 0.6s;
}

.product-services .product-services__item:hover .item__image {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}

.product-services .product-services__item .item__content {
    margin-left: 10px;
    line-height: 22px;
}

.product-services .product-services__item .item__content a {
    color: #fff;
}

.product-services .product-services__item:hover .item__content a {
    color: var(--primary-color);
}

.product-detail__info {
    margin-top: 50px;
}

.product-detail__info .info__head {
    color: #d0a147;
    padding: 10px 15px;
    background: #181717;
    border: 1px solid #2c2721;
    border-bottom: none;
    display: inline-block;
}

.product-detail__info .info-inner {
    padding: 20px;
    border: 1px solid #2c2721;
    font-size: 1.6rem;
    margin-bottom: 50px;
}


/** Related product **/

.related-product {
    padding: 50px 0;
}

.related-product .related-product__title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 1px solid #797979;
    padding-bottom: 20px;
    color: var(--primary-color);
}

@media only screen and (max-width: 767px) {
    .related-product__list {
        margin: 0 -7px;
    }
    .related-product__list [class*="col-"] {
        padding-right: 7px;
        padding-left: 7px;
    }
}

.related-product__item {
    border: 1px solid #353535;
    position: relative;
}

.related-product__item .item__image {
    display: block;
    padding: 15px 8px;
    max-width: 100%;
}

.related-product__item .item__image img {
    border: 1px solid #353535;
    min-height: 300px;
    object-fit: cover;
}

.related-product__item .item__bottom {
    padding: 5px 10px;
    background: #261400;
}

.related-product__item .item__bottom .item__name {
    font-size: 1.9rem;
    font-weight: 500;
    min-height: 45px;
}

@media only screen and (max-width: 767px) {
    .related-product__item .item__bottom .item__name {
        font-size: 1.5rem;
    }
}

.related-product__item .item__bottom .item__name a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffc75c;
}

.related-product__item .item__bottom .item__name a:hover {
    color: #d0a147;
}

.related-product__item .item__bottom .price {
    color: #fff;
    font-size: 1.7rem;
}


/** Hot product **/

.hot-product__head {
    border-bottom: 2px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 14px;
    position: relative;
}

.hot-product__head:after {
    content: "";
    position: absolute;
    bottom: -2px;
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    width: 76px;
    left: 0;
    z-index: 99;
}

.hot-product__title {
    font-size: 2rem;
    font-weight: 500;
}

.hot-product__title a {
    color: #fff;
}

.hot-product__title a:hover {
    color: var(--primary-color);
}

.hot-product-carousel-btn .cts-btn {
    width: 33px;
    height: 33px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-left: 7px;
    cursor: pointer;
}

.hot-product-carousel-btn .cts-btn:hover {
    background-color: var(--primary-color);
}

.hot-product-carousel-btn .cts-btn:hover svg path {
    stroke: #fff;
}

@media only screen and (max-width: 767px) {
    .hot-product-list [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
}


/** Change product quantity button **/

.product-detail__cart {
    margin-top: 40px;
}

.quantity .qty {
    width: 45px;
    height: 50px;
    position: relative;
    border: 1px solid white;
}

@media only screen and (max-width: 374px) {
    .quantity .qty {
        width: 40px;
    }
}

.quantity .qty input {
    width: 100%;
    height: 100%;
    background: transparent;
    color: #fff;
    padding: 10px;
    outline: none;
    border: none;
    text-align: center;
    /* Firefox */
}

.quantity .qty input::-webkit-outer-spin-button,
.quantity .qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity .qty input[type="number"] {
    -moz-appearance: textfield;
}

.quantity__button {
    display: flex;
    flex-direction: column;
    width: 32px;
    border: 1px solid #fff;
    border-left: none;
}

.quantity__button button {
    outline: none;
    border: none;
    background-color: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
}

.quantity__button button:first-child {
    border-bottom: 1px solid #fff;
}

.addtoCart-btn {
    margin-left: 15px;
    background: #2c2721;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #2c2721;
    padding: 10px 20px;
    transition: 0.3s;
}

.addtoCart-btn:before {
    content: url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false' data-prefix='fas' data-icon='shopping-bag' class='svg-inline--fa fa-shopping-bag fa-w-14' role='img' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z'/%3E%3C/svg%3E");
}

.addtoCart-btn:hover {
    background-color: #fff;
    color: var(--primary-color) !important;
}

.addtoCart-btn:hover:before {
    content: url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false' data-prefix='fas' data-icon='shopping-bag' class='svg-inline--fa fa-shopping-bag fa-w-14' role='img' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffad02%0A' d='M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z'/%3E%3C/svg%3E");
}

@media only screen and (max-width: 374px) {
    .addtoCart-btn {
        font-size: 1.5rem;
        padding: 10px;
    }
}

.news {
    padding: 15px 0 40px 0;
}

.news-top__item {
    position: relative;
    display: block;
    overflow: hidden;
    height: 333px;
}

.news-top__item img {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.news-top__item:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.news-top__item .item__desc {
    position: absolute;
    bottom: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    z-index: 99;
    padding: 20px;
}

.news-top__item .item__desc .item__title {
    font-size: 2.2rem;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .news-top__item .item__desc .item__title {
        font-size: 1.9rem;
    }
}

.news-top__item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    z-index: 9;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.01) 0, rgba(0, 0, 0, 0.9) 100%);
}

@media only screen and (max-width: 767px) {
    .news-top__item:before {
        height: 100%;
    }
}

.news-top__item:hover .item__desc {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

.news-top__slide {
    margin: 0 -5px;
    overflow: hidden;
}

.news-top__slide [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.news-top__slide .item__image {
    height: 160px;
}

.news-top__slide .item__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 767px) {
    .news-top__slide .item__image {
        height: 130px;
    }
}

.news-top__slide .item__title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-top__slide .item__title:hover {
    color: var(--primary-color) !important;
}

.news-top__slide .flickity-button {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    width: 32px;
    height: 40px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.news-top__slide .flickity-button.previous {
    left: -10%;
}

.news-top__slide .flickity-button.next {
    right: -10%;
}

.news-top__slide:hover .flickity-button {
    opacity: 1;
    visibility: visible;
}

.news-top__slide:hover .flickity-button.previous {
    left: 20px !important;
}

.news-top__slide:hover .flickity-button.next {
    right: 20px !important;
}

.new-news__head {
    margin-bottom: 20px;
    padding: 10px;
    position: relative;
    border-radius: 2px;
    background-color: #e7bf3c;
    font-weight: 600;
    font-size: 1.8rem;
}

.news__item {
    margin-bottom: 20px;
}

.news__item .news__item-image {
    display: block;
    overflow: hidden;
}

.news__item .news__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.news__item:hover .news__item-image img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.news__item .news__item-content .news__item-title {
    font-weight: 500;
    font-size: 2rem;
}

@media only screen and (max-width: 767px) {
    .news__item .news__item-content .news__item-title {
        font-size: 1.5rem;
        margin-top: 10px;
        font-weight: 400;
    }
}

.news__item .news__item-content .news__item-title a {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news__item .news__item-content .news__item-title a:hover {
    color: var(--primary-color);
}

@media only screen and (max-width: 767px) {
    .news__item .news__item-content .news__item-title a {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.news__item .news__item-content .news__item-info {
    margin-top: 15px;
}

@media only screen and (max-width: 767px) {
    .news__item .news__item-content .news__item-info {
        display: flex;
        flex-direction: column;
        margin-top: 5px;
    }
    .news__item .news__item-content .news__item-info span {
        margin-bottom: 5px;
    }
}

.news__item .news__item-content .news__item-info .info__author {
    margin-right: 10px;
}

.news__item .news__item-content .news__item-info .info__author:before {
    content: url("data:image/svg+xml,%3Csvg width='10' height='13' xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false' data-prefix='fas' data-icon='user' class='svg-inline--fa fa-user fa-w-14' role='img' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z'/%3E%3C/svg%3E");
    margin-right: 7px;
    height: 13px;
}

.news__item .news__item-content .news__item-info .info__time:before {
    content: url("data:image/svg+xml,%3Csvg width='13' height='13' xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false' data-prefix='fas' data-icon='calendar-alt' class='svg-inline--fa fa-calendar-alt fa-w-14' role='img' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm320-196c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM192 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM64 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
    margin-right: 7px;
}

.news__item .news__item-content .news__item-desc {
    margin-top: 10px;
    line-height: 1.4;
    color: var(--primary-color);
    font-size: 1.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media only screen and (max-width: 767px) {
    .news__item .news__item-content .news__item-desc {
        font-size: 1.3rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-top: 0;
    }
}

.news__item-small .news__item-content .news__item-title {
    font-size: 1.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news__item-small .news__item-content .news__item-info {
    color: #c6a55f !important;
    font-style: italic;
    font-size: 1.3rem;
    margin-top: 10px;
}


/** Single post **/

.hazo-single-post {
    padding: 15px 0 40px 0;
}

.single-post__title {
    font-size: 2.2rem;
    font-weight: 500;
}

.single-post__info {
    margin-top: 15px;
}

.single-post__related {
    background: #333;
    border: 1px solid #2c2c2c;
    border-radius: 4px;
    list-style: none;
    padding: 10px;
    margin-top: 15px;
}

.single-post__related li {
    margin-bottom: 10px;
}

.single-post__related li:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='9' viewBox='0 0 10 18' fill='none'%3E%3Cpath d='M1 17L9 9L1 1' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    margin-right: 5px;
}

.single-post__related li:hover:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='9' viewBox='0 0 10 18' fill='none'%3E%3Cpath d='M1 17L9 9L1 1' stroke='%23001A72' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.single-post__related li a {
    color: #fff;
}

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

.contact {
    padding: 15px 0 40px 0;
    color: #fff;
    font-size: 1.6rem;
}

.contact .contact__title {
    font-weight: 500;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact .contact__info a {
    color: var(--primary-color);
}

.contact .contact__form input,
.contact .contact__form textarea {
    width: 100%;
    padding: 7px 15px;
    font-size: 1.4rem;
    outline: none;
    border: 1px solid #a7a9ac;
    border-radius: 4px;
    margin-top: 14px;
    height: auto !important;
    color: #000;
}

.contact .contact__form input::placeholder,
.contact .contact__form textarea::placeholder {
    font-size: 1.5rem;
}

.contact .contact__form button {
    width: 161px;
    min-width: max-content;
    height: 45px;
    background-color: var(--primary-color);
    font-size: 1.7rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    border: none;
    overflow: hidden;
}

.contact .contact__form button:hover {
    background-color: #fd0000;
    color: #fff;
}

.contact .contact__map {
    width: 100%;
    height: 500px;
}

.contact .contact__map iframe {
    width: 100%;
    height: 100%;
}


/* Sidebar
--------------------------------------------- */


/** Sidebar **/

.sidebar ul {
    list-style: none;
}

.sidebar__item-title {
    color: #fc0;
    font-size: 15px;
    padding: 10px;
    background: #494949;
    border-radius: 15px;
    margin-bottom: 5px;
}

.widget_nav_menu ul {
    padding: 10px 20px;
}

.widget_nav_menu ul li {
    display: flex;
    margin: 12px 0;
}

.widget_nav_menu ul li:before {
    content: url(../images/parent_item.gif);
    margin-right: 5px;
    flex: none;
}

.widget_nav_menu ul li a {
    color: #fff;
    font-size: 1.4rem;
}

.widget_nav_menu ul li a:hover {
    color: #ffcc00;
}

.widget_product_categories ul {
    padding: 10px 20px;
}

.widget_product_categories ul li {
    display: flex;
    margin: 12px 0;
}

.widget_product_categories ul li:before {
    content: url(../images/parent_item.gif);
    margin-right: 5px;
    flex: none;
}

.widget_product_categories ul li a {
    color: #fff;
    font-size: 1.4rem;
}

.widget_product_categories ul li a:hover {
    color: #ffcc00;
}

.sidebar__contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.sidebar__news .show-more a {
    color: #fff;
}

.sidebar__commitment {
    margin-bottom: 15px;
    border: 1px dashed #2c2c2c;
}

.sidebar__commitment ul {
    list-style: none;
}

.sidebar__commitment .sidebar__commitment-head {
    padding: 10px 15px;
    font-weight: bold;
    color: #fff;
    background: #34a105;
    border-bottom: 1px dashed #2c2c2c;
}

.sidebar__commitment .sidebar__commitment-list {
    padding: 15px;
    font-size: 1.5rem;
    color: #fff;
}


/* Forms
--------------------------------------------- */


/** Form **/


/* Footer
--------------------------------------------- */


/** Footer **/

.footer ul {
    list-style: none;
}

.footer .footer__top {
    padding: 30px 0;
}

.footer .footer__bottom {
    padding: 15px 0;
    background-color: #252525;
    font-size: 1.6rem;
}

@media only screen and (max-width: 1199px) {
    .footer__item {
        margin-bottom: 30px;
    }
}

.footer__item-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

@media only screen and (max-width: 1199px) {
    .footer__item-title {
        margin-bottom: 20px;
    }
}

.footer__contact-list li {
    color: #fff;
    font-weight: 500;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer__contact-list li .item__icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    flex-shrink: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.footer__contact-list li a {
    color: #fff;
    font-weight: 500;
    font-size: 1.6rem;
}

.footer__contact-list li a:hover {
    color: #ffcc00;
}

.footer__list li {
    margin-bottom: 20px;
}

.footer__list li a {
    color: #fff;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    font-size: 1.8rem;
}

.footer__list li a:hover {
    color: #ffcc00;
}

.footer__list-social li {
    margin-bottom: 20px;
}

.footer__list-social li a {
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    font-size: 1.8rem;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    font-size: 1.8rem;
}

.footer__list-social li a svg {
    margin-right: 15px;
}

.footer__list-social li a:hover {
    color: #ffcc00;
}


/* 
.footer__item .footer__item-product-list {

}

.footer__item .footer__item-product-list ul li a {
    color: #fff;
    font-size: 1.8rem;
} */


/*# sourceMappingURL=style.css.map */

.rank-math-breadcrumb {
    margin-bottom: 3rem;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-block;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border: 1px solid #d3ced2;
    border-right: 0;
    margin: 1px;
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    color: #337ab7 !important;
    background-color: #fff !important;
    border: 1px solid #fff !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    text-decoration: none;
    display: inline-block;
    color: #fff !important;
    padding: 10px 15px;
    background: #fff0 !important;
    border: 1px solid #ddd !important;
    -webkit-transition: 0.3s !important;
    transition: 0.3s !important;
    font-weight: 500;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
    border: none !important;
}

.sidebar .textwidget {
    color: #fff !important;
    padding: 10px;
}

.product-filter .woocommerce-ordering {
    margin-bottom: 0;
}

.mobile-nav {
    background: white;
    width: 100%;
    border-radius: 0;
    color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    padding: 5px;
    margin: 0;
    box-shadow: 0 4px 10px 0 #000;
}

.mobile-nav ul {
    display: flex;
    list-style: none;
}

.mobile-nav ul li {
    max-width: 20%;
    flex-basis: 20%;
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1rem;
    color: #515151;
    text-align: center;
    font-weight: 700;
}

@media only screen and (max-width: 374px) {
    .mobile-nav ul li a {
        font-size: 0.9rem;
    }
}

.mobile-nav ul li a img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.mobile-nav ul li:nth-child(3) a img {
    width: 50px;
    height: 50px;
    margin-top: -14px;
}

@media only screen and (max-width:374px) {
    .col-xs-12 {
        max-width: 100%;
        flex-basis: 100%;
    }
}

.header__main-search {
    position: relative;
    border: 1px solid #ccc;
}

.header__main-search input {
    width: 100%;
    max-width: 250px;
    padding: 8px 12px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    outline: none;
}

@media screen and (max-width:374px) {
    .header__main-search input {
        max-width: 140px;
    }
}

.header__main-search button {
    cursor: pointer;
    border: none;
    background: #000;
    position: absolute;
    right: 0;
    height: 100%;
}