@font-face {
    font-family: 'Bilo';
    src: url(../fonts/Bilo.woff);
}

html,
body {
    scroll-behavior: smooth;
}

a {
    transition: all .2s ease-in-out;
}

.site-header__nav-panel {
    height: auto;
}

.site__header .nav-panel {
    padding: 15px 0;
    height: auto;
    background: #fff;
}

.site__header .nav-panel__logo {
    max-width: 130px;
}

.site__header .nav-panel__logo img {
    width: 100%;
}

.nav-panel__row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    column-gap: 20px;
}

.login .indicator__dropdown ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    box-shadow: 0 1px 15px rgba(0, 0, 0, .25);
    background: #fff;
    width: 200px;
}
.post__content table
 {
    width: 100%;
    max-width: 100%;
}
.post__content tr
 {
    border-bottom: 1px solid #2222;
}
.post__content td {
    padding: 5px;
}
.login .indicator__dropdown ul a {
    display: block;
    padding: 10px 25px;
    color: #3d464d;
    border-bottom: 1px solid #dee2e6;
}

.login .indicator__dropdown ul a:hover {
    background: #eee;
}

.login .indicator__dropdown ul li:last-child a {
    color: #49a0d9;
}

.indicator__value {
    color: #fff;
    background: #49a0d9;
}

.indicator__area {
    font-size: 18px;
}

.dropcart__product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.form-control:focus,
.form-control:active {
    box-shadow: none;
    border-color: #ced4da;
}

.form-control {
    background: #F0F1F3;
    font-size: 14px;
}

.form-control::placeholder {
    font-weight: 300;
    font-size: 14px;
}

.site__header .product-category {
    width: 30%;
}

.site__header .product-category-title {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.site__header .product-category-title i {
    margin-right: 10px;
}

.site__header .product-category-title .fa-xmark,
.site__header .product-category.open .product-category-title .fa-bars-sort {
    display: none;
}

.site__header .product-category.open .product-category-title .fa-xmark {
    display: block;
    color: #49a0d9;
}

.site__header .product-category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    display: none;
    z-index: 9;
}

.site__header .product-category.open .product-category-dropdown {
    display: block;
}

.site__header .product-category-dropdown ul {
    position: relative;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: fit-content;
    border: 1px solid #DBDDE0;
    background: #fff;
}

.site__header .product-category-dropdown ul a.category-dropdown-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 40px 5px 15px;
    font-size: 14px;
    color: #3d464d;
}

.site__header .product-category-dropdown ul a.category-dropdown-link::after {
    content: '\f054';
    font-family: Font Awesome\ 6 Pro;
    font-weight: 400;
    position: absolute;
    top: 50%;
    right: 5px;
    font-size: 10px;
    transform: translateY(-50%);
}

.site__header .product-category-dropdown ul .has-dropdown a.category-dropdown-link::before {
    content: "";
    display: block;
    position: absolute;
    left: 100%;
    width: 0;
    height: 0;
    border-top: 16.7px solid #fff0;
    border-bottom: 16.7px solid #fff0;
    border-left: 12px solid #3d464d;
    transition: all .2s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}

.site__header .product-category-dropdown ul li.has-dropdown:hover a.category-dropdown-link::before {
    opacity: 1;
    visibility: visible;
}

.site__header .product-category-dropdown ul li.category-dropdown-item:hover a.category-dropdown-link {
    color: #fff;
    background: #3d464d;
}

.site__header .product-category-dropdown ul a.category-dropdown-link .icon {
    display: block;
    margin-right: 15px;
    width: 20px;
    height: 20px;
}

.site__header .product-category-dropdown ul a.category-dropdown-link .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site__header .product-category-dropdown .category-dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    min-width: 680px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: max-content;
    border: 1px solid #DBDDE0;
    background: #fff;
    overflow-y: auto;
    transition: all .2s ease-in-out;
    z-index: 9;
}

.site__header .product-category-dropdown .category-dropdown-menu a {
    color: #3d464d;
    padding: 10px 25px;
}

.site__header .product-category-dropdown .category-dropdown-menu a:hover {
    color: #49a0d9;
}

.site__header .product-category-dropdown .category-dropdown-item:hover .category-dropdown-menu {
    display: grid;
}

.site__header .search {
    position: relative;
    width: 70%;
}

.site__header .search-input {
    position: relative;
    overflow: hidden;
}

.site__header .search-input span {
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    line-height: normal;
    font-size: 14px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3d464d;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    cursor: pointer;
}

.site__header .search-result {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 400px;
    margin-top: 5px;
    background: #fff;
    overflow-y: auto;
    border: 1px solid #DBDDE0;
    display: none;
    z-index: 9;
}

.site__header .search-result.open {
    display: block;
}

.site__header .search-result-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    color: #3d464d;
    border-bottom: 1px solid #DBDDE0;
}

.site__header .search-result-item:hover {
    background: #DBDDE0;
}

.site__header .search-result-item .item-image {
    width: 15%;
}

.site__header .search-result-item .item-image img {
    width: 100%;
}

.site__header .search-result-item .item-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.site__header .search-result-item .item-content {
    width: 83%;
}

.site__header .search-result .no-result {
    padding: 15px;
}

.site__header .container {
    max-width: 100%;
}

.site__header .search-result-item .item-price {
    color: #49a0d9;
}

.block-slideshow--layout--full {
    margin-top: 0;
}

.block-slideshow__slide-image {
    position: static;
    text-align: center;
}

.block-slideshow__slide-title,
.block-slideshow__slide-text,
.block-slideshow__slide-button {
    opacity: 1;
}

.block-slideshow--layout--with-departments .block-slideshow__body {
    border: 1px solid #DBDDE0;
}

.block-slideshow--layout--with-departments .block-slideshow__slide-image {
    position: absolute;
    left: unset;
    right: 10%;
    height: 100%;
    width: unset;
}

.block-slideshow--layout--with-departments .block-slideshow__slide-image img {
    width: 100%;
    height: 100%;
}

.block-slideshow--layout--with-departments .block-slideshow__body {
    height: auto;
}

.block-slideshow__slide-content {
    max-width: 450px;
}

.block-slideshow__slide-text {
    line-height: 24px;
    transform: none;
    margin-bottom: 15px;
}

.block-slideshow__slide-price {
    font-size: 24px;
    color: #49a0d9;
    font-weight: 600;
}
.block-slideshow__slide-price del{
    margin-left: 5px;
}
.block-slideshow__slide-price del {
    color: #828282;
    font-size: 16px;
    font-weight: 300;
}

.dropcart__product-remove {
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-posts .container {
    max-width: 100%;
}

.post-card {
    background: #fff;
}

.post-list .post-card {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.post-list .post-card .post-card__image {
    width: 33%;
}

.post-list .post-card .post-card__info {
    width: 65%;
}
.post-card__info{
    margin-top: 10px;
}
.post-card .post-card__name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    line-height: 25px;
    font-size: 18px;
    min-height: 50px;
}

.post-card__desc {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card .post-card__name:hover a {
    color: #49a0d9;
}

.block-posts .video-grid {
    grid-template-columns: 1fr 1fr;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 15px;
    row-gap: 15px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.video-thumb {
    position: relative;
}

.video-thumb .play {
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, .8);
    line-height: normal;
    border-radius: 12px;
    z-index: 2;
}

.video-list .video-thumb .play {
    padding: 10px 20px;
    font-size: 20px;
}

.video-name {
    font-size: 18px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    line-height: normal;
}

.video-name a {
    color: #3d464d;
}

.video-name:hover a {
    color: #49a0d9;
}

.video-date {
    font-size: 14px;
    color: #adadad;
}

.video-info {
    margin-top: 10px;
}

.video-list .video-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.video-list .video-thumb {
    width: 33%;
}

.video-list .video-info {
    width: 65%;
    margin-top: 0;
}

.block--highlighted {
    background: #f0f0f0;
}

.block-products .container {
    max-width: 100%;
}

.block-products-carousel[data-layout=grid-5][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: block;
}

.block-products-carousel[data-layout=grid-5][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    margin-bottom: unset;
}

.product-card__name a:hover {
    color: #49a0d9;
}

.product-card__info {
    flex-grow: unset;
    padding: 0 15px;
}

.product-card__name {
    font-size: 18px;
    min-height: 37px;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.block-products-carousel__column {
    display: block;
}

.product-card__prices {
    color: #E02E24;
    margin-top: 5px;
}

.block-products-carousel[data-layout=grid-5][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    top: 10px;
    left: 10px;
}

.product-card__buttons {
    margin-top: 15px;
}

.product-card::before {
    box-shadow: none;
    border: 2px solid #ededed;
    transition: all .2s;
}

.product-card:hover::before {
    box-shadow: none;
    border-color: rgba(73, 160, 217, .7);
}

.block-products-carousel[data-layout=grid-5][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn {
    height: unset;
    line-height: normal;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 15px;
    column-gap: 15px;
}

.nav-tabs .nav-link {
    padding: 1px 15px;
    border-radius: 0;
    border: none;
    color: #3d464d;
    border-bottom: 2px solid transparent;
}

.nav-tabs .nav-item:not(:last-child) {
    margin-right: 5px;
}

.nav-tabs .nav-link:hover {
    border-color: #ebebeb;
}

.nav-tabs .nav-link.active {
    border-color: #49a0d9;
}

.nav-tabs {
    border: none;
}

.block-header .nav-tabs {
    width: max-content;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.product-tabs__content table {
    width: 100%;
}
.product-tabs__content table tr {
    border-bottom: 1px solid #3333;
}
.block-products .block-header .tabs-wrapper {
    overflow-x: auto;
    padding: 3px 0;
}

.block-products.block-tabs .block-header {
    margin-bottom: 15px;
    justify-content: center;
}
.block-products.block-tabs .tabs-wrap{
    margin-bottom: 24px;
    background: #fff;
    top: 55px;
    z-index: 4;
}
.block-products.block-tabs .nav-tabs{
    justify-content: center;
}
.block-header__title {
    font-size: 24px;
}

.block-header__divider {
    background: #dee2e6;
}

.map iframe {
    width: 100%;
}

.block-map .container {
    max-width: 100%;
}

.block-map .map {
    height: 300px;
}

.block-map .map iframe {
    height: 100%;
}

.block-map .store-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.block-map .store-item:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.block-map .store-item .store-name {
    display: block;
    margin-bottom: 10px;
    color: #49a0d9;
    font-size: 20px;
    width: fit-content;
}

.block-map .store-item ul a {
    color: #3d464d;
    font-weight: 300;
}

.block-map .store-item ul a:hover {
    color: #49a0d9;
}

.site-footer {
    background: #3d464d;
    color: #fff;
}

.site-footer .logo {
    display: block;
    margin-bottom: 15px;
}

.footer-contacts__text {
    padding-right: 0;
    margin-bottom: 15px;
}

.footer-links__list a:hover,
.footer-contacts__contacts a:hover {
    color: #49a0d9;
}

.footer-contacts__contacts li i {
    margin-right: 5px;
}

.totop__button {
    color: #fff;
}

.category-card__name a:hover {
    color: #49a0d9;
}

.mobile-header__panel {
    background: #fff;
}

.mobile-header__logo {
    margin-left: 0;
}

.mobile-header__logo img {
    width: 100px;
}

.mobile-header__menu-button {
    font-size: 18px;
}

.mobilemenu__body {
    transform: translateX(100%);
    right: 0;
    left: unset;
}

.mobilemenu__header {
    justify-content: space-between;
}

.mobilemenu__header .logo img {
    width: 150px;
    padding: 0 15px;
}

.mobile-links--level--1 {
    background: #f0f0f0;
}

.mobilemenu__body {
    width: 320px;
}

.indicator__value {
    top: -6px;
    right: 3px;
}

.product-card .product-card__actions {
    padding: 0 15px 15px;
}

.block-categories .container {
    max-width: 100%;
}

.block-categories__item {
    width: 100%;
    margin: 0;
}

.block-categories__list {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 15px;
    column-gap: 15px;
}

.category-card--layout--compact {
    cursor: pointer;
}

.category-card--layout--compact .category-card__body {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.category-card--layout--compact .category-card__image {
    width: 120px;
    margin-right: 0;
    margin-bottom: 10px;
}
table .categories-row{
    display: flex;
}
.block-categories .table td,
.block-categories .table th {
    border-top: none;
    width: 265px;
}

.categories-child-row .child-items {
    position: relative;
    background: #fff;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 10px;
    column-gap: 10px;
    padding: 20px;
}

.categories-child-row .child-items .close-row {
    position: absolute;
    top: 0;
    right: 0;
    background: #adadad;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.categories-child-row .child-items .close-row:hover {
    background: #E02E24;
}

.categories-child-row td {
    display: none;
}

.categories-child-row .child-items a {
    display: block;
    color: #3d464d;
}

.product-card__new-price {
    color: #E02E24;
}

.categories-child-row .child-items a:hover {
    color: #49a0d9;
}

.block-categories__item {
    position: relative;
}

.top-row .block-categories__item::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-bottom: 24px solid #fff;
    display: none;
}

.bottom-row .block-categories__item::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-bottom: 24px solid #fff;
    display: none;
}

.block-categories__item.active::before {
    display: block;
}

.block-categories .table {
    white-space: nowrap;
}

.product-card__badge--sale {
    background: unset;
    position: absolute;
    top: 14px;
    right: -14px;
    font-size: 13px;
    color: #fff;
    padding: 10px 25px 20px 22px;
    background: url(../images/Asset-1-1.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    z-index: 3;
}

.product-voucher {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 12px;
    line-height: normal;
}

.mobile-links__item-toggle i {
    transition: all .2s ease-in-out;
}

.mobile-links__item--open .mobile-links__item-toggle i {
    transform: rotate3d(1, 0, 0, 180deg);
}

.page-header {
    background: #f0f0f0;
}

.filters-button i {
    margin-right: 5px;
}

.page-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

.page-item.active .page-link {
    color: #fff;
}

.input-check-color__input:checked~.input-check-color__icon {
    transform: translate(-50%, -50%);
}

.input-check-color {
    border: 1px solid #3d464d;
}

.filter-color__item {
    padding: 2px;
    border: 2px solid transparent;
    margin-bottom: 5px;
    margin-right: 5px;
}

.filter-color__item.active {
    border-color: #E02E24;
}

.widget-filters__actions {
    padding-top: 15px;
    padding-bottom: 0;
}

.products-view .block-sidebar {
    margin-bottom: 30px;
}

.block-brands__item {
    padding: 10px;
}

.products-view .block-brands__item {
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.block-sidebar__item {
    width: 100%;
}

.products-view .block-brands__item:hover {
    border-color: #f0f0f0;
}

.products-view .block-brands__item.active {
    border-color: #E02E24;
}

.block-sidebar--offcanvas--always .block-sidebar__body {
    width: 320px;
}

.product__content {
    grid-template-columns: [gallery] calc(40% - 20px) [info] calc(60% - 20px);
}

.product__prices {
    color: #E02E24;
}

.product__prices del {
    color: #b3b3b3;
    font-size: 19px;
    margin-left: 10px;
}

.product__info .color-option {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.product__info .color-option .item {
    position: relative;
    width: fit-content;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    margin-bottom: 10px;
    padding: 5px 30px 5px 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all .2s ease-in-out;
}

.product__info .color-option .item .selected {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 5px;
    line-height: normal;
    background: #E02E24;
    color: #fff;
    font-size: 12px;
    display: none;
    border-bottom-left-radius: 12px;
}

.product__info .color-option .item.active .selected {
    display: block;
}

.product__info .color-option .item:hover,
.product__info .color-option .item.active {
    border-color: #E02E24;
}

.product__info .color-option .item:not(:last-child) {
    margin-right: 10px;
}

.product__info .color-option .item span {
    font-size: 14px;
    display: block;
}

.product__info .color-option .item .price {
    color: #E02E24;
}

.product__description {
    margin-bottom: 14px;
}

.product__actions {
    margin-top: 14px;
}

.product__vouchers {
    padding: 15px;
    margin-top: 14px;
    border: 1px solid #ffe1e1;
}

.product__vouchers .title {
    color: #E02E24;
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product__vouchers .title i {
    margin-right: 5px;
}

.product__vouchers ul {
    margin-bottom: 0;
    padding: 0;
    list-style-type: none;
}

.product__vouchers ul li:not(:last-child) {
    margin-bottom: 10px;
}

.product-tabs__content {
    padding: 50px 0;
    border: none;
}
.typography a{
    display: block;
}
.methods p{
    margin-bottom: 0;
}
.methods p{
    margin-bottom: 5px;
}
.methods{
    margin: 20px 0;
}
.spec__header,
.reviews-view__header {
    margin-bottom: .75rem;
}

.video iframe {
    aspect-ratio: 16/9;
    height: 100%;
    width: 100%;
    border-radius: 16px;
}

.product-tabs__list {
    position: sticky;
    top: 77px;
    background: #fff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .1), 0 1px rgba(0, 0, 0, .02);
    z-index: 3;
}

.product-tabs--stuck .product-tabs__list-body {
    position: static;
}

.product-tabs--stuck .product-tabs__list-body:before {
    content: none;
}

.product-tabs--stuck.product-tabs--header-stuck .product-tabs__list-body {
    animation: none;
}

.product-tabs__item {
    padding: 8px 20px;
    font-size: 16px;
}

.block-tabs .product-wrapper {
    display: grid;
    grid-template-columns: 1fr 3fr;
    row-gap: 15px;
    column-gap: 15px;
}

.block-tabs .products-grid {
    grid-template-columns: repeat(4, 1fr);
}

.block-tabs .block-slideshow__slide-content {
    position: static;
}

.block-tabs .block-slideshow__body {
    border: 2px solid #ededed;
    padding: 15px 10px;
    background: #f0f0f0;
}

.block-slideshow__hot {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #E02E24;
    text-decoration: underline;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 2;
}

.block-tabs .block-slideshow__hot {
    position: static;
}

.block-ads img {
    width: 100%;
}

.block-ads .container,
.block-brands .container {
    max-width: 100%;
}

.block-brands__slider .owl-carousel .owl-item img {
    width: auto;
    margin: 0 auto;
}

.block-tabs .block-slideshow__slide-content {
    max-width: 100%;
}

.block-tabs .block-slideshow__slide-image img {
    width: 100%;
    margin-top: 20px;
}

td.cart-table__column--price,
td.cart-table__column--total {
    color: #E02E24;
}

.cart__actions {
    justify-content: end;
}

.form-check+#checkout-password {
    display: none;
}

.block-login .card-title {
    text-align: center;
}

.block-login p {
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
}

.account-nav .nav-tabs {
    flex-direction: column;
    margin-bottom: 0;
}

.account-nav .nav-tabs .nav-link {
    padding: 15px;
    border-bottom: 2px solid #f0f0f0;
    border-left: 2px solid transparent;
}

.account-nav .nav-tabs .nav-item:not(:last-child) {
    margin-right: 0;
}

.account-nav .nav-tabs .nav-link.active {
    border-left-color: #49a0d9;
    border-bottom-color: #f0f0f0;
}

.account-nav .nav-tabs .nav-link:hover {
    border-left-color: #49a0d9;
    border-bottom-color: #f0f0f0;
}

.card-table table {
    min-width: unset;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

.post-categories {
    overflow-x: auto;
    margin-bottom: 30px;
    background: #fff;
    top: 77px;
    left: 0;
    width: 100%;
    z-index: 3;
}
.post-categories.fixed{
    position: fixed;
    box-shadow: 0 1px rgba(0, 0, 0, .04), inset 0 -1px rgba(0, 0, 0, .04), 0 1px 20px rgba(0, 0, 0, .15);
}
.post-categories ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.post-categories ul a {
    display: block;
    color: #3d464d;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
    transition: all .2s ease-in-out;
}

.post-categories ul a.active,
.post-categories ul a:hover {
    border-color: #49a0d9;
}

.share-links__item a {
    height: 25px;
    width: 25px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    border-radius: 50%;
}

.share-links__list {
    align-items: center;
}

.share-links__list .share-links_heading {
    color: #3d464d;
    margin-right: 5px;
}

.share-links__list a {
    color: #fff;
}

.share-links__list a:hover {
    color: #fff;
}

figure img {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.toc {
    padding: 15px;
    border: 2px solid #ffe1e1;
    margin-bottom: 20px;
}

.toc .toc-nav {
    margin-top: 20px;
}

.toc ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.toc ul ul {
    margin-left: 20px;
}

.toc a {
    color: #3d464d;
}

.toc a:hover,
.toc a.active {
    color: #49a0d9;
    text-decoration: none;
}

.toc .toc-title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.toc .toc-title .toggle-toc {
    margin-left: 5px;
    color: #49a0d9;
    font-size: 14px;
    cursor: pointer;
}

.toc.show .toc-title span.hide,
.toc .toc-title span.show {
    display: block;
}

.toc.show .toc-title span.show,
.toc .toc-title span.hide {
    display: none;
}

.post-content__title {
    scroll-margin-top: 100px;
}

.toc.fixed-toc {
    position: fixed;
    right: 5%;
    bottom: 80px;
    background: #fff;
    padding: 5px;
    display: none;
    z-index: 3;
}

.toc.fixed-toc.active {
    display: block;
}

.toc.fixed-toc .toc-nav {
    display: none;
}

.post-detail .block-posts {
    background: #fff;
    position: relative;
    z-index: 5;
}

.site__footer {
    position: relative;
    z-index: 5;
}

.block-video .container {
    max-width: 100%;
}

.video-short .video-item {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
}

.video-short .video-item:hover {
    color: #49a0d9;
}

.video-short .video-thumb {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-short .video-thumb::before {
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), rgba(0, 0, 0, .8));
    content: "";
    display: block;
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
}

.video-short .video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
}

.video-detail .video__name {
    margin-top: 5px;
    font-size: 24px;
}

.video-detail .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.video-wrapper {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    width: calc(56.25vh - 35px);
}

.short-videos {
    width: fit-content;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
}

.short-videos .video {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    margin: 0 auto;
}

.swiper-slide-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(88px);
    -webkit-filter: blur(88px);
}

.swiper-button-prev {
    top: 40%;
    transform: rotate(90deg);
}

.swiper-button-next {
    transform: rotate(90deg);
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    right: 0;
    left: unset;
    margin: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    background-color: #212121;
    transition: all .2s ease-in-out;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}
.order-success__title{
    margin-top: 0;
    text-align: center;
}
.hotline{
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #3d464d;
    padding-right: 15px;
}
.hotline:hover{
    color: #49a0d9;
}
.hotline i{
    font-size: 28px;
    margin-right: 10px;
}
.block-ads .grid-content{
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
}
.block-ads .large-ads img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50.0% 50.0%;
}
.block-ads .large-ads{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    max-height: 540px;
}
.block-ads .ads-info{
    position: absolute;
    top: 50%;
    left: 5px;
    right: 5px;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}
.block-ads .ads-info p{
    margin-bottom: 5px;
}
.block-ads .ads-info h3{
    font-size: 19px;
    margin-bottom: 20px;
}
.block-ads .small-ads a{
    display: block;
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 12px;
}
.block-ads .small-ads a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50.0% 50.0%;
    transition: all .8s;
}
.block-ads .small-ads a:hover img{
    transform: scale(1.2);
}
.block-ads .small-ads a:not(:last-child){
    margin-bottom: 20px;
}
.block-ads .small-ads .ads-info{
    top: 40px;
    transform: translateY(0);
}
.block-ads.style-2 .grid-content{
    grid-template-columns: 1fr 2fr;
}
.block-ads.style-2 .large-ads{
    order: 2;
}
.checkout-product img{
    width: 160px;
}
.checkout .options{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    column-gap: 15px;
    row-gap: 15px;
}
.checkout .option img{
    width: 80px;
}
.mb-30{
    margin-bottom: 30px;
}
.checkout .option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 0;
    transition: all .2s ease-in-out;
}
.checkout .option:hover{
    border-color: #49a0d9;
}
.checkout-product p span{
    color: #E02E24;
    font-weight: 700;
}
.checkout .mess{
    color: #E02E24;
    font-size: 13px;
    font-weight: 600;
}
@media only screen and (min-width: 375px) {
    .product-card .product-card__actions {
        padding: 0 15px 15px;
    }

    .product-card__info {
        padding: 0 15px;
    }

    .product-card .product-card__buttons .btn {
        font-size: .8125rem;
        height: unset;
        line-height: normal;
        padding: .25rem .5625rem;
        font-weight: 500;
    }
}

@media only screen and (min-width: 768px) {

    .block-slideshow--layout--full .block-slideshow__body,
    .block-slideshow--layout--full .block-slideshow__slide {
        height: auto;
    }

    .block-slideshow--layout--full .block-slideshow__body img {
        aspect-ratio: 16/9;
    }

    .cart-table__column--quantity {
        padding-left: 18px;
    }

    .cart-table__column--price,
    .cart-table__column--total {
        text-align: center;
    }
}

@media only screen and (min-width: 992px) {
    .block-slideshow--layout--with-departments .block-slideshow__body {
        margin: 0;
    }

    .block-sidebar--offcanvas--always {
        opacity: 1;
        visibility: visible;
        position: static;
    }

    .block-sidebar--offcanvas--always .block-sidebar__body {
        transform: none;
        position: static;
        width: 100%;
        height: auto;
        flex-direction: row;
    }

    .widget-filters__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 20px;
    }
    .widget-filters__list.grid-3{
        grid-template-columns: repeat(3,1fr);
    }

    .block-sidebar--offcanvas--always .block-sidebar__backdrop {
        display: none;
    }

    .account-nav {
        border-radius: 0;
    }
}

@media only screen and (min-width: 1590px) {
    .swiper-button-prev {
        top: 45%;
    }
}

@media only screen and (min-width: 1921px) {

    .container,
    .site__header .container {
        max-width: 1760px;
    }

    .block-posts .container,
    .block-video .container,
    .block-products .container,
    .block-categories .container {
        max-width: 1760px;
    }
}

@media only screen and (min-width: 2560px) {

    .container,
    .site__header .container {
        max-width: 1900px;
    }

    .block-posts .container,
    .block-video .container,
    .block-products .container,
    .block-categories .container {
        max-width: 1900px;
    }
}

@media only screen and (max-width: 1280px) {
    .site__header .product-category-dropdown .category-dropdown-menu {
        min-width: 450px;
        grid-template-columns: repeat(2, 1fr)
    }

    .block-slideshow__slide-content {
        max-width: 360px;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media only screen and (max-width: 1199.98px) {
    .block-tabs .product-wrapper {
        grid-template-columns: 1fr;
    }
    .site__header .product-category-title{
        font-size: 13px;
    }
    .block-tabs .block-slideshow__slide {
        display: grid;
        grid-template-columns: 2fr 1fr;
    }
    .checkout .options{
        grid-template-columns: repeat(6,1fr);
    }
    .post-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .video-iframe iframe {
        height: 460px;
    }
}

@media only screen and (max-width: 991.98px) {
    .indicator__dropdown {
        right: 40px;
    }   
    .post-categories{
        top: 54px;
    }
    .post-categories ul{
        width: max-content;
    }
    .container {
        max-width: 100%;
    }
    .checkout .options{
        grid-template-columns: repeat(5,1fr);
    }
    .products-grid,
    .block-tabs .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .indicator__area {
        height: auto;
    }

    .block-map .store-info {
        margin-bottom: 25px;
    }
    .block-products.block-tabs .tabs-wrap{
        position: sticky;
    }
    .nav-tabs .nav-item {
        margin-bottom: 3px;
    }

    .block-slideshow--layout--with-departments .block-slideshow__slide-image {
        right: 0;
    }

    .site__header .search {
        width: 300px;
        background: #fff;
        padding: 10px;
        box-shadow: 0 1px 15px rgba(0, 0, 0, .25);
    }

    .site__header .search-result {
        margin-top: 0;
    }

    .site__header .search-result-item .item-price {
        font-size: 14px;
    }

    .site__header .search-result-item .item-title {
        font-size: 14px;
    }

    .site__header .search-result-item .item-content {
        width: 78%;
    }

    .site__header .search-result-item .item-image {
        width: 20%;
    }

    .account-nav .nav-tabs .nav-item {
        margin-bottom: 0;
    }

    .account-nav ul {
        border-bottom: 0;
    }

    .account-nav {
        border: 2px solid #f0f0f0;
        border-bottom: none;
    }

    .video-detail .video__name {
        font-size: 20px;
    }

    .short-videos .video {
        border-radius: 0;
    }
    .product-tabs__list{
        top: 54px;
    }
}

@media only screen and (max-width: 767.98px) {
    .card-title{
        font-size: 21px;
    }
    .footer-links,
    .footer-contacts,
    .footer-newsletter {
        text-align: left;
    }

    .footer-newsletter {
        margin-left: unset;
        margin-right: unset;
    }
    .checkout .options{
        grid-template-columns: repeat(4,1fr);
    }
    .footer-newsletter__social-links {
        justify-content: start;
    }

    .block-posts .video-grid {
        grid-template-columns: 1fr;
    }

    .block-slideshow__body,
    .block-slideshow__slide {
        height: auto;
    }

    .block-slideshow__slide-image--desktop {
        display: none;
    }

    .mobile-header__logo img {
        width: 60px;
    }

    .indicator__area {
        padding: 0 10px;
    }

    .mobile-header__menu-button {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .indicator__area {
        font-size: 16px;
    }

    .block-slideshow--layout--with-departments .block-slideshow__slide-image {
        position: static;
        height: unset;
        margin: 0 auto;
        order: 1;
    }

    .block-slideshow__slide-content {
        position: static;
        max-width: unset;
        text-align: left;
        order: 2;
    }

    .block-tabs .block-slideshow__slide-content {
        order: 1;
    }

    .block-tabs .block-slideshow__slide-image {
        order: 2;
    }

    .block-slideshow--layout--with-departments .block-slideshow__slide {
        padding: 15px;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .block-slideshow__slide-text {
        display: block;
    }

    .product-tabs .product-tabs__content {
        padding: 24px 0;
    }

    .page-header__container {
        padding-bottom: 0;
    }

    .products-grid,
    .block-tabs .products-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5px;
        row-gap: 5px;
    }


    .block-products.block-tabs .tabs-wrap {
        overflow-x: auto;
    }
    .block-products.block-tabs .nav-tabs{
        width: max-content;
    }
    .cart-table__column--price:before,
    .cart-table__column--quantity:before,
    .cart-table__column--total:before {
        text-align: left;
        color: #3d464d;
    }

    .card-body {
        padding: 15px;
    }

    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-categories ul {
        width: max-content;
    }

    .post-categories {
        padding-bottom: 10px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-detail .post__share-links {
        padding-top: 0;
    }
    .product-card__image{
        padding: 10px;
    }
    .product-card__info{
        padding: 0 10px;
    }
    .product-card__name{
        font-size: 16px;
        min-height: 32px;
    }
    .product-card .product-card__actions{
        padding: 0 10px 10px;
    }
    .product-voucher{
        margin-top: 10px;
    }
    .product-card__badge--sale{
        padding: 5px 15px 15px 15px;
        right: -12px;
        font-size: 12px;
    }
    .block-ads .grid-content{
        grid-template-columns: 1fr;
        row-gap: 5px;
    }
    .block-ads.style-2 .grid-content{
        grid-template-columns: 1fr;
    }
    .block-ads .small-ads{
        display: grid;
        column-gap: 5px;
        grid-template-columns: repeat(2,1fr);
    }
    .block-ads .small-ads a:not(:last-child){
        margin-bottom: 0;
    }
    .block-ads .small-ads a{
        height: 180px;
    }
    .block-ads .small-ads .ads-info{
        top: 15px;
    }
    .block-ads .ads-info p{
        font-size: 12px;
    }
    .block-ads .ads-info h3{
        font-size: 16px;
    }
}

@media only screen and (max-width: 640px) {
    .block-tabs .block-slideshow__slide {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 575.98px) {

    .mobilemenu__body {
        width: 100%;
    }
    .checkout .options{
        grid-template-columns: repeat(3,1fr);
    }
    .block-sidebar--offcanvas--always .block-sidebar__body {
        width: 100%;
    }

    .video-list .video-thumb .play {
        font-size: 16px;
        padding: 7px 15px;
    }

    .post-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .swiper-slide,
    .short-videos video,
    .video-wrapper {
        width: 100%;
    }

    .short-videos {
        transform: none;
        left: 0;
        right: 0;
        border-radius: 0;
        bottom: 4px;
    }

    .video-wrapper {
        top: 0;
        bottom: 0;
    }
}

@media only screen and (max-width: 480px) {

    .indicator__dropdown {
        right: 10px;
    }

    .dropcart--style--dropdown {
        width: 280px;
    }
    .checkout .options{
        grid-template-columns: repeat(2,1fr);
    }
    .checkout .option img{
        width: 60px;
    }
}